Backport from trunk
[mono-project.git] / mono / metadata / ChangeLog
blobb237ecaed5747987262658a87af90d0b8d656a04
1 2009-12-14  Miguel de Icaza  <miguel@novell.com>
3         * verify.c (mono_method_verify): The Unused opcodes produce an
4         InvalidProgramException on .NET
5         
6 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
8         * loader.c (mono_method_get_header): Move assert after the verifier
9         has been called on the method header.
10         [Backport r148406]
12 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
14         * boehm-gc.c: fixed race condition while getting the target of a
15         disappearing link (bug #522233).
17 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
19         * loader.c (mono_method_signature): Always call mono_loader_unlock 
20         before returning.
21         [Backport r147991]
23 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
25         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
26         user string blobs.
28         * verify-internals.h: Add new function to the internal API.
30         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
31         check if it's a valid string.
33         * object.c (mono_ldstr): Ditto.
35         Fixes #561943.
37         Backport of r147941.
39 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
41         * class.c (mono_class_from_typeref): Bounds check idx against the 
42         assemblyref table.
44         Backport of r147797.
46 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
48         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
50         * mono/metadata/assembly.c: When opening an assembly image, pass the real
51         names in addition to the runtime generated one.
53         * mono/metadata/image.h: Add a function to take the real name of the assembly
54         image.
56         * mono/metadata/image.c: If a real name has been passed to load an assembly,
57         use it instead of the runtime generated one.
59         Code is contributed under MIT/X11 license.
61 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
63         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
64         before the other checks to prevent problems if the DateTime class is blittable.
65         Hopefully fixes #559600.
67 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
69         * loader.c (find_method_in_class): Ignore methods with broken signatures.
71         Fixes #559906.
73         Backport of r147557.
75 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
77         * verify.c (get_stack_type): Return that the type is invalid instead of
78         asserting.
80         * verify.c (mono_method_verify): Verify that all locals and arguments
81         have valid stack types.
83         Fixes #559913.
85         Backport of r147485.
87 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
89         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
90         bounds checking overflow aware.
92         Fixes #559910.
94         Backport of r147472.
96 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
98         * verify.c (do_invoke_method): Check for invalid method signatures.
100         Fixes #553450.
102         Backport of r147464.
104 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
106         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
108         Fixes #558042.
110         Backport of r147455.
112 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
114         * class.c: remove asserts for invalid type token in
115         mono_class_name_from_token(), mono_assembly_name_from_token() and
116         mono_class_create_from_typedef () (fixes bug #553318).
118 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
120         * metadata.c, class.c, loader.c: remove assert after bsearch() for
121         incorrect assemblies (bug #553322).
123 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
125         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
127         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
129         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
131         * class.c (inflate_generic_context): Ditto.
133         * loader.c (method_from_methodspec): Ditto.
135         Fixes #558230.
137         Backport of r147436.
139 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
141         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
143         * class.c (mono_class_create_from_typespec): Ditto.
145         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
147         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
149         Fixes #558184.
151         Backport of r147427.
153 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
155         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
157         * verify.c (verify_delegate_compatibility): Ditto.
159         * verify.c (do_newobj): Ditto.
161         Fixes #558046.
163         Backport of r147422.
165 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
167         * verify.c (mono_method_verify): Check for catch clauses with broken
168         types.
170         Fixes #558465.
172         Backport of r147261.
174 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
176         * verify.c (code_bounds_check): Do proper overflow checking.
178         * verify.c (mono_method_verify): The number of switch entries is
179         an unsigned int. Properly bounds check it.
181         Fixes #558594.
183         Backport of r147259.
185 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
187         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
188         mono_metadata_method_has_param_attrs which only checks if a given param
189         list has a non zero flags entry.
191         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
192         to inform how many params should we expect to decode.
194         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
195         as it's faster than mono_metadata_get_param_attrs.
197         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
198         add mono_metadata_method_has_param_attrs.
200         Backport of r147244.
202 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
204         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
205         failures.
207         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
208         is -1 but its class is broken.
210         Fixes #558522.
212         Backport of r147219.
214 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
216         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
217         for parameter overflow.
219         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
220         of mono_metadata_get_param_attrs.
222         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
223         API.
225         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
227         Backport of r147218.
229 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
231         * class.c (mono_class_setup_fields): Check for fields with broken types.
233         Fixes #558741.
235         Backport of r147214.
237 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
239         * appdomain.c (create_exceptions): New helper function extracted from
240         mono_runtime_init () to precreate objects used during exception handling.
241         (mono_runtime_init): Call it.
242         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
244 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
246         * class.c (mono_class_setup_vtable_general): Cache the result of
247         get_virtual_methods () since it can be slow because of the metadata
248         optimization.
250 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
252         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
253         from a MonoValueHashTable for now, since the later is based on an earlier
254         version of hpj's internal probing code and seems to have serious collision
255         issues.
257         * loader.c (mono_get_method_full): Update after the change above.
259 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
261         * class.c (check_interface_method_override): Check for NULL signatures and fail
262         the type.
264         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
266         Fixes #553428.
268         Backport of r146970.
270 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
272         * loader.c (field_from_memberref): Resolve the class first then the field
273         signature. Remove a lot of duplicated code and make sure we don't pass valid
274         values to mono_loader_set_error_field_load.
276         Fixes #553306.
278         Backport of r146937.
280 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
282         * class.c (inflate_generic_type): Change code to use new signature of
283         mono_error_set_bad_image.
285         Fixes #558124.
287         Backport of r146936.
289 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
291         * verify.c (mono_method_verify): Don't free ctx.params items if 
292         we aborted while inflating the ctx.locals. Complete previous fix
293         [Backport 146919]
295 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
297         * verify.c (mono_method_verify): Use the uninflated type name, 
298         when the inflated is null, to report errors. Also take care when
299         freeing, not to free everything since, in case of an error, some
300         stuff would be copies (i.e. not allocated by the function itself)
301         Fix bug #558145
302         [Backport r146900]
304 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
306         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
307         or overflow. The caller must have done this check explicitly. This guard us
308         from accessing invalid memory.
310         * verify.c (do_push_static_field): Check for stack overflow.
312         Fixes #553333.
314         Backport of r146876.
316 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
318         * loader.c (find_method_in_class): Don't crash if the signature cannot
319         be resolved.
321         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
322         of asserting for the case of invalid params.
324         Fixes #553304.
326         Backport of r146875.
328 2009-11-24  Bill Holmes  <billholmes54@gmail.com>
330         Backport of 144280.
332         * cominterop.c : Search the interface parts of vtable to find 
333           method matches.  Fixes 547030.
335         Code is contributed under MIT/X11 license.
337 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
339         * image.c (mono_image_load_module): Fix crash when a bad assembly
340         has no module at all (fix bug #553412) and also replace the 
341         g_assert with a return NULL (documented return value for failure)
342         [Backport r146839]
344 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
346         * class.c (can_access_internals): Allow CoreCLR to participate in
347         allowing (or not) [InternalsVisibleTo] between assemblies.
348         * security-core-clr.c|h: Make sure that only trusted code (a 
349         superset of platform code) can access the internals of platform
350         code.
351         [Backport r146452]
353 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
355         * security-core-clr.c (get_caller_no_reflection_related): 
356         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
357         it's still reflection and must be filtered correctly.
359 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
361         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
362         koush@koushikdutta.com). Disable GC_no_dls on android.
364 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
366         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
368         Backport of r145798.
370 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
371     
372         * object-internals.h: Change signature for mono_string_to_utf8_image.
374         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
375         argument.
377         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
378         exceptions due to mono_string_to_utf8.
380         Backport of r145797.
382 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
384     * object-internals.h: Change signature for mono_string_to_utf8_mp.
386     * object.c (mono_remote_class): Make sure all resources are released before
387     raising an exception.
389     * object.c (mono_print_unhandled_exception): Avoid raising an exception.
391         Backport of r145796.
393 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
395      * mono-perfcounters.c (network_get_impl): Change variable initialization
396      ordering to fix potential memory leak in case of exceptions.
398      * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
399      encoded strings.
401         Backport of r145795. 
403 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
405     * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
406     variable initialization ordering to fix potential memory leak in case
407     of exceptions.
409         Backport of r145794.
411 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
413     * appdomain.c: Fix shadow path code to better deal with exceptions.
415         Backport of r145658.
417 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
419     * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
420     exception in the middle of the runtime code.
422         Backport of r145657.
424 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
426     * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
427     leak memory with broken envvar value.
429         Backport of r145656.
431 2009-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
433         * object-internals.h: Add mono_string_to_utf8_checked.
435         * object.c: Implement mono_string_to_utf8_checked.
437         Backport of r145539.
439 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
441         * class.c: When CoreCLR is enabled don't call mono_init_com_types
442         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
443         platform (trusted) code. Instead we return a TypeLoadException to
444         be thrown later. This is the exception thrown by Silverlight 2 if
445         a type, inside application (user) code is marked with [ComImport]
446         [Backport r145534]
448 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
450         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
451         mono_is_debugger_attached () too.
453         * mono-debug.c (mono_is_debugger_attached): New helper function.
454         (mono_set_is_debugger_attached): Ditto.
456 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
458         * class.c: Add missing check for load errors after every
459         call to mono_class_setup_fields
461         Fixes #552282.
463         Backport of r145501.
465 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
467         * metadata.c: Change event table schema to use TDOR for event type
468         as this is what it's meant to be.
470         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
471         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
472         entry.
474         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
475         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
476         rows in MONO_TABLE_GENERICPARAM.
478         Fixes #552289.
480         Backport of r145478.
482 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
484         * culture-info-tables.h: regenerated.
486 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
488         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
490 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
492         * verify.c: Replace calls to mono_class_inflate_generic_type with
493         mono_class_inflate_generic_type_checked. Fixes #480005.
495         Backport of r144759 and r145284.
497 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
499         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
500         a MonoError parameter.
502         * class-internals.h: Add new mono_class_inflate_generic_type_checked version that can does proper error handling.
504         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
506         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
508         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
510         Backport of r144688 and r144755.
512 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
514         * string-icalls.c|h: Remove string internal calls that are not 
515         used anymore by the class libraries.
516         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
517         which is not used in the class librairies.
518         * icall-def.h: Update tables.
519         [Backport r145416]
521 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
523         * reflection.c (fieldref_encode_signature): If field_image is NULL then
524         the token is already properly encoded. Fixs 4.0 build.
526         Backport of r145396.
528 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
530         * locales.c (construct_number_format): Check if the number index is
531         valid before trying to use it, if not, just return.
532         
533 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
535         * reflection.c (fieldref_encode_signature): Add new field_image parameter
536         to indicate which assembly to use when resolving a custom-mod.
538         Fixes handling of volatile fields used across assemblies as reported in #551513.
540         Backport of r145337.
542 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
544         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
545         of interfaces. Fixes IKVM.
547         * class.c (mono_class_setup_vtable_general): Improve debug spew.
549         Backport of r145307.
551 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
553         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
555         * threads.c (mono_thread_attach): Call the profiler thread start callback.
557         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
559         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
560         flag set.
562         * profiler.c: Add new profiler callbacks for runtime invoke.
564         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
566 2009-10-31  Miguel de Icaza  <miguel@novell.com>
568         * threads.c: refactor the code that initializes the
569         thread_start_args into a reusable function and use this in the two
570         methods that start up threads.
572 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
574         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
575         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
577 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
579         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
580         Until now, we only had the per-cpu(core) counters.
582 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
584         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
586         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
587         signalling start_notify.
589 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
591         marshal.c: BeginInvoke cannot be called on multicast delegates with
592         multiple targets. Fixes bug #574426.
593         Backported from trunk.
595 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
597         * threadpool.[ch]: added hooks for thread start/finish and item
598         processing begin/end. For monotouch use only.
600 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
602         * threads.c (mono_thread_get_name): New helper function.
604         * reflection.c (resolve_object): Set handle_class for strings too.
605         (mono_reflection_create_custom_attr_data_args): New helper function to decode
606         a cattr blob into a set of arrays and structures without creating the custom
607         attributes themselves.
608         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
610         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
612         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
613         function.
615 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
617         * security-manager.c: Report if core-clr is active from
618         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
619         to allow Moonlight BCL to behave appropriately (both in browser
620         and outside, e.g. smcs)
621         [Backport r144737]
623 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
625         * mono-config.c: ignore UTF-8 BOM and report parser errors.
626         Fixes bug #549108.
628 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
630         * class.c: fix typo.
632 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
634         * marshal.c (mono_string_builder_to_utf16): Applied patch from
635         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
636         Fixes #549173.
638 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
640         * socket-io.[ch]: fix VS build.
642 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
644         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
645         methods. Fixes #543021.
647         Backport of r144534.
649 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
651         * icall-def.h:
652         * socket-io.[ch]: implemented SendFile.
654 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
656         * class.c (mono_class_create_from_typedef): Initialize class->element_class
657         before the interfaces to avoid crashes later if class initialization fails.
658         Fixes #548417.
660 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
662         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
663         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
664         check since 'pubkey' can't be NULL at this stage
665         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
666         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
667         initialization of 'iter'
668         [Backport r144403]
670 2009-10-13  Martin Baulig  <martin@ximian.com>
672         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
673         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
674         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
675         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
677         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 81.4.
679 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
681         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
682         Fixes #322934.
684 2009-10-06  Mark Probst  <mark.probst@gmail.com>
686         * object.c (mono_method_return_message_restore): Handle the case
687         where the argument is an instance of a generic type.  Fixes
688         #544446.
690         Backport of r143506.
692 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
694         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
695         Fixes #543133.
697 2009-09-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
699         * appdomain.c|h: Add a mono_domain_try_unload method which is
700         equivalent to mono_domain_unload, except that it returns an exception
701         instead of throwing it. Make mono_domain_unload use the
702         mono_domain_try_unload method to avoid code-duplication.
704         Backport of r142658.
706 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
708         * marshal.c: don't create the handle when calling. It is created later
709         if needed.
711 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
713         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
714         aborting when a conversion is not implemented.
716 2009-09-23  Miguel de Icaza  <miguel@novell.com>
718         * verify.c: when comparing culture strings, use g_ascii_strcmp
720         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
721         when comparing public key tokens to use memcmp on 16 bytes.   I do
722         not believe this ever worked as advertised in the past.
724         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
725         which would have always failed earlier.
727 2009-06-25  Miguel de Icaza  <miguel@novell.com>
729         * gc.c: Raise a NullArgumentException if the object passed is
730         null.
732 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
734         * image.c (mono_image_close): Atomically decrement the reference count and
735         remove the image from the hash tables, to prevent another thread from seeing a
736         dying MonoImage. Fixes #541194.
738 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
740         * threadpool.c: actually use the minimum number of 'completion ports'
741         (for us is just a potential worker thread).
743 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
745         * threadpool.c: remove ares_htable. It does not make sense any more
746         since the same objects are now stored in GC-tracked arrays while they are
747         in the queue.
749 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
751         * threadpool.c: increase the minimum length of the queues to 128.
752         Remove warning.
754 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
756         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
757         return the modified signature used by string ctors.
759 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
761         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
762         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
763         method, to be used by full-aot.
765 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
767         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
768         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
769         be known to be good.
771         * class.c (mono_class_init): Fail array types if their element type fails initialization
772         as well.
774         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
775         initialization, additionally we request the element_type vtable to be initialized as well.
777         This is fine and should not increase the working set in any meaningful way since it's reasonable
778         to assume       that most code will create an array and eventually populate it, which will require the
779         type's vtable to be initialized.
781         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
783 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
785         * normalization-tables.h : regenerated.
787 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
789         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
790         a leb128 encoding can take up to 5 bytes.
792 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
794         * class.c (verify_class_overrides): Remove useless argument.
796         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
797         before interface enumeration as this is no longer required.
799 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
801         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
802         used under mono_class_init context. This functions avoid any code path that
803         calls mono_class_init, which leads it to be slow as some things like the interface
804         bitmap are not available.
806         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
807         of it's own broken version. Fixes the verifier part of #538588.
809         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
810         API.
812 2009-09-15  Mark Probst  <mark.probst@gmail.com>
814         * class.c (mono_class_init): Always set an exception in a class if
815         vtable setup fails.  Fixes #538577.
817         * generic-sharing.c: Raise an exception if mono_class_vtable()
818         returns NULL.
820 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
822         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
823         methods of vtypes, as they could be incorrectly shared with static methods
824         taking an IntPtr argument.
826 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
828         * domain.c:
829         * object.c:
830         * class-internals.h: renamed waithandle_class to
831         manualresetevent_class.
832         * marshal.c: propagate the exception if a remoting BeginInvoke call
833         fails.
835 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
837         * object.c: Properly handle vtable failures.
839 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
841         * socket-io.c: Assert on vtable failure.
843         * mono-mlist.c: Assert on vtable failure.
845 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
847         * marshal.c: Assert on vtable failure.
849 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
851         * icall.c: Properly handle vtable failures.
853 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
855         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
857 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
859         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
861         * console-unix.c (do_console_cancel_event): Same.
863 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
865         * class-internals.h: Add mono_class_vtable_full function that allows control
866         if an exception should be raised or not.
868         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
869         to do what its documentation say, that is to return NULL and set exception_type on
870         failure.
872         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
873         and change the code to honor it.
875 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
877         * verify.c: Fix typo in error message.
879 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
881         * security-core-clr.c: Fix default_platform_check so it can run
882         the runtime coreclr tests (without an infinite recursion when
883         throwing an exception).
885 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
887         object.c (mono_delegate_ctor_with_method): Guard against null method.
889 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
891         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
892         that should be replaced with error handling later.
894 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
896         * marshal.c (mono_delegate_end_invoke): Fix warning.
898 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
900         * loader.c (mono_field_from_token): Properly handle invalid
901         dynamic tokens.
903 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
905         * pedump.c (verify_image_file): Skip types that can't be
906         decoded.
908 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
910         * verify.c: Look for recursive valuetypes only against the
911         type been initialized as this is a lot simpler and works.
913 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
915         * verify.c: Ensure that fields are properly loaded before
916         checking them.
918 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
920         * object.c (mono_object_get_virtual_method) : Call 
921           mono_cominterop_get_invoke if the object is a COM object.
923         Code is contributed under MIT/X11 license.
925 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
927         * verify.c: Check for recursive valuetype definitions.
929 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
931         Use inheritance-aware interface offsets. Inherited types use the same offsets
932         of their parents. This reduce offset duplication in case more than one type in
933         the inheritance tree explicitly implements the same interface.
935         This also removes a source of vtable bubbles found in #532409. An abstract type
936         isn't required to provide abstract methods to all interfaces it implements, which
937         resulted in a bubble with the previous scheme as the child would get a non-full
938         vtable from its parent. We fail all concrete types with vtable bubbles, so this
939         should be fixed.
941         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
942         it's expected to not cause any significant increase beyond that.
944         * class.c (setup_interface_offsets): Compute super class iface offsets
945         first to force sharing.
947         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
948         dumping only the relevant ones.
950         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
951         methods a new slot regardless if they belong to an interface or not. This allows
952         an inherited type to override the iface method separately from the class one.
954 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
956         * threadpool.c: make the Sleep() alertable to prevent delays exiting
957         applications that take less than 2s to execute.
958         Bug #524984 fixed.
960 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
962         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
964         * object.c (mono_get_runtime_callbacks): New helper function to return
965         the runtime callbacks.
967         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
968         mono_get_runtime_build_info () as the display name.
969         
970 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
972         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
973         argument, since NEWARR expects a native int. Fixes #481559.
975 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
977         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
978         against broken SRE methods.
980 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
982         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
983         a NULL variable. Abort early on failure.
985 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
987         * class.c (can_access_type): Fail visibility test for non nested
988         types with nested visibility.
990 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
992         * assembly.c (parse_public_key): Avoid allocating (and not 
993         freeing) the public key array when it's not requested by the 
994         caller.
995         * threads.c (mono_thread_manage, mono_thread_create_internal, 
996         ves_icall_System_Threading_Thread_Thread_internal): Free 
997         allocated memory on error.
999 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1001         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1003 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1005         * class.c (mono_class_setup_fields): Remove duplicated local variable
1006         named gklass.
1007         Rename gklass to gtd to reflect the fact that it points to the generic
1008         type definition.
1009         Remove the duplicated call to mono_class_setup_fields on gtd and move
1010         the error check to the beginning.
1012 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1014         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1015         Remove cruft of the previous patch.
1017 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1019         * metadata-verify.c (verify_method_table): Check for abstract + final.
1020         Fixes #534175.
1022 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1024         * verify.c (verify_class_fields): Check for duplicate fields.
1026 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1028         * metadata-verify.c: Verify the typeref table for duplicates.
1030 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1032         This reverts r140936 and properly handles interfaces with static methods. The
1033         right fix is to ensure vtables without bubles which is an easier to verify
1034         constraint. We should avoid such special cases as of the reverted patch as those
1035         only make the runtime more brittle.
1037         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1038         static methods on interfaces.
1040         * class.c (setup_interface_offsets): Use the number of virtual methods when
1041         calculating interface offsets instead of the number of methods. This way we
1042         avoid bubles on the layout.
1044 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1046         * metadata-verify.c (verify_metadata_header): Some very smart
1047         obfuscators like to add extra stream headers. Ignore them.
1049 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1051         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1052         methods correctly.
1054 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1056         * metadata-verify.c: Verify for duplicated types.
1058 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1060         * metadata-verify.c (verify_typedef_table): Verify for nested types
1061         without an entry on the nested class table.
1063 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1065         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1066         <tom_hindle@sil.org>. Add locking around hash table accesses.
1068 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1070         * verify.c (mono_verifier_verify_class): Verify all interface if
1071         really are interfaces. Fixes #534184.
1073 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1075         * pedump.c: Initialize all types during metadata validation so we report
1076         errors only detected as part of class initialization.
1078 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1080         * metadata-verify.c (verify_method_table): PInvoke requires method to
1081         be static. Fixes #534189
1083 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1085         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1086         being NULL.
1088 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1090         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1091         for holes or bad methods. Fixes #525314.
1093 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1095         * class.c (setup_interface_offsets): Don't allocate slot
1096         for the same interface multiple times. This creates bubbles
1097         that waster space and make vtable verification harder.
1099         The same interface get a slot multiple times since we need
1100         to get the closure of all implemented interfaces, which means
1101         the same interface is reported multiple times.
1103 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1105         * verify.c (mono_verifier_verify_class): Don't check the fields
1106         of generic instances since the context on which they got expanded
1107         might lead to false positives.
1109         Such thing happens when a generic type is inflated in the context
1110         of a generic method and the inflated type of a field turns into a
1111         generic method argument, which causes the checking code to think
1112         it's an invalid class when it's not.
1114 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1116         * verify.c (mono_type_is_valid_in_context): Verify if type
1117         is NULL and remove duplicate test.
1119 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1121         * verify.c (mono_verifier_verify_class): Check fields for
1122         invalid generic arguments.
1124 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1126         * class.c (verify_class_overrides): Verify if for static
1127         and non virtual methods.
1129 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1131         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1132         Check for errors after retrieving the vtable.
1134 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1136         * class.c (mono_class_setup_vtable_general): Verify
1137         if method overrides are valid before processing them.
1139 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1141         * marshal.c (mono_array_to_lparray): Fix minimal build with
1142         cominterop disabled.
1144         * marshal.c (mono_free_lparray): Same.
1146 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1148         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1149         the hash function for the ares_htable.
1151 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1153         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1154         bit for assembly flags. MS is ok with it but there is no spec anywhere
1155         on its mean
1157 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1159         * class.c (mono_class_create_from_typedef): Emit profiler events
1160         in all cases.
1162 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1164         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1165         Release memory on failure.
1167 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1169         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1170         to the internal API.
1172         * metadata.c (get_constraints): Use a single-linked table as we don't
1173         traverse it backward. Fail and return FALSE if only of the contraint types
1174         is not found.
1176         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1177         to mono_metadata_load_generic_param_constraints except for having a return value.
1178         This has to be done since the later is part of the public API.
1180         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1181         and fail the type.
1183         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1184         and fail the method.
1186 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1188         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1189         with MS broken behavior of emmitting EH section sizes without the
1190         header size added.
1192 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1194         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1195         memory until we're sure that we'll need it. This avoids leaking for
1196         broken types or duplicated instantiation.
1198 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1200         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1201         mistake.
1203 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1205         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1206         and expected size calculation.
1208 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1210         * class.c (mono_class_get_field_idx): Add fixme for broken
1211         behavior for types with multiple fields with the same name.
1212         I would rather fix it, but have no idea on how to generate
1213         such artifact for testing.
1215 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1217         * verify.c (verifier_load_field): We should allow references to
1218         fields to be made using the generic type definition. It's up to
1219         the loader system to fail invalid ops.
1221         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1222         are invalid.
1224 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1226         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1228         * metadata-internals.h: Fix declaration of 
1229         mono_metadata_interfaces_from_typedef_full.
1231         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1232         heap_alloc_result parameter that controls if the result should be
1233         g_malloc'd.
1235         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1236         array be g_malloc'd and properly document this public API function.
1238 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1240         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1241         remove METHOD_HEADER_TINY_FORMAT1.
1243         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1245         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1247         Both spec and MS uses only 2 bits to enumerate the kind of header.
1248         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1249         is superfluous, only used for tiny headers with odd code lengths.
1251         This change also make sure that mono doesn't wronly interpret bit 2
1252         of fat header flags, which is currently reserved.
1254 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1256         * metadata.c (do_mono_metadata_parse_type): Do error
1257         checking for element types. Don't abort if presented
1258         with a broken type kind.
1260 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1262         * metadata.c (mono_metadata_parse_method_signature_full):
1263         Gracefully fail bad vararg signatures.
1265 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1267         * profiler.c:
1268         * class.c: Fix warnings for uninitialized variables.
1270 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1272         * icall.c: Fix _NSGetEnviron method declaration warning.
1274 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1276         * icall.c:
1277         * reflection.c: Make bitwise checks explicit.
1279 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1281         * debug-helpers.c:
1282         * marshal.c: Fix printf warnings.
1284 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1286         * reflection.c (encode_cattr_value): Fix a warning.
1288 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1290         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1291         of array bounds.
1293 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1295         * loader.c (mono_method_signature): Don't assert on broken
1296         signature. Print a more useful error message.
1298 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1300         * loader.c (mono_method_get_marshal_info): Assert if
1301         signature is invalid. Bounds check stores to the
1302         mspecs array;
1304 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1306         * loader.c (field_from_memberref): Fix warning.
1308 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1310         * loader.c (mono_method_get_param_names): Check if signature
1311         is null. Don't store beyond the size of the name array.
1313 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1315         * loader.c (mono_get_method_constrained): Check if signature
1316         is null.
1318 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1320         * loader.c (mono_loader_set_error_bad_image): Improve
1321         error messages.
1323 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1325         * loader.c (mono_get_method_full): Convert an assertion
1326         into a loader error.
1328 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1330         * class-internals.h, class.c: Better naming and documentation.
1332 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1334         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1335         obj is NULL.
1337 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1339         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1340         parsing fails.
1342 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1344         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1345         errors with no class set.
1347         * loader.c (field_from_memberref): If the field signature is of the wrong
1348         type fail with a MissingFieldException instead of a BadImageException as
1349         this is the behavior observed on MS. 
1351 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1353         * loader.c (field_from_memberref): Don't crash if either the field
1354         signature or the typespec class are invalid.
1356 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1358         * verify.c (verifier_load_field): Don't allow field related
1359         ops to reference fields on generic type definition.
1361 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1363         * metadata-verify.c: Add new warning level for errors specified
1364         by ECMA 335 but that MS ignores.
1366         * metadata-verify.c (verify_method_table): Make compiler controled
1367         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
1368         this check is safe because the end result will only be some visibility
1369         exceptions been thrown.
1371 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1373         * verify.c (get_boxable_mono_type): Don't allow the
1374         use of the generic type definition on boxed type positions.
1376         Fixes #531237.
1378 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1380         * threadpool.c: Make sure no cross-domain references remain in
1381         ares_htable or the arrays that are thrown away when resizing.
1383 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1385         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
1386         list of classes for which we have to unregister reflection_info
1387         with the GC and which are not in the namespace cache.
1389         * reflection.c (mono_reflection_initialize_generic_parameter): Add
1390         the class to the list.
1392 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1394         * domain.c (mono_domain_free): Unregister the GC roots in
1395         MonoDomain.
1397 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1399         * reflection.c (mono_reflection_type_get_handle): Fix typo.
1401 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1403         * class.c: Add mono_class_get_field_from_name_full which does
1404         the same as mono_class_get_field_from_name but does check field
1405         signature as well.
1407         * class-internals.h: Export mono_class_get_field_from_name_full as
1408         part of the internal API.
1410         * loader.c (field_from_memberref): Search fields by name and signature
1411         as it's valid to have two fields with same name but different types.
1413         Fixes #528055.
1415 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
1417         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
1419         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
1421         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
1422         System.Type.
1424 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
1426         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
1428         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
1430 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1432         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
1433         to sgen-scan-object.h, which can be included and parameterized via
1434         macros.
1436         * Makefile.am: sgen-scan-object.h added.
1438 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1440         * gc.c: #define GC_dont_gc if we're compiling with SGen.
1442 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1444         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
1445         before clearing a domain in the GC.
1447 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1449         * exception.c (mono_exception_from_name_domain): Actually create
1450         the exception in the specified domain.
1452         * appdomain.c (mono_domain_create_appdomain_internal): Create the
1453         OutOfMemoryException a bit later so that the domain is inialized
1454         "enough" that it works.
1456 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1458         * threads.c (thread_cleanup): Clean up the cached_culture_info
1459         array to prevent cross-domain references.
1461 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
1463         * metadata.c: more documentation for MonoType accessors.
1465 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
1467         Fix incorrect size definitions where the tail array isn't a list
1468         of pointers
1469         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
1470         define size.
1471         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
1472         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
1473         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
1475 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1477         * reflection.h:
1478         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
1480 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1482         * metadata.c:
1483         * loader.c:
1484         * metadata-internals.h:
1485         * method-builder.c:
1486         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
1488 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1490         * cominterop.c:
1491         * metadata.c:
1492         * metadata.h:
1493         * loader.c:
1494         * marshal.c:
1495         * reflection.c: #define for sizeof in MonoType and
1496         MonoMethodSignature.
1498 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1500         * domain.c:
1501         * domain-internals.h: add and use #define's instead of sizeof()
1502         for MonoJitInfo and MonoJitInfoTable.
1504 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1506         * object.c:
1507         * class.h: use #define instead of sizeof() for MonoRemoteClass.
1509 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1511         * metadata.c:
1512         * metadata.h:
1513         * object.c:
1514         * class-internals.h:
1515         * generic-sharing.c:
1516         * marshal.c: use a #define instead of sizeof() for a few
1517         structures that use a zero-length array.
1519 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
1521         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
1522         to handle inflated generic methods.
1524         * appdomain.c: Bump corlib version.
1526         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
1527         instances.
1529         * reflection.c (fixup_method): Same
1531         * reflection.c (resolve_object): Same.
1533         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
1534         g_error and a decent message.
1536 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
1538         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
1539         from the object because it could not yet be available globally
1540         (it happens if the profiler tries to create a gchandle on the
1541         MonoThread object of a thread that is still registering itself
1542         with the runtime).
1544 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
1546         * reflection.c (mono_generic_class_get_object): Initialized the
1547         managed type arguments array.
1549         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
1551         * appdomain.c: Bump corlib version.
1553 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
1555         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
1556         #527902.
1558 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
1560         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1561         Avoid a crash if synch_cs is not set.
1562         
1563         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1564         Handle the case when the handle is 0.
1566         * appdomain.c: Bump corlib version.
1568 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
1570         * reflection.c (mono_type_get_object): Fix a warning.
1572 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1574         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
1575         descriptor here.  We assume it's already been computed.
1577         * generic-sharing.c (instantiate_other_info): Compute the GC
1578         descriptor for info type MONO_RGCTX_INFO_KLASS.
1580 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1582         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
1583         type, so don't use MONO_OBJECT_SETREF to set a field.
1585 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1587         * gc.c: We were missing one case where invoking a finalizer would
1588         not reset the domain.  Also, in the finalizer thread loop, assert
1589         that we're in the root domain.
1591 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1593         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
1594         if the type is not an array.
1596 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1598         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
1599         method bound to the declaring type of the method. Raise an exception
1600         if the type is not a generic param.
1602 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1604         * class.c (print_unimplemented_interface_method_info): Print the
1605         full type name.
1607         * class.c (mono_class_setup_vtable_general): When dealing with a
1608         generic instance first check if the generic type definition is
1609         not broken.
1611 2009-02-11 Tom Hindke <tom_hindle@sil.org>
1613         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
1615         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
1617         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
1619         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
1621         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
1623         Code is contributed under MIT/X11 license
1625 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
1627         * verify.c: Fix naming of stelem and ldelem.
1629 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1631         * generic-sharing.c: Replace the templates lock with the loader
1632         lock because of very hard to resolve deadlock issues.
1634 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
1636         * icall.c (ves_icall_Type_GetMethodsByName): Use 
1637         mono_class_get_vtable_size () instead of accessing klass->vtable_size
1638         directly. Fixes #525338.
1640         * class.c (mono_class_get_vtable_size): New helper function.
1642         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
1643         the field belongs to the type. Fixes #525733.
1645 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1647         * sgen-gc.c: When we stop a thread and its stack top is not within
1648         its allocated stack (because it's in an altstack signal handler),
1649         restart it and stop it again, until it is.
1651 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1653         * sgen-gc.c: Take a thread's stack top and registers from the
1654         sigcontext in the suspend signal handler.
1656         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
1657         stuff to sgen-archdep.h.
1659         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
1660         caller, because have code in sgen-archdep.h to acquire that data.
1662 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
1664         * profiler.c, profiler.h, profiler-private.h:
1665         Added support for keeping track of code chunks and buffers.
1667 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
1669         * metadata-verify.c: Fix endianness problems on decoding functions.
1670         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
1672 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1674         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
1675         schema for vectors and one dimension SZARRAY.
1677 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1679         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
1680         schema for vectors and one dimension SZARRAY.
1682 2009-07-27  Mark Probst  <mark.probst@gmail.com>
1684         * icall-def.h, thread-types.h, threads.c: New separate icalls for
1685         Interlocked.(Compare)Exchange with object arguments, which invoke
1686         write barriers.
1688 2009-07-26  Miguel de Icaza  <miguel@novell.com>
1690         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
1691         passed invalid arguments.   Fixes another crasher in the
1692         Silverlight test suite.
1694         * class.c (mono_class_array_element_size): Return 0 for the size
1695         of the class;  This fixes the crasher exposed by :
1697         typeof (void).MakeArrayType ();
1699         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
1700         if there is no method to dereference.    Put all the code that
1701         depends on this inside the if (method) block.
1703         This fixes the crasher exposed by Microsoft's Silvelright CLR test
1704         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
1706         With this change, we pass the test.
1707         
1708         * reflection.c (mono_reflection_sighelper_get_signature_local):
1709         Only dereference the assembly if it has been set.    Fixes a
1710         crasher exposed by #525328
1712 2009-07-25  Mark Probst  <mark.probst@gmail.com>
1714         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
1715         don't perform the store in mono_gc_wbarrier_generic_nostore().
1716         Remove the second argument (value), which is not needed.
1718 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
1720         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
1721         the build.
1723         * boehm-gc.c: Ditto.
1724         
1725 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1727         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
1728         not perform the store itself.  Introduce
1729         mono_gc_wbarrier_generic_nostore(), which is the same as
1730         mono_gc_wbarrier_generic_store(), except it doesn't perform the
1731         store.
1733 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1735         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
1736         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
1737         we still need the memcpy().
1739 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1741         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
1742         so that big arrays are handled correctly.  Always use
1743         safe_object_get_size() to calculate array object sizes, which
1744         takes bounds into account.
1746 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1748         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
1749         GC descriptor is computed before we use it.
1751 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1753         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
1754         write barrier if necessary.
1756 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1758         * icall-def.h, icall.c, thread-types.h: New separate icall for
1759         VolatileWrite(object&,object) that uses a write barrier.
1761         * console-unix.c, file-io.c, icall.c, threads.c: Use write
1762         barriers in icalls which write to "ref" or "out" arguments.
1764 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
1766         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
1767         handler in a separate icall, to reduce the size of the wrappers.
1769 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1771         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
1773 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1775         * metadata-verify.c (parse_field): Allow byref field.
1777         * metadata-verify.c (parse_locals_signature): Allow byref locals.
1779         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
1781 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1783         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
1784         Fixes #522784.
1786 2009-07-20  Robert Jordan  <robertj@gmx.net>
1788         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
1789         Fix invalid IL in valuetype handling (STOBJ must push the
1790         corresponding class). Fixes bug #523149.
1792         Code is contributed under MIT/X11 license.
1794 2009-07-20  Geoff Norton  <gnorton@novell.com>
1796         * gc.c: Use proper semaphores where available on posix and darwin.
1798 2009-07-19  Geoff Norton  <gnorton@novell.com>
1800         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
1802 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
1804         * refletion.c (is_sre_usertype): Change name to is_usertype and
1805         invert it's result so it returns true if the type is an user type
1806         and not the opposite.
1808         * reflection.c (is_*_type): Change all of those to use new macro
1809         check_corlib_type_cached that cached the type lookup so we don't
1810         need to do string comparisons all the type. Changed the signature
1811         to take a MonoClass instead.
1813         * reflection.c: Change mono_image_create_token and resolve_object
1814         to use is_sre_* functions.
1816 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1818         * sgen-gc.c: Check for writes to the stack in the managed
1819         wbarrier as well.
1821 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1823         * sgen-gc.c: When a thread is unregistered, don't free its remsets
1824         but put them on a list which is processed with the other thread's
1825         remsets.
1827 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1829         * sgen-gc.c: Fix and enable the internal allocator instead of
1830         using malloc/free (which causes deadlocks).
1832 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1834         * refletion.c: Fix builds with SRE disabled by adding a minimal
1835         implementation of mono_reflection_type_get_handle.
1837 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1839         * refletion.c: Make mono_reflection_type_get_handle non static.
1841         * object-internals.h: Export mono_reflection_type_get_handle.
1843         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
1844         unmanaged handle using mono_reflection_type_get_handle.
1846 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1848         * refletion.c: Replace all reads of MonoReflectionType::type with
1849         calls to mono_reflection_type_get_handle. Only the functions that
1850         deal with constructing TypeBuilder::type have not been changed
1851         because they have to deal with NULL values.
1853         This is a first step into supporting reflection types that don't
1854         map directly into their unmanaged counterpart.
1856 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1858         * metadata-verify.c (parse_locals_signature): Don't complain
1859         on signature with zero locals since MS generates it and doesn't
1860         bother with.
1862 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1864         * reflection.c (mono_image_get_array_token): Resolve return
1865         type using mono_reflection_type_get_handle.
1867         * reflection.c (mono_image_get_array_token): Resolve array method
1868         parent type using mono_reflection_type_get_handle.
1870 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
1872         * reflection.c (mono_image_basic_init): Applied patch from
1873         <Dax@daxxfiles.net>. Set the public key token from the assembly
1874         builder. Fixes #518909.
1876         * appdomain.c: Bump corlib version.
1878 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
1880         * class.c (mono_class_needs_cctor_run): Make this return false if
1881         the class has no cctor.
1883 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1885         * sgen-gc.c: When the minor GC needs to allocate a new section,
1886         invoke the major GC afterwards.
1888 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
1890         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
1891           Applying the window_style field to the SHELLEXECUTEINFO struct.
1893         Code is contributed under MIT/X11 license.
1895 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1897         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
1898         locking earlier.  Fix it in the managed allocator by making sure
1899         that no thread is stopped there before the GC runs.  If we do stop
1900         a thread there, we restart it and let it run a but, until it stops
1901         somewhere else.
1903         * gc-internal.h, gc.c: Function for getting the IP from a signal
1904         context via a function registered by mini.
1906 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
1908         * object-internals.h (MonoIntPtr): New structure describing a boxed
1909         IntPtr.
1911         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
1912         returns. Fixes #519953.
1914         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
1916 2009-07-09  Mark Probst  <mark.probst@gmail.com>
1918         * class-internals.h, generic-sharing.c: New RGCTX info type for
1919         getting a remoting invoke with check wrapper.
1921 2009-07-07  Geoff Norton  <gnorton@novell.com>
1923         * icall-def.h: Fix the enable-minimal build.
1925 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1927         * object-internals.h: Add MonoReflectionDerivedType.
1929         * reflection.c: Implement support for PointerType.
1930         Fixed tons of warnings.
1932 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1934         * object-internals.h: Add MonoReflectionByRefType.
1936         * reflection.c: Implement support for ByRefType.
1938 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1940         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
1942         * object-internals.h: Add MonoReflectionArrayType and
1943         mono_reflection_create_unmanaged_type.
1945         * reflection.c: Implement support for ArrayType.
1947 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1949         * metadata-verify.c (is_valid_method_header): Parse EH block
1950         flags correctly.
1952 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1954         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
1955         processing the disappearing links, and process disappearing links
1956         in a loop until no new objects are copied.
1958 2009-07-03  Mark Probst  <mark.probst@gmail.com>
1960         * object.c (handle_enum): Invoke the write barrier when copying
1961         value type instances.
1963         * sgen-gc.c: Register remsets for unmanaged write barriers only
1964         when the address written to is actually on the heap.  This makes
1965         set_value() in object.c work without requiring that the result be
1966         on the heap.
1968 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1970         The runtime wrappers are all bound to a given type that must
1971         exist in the same image. For regular images we use the <Module>
1972         type, which is required to exist for all images.
1974         The <Module> type can't be used for dynamic images because it
1975         might not exist at the time the wrapper is required, so we create
1976         a synthetic type to use instead.
1978         The current code works because of the 2 stage setup of MonoClass,
1979         but once this is gone it will no longer work.
1981         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
1983         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
1985         * object-internals.h: Export mono_image_set_wrappers_type icall
1986         as part of the internal API.
1988         * marshal.c (get_wrapper_target_class): If the image is dynamic,
1989         use MonoDynamicImage::wrappers_type instead of the <Module> type.
1991         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
1992         image wrappers_type to the provided value.
1994 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
1996         * appdomain.c (deregister_reflection_info_roots): No need
1997         to use the image lock here.
1999 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2001         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2003 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2005         * threads.c: Store the thread start argument in a hash table instead of
2006         registering it as a root, as libgc doesn't support unregistering roots
2007         under windows, leading to 'too many root sets' errors when many threads
2008         are created.
2010         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2011         shutdown, they can still be referenced by the other dying objects.
2012         Fixes #514506.
2014 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2016         * socket-io.c: DontLinger does not allow LingerOptions.
2018 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2020         * metadata-verify.c: The spec doesn't mention that it's possible to add
2021         custom attribute to a generic parameter. Fixed.
2023 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2025         * class.c (inflate_generic_type): Don't crash while trying to output a message
2026         on why we're aborting.
2028 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2030         * socket-io.c: DontLinger can take an int or a boolean too.
2032 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2034         * gc.c: check for a null argument to SuppressFinalize () and
2035         ReRegisterForFinalize ().
2037 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2039         * loader.c (method_from_methodspec): Call into the verifier to check
2040         the signature.
2042         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2044         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2045         part of the internal API.
2047 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2049         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2050         the signature.
2052         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2054         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2055         part of the internal API.
2057 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2059         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2060         the signature.
2062         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2063         blob verification.
2065         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2066         part of the internal API.
2068 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2070         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2071         when doing basic verification. 
2073         This check must be done since the runtime peeks into signatures in much
2074         more places than it does decoding so it makes sense to ensure that all
2075         pointers to blob objects are well formed.
2077 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2079         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2080         Use proper overflow dectection. Fix usage of it.
2082 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2084         * loader.c (field_from_memberref): Call into the verifier to check
2085         the signature.
2087         * loader.c (mono_method_get_signature_full): Same.
2089         * loader.c (method_from_memberref): Same.
2091         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2093         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2094         part of the internal API.
2096 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2098         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2099         or unloaded, still return an AsyncResult, but don't add it to the
2100         threadpool.
2102 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2104         * threads.c: fix missing colon when DEBUG is defined.
2106 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2108         * threadpool.c: Don't add new calls to a threadpool if the domain
2109         of the call is unloading or unloaded.  When dequeuing a job, null
2110         the reference in the queue.
2112 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2114         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2115         generation if an object was moved.
2117 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2119         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2120           parameters of type SAFEARRAY[VARIANT].
2122         * reflection.c (encode_marshal_blob): Properly generate element type
2123           (SafeArraySubType marshal attribute option).
2125         Code is contributed under MIT/X11 license.
2127 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2129         * reflection.c: in mono_method_clear_object () really ensure all the
2130         objects are removed.
2132 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2134         * loader.c (mono_method_signature): Call into the verifier to check
2135         the method signature.
2137         * metadata-verify.c (verify_method_table): Move signature verification
2138         to verify_method_table_full.
2140         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2142         * verify-internals.h: Export mono_verifier_verify_method_signature as
2143         part of the internal API.
2145 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2147         * loader.c (mono_method_get_header): Call into the verifier to
2148         check the method header.
2150         * metadata-verify.c: Add mono_verifier_verify_method_header.
2152         * verify-internals.h: Export mono_verifier_verify_method_header as
2153         part of the internal API.
2155 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2157         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2158         check the field signature. Replace an assert with an explicit check.
2160         * class.c (mono_class_setup_fields): Call into the verifier to check
2161         the field signature.
2163         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2165         * verify-internals.h: Export mono_verifier_verify_field_signature as
2166         part of the internal API.
2168 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2170         * class.c (mono_class_find_enum_basetype): Simplify this function
2171         by moving code outside of the loop and not decoding static fields.
2173 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2175         * metadata-verify.c (verify_typedef_table): Check the extends
2176         token here. Move to here a flags check from verify_typedef_table_full.
2178 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2180         * metadata-verify.c (is_valid_method_header): Fix a warning.
2182         * metadata-internals.h (MonoImage): Remove the unused 
2183         static_rgctx_invoke_wrapper_cache.
2185         * image.c marshal.c: Ditto.
2187 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2189         * image.c (do_mono_image_load): Enable table data verification.
2191 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2193         * metadata-verify.c (is_valid_constant): Fix nullref check.
2195 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2197         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2199 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2201         * sgen-gc.c: Managed allocation with pthreads TLS.
2203         * threads.c, threads-types.h: Functions for the JIT to tell the
2204         runtime whether it supports the MONO_TLS opcode.
2206 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2208         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2209         without methods.
2211 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2213         * metadata-verify.c (is_valid_constant): Fix the string length check.
2214         Use safe overflow checking. Add decent error messages.
2216 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2218         * metadata-verify.c: Move remaininh blob checks to the offline
2219         verification path.
2221 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2223         * metadata-verify.c: Move more blob checks to the offline verification
2224         path.
2226 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2228         * object-internals.h : Adding interrupt_on_stop field.
2230         * threads.c (mono_thread_request_interruption) : On Windows exit the
2231           thread if interrupt_on_stop is set.
2233         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2234          Removing old interrupt logic and setting the interrupt_on_stop for the
2235          thread when calling accept.
2237         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2238          setting the interrupt_on_stop for the thread when calling accept.
2240         Contributed under MIT/X11 license.
2242 2009-06-20  Martin Baulig  <martin@ximian.com>
2244         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2246 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2248         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2249         running in no-exec mode.
2251 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2253         * metadata-verify.c (verify_method_table): Move header
2254         checking to verify_method_table_full.
2256         * metata-verify.c (mono_verifier_verify_full_table_data):
2257         Call verify_method_table_full.
2259 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2261         * metadata-verify.c (verify_field_table): Move signature
2262         checking to verify_field_table_full.
2264         * metata-verify.c (mono_verifier_verify_full_table_data):
2265         Call verify_field_table_full.
2267 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2269         * metadata-verify.c (verify_typedef_table): Move remaining
2270         stuff to verify_typedef_table_full.
2272 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2274         * metadata-verify.c: Kill is_corlib from VerifyContext.
2275         It is only used by the offline mode.
2276         So we better remove it from the runtime path.
2278 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2280         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2281         function that perform the offline metadata verification steps.
2283         * metadata-verify.c (verify_typedef_table): Move some checks to
2284         verify_typedef_table_full and make it been called by new function
2285         mono_verifier_verify_full_table_data.
2287         * pedump.c: Call mono_verifier_verify_full_table_data.
2289         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2290         part of the internal API.
2292 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2294         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2295         check.
2297         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2298         flags bits. SupportLastError was confused as bit 7 instead of 6.
2300         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2301         to check against the module ref table instead of module.
2303         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2305         * pedump.c: Call mono_image_load_names.
2307 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2309         * image.c: Extract mono_image_load_names from do_mono_image_load.
2311         * metadata-internals.h: Export mono_image_load_names as part of
2312         the internal API.
2313         
2314 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2316         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2317         first, as it could reference data in the other caches.
2319 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2321         * metadata-verify.c: Finished with method header verification.
2323 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2325         * metadata-verify.c: Added more header verification code.
2326         Now only EH clauses are missing.
2328 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2330         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2331         for return values.
2333 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2335         * metadata-verify.c: Initial method header verification.
2337 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2339         * metadata-verify.c (verify_import_table): The IAT contents
2340         might end been patched by the windows DL when running with
2341         coree enabled.
2343 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2345         * class.c (mono_class_from_typeref): If the enclosing type is not
2346         found return null instead of crashing. Fixes #508487.
2348 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
2350         * normalization-tables.h : updated to the latest unicode charcter
2351           data.
2352         * appdomain.c : bump corlib version.
2354 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
2356         * class.c (mono_class_from_name): Fix support for assembly references
2357         in the EXPORTEDTYPE table. Fixes #511704.
2359 2009-06-13  Geoff Norton  <gnorton@novell.com>
2361         * domain.c: Ensure that mono_domain_assembly_open actually opens the
2362         assembly in the target domain.
2364 2009-06-12  Robert Jordan  <robertj@gmx.net>
2366         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
2367         because "this" of the managed signature has become an
2368         ordinary parameter in the unmanaged signature.
2370 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
2372         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
2373         field for owner-less generic containers.
2375         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
2376         image field of the owner-less generic containers created here.
2378         * metadata.c (mono_metadata_load_generic_params): Ditto, the
2379         contain is ownerless until the caller sets its owner.
2381         * metadata.c (type_in_image): Handle owner-less generic containers
2382         correctly.
2383         
2384 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2386         * image.c (mono_image_close): Support debug_assembly_unload for
2387         dynamic images too.
2389 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
2391         * class.c: Fix some typos in comments.
2393 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2395         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
2397         * threads.c (mono_thread_execute_interruption): Avoid creating the
2398         abort exception object while holding the synch_cs lock.
2400 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2402         * metadata-verify.c: Verify basic cattr content.
2404 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2406         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
2407         nested types.
2408         
2409         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
2410         support for nested types. Fixes #511704.
2412 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2414         * metadata-verify.c: Verify methodspec signatures.
2416 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2418         * metadata-verify.c: Verify typespec signatures.
2420 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2422         * metadata.c (free_inflated_method): Call 
2423         mono_marshal_free_inflated_wrappers (), which was missed earlier.
2425 2009-06-08  Miguel de Icaza  <miguel@novell.com>
2427         * mono-config.c: Small change to report the PPC64/ILP32 model.
2429 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2431         * metadata-verify.c (parse_type): Check szarray.
2433 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2435         * metadata-verify.c (parse_type): Check fnptr.
2437 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2439         * metadata-verify.c (parse_type): Check generic instances.
2441 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2443         * metadata-verify.c (parse_type): Check array shape.
2445 2009-06-05  Robert Jordan  <robertj@gmx.net>
2447         * class.c (mono_class_create_from_typedef): Check only for
2448         mscorlib's System.Array.
2450 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2452         * metadata-verify.c (parse_type): Check pointer, class/valuetype
2453         and generic params. 
2455         * metadata-verify.c (parse_field): Check the signature.
2457 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2459         * metadata-verify.c: Implement locals signature check.
2461 2009-06-04  Marek Safar  <marek.safar@gmail.com>
2463         * domain.c: Add .NET 4.0 Beta 1 version.
2465 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
2467         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
2468           For QueryInterface on CCWs consider the base class
2469           interfaces as well.
2471         Code is contributed under MIT/X11 license.
2473 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2475         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
2477         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
2478         used.
2480         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2481         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
2483         * generic-sharing.c (inflate_other_data): Ditto.
2484         
2485 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2487         * metadata-verify.c: Implement property signature check.
2489 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2491         * sgen-gc.h: Register saving support for PPC.
2493 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2495         * sgen-gc.c: Fixed a pthread TLS screwup.
2497 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2499         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
2500         supported.
2502 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2504         * sgen-gc.c: Disable TLA and managed allocation if the __thread
2505         keyword is not supported.
2507 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2509         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
2510         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
2511         the inflated method is freed. Fixes #508389.
2513         The code is contributed under the MIT/X11 license.
2514         
2515 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2517         * marshal.c (get_wrapper_target_class): New helper function.
2518         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
2519         the <Module> class of the image. Fixes #509049.
2521 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2523         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
2524         Check if the thread was interrupted and proccess it straight away.
2525         Makes abortion much more responsive.
2527 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2529         * threads.c (mono_thread_execute_interruption): Use atomic cas with
2530         MonoThread::interruption_requested to match it's counterpart.
2532         Fixes a hang in abort-stress-1 on a 2 core x86.
2534         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2535         Fix warning.
2537 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2539         Change MonoImage::name_cache to be protected by the image lock
2540         instead of the loader lock.
2542         * appdomain.c (deregister_reflection_info_roots): Protect access
2543         to name_cache.
2545         * class.c (mono_image_init_name_cache): Change from the loader lock
2546         to the image lock. Check if the cache wasn't already created.
2548         * class.c: Change from the loader to the image lock.
2550         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
2551         the code to hold the image lock while iterating over name_cache and
2552         not go into mono_array_new holding it.
2554         * metadata-internals.h: Add a comment about this change.
2556 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2558         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2559         Under the 2.0 profile raise the loader error.
2561         Fixes #508532.
2563 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2565         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
2566         of ldind opcode for generic instances so we don't fail for direct wrappers.
2567         This only affect direct calls.
2569 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2571         * reflection.c (create_dynamic_mono_image): Fix warnings.
2573         * generic-sharing.c (other_info_equal): Ditto.
2574         
2575 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2577         * metadata-verify.c: Implement field signature check.
2579 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2581         * metadata-verify.c: Implement standalone signature check.
2583 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2585         * metadata-verify.c: Implement methodref signature check.
2587 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2589         * object-internals.h (MonoRuntimeCallbacks): New structure containing
2590         callbacks supplied by the runtime.
2592         * object.c (mono_install_callbacks): New internal function to install
2593         the callbacks.
2595         * object.c (mono_create_ftnptr): Move the implementation of this to
2596         mini/.
2598         * object.c (mono_get_addr_from_ftnptr): Ditto.  
2600 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2602         * metadata-verify.c (parse_return_type): Proper byref check.
2603         * metadata-verify.c (is_valid_method_signature): Check for zero arity
2604         generic signatures and method params.
2606 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2608         * metadata-verify.c (decode_signature_header): Fix bounds check.
2610         * metadata-verify.c (parse_custom_mods): Check custom mods.
2612         * metadata-verify.c (parse_type): Do initial basic verification
2613         of valid values.
2614         
2615         * metadata-verify.c (is_valid_method_signature): Parse the generic
2616         param count.
2618 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2620         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
2621         discarded based on their most specific definition so we set the method_slots
2622         array before checking if the method is acceptable or not.
2624         Fixes #506757.
2626 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2628         * icall.c: Free the old array when resizing a mono_ptr_array.
2630 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2632         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
2633         for the hashes whose keys are managed objects.
2635 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2637         * object-internals.h, threads.c: Set the execution context on
2638         thread start here, not in corlib.
2640         * appdomain.c: Bump corlib version.
2642 2009-05-27  Martin Baulig  <martin@ximian.com>
2644         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
2645         if `_mono_debug_using_mono_debugger' is set to make things work
2646         properly when embedding Mono.
2648 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2650         * class.c (mono_class_setup_fields): Don't mark simd types as having
2651         16 bytes alignment as the whole runtime doesn't support.
2653 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2655         * metadata-verify.c (safe_read): Use endian safe read macros.
2657 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2659         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
2660         it is read-only when using full aot.
2662 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2664         * metadata-verify.c (is_valid_method_signature): Verify parts
2665         of the return type. Provide an error message in case of failure.
2667 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2669         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
2671 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2673         * metadata-verify.c: Include the size prefix in the bounds check.
2675 2009-05-22  Miguel de Icaza  <miguel@novell.com>
2677         * icall.c: Remove warnings.
2679         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
2680         prevent auto-detection based on GCC defines.
2682         Add PS3
2684         * metadata-verify.c: Do not include signal.h
2686         * generic-sharing.c, marshal.c: Add returns to avoid some warning
2687         messages.  Not sure why the g_assert_not_reached is not enough to
2688         quiet the compiler.
2689         
2691         * appdomain.c: Remove code that is not used when
2692         DISABLE_SHADOW_COPY is set.
2694         * image.c: use g_getenv
2696 2009-05-21  Miguel de Icaza  <miguel@novell.com>
2698         * reflection.c: Remove code that it not used with
2699         DISABLE_REFLECTION_EMIT is defined.
2701 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2703         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
2704         invoke wrappers.
2706 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2708         * socket-io.c
2709         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
2710         the ifdef here and instead put that on io-layer
2712 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2714         * metadata-verify.c: Verify the generic param constraint table.
2716 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2718         * metadata-verify.c (verify_generic_param_table): Fix
2719         thinko on the valid flags bits for generic params.
2721 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2723         * metadata-verify.c: Verify the methodspec table.
2725 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2727         * metadata-verify.c: Verify the generic param table.
2729 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2731         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
2733 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2735         * sgen-gc.c: Use generation enum more consistently and use the
2736         correct generation in mono_gc_register_for_finalization().
2738 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2740         * metadata-verify.c: Verify the nested class table.
2742 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2744         * metadata-verify.c: Verify the manifest resource table.
2746 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
2748         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
2750 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2752         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
2753         wrappers, this is now done in the JIT.
2754         
2755         * class.c (mono_set_generic_sharing_supported): New internal function.
2756         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
2758 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2760         * metadata-verify.c: Verify the exported type table.
2762 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2764         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
2766 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2768         * metadata-verify.c: Verify the file table.
2770 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2772         * metadata-verify.c (verify_assembly_table): Fix an error message.
2774         * metadata-verify.c: Verify the assemblyref table.
2776 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2778         * metadata-verify.c (verify_assembly_table): Fix the valid
2779         bits mask for flags.
2781 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2783         * debug-helpers.c (mono_method_full_name): Print generic parameters of
2784         generic methods as well.
2786 2009-05-15  Geoff Norton  <gnorton@novell.com>
2788         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
2789         use-case and is significantly more performant than the wapi layer.
2791 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2793         * metadata-verify.c: Verify the assembly table.
2795 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2797         * metadata-verify.c: Fix rows limit check.
2799 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2801         * metadata-verify.c: Verify the fieldrva table.
2803 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2805         * sgen.c: Speed up weak links and finalizers by grouping them by
2806         generation.
2808 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2810         * marshal.c (delegate_hash_table_add): When overwriting an entry,
2811         free the old GCHandle (only applies to SGen).
2813 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
2815         * loader.c (mono_get_method_from_token): Avoid the expensive call to
2816         mono_metadata_load_generic_params () for non-generic methods.
2818 2009-05-12  Mark Probst  <mark.probst@gmail.com>
2820         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
2821         New function for returning a monitor's weak link if it has one.
2823         * sgen-gc.c: Remove an object's monitor's weak link (if it has
2824         one) when clearing a domain.  These can still be around because
2825         the object might not have been collected.
2827 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
2829         * gc.c: Fix a warning.
2831 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
2833         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
2834         prevous wait that resulted in a deadlock on Windows when initializing
2835         the runtime form DllMain. Also results in improved startup time.
2836         (finalizer_thread): Get rid of thread_started_event.
2837         * threads.c, threads-types.h (mono_thread_create_internal): Return the
2838         resulting MonoThread.
2840         Contributed under MIT/X11 license.
2842 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
2844         * metadata-verify.c: Verify the implmap table.
2845         Don't require that #US and #Strings be present.
2847 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
2849         * security-core-clr.c: Delegate checks are done at creation time,
2850         not a invocation time. Fix exception for Telerik Silverlight demo
2852 2009-05-11  Mark Probst  <mark.probst@gmail.com>
2854         * sgen-gc.c (need_remove_object_for_domain): Remove the special
2855         case for the Thread class.
2857         * threads.c: Do clean-up of abort exception/state in
2858         thread_cleanup() instead of Thread.free_internal().  Also clean up
2859         current_appcontext.  The reason we have to do that is because
2860         those references might point into another domain and if that
2861         domain is unloaded before the thread is finalized, they point to
2862         invalid data.
2864 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
2866         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
2867         stub signatures.
2868         
2869         Contributed unter MIT/X11 license.
2871 2009-05-09  Miguel de Icaza  <miguel@novell.com>
2873         * verify.c, metadata-verifier.c: Add support for disabling the
2874         verifier in some builds.
2876         [ Sorry, my previous commit accidentally commited some work in
2877         progress ]
2879 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2881         * class.c (mono_class_setup_fields): Set class->field.first for
2882         generic instances.
2884 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2886         * metadata-verify.c: Verify the typespec table.
2888 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2890         * metadata-verify.c: Verify the module table.
2892 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2894         * metadata-verify.c: Verify the methodimpl table.
2896 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2898         * metadata-verify.c: Verify the property table.
2900 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2902         * debug-helpers.c (mono_method_desc_match): Add support for generic
2903         glob patterns.
2905 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
2907         * metadata-verify.c: Verify the propertymap table.
2909 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
2911         * metadata-verify.c: Verify the event table.
2913         * metadata-verify.c (search_sorted_table): Fix offset
2914         calculation.
2916 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
2918         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
2920 2009-05-01  Mark Probst  <mark.probst@gmail.com>
2922         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
2923         because mono_delegate_free_ftnptr() needs it.
2925 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2927         * metadata-verify.c: Verify the eventmap table.
2929 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2931         * metadata-verify.c: Verify the standalonesig table.
2933 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2935         * metadata-verify.c: Verify the field layout table.
2937 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2939         * class.c (mono_type_get_name_recurse): Don't crash
2940         for ownerless generic params.
2942         * debug-helpers.c (mono_type_get_desc): Correct the format
2943         for ownerless generic params.
2945 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2947         * metadata-verify.c: Verify the class layout table.
2949 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2951         * metadata-verify.c: Verify the decl security table.
2953 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2955         * domain.c (mono_domain_set_internal_with_options): Don't do
2956         anything if the old domain is the same as the old one.  Fixes
2957         #499326.
2959 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2961         * appdomain.c: Deregister the reflection_info roots when unloading
2962         a domain.
2964         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
2965         memory allocated by a domain and frees its disappearing links.
2967         * boehm-gc.c, null-gc.c: Empty implementation of
2968         mono_gc_clear_domain().
2970 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2972         * appdomain.c (clear_cached_vtable): Free the static fields memory
2973         block.
2975 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2977         * gc.c: Set the correct domain when invoking finalizers.
2979         * appdomain.c: Set the correct domain when creating threads.
2981 2009-04-30  Mark Probst  <mark.probst@gmail.com>
2983         * sgen-gc.c: Fix skip size for vectors.
2985 2009-05-03  Martin Baulig  <martin@ximian.com>
2987         * mono-debug-debugger.c
2988         (mono_debugger_check_breakpoints): Check class init handlers even
2989         if we don't have any method load handers.
2991 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
2993         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
2994         returning refonly assemblies if refonly is FALSE. Fixes #499013.
2996 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
2998         * metadata-verify.c: Verify the field marshal table.
3000 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3002         * metadata-verify.c: Verify the custom attribute table.
3004 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3006         * metadata-verify.c: Verify the constant table.
3008 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3010         * metadata-verify.c: Verify the memberef table.
3012 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3014         * metadata-verify.c (get_coded_index_token): Remove
3015         dead argument.
3017 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3019         * metadata-verify.c: Verify the interfaceimpl table.
3021 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3023         * verify.c: Improve error message.
3025         * debug-helpers.c (mono_type_get_desc): Harden the code that
3026         deals with VAR and MVAR.
3028 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3030         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3031         part of #498692.
3033 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3035         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3036         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3038 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3040         * security-core-clr.c: Avoid redundant checks for platform code, 
3041         e.g. check for method and for class (very common) and check
3042         for class and outer class (less common)...
3044 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3046         * reflection.c: Avoid returning random cattrs for synthetic methods.
3047         Fixes #498545.
3049 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3051         * assembly.c: assemblies in the GAC should never be shadow-copied.
3053 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3055         * domain.c, domain-internals.h: Disable
3056         track_resurrection_{objects,handles}_hash in MonoDomain if using
3057         SGen.
3059 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3061         * metadata-verify.c: Verify the param table.
3063 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3065         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3066         MethodList.
3068         * metadata-verify.c (verify_method_table): Proper check the ParamList
3069         field.
3071 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3073         * metadata-verify.c (verify_method_table): Check for runtime
3074         implemented functions such as delegate .ctors. Remove spurious
3075         printf.
3076         
3077 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3079         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3081 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3083         Don't allocate MonoGenericInfo for ownerless generic params.
3084         * class-internals.h (MonoGenericParam::info): Move field to ...
3085         (MonoGenericParamFull): ... this.  New struct.
3086         (MonoGenericContainer::type_params): Change type to
3087         MonoGenericParamFull.
3088         (MonoGenericParam, MonoGenericContainer): Update accessors.
3089         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3090         'info' field for ownerless generic param.
3091         (mono_metadata_load_generic_params): Update to changes.
3092         * reflection.c (mono_reflection_create_generic_class): Likewise.
3093         (reflection_methodbuilder_to_mono_method): Likewise.
3094         (mono_reflection_initialize_generic_parameter): Likewise.
3096 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3098         Don't use MonoGenericParamInfo for ownerless generic params.
3099         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3100         use ParamInfo class at all.
3101         (mono_class_from_generic_parameter): Use them.
3102         (make_generic_param_class): Fix a couple of instances where 'pinfo
3103         == NULL' wasn't handle.
3105 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3107         * class.c (make_generic_param_class): Carve out of ...
3108         (mono_class_from_generic_parameter): ... here.
3110 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3112         Simplify mono_class_from_generic_parameter
3113         * class-internals.h (MonoGenericParamInfo::token): New field.
3114         * metadata.c (mono_metadata_load_generic_params): Initialize it
3115         from metadata.
3116         * class.c (mono_class_from_generic_parameter): Use it instead of
3117         searching through metadata.
3119 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3121         * metadata-verify.c: Add verification of the method table.
3123 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3125         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3126         Delegate::Invoke optimization.
3128 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3130         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3131         string returned by get_shadow_assembly_location_base.
3133         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3134         about caller's ownership.
3136 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3138         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3139         reflection memory on domain unload.
3141         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3142         reflection cleanup code do it.
3144         * domain-internals.h: Add mono_reflection_cleanup_domain.
3146         This fixes a memory leak for managed mirrors of reflection objects
3147         on domain unload. 
3149 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3151         * metadata-verify.c: Implement more verification of the field table.
3153 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3155         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3156         doesn't try to parse the input assembly, which can be broken.
3158 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3160         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3161         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3162         by using the lowest bit in the link to store whether the link is
3163         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3165 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3167         * Makefile.am: Split the console support in platform specific code
3168         and put together a framework for making this easy in the future so
3169         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3171 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3173         * pedump.c: Fix a warning.
3175 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3177         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3178         mono_class_from_mono_type to avoid bad interactions with the dual representation
3179         of the generic type definition.
3181 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3183         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3184         get the MonoClass for the call context type as it might be a generic
3185         instance.
3187         Fixes #491483.
3189 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3191         * object-internals.h: The Thread object has no execution_context
3192         member anymore.
3194         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3195         the execution context.
3197         * appdomain.c: Bump corlib version.
3199 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3201         * verify.c (do_newobj): Improve error message.
3203 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3205         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3206         is nested in the filter block.
3208         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3209         block is not fully nested.
3211         Fixes #495656.
3213 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3215         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3216         not MonoType to check for equality of valuetypes as the generic type
3217         definition allows for two different encodings: the generic type definition
3218         class or a generic instance over the GTD arguments.
3220         Fixes #496175.
3222 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3224         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3226         * verify.c (do_initobj): Improve error message.
3228 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3230         * metadata-verify.c: Enable pe verification as the issue with #496453
3231         is that the authenticode data directory have a different unspecified
3232         format. Ignore it for now.
3234         * pedump.c: Run the metadata verifier together with the IL verifier.
3236         Fixes ##496453.
3238 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3240         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3242 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3244         * class.c (can_access_type): Check visibility against
3245         the element type for pointers and arrays.
3247         Fixes #496150.
3249 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3251         * metadata-verify.c: Fix cli and table verification to use information
3252         from the MonoImage. A lot of duplicated code got killed.
3254 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3257         This patch starts to integrate the metadata verifier with the runtime code.
3259         This patch causes major regression in functionality for the metadata verifier
3260         as cli and table verification are disabled since they require to be ported to
3261         use MonoImage information.
3263         * image.c (do_mono_image_load): Split the code in this function
3264         into mono_image_load_pe_data and mono_image_load_cli_data.
3265         Add     care_about_pecoff parameter to not load pecoff data.
3266         Call into the metadata verifier for pecoff and cli verification.
3268         * image.c (mono_image_open_raw): New function that doesn't perform
3269         any parsing of the image contents.
3270         
3271         The reason for the 3 new functions is to give pedump better control
3272         into the interaction with the verifier.
3274         * metadata-internals.h: Add new functions from image.c as part of the
3275         internal mono API.
3277         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3278         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3279         to make those functions work together with the runtime.
3281         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3282         true if the image needs to be verified.
3284         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3286         * pedump.c: Use new metadata verifier API.
3288 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3290         * object.c (mono_install_vtable_trampoline): Make this receive a
3291         trampoline creation function instead of trampoline, allowing the JIT
3292         to use a different trampoline for each vtable.
3294 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3296         * object.c (mono_raise_exception): Don't reset the thread abort
3297         exception state here.
3299 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3301         * icall-def.h: New icall for getting the thread abort exception
3302         state for a thread.
3304         * object.c, thread.c, object-internals.h: A thread's abort
3305         exception state is now a GC handle.  To get the object it stands
3306         for, we must move it into the current app domain, if it's
3307         different than the one where it originated from.
3309         * appdomain.c: Bump corlib version.
3311         * domain.c, domain-internals.h: New function for setting the
3312         domain and migrate the thread abort exception or not.
3314 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3316         * metadata-verify.c: Add initial verification of the
3317         field table.
3319 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3321         * metadata-verify.c: Add a macro to conditionally enable
3322         dumping of verification information. Add  make_coded_token
3323         and search_sorted_table to enable search sorted tables
3324         by a given coded token.
3326 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3328         * metadata-verify.c: Add array mapping from table index
3329         to description offset. Add get_col_offset and get_col_size
3330         functions.
3332 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3334         * metadata-verify.c: Add remaining table descriptions offsets.
3335         Add remaining coded index descriptions.
3337 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3339         * metadata-verify.c: Fixed constant table description.
3340         Fixed calculation of HasCustomAttribute coded index size.
3341         Fixed calculation of size for many table indexes. 
3343 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3345         * pedump.c (dump_metadata): Dump table offset instead
3346         of useless pointer in memory.
3348 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3350         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
3352 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3354         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
3355         a missing of for interface types.
3357 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3359         * metadata-verify.c (verify_pe_optional_header): Add comment of why
3360         the code is commented.
3362         * metadata-verify.c (verify_resources_table): Remove spurious printf
3363         and don't fail if there are unmanaged resources. Gmcs generates a useless
3364         one     for all assemblies - I bet it's some MS compatibility junk.
3366 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3368         * metadata-verify.c (verify_typedef_table): Verify the extends field.
3370         * metadata-verify.c (mono_image_verify): Add a is_corlib.
3372         * verify-internals.h: Same.
3374         * pedump.c: Fix for mono_image_verify new signature.
3376 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3378         * metadata-verify.c (verify_typedef_table): Verify for some invalid
3379         flags combinations.
3381 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3383         * metadata-verify.c (verify_module_table): Ignore the generation field.
3385 2009-04-15  Martin Baulig  <martin@ximian.com>
3387         * debug-mono-symfile.c
3388         (mono_debug_symfile_lookup_location): Don't print a warning for
3389         unknown extended opcodes if they're within 0x40 and 0x7f.
3391 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
3393         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
3394         invoke signatures returning an enum. Fixes #494847.
3396 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3398         * metadata-verify.c: Initial code to verify the typedef table.
3400 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3402         * verify.c (mono_method_verify): Don't fail if an unconditional branch
3403         with non empty stack happens before the beginning of a try block.
3405         Fixes #494812.
3407 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3409         * metadata-verify.c: Verify typename and typenamespace fields of
3410         the typeref table.
3412 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3414         * metadata-verify.c: Initial code to verify the typeref table.
3416 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3418         * verify.c (verify_delegate_compatibility): Fix error message.
3420 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
3422         * security-core-clr.c: Fix typo
3424 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3426         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
3427         a MonoGHashTable to keep its values alive.
3428         (emit_marshal_boolean): Fix a warning.
3430 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3432         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
3433         not have any interface configured for IPv4/IPv6.
3435 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3437         * assembly.c: fix typo in error message.
3439 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3441         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
3442         allocating the location holding the this argument to prevent
3443         'too many root sets' errors.
3445         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
3446         to mark fields as special static.
3447         (mono_field_static_get_value): Handle special static fields.
3448         (mono_field_static_set_value): Ditto.
3450         * class-internals.h (struct _MonoClassField): Document this.
3452 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3454         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
3455           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
3456           case.  This will handle when managed code returns null to native code.
3458         Code is contributed under MIT/X11 license.
3460 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3462         * object.c (build_imt_slots): Changing a free to a g_free to match
3463           the g_malloc0 in add_imt_builder_entry that allocated this memory.
3465         Code is contributed under MIT/X11 license.
3467 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3469         * marshal.c (emit_marshal_boolean): Adding code to ensure that
3470           the correct TRUE value is passed through the marshaling layer.
3472         Code is contributed under MIT/X11 license.
3474 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3476         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
3477         correctly. Fixes #492330.
3478         
3479         * marshal.c: Fix the embedding of object pointers into JITted code in
3480         the native-to-managed wrappers by allocating some GC tracked memory, and
3481         embedding the address of that.
3483 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3485         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
3486         pointers into the vtable.
3488 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3490         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
3492         * verify.c (verify_ldftn_delegate): Improve error message.
3494 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3496         * reflection.c (my_mono_class_from_mono_type): Remove.
3498 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3500         Prepare to reduce memory usage of owner-less generic parameters (1/n)
3501         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
3502         and constraints fields into ...
3503         (MonoGenericParamInfo): ... this.
3504         (mono_generic_param_info, mono_generic_container_get_param_info):
3505         New accessors.
3506         * class.c, debug-helpers.c, icall.c: Update to changes.
3507         * metadata.c, reflection.c, verify.c: Likewise.
3509 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3511         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
3513         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
3514         
3515         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
3516         booleans with sbytes.
3518 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3520         * class.c (can_access_instantiation): Verify accesibility of element types
3521         for arrays and pointers.
3523         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
3525         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
3527         Fixes #493068.
3529 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3531         * verify.c (do_invoke_method): Improve error messages.
3533 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3535         * verify.c:  Fixing the MSVC build.
3537         Code is contributed under MIT/X11 license.
3539 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3541         * security-core-clr.c: Simplify get_reflection_caller not to call
3542         mono_method_get_last_managed (another stack walk) and adjust the
3543         callers to handle a (should not happen) NULL return value.
3545 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3547         Add accessors to some MonoGenericParam fields
3548         * class-internals.h (mono_generic_param_owner): New accessor.
3549         (mono_generic_param_num): Likewise.
3550         (mono_type_get_generic_param_owner): New helper.
3551         (mono_type_get_generic_param_num): New helper.
3552         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
3554 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3556         * class-internals.h (mono_generic_container_get_param): New wrapper.
3557         * class.c, icall.c, metadata.c, verify.c: Use it.
3559 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3561         Fix gtest-252.cs
3562         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
3563         the standard case/loop.  In particular, don't complain about
3564         references to generic type definitions.
3566 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
3568         * debug-helpers.c (dis_one): Decode string arguments.
3570 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3572         * pedump.c (dump_verify_info): Dump type name correctly.
3574 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3576         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
3577         are larger than code size.
3579         This can happen in valid code if the try/catch block is not followed by any instruction
3580         and do a backward branch on the leave instruction.
3582         Fixes #492494.
3584 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
3586         * security-core-clr.c: Fix typo while comparing second method names
3587         in can_avoid_corlib_reflection_delegate_optimization
3589 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3591         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
3593         Fixes #487738.
3595 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3597         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
3598         a MVAR using a class context.
3600         Fixes #490335.
3602 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3604         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
3606         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
3608         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
3609         functions supplied by the JIT for the SGEN GC.
3611         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
3612         
3613 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3615         monitor.c (mono_monitor_try_enter_internal):
3616         Added calls to profile monitor contentions.
3617         Also duplicated a small piece of code (the "get the monitor" logic)
3618         from the fast path to the slow path, and changed the relevant goto
3619         statements, so that monitor acquisition events can be emitted from the
3620         slow path (this is by Paolo Molaro).
3622 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3624         * profiler.c, profiler.h, profiler-private.h:
3625         Added support for profiling monitor contentions.
3627 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3629         * metadata-verify.c: Verify the modules table.
3631 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
3633         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
3634         using the context of the method been verifier and not of the method been called.
3636         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
3637         safely inflate generic types. 
3639 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3641         * security-core-clr.c: Change the strategy for checking the 
3642         "reflection using delegates optimization" to avoid unneeded 
3643         attributes in multiple class libraries.
3645 2009-04-02  Mark Probst  <mark.probst@gmail.com>
3647         * sgen-gc.c: Remove object element in the disappearing link struct
3648         by storing the object pointer in the link.
3650 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3652         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
3654 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3656         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
3658         * verify.c (mono_method_verify): Do proper bounds checking of exception
3659         clause ranges.
3661 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3663         * loader.c (mono_field_from_token): Don't crash if the field parent could
3664         not be decoded.
3666 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3668         * sgen-gc.c: Execute critical finalizers after ordinary
3669         finalizers.
3671         * class-internals.h, domain.c: Add CriticalFinalizerObject to
3672         mono_defaults.
3674 2009-03-31 Jb Evain <jbevain@novell.com>
3676         * verify.c (do_ldstr): don't check if a string is in the user strings
3677         heap if the current image is dynamic.
3679 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3681         * sgen-gc.c: Wait until the last finalizer has executed when
3682         returning from WaitForPendingFinalizers.
3684 2009-03-31  Martin Baulig  <martin@ximian.com>
3686         * mono-debug-debugger.h (MonoDebuggerEvent): Add
3687         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
3688         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
3689         (mono_debugger_event_create_appdomain): New function.
3690         (mono_debugger_event_unload_appdomain): New function.
3692         * appdomain.c (mono_domain_create_appdomain_internal): Call
3693         mono_debugger_event_create_appdomain().
3695 2009-03-31  Martin Baulig  <martin@ximian.com>
3697         * mono-debug-debugger.c
3698         (mono_debugger_register_class_init_callback): Also register the
3699         class init callback if the class is already initialized to make
3700         things work with shadow copied assemblies.
3702 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
3704         * security-core-clr.c
3705         (mono_security_core_clr_ensure_reflection_access_field): Let 
3706         critical code access the field (just like we do for methods). Use
3707         check_field_access helper.
3708         (mono_security_core_clr_ensure_reflection_access_method): Use 
3709         check_field_access helper.
3711 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3713         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
3714         call the run-finalize function directly.
3716         * gc.c, gc-internal.h: Make run_finalize() non-static.
3718 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3720         * sgen-gc.c: Use a separate struct for disappearing links.
3722 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3724         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
3725         * MaxIOVectorLength enabled, just ignore them.
3726         Fixes bug #349688.
3728 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
3730         * metadata-verify.c: Fix eglib build.
3732 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3734         * threads-types.h: Fix the win32 build.
3736 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
3738         * class.c: move coreclr inheritance/override checks to 
3739         security-core.clr.c
3740         * security-core.clr.c|h: add code from class.c with additional
3741         documentation. Fix override check when the method is not critical.
3743 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3745         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
3746         (match_class): Ditto.
3748 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3750         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
3752         * metadata-verify.c: Implement table layout row size calculation. Verify
3753         the total size of the tables.
3755 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3757         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
3759 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3761         * appdomain.c:
3762         * console-io.[ch]: added new mono_console_init() to make sure that
3763         file descriptors 0, 1 and 2 are opened.
3764         Bug #489019 fixed.
3766 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
3768         * appdomain.h: Export a new callback type and a new function to
3769         set this callback. This allow a mono host to provide it's own
3770         definition for "platform code".
3771         * metadata-internals.h: Add a core_clr_platform_code flag on 
3772         _MonoImage to (cache and) know if it is representing platform 
3773         code.
3774         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
3775         on platform code images.
3776         * security-core-clr.c|h 
3777         (mono_security_set_core_clr_platform_callback): Allow the host
3778         to provide it's own platform check definition.
3779         (mono_security_core_clr_determine_platform_image): Detect if an 
3780         image is platform code (using the specified callback).
3781         (mono_security_core_clr_is_platform_image): Return cached value 
3782         for platform code.
3784 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3786         * threads.c (mono_create_thread): New helper function to wrap CreateThread
3787         which has different parameter types for the 'tid' argument in windows and
3788         the io-layer.
3790         * appdomain.c attach.c threads.c: Use the new helper.
3792 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3794         * metadata-verify.c: Verify valid table bits.
3796 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3798         * metadata-verify.c (verify_metadata_header): Store size in the size field.
3800         * metadata-verify.c: Add initial table schema verification.
3802 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3804         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
3805         obtain the refclass argument needed by mono_param_get_objects (). Fixes
3806         #488383.
3808         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
3810         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
3812 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
3814         * security-core-clr.c: Add/update documentation
3816 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3818         * marshal.c (emit_marshal_object): Generate code to throw an exception
3819         instead of throwing it. Fixes #488670.
3821 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
3823         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
3824         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
3825         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
3826         and add a call to mono_security_core_clr_ensure_delegate_creation
3827         to do the extra checks required by CoreCLR.
3828         * security-core-clr.c|h: Add function to check delegate creation,
3829         both in the binding and accessibility, under CoreCLR.
3831 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
3833         * reflection.c (mono_reflection_create_dynamic_method): when 
3834         coreclr is enabled make sure that every resolved object are
3835         checked (e.g. field and method access).
3836         * security-core-clr.c|h: Add function to check objects resolved
3837         when a dynamic method is created.
3839 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3841         * metadata-verify.c: Cache directory rva translations.
3843         * metadata-verify.c: Add cli-header and streams verification.
3845 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3847         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
3848         the wrong offset (8 instead of 6).
3850 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3852         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
3853         methods, return the native function address itself. Fixes
3854         #487758.
3856 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3858         * console-io.c: some of the values for control characters might not be
3859         present.
3861 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
3863         * exception.c|h: Add helpers to create [Field|Method]AccessException
3864         * icall.c: Add required coreclr check calls for field reflection.
3865         Move the existing (method) check logic into security-core-clr.c
3866         * security-core-clr.c: Add functions to check if the access of a
3867         field or method is allowed when reflecting under coreclr. This is
3868         mostly done using a stack walk to find the "real" caller: i.e. the
3869         code that is calling the reflection
3871 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3873         * gc-internal.h: Change location of gc_wrapper.h
3875 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
3877         * class.c: Simplification to coreclr checks for overrides that
3878         makes it easier to set breakpoints.
3880 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
3882         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
3883         mono_security_core_clr_method_level): Avoid potential 
3884         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
3885         user/application code) and make it easier to set breakpoints
3887 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3889         * metadata-verify.c: Reject cli header tables that mono don't handle.
3891 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3893         * pedump.c: Fix CLI header dumping.
3895 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3897         * metadata-verify.c: More CLI header verification.
3899 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3901         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
3903 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3905         * metadata-verify.c: Initial verification of the CLI header.
3907 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3909         * metadata-verify.c (verify_resources_table): Fix verification of zero
3910         sized resource section and id entries count.
3912 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
3914         * icall.c: Handle user types in many Type icalls. Fixes #486303.
3916 2009-03-17  Jb Evain  <jbevain@novell.com>
3918         * profiler.c: call mono_gc_base_init from mono_profiler_load.
3920 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
3922         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
3923         (mono_gc_make_descr_for_array): Ditto.
3925 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
3927         * verify.c (mono_verifier_is_class_full_trust): Add support for
3928         CoreCLR security mode where trusted assemblies are defined as
3929         "platform code".
3931 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3933         * metadata-verify.c: Add minimal PECOFF resource verification.
3935 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3937         * metadata-verify.c: Be less restrictive with some coff fields.
3939 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3941         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
3942         params as boxed values on stack. Fixes #485706.
3944 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3946         * console-io.c: the termios values may vary in different flavors of unix.
3948 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
3950         * console-io.[ch]: return the entire set of control characters when
3951         initializing the terminal.
3952         * appdomain.c: bump corlib version.
3954 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
3956         * mono-perfcounters.c: added support for in-process custom
3957         performance counters.
3959 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3961         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
3963 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3965         * metadata-verify.c: Verify the data pointed by the import table. 
3967 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
3969         * metadata-verify.c (load_data_directories): Store data
3970         directory contents.
3972         * metadata-verify.c: Verify the import table. 
3974 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3976         * metadata-verify.c: Verify data directories.
3978 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
3980         * metadata-verify.c: Check section header flags.
3982 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3984         * appdomain.c: if the assembly name is a shadow-copied file, return
3985         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
3986         in mono_make_shadow_copy.
3987         * icall.c: if the assembly name is a shadow-copied file, replace it
3988         with the original assembly path.
3990         Bug #484244 fixed. NUnit tests for corlib can be run without
3991         --noshadow now.
3993 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
3995         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
3996         entries when the table is reallocated.
3998         * icall.c: Allocate the memory used by the mono_ptr_array macros using
3999         mono_gc_alloc_fixed () since it contains GC refs.
4001 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4003         * reflection.c (ensure_complete_type): New helper function to call
4004         type resolve handlers for unfinished dynamic types.
4005         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4007 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4009         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4010         #483247.
4012 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4014         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4016 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4018         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4019         between GCHandles of type WeakTrackResurrection and the objects they
4020         point to.
4022         * gc.c: Partly implement the sematics of GCHandles of type 
4023         WeakTrackResurrection: these handles should only be cleared after the
4024         finalizer of the object they are pointing to has ran.
4026 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4028         * icall.c: Partially revert r126631 because using the jump
4029         trampolines for generic shared methods makes it superfluous.
4031 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4033         * threads.c (handle_store): Create the 'threads' hash table with the proper
4034         MONO_HASH_VALUE_GC type.
4036 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4038         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4039         FIRST_GC_TRACKED.
4041         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4042         and LAST_GC_TRACKED as a GC root.
4044         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4046         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4047         the static data even if it consists of 1 reference.
4049         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4050         if there is a GC descriptor.
4052         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4053         instead of through the GC since they contain no object references.
4055 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4057         * generic-sharing.c (instantiate_other_info): Always return a jump
4058         trampoline for method code.
4060 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4062         * culture-info-tables.h: generated to include the en-tt culture.
4064 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4066         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4067         capture the thread context.
4069         * object.c (mono_async_result_new): Cache the invoke wrappers to
4070         ExecutionContext::Capture.
4072 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4074         * marshal.h: Add a prototype for what mono_compile_method returns
4075         for invoke wrappers.
4077         * gc.c: Use the new prototype declaration.
4079 2009-03-04  Geoff Norton  <gnorton@novell.com>
4081         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4082         * gc-internal.h:
4083         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4085 2009-03-04  Martin Baulig  <martin@ximian.com>
4087         * mono-debug.h
4088         (mono_debugger_runtime_invoke): Removed.
4090         * mono-debug-debugger.c
4091         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4093 2009-03-02  Martin Baulig  <martin@ximian.com>
4095         * mono-debug.h
4096         (mono_debugger_unhandled_exception): Removed.
4097         (mono_debugger_handle_exception): Removed.
4098         (mono_debugger_throw_exception): Removed.
4100         * mono-debug.c
4101         (mono_debug_debugger_version): Bump to 5.
4103         * mono-debug-debugger.c: Moved the exception handling code to
4104         ../mini/debug-mini.c
4106 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4108         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4109         finalize_objects_hash.
4111         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4112         
4113         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4114         field.
4116         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4117         cache.
4119         * image.c (mono_image_close): Free it.
4120         
4121         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4122         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4123         on the this argument.
4125         * gc.c (run_finalize): Optimize the calling of the finalizers.
4127 2009-03-03  Martin Baulig  <martin@ximian.com>
4129         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4130         of the `MonoGenericInst' changes.
4132 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4134         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4135         mono_array_class_get_cached to reduce locking contention. Extract
4136         a domain var.
4138         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4139         intermediary managed arrays. Use caching version of mono_array_new
4140         to allocate the result array.
4142         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4144         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4146         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4147         to reduce locking contention.
4149 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4150                 
4151         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4152         thunk builder code for the non-interface case.
4154 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4156         * object.c (get_generic_virtual_entries): New helper function to collect
4157         the virtual generic method instances which need to be added to an IMT
4158         thunk.
4159         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4160         Instead of creating a new IMT thunk, reset the vtable slot to the
4161         trampoline, the thunk will be created the next time the trampoline is called.
4162         (build_imt_slots): Add support for virtual generic methods in interfaces by
4163         adding to the IMT thunk all the methods registered using 
4164         mono_method_add_generic_virtual_invocation ().
4166         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4167         (struct _MonoIMTCheckItem): Ditto.
4169         * object.c (mono_method_add_generic_virtual_invocation): Take a
4170         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4171         the IMT thunk to include all items.
4172         
4173         * object.c (mono_class_create_runtime_vtable): Add a missing
4174         mono_loader_unlock ().
4176 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4178         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4180         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4182 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4184         * object-internals.h: Rename _MonoReflectionEvent to
4185         MonoReflectionMonoEvent so it reflects the right managed type.
4186         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4188         * icall.c:
4189         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4190         type.
4192 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4194         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4195         intermediary managed arrays. Use caching version of mono_array_new
4196         to allocate the result array.
4198 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4200         * reflection.c: Use cached version of mono_array_new alongside
4201         the mono_reflection_get_custom_attrs_by_type call path.
4203 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4205         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4206         intermediary managed arrays. Use caching version of mono_array_new
4207         to allocate the result array.
4209         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4211 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4213         * icall.c: Add small implementation of a growable stack bound array.
4215         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4217         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4218         intermediary managed arrays. Use caching version of mono_array_new
4219         to allocate the result array.
4221 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4223         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4224         helps Enum::CompareTo to be implemented without reboxing all enums
4225         to their underlying type.
4226 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4228         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4229         since it acquires a global lock leading to scalability problems.
4231         * profiler.c: Make the stat profiler work with multiple appdomains, this
4232         currently only works when no appdomains are unloaded.
4234 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4236         * appdomain.c: make the check to avoid copying when the assembly is
4237         already shadow copied actually work.
4239 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4241         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4243         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4244         changes to the managed side.
4246 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4248         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4249         classes + a separate lock for it, as it is used frequently at runtime, not
4250         just during metadata loading/JIT compilation.
4252         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4253         for szarrays.
4254         
4255         * object-internals.h (mono_class_from_name_cached): New macro to cache
4256         the results of the lookup locally without having to declare a static
4257         variable to hold it.
4258         (mono_class_get_field_from_name_cached): Ditto.
4259         (mono_array_class_get_cached): Ditto.
4261         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4262         the new macros.
4263         
4264         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4265         slower search in metadata.
4267         * pedump.c: Fix a warning.
4269 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4271         * reflection.c (encode_locals): Add checks for user types.
4272         (method_encode_clauses): Ditto.
4273         (method_encode_code): Ditto.
4274         (mono_image_create_token): Ditto.
4276         * object-internals.h: Change the type of more fields from MonoReflectionType*
4277         to MonoObject*.
4279 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4281         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4282         the a thread does not suspend within 100ms.
4284         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4285         in addition to StopRequested as well.
4287         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4289         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4290         search the method_hash before inserting a new entry, to avoid crashes when
4291         the same method is inserted multiple times, causing the old 
4292         MonoDebugMethodInfo structure to be freed by the value dtor function.
4294 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4296         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4297         SO_EXLUSIVEADDRUSE where available.
4299 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4301         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4302         runtime invoke wrappers, this time it is string ctor wrappers, which
4303         pass a dummy string as 'this' instead of their obj argument. Fixes
4304         #478473.
4306 2009-02-21  Jb Evain  <jbevain@novell.com>
4308         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4309         only get create_culture once.
4311 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4313         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4314         check before the locking.
4315         
4316         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4317         (mono_reflection_create_runtime_class): Ditto.
4318         (mono_reflection_sighelper_get_signature_local): Ditto.
4319         (mono_reflection_sighelper_get_signature_field): Ditto.
4321         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4322         is a System.MonoType object or similar.
4323         (monotype_cast): New helper function to cast a MonoObject to a 
4324         MonoReflectionType object.
4326         * object-internals.h: Change MonoReflectionType* members in structures to
4327         MonoObject* members to force the usage of the monotype_cast () function.
4329         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4330         structures/arrays. This causes us to assert instead of crashing when 
4331         instances of user defined subclasses of System.Type are encountered.
4333 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4335         * cil-coff.h:
4336         * icall-def.h:
4337         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4338         win32 resource loaded from a PE file.
4340         * image.c: fix mono_image_lookup_resource.
4342 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4344         * icall-def.h:
4345         * threads-types.h:
4346         * threads.c: added internal call for WaitHandle.SignalAndWait.
4348 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
4350         * cominterop.c : Adding cominterop_type_from_handle and 
4351           registering it as an icall.  Replacing all references
4352           to type_from_handle.
4354         Code is contributed under MIT/X11 license.
4356 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4358         * Makefile.am: Add lock-tracer.h and lock-trace.c.
4360         * appdomain.c: Call the tracer init function.
4362         * domain-internals.h: Enable the tracer for the domain locks.
4364         * image.c: Enable the tracer for image locks.
4366         * loader.c: Enable the trace for the loader lock.
4368         * lock-tracer.h:
4369         * lock-tracer.c: Initial implementation of the lock trace utility.
4370         The tracer requires a compile time define to be enabled and a env var
4371         to be enabled at runtime.
4373 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4375         * domain.c (mono_domain_code_foreach): Improve documentation.
4377 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4379         * appdomain.c:
4380         * generic-sharing.c:
4381         * object.c:
4382         * reflection.c:  Adjust locking order to the new semantics where the loader lock
4383         comes first.
4385 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4387         * domain.c: Add mono_domain_code_* functions that perform locking
4388         around the domain codeman.
4390         * domain-internals.h: Export those functions.
4392         * object.c: Use new functions instead of acquiring the domain lock.
4394 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
4396         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
4397         delegate. Fixes #477396.
4399 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4401         * reflection.c (create_custom_attr): Get rid of alloca.
4403 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
4405         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
4406           Adding exception handling for all CCW calls.
4408         Code is contributed under MIT/X11 license.
4410 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4412         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
4414         * marshal.c (emit_marshal_boolean): Add null checks to the new 
4415         native->managed marshalling code. Fixes #476247.
4417 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4419         * class.c (mono_class_get_vtable_entry): Move the addition of
4420         static rgctx invoke wrappers for vtable methods here, this simplifies
4421         a lot of code and causes fewer rgctx wrappers to be created.
4423         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
4424         name of the statistics to begin with an uppercase.
4426 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4428         * reflection.c: Revert previous change as it breaks the build.
4429         
4430 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4432         * verify.c: Properly handle SZARRAY element type.
4434         Fixes #474271.
4436 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4438         * reflection.c (mono_image_create_method_token): Correctly encode
4439         MethodDef MemberRefParent token.
4441         Fixes #472845.
4443 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4445         * image.c (mono_image_close): Delete the critical section before
4446         freeing the memory holding it.
4448 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4450         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
4451         Fixes #476257.
4453 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4455         * pedump.c (main): Call mono_marshal_init so pedump
4456         doesn't crash.
4458 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4460         * loader.c (method_from_memberref): Properly fix #474271 and
4461         don't break the runtime bad.
4463 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4465         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
4466         (mono_domain_alloc0): Ditto.
4468 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4470         * loader.c (method_from_memberref): Don't abort if the array
4471         method is not found. A regular loader failure is more informative
4472         and correct.
4474         Fixes #474271.
4476 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4478         *loader.c: Guard MonoImage::method_cache/methodref_cache
4479         using the image lock instead of the loader lock.
4481         * metadata.h: Add comments about which fields are protected by
4482         the image lock.
4484 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4486         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
4488         * generic-sharing.c (mono_method_construct_object_context): Remove the
4489         wrapper_type == NONE assert, it is not needed.
4491 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4493         * reflection.c (clear_cached_object): New helper function.
4494         (mono_method_clear_object): New function to clear the cached reflection
4495         objects for a dynamic method.
4497         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
4498         Partly fixes # 463323.
4499         
4500 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4502         * class.c:
4503         * loader.c:
4504         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
4506 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4508         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
4509         take the image lock instead of the loader lock.
4511         * metadata-internals.h: Export new functions.
4513 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4515         * domain.c (app_config_parse): Remove another use of stat that is
4516         not necessary as g_file_get_contents already does the presence
4517         check. 
4519 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4521         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
4523         * marshal.c: Move the bstr handling code to cominterop.c.
4525         * marshal.c: Remove some COM interop code missed previously.
4527 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4529         More Paolo patches from the Wii port:
4530         
4531         * security.c: Remove ves_icall_System_Environment_get_UserName
4532         from here.
4534         * icall.c: And put ves_icall_System_Environment_get_UserName
4535         here. 
4537         * appdomain.c (mono_set_private_bin_path_from_config): Remove
4538         redundant call to stat that was only used to test for the file
4539         existence.   Patch from Paolo.
4541         * gc.c (run_finalize): If COM is disabled, do not link in
4542         mono_marshal_free_ccw.
4544         * generic-sharing.c: Use alloca.h here as well.
4546 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
4548         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
4550 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4552         * cominterop.c cominterop.h: New files.
4554         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
4555         function/typedefs which are needed by cominterop.c global.
4557 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4559         * generic-sharing.c: Don't take the loader lock to guard image
4560         mempool allocs.
4562 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4564         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
4565         called without the loader lock which is required to guard MonoImage:tokens.
4567 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4569         * class.c:
4570         * metadata.c:
4571         * method-builder.c:
4572         * marshal.c:
4573         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
4575 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4577         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4578         Rework the code to use regular mono_image_alloc/0.
4580         * loader.c: Rework the code to use regular mono_image_alloc/0.
4582         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4584 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
4586         * object-internals.h : Fixing a typo in the 
4587           MonoReflectionComVisibleAttribute struct.
4589         * marshal.c (cominterop_com_visible): Check the implemented 
4590           interfaces for ComImport.
4592         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
4593           assume that bools should be treated as VARIANTBOOLs.
4595         * marshal.c (emit_marshal_boolean): Adding cases for 
4596           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
4598         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
4599           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
4601         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
4602           should be treated as VARIANTBOOLs.    
4604         Code is contributed under MIT/X11 license.
4606 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4608         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
4609         allocation with the image lock.
4611 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4613         This patch is the last of a series to remove explicit reference of MonoImage::mempool
4614         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
4616         * object.c: Add mono_string_to_utf8_image.
4618         * object-internals.h: Export mono_string_to_utf8_image.
4620         * reflection.c: Rework all explicit references to the the image mempool to go thought
4621         the mono_image_alloc set of functions.
4623 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4625         This patch is the third of a series to remove explicit reference of MonoImage::mempool
4626         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
4627         and generics-sharing.c.
4629         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
4630         as first argument. Note that this function remains broken as it doesn't perform locking around the
4631         mempool allocation.
4633         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
4635         * image.c: Add g_slist_append_image.
4637         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
4638         the supplied image for allocation. Move code into mono_metadata_field_info_full.
4640         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
4641         Fix all related code to do the same.
4643         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
4645         * metadata-internals.h: Fix the signatures.
4647 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4649         This patch is the second of a series to remove explicit reference of MonoImage::mempool
4650         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
4651         and similar to work using MonoImage.
4653         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
4654         MonoMemPool.
4656         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
4658         * class.c (mono_metadata_signature_deep_dup): Same.
4660         * class.c (inflate_generic_type): Same.
4662         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
4664         * metadata.c (mono_metadata_signature_dup_full): Same.
4666         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
4667         mono_metadata_signature_dup_full.
4669         * metadata.c (mono_metadata_type_dup): Same.
4671         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
4673         * reflection.c: Same.
4675         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
4677         * metadata-internals.h: Fix the signatures.
4679         * class-internals.h: Same.
4681 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4683         This patch is the first of a series to remove explicit reference of MonoImage::mempool
4684         and use mono_image_alloc set of functions instead. 
4686         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
4687         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
4688         of a MonoMemPool.
4690         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
4692         * class.c (g_list_prepend_mempool): Removed.
4694         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
4696         * image.c: Add g_list_prepend_image.
4698         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
4700         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
4703 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4705         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
4706         mono_image_unlock.
4708         * image.c (mono_image_init): Init the lock field.
4710         * image.c (mono_image_init): Cleanup the lock field.
4712         * image.c: Add mono_image_(un)lock functions.
4714 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4716         * class.c, class-internals.h: mono_method_get_context_general()
4717         combines the functionality of mono_method_get_context() and
4718         mini_method_get_context().
4720         * generic-sharing.c, domain-internals.h:
4721         mono_method_construct_object_context() and
4722         mono_domain_lookup_shared_generic() moved from mini.
4724         * icall.c (ves_icall_InternalInvoke): Handle the case where the
4725         method doesn't have the correct instantiation because it's shared
4726         generic code.  Fixes #473999.
4728 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4730         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
4732         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
4733         
4734 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4736         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
4738         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
4740         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
4741         and recheck the cache for dups after it.
4743         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
4745         Fixes one of the deadlocks found in #473150.
4747 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
4749         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
4750           For Win32, add additional break conditions for accept.
4752         Code is contributed under MIT/X11 license.
4754 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4756         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
4757         lazily initialize the native wrapper cache.
4758         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
4759         cache, since they are different from the normal wrappers.
4761         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
4763         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
4764         AOT compiled native wrappers.
4766 2009-02-09  Geoff Norton  <gnorton@novell.com>
4768         * appdomain.h:
4769         * security-core-clr.c: Allow enabling core-clr from the embedding
4770         API.
4772 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4774         * socket-io.c: when requesting all the local ips, if there are no
4775         interfaces up and running, MS returns 127.0.0.1.
4777 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4779         * mono-perfcounters-def.h: processor time is an inverse time.
4780         Fixes bug #468625.
4782 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4784         * socket-io.c: an empty host name returns the list of local IPs.
4785         Fixes bug #386637 part 1/2.
4787 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4789         * verify.c (mono_class_interface_implements_interface): Call
4790         mono_class_setup_interfaces ().
4791         (merge_stacks): Ditto.
4793 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4795         * class.c (mono_class_setup_interfaces): New function to lazily initalize
4796         klass->interfaces.
4797         (mono_generic_class_get_class): Don't initalize klass->interfaces.
4798         (mono_generic_class_get_class): Ditto.
4800 2009-02-06  U-QUACK\miguel  <miguel@quack>
4802         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
4803         they live in security.c
4805         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
4806         another bit from Paolo's code.
4808 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4810         * object.c (build_imt_slots): Add a small optimization to avoid inflating
4811         methods which will be discarded by add_imt_builder_entry ().
4813         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
4814         need to be boxed.
4816         * loader.c: Add a statistics for the size of the memberref signature cache.
4817         
4818         * loader.c (find_cached_memberref_sig): New helper function.
4819         (cache_memberref_sig): Ditto.
4821         * loader.c: Cache the result of parsing memberref signatures, since otherwise
4822         they will be parsed again for every generic instantiation, leading to unbounded
4823         memory growth.
4825 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4827         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
4828         parameters of generic methods.
4830         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
4831         after the original method is copied to the inflated method.
4832         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
4834         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
4835         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
4837         * class.c metadata.c: Update after the changes above.
4839 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4841         * metadata-verify.c: Simplified error handling and added
4842         section table validation.
4844 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4846         * class-internals.h (MonoClassExt): New structure containing rarely used
4847         fields of MonoClass.
4848         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
4849         through a new 'ext' field.
4851         * class.c (mono_class_alloc_ext): New helper function to allocate 
4852         class->ext.
4854         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
4856 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4858         * object.c (mono_object_get_virtual_method): Properly inflate
4859         generic methods.  Fixes #472692.
4861 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4863         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
4864         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
4865         for the parent type, the created type must be ready to be used on a generic
4866         instantiation.
4867         We fill this_arg/byval_arg if the parent is a generic instance to make sure
4868         we won't have duplicated entries in generic_inst_cache.
4870         Fixes #469553.
4872 2009-02-05  Miguel De Icaza  <miguel@novell.com>
4874         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
4875         replace with plain BSD per the comments on the bug MONO77637.
4877 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4879         * class.c (mono_class_get_generic_class): New accessor function.
4880         (mono_class_get_generic_container): Ditto.
4882         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
4883         fields, similar to the ones in MonoMethod.
4885         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
4886         (mono_class_create_from_typedef): Set klass->is_generic if needed.
4888         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
4889         
4890         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
4891         the same information as element_class->byval_arg.
4893         * class.c reflection.c: Remove references to class->byval_arg.
4895         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
4896         klass->enum_basetype directly.
4898         * verify.c metadata.c object.c icall.c reflection.c: Use 
4899         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
4900         directly.
4902 2009-02-04  Miguel de Icaza  <miguel@novell.com>
4904         * icall-def.h: Remove internal calls for sockets when
4905         DISABLE_SOCKET is defined, file system writing features when the
4906         OS only support reading and not writing data and Policy support if
4907         the Policy is disabled.
4908         
4909         * image.c (do_mono_image_open): Apply Paolo's patches for using
4910         mono_file_map_ APIs here.
4912         * assembly.c: Add support for platforms to avoid prefix
4913         auto-detection. 
4915 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4917         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
4918         warning.
4920         * class.c (mono_class_inflate_generic_class): New helper function.
4922         * class.c: Use mono_class_inflate_generic_class in a few places. Add
4923         statistics for inflated methods/classes.
4925         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
4927         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
4928         the call is made from Delegate.CreateDelegate () for the invoke method of
4929         a delegate.
4931         * loader.c: Add a statistics for the memory occupied by inflated signatures.
4933         * metadata.c (mono_metadata_signature_size): New helper function.
4935         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
4936         generic instances.
4938         * metadata.c (inflated_method_in_image): Avoid calling 
4939         mono_method_signature () if the method does not already have a signature.
4941 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4943         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
4944         valuetype is compatible with target type, check by inheritance as a
4945         VT is not really compatible with System.ValueType, for example.
4947         * verify.c (do_invoke_method): Improve error message.
4949         * verify.c (do_box_value): If boxing a nullable, use the type argument
4950         on stack instead.
4952         * verify.c (do_newobj): Improve error message.  
4954         Fixes #469549.
4956 2009-02-03  Miguel de Icaza  <miguel@novell.com>
4958         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
4960 2009-02-03  Mark Probst  <mark.probst@gmail.com>
4962         * generic-sharing.c: Don't hold domain lock when calling
4963         instantiate_other_info().  Fixes #471958.
4965         * domain-internals.h, loader.c: Describe locking policy of domain
4966         lock vs loader lock.
4968 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4970         * verify.c (mono_delegate_signature_equal): Make it possible to check
4971         first-arg-bound delegates to static method.
4973         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
4974         static methods with the first arg bound.
4976         Fixes #469529.
4978 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4980         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
4981         errors.
4983         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
4984         under strict mode. Any type, when boxed can be seen as a reference type.
4986         Fixes #469528.
4988 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
4990         * object.h: The lower bound of an array is a signed integer value.
4991         Introduce mono_array_lower_bound_t typedef. It should be used instead of
4992         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
4994         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
4995         calculate the upper bound.
4996         
4997         Fixes #471252.
4999 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5001         From Paolo's work, refactored, cleared up:
5002         
5003         * threadpool.c, icall.c: ifdef code that requires a working socket
5004         stack.
5006         * metadata.c (mono_metadata_field_info): Do not attempt to return
5007         a value from a function declared as void.
5009         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5010         from the console stack.
5012         * assembly.c: use strrchr instead of rindex.
5014         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5015         alloca.h on systems that have it.
5017         * environment.c: Avoid code that uses stuff from
5018         HAVE_SYS_UTSNAME_H
5019         
5020         * appdomain.c: Include sys/time.h.
5022         * console-io.c: include sys/ioctl.h if it is available.
5024 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5026         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5028         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5029         the method builder.
5031         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5032         after it was created and cached, as the later is not thread safe.
5033         
5034 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5036         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5037         called while the debugging module is not initialized. Fixes #471669.
5039 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5041         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5043         Fixes #471255.
5045 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5047         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5048         loader lock is not taken while the templates lock is held.  Fixes
5049         #471089.
5051 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5053         * metadata.c (type_in_image): Added a check to fix a monodis
5054         crash.
5056 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5058         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5059         nullable arguments.
5061         * object.c (mono_runtime_invoke_array): Ditto.
5062         
5063         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5064         freeing wrappers of dynamic methods.
5066         * loader.c (mono_free_method): Call it. Fixes #463323.
5067         
5068         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5069         methods taking vtype/byref arguments, to fix yet another bug caused by
5070         the sharing of runtime invoke wrappers. Partly fixes #471259.
5072 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5074         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5075         <first file in file table>:1 when the IL offset does not have an associated
5076         line number.
5078 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5080         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5081         variable info for a method.
5083         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5084         
5085 2009-01-30  Jb Evain  <jbevain@novell.com>
5087         * pedump.c: reuse code from monodis to make sure pedump honors
5088         MONO_PATH, which is needed to verify net_2_1 assemblies.
5090 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5092         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5093         there is no line number info.
5095 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5097         Avoid some MonoType allocations
5098         * reflection.c (mono_reflection_initialize_generic_parameter):
5099         Reuse MonoType from param->pklass rather than allocating one.
5100         (mono_dynamic_image_free): Update to changes.
5102 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5104         Rearrange some code to improve consistency
5105         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5106         (mono_reflection_initialize_generic_parameter): ... here.
5108 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5110         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5111         with type constraints as an experiment.
5113         * boehm-gc.c (on_gc_notification): Update mono_stats.
5115 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5117         Avoid some allocations
5118         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5119         pointer to tail array to avoid extra allocation.
5120         * metadata.c (free_generic_inst): Update to changes.
5121         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5122         on-stack struct.
5124 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5126         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5127         return TRUE if the two type objects are the same.
5129 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5131         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5132         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5133         klass->min_align, since klass->min_align contains the managed alignment,
5134         while the native alignment can be different, like for longs on x86.
5135         Fixes #469135.
5137         * class-internals.h (MonoMarshalType): Add a min_align field.
5139 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5141         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5142         the 1.0 format.
5144 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5146         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5147         some comments about the usage of the used_regs field.
5149         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5150         Fixes #469217.
5152 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5154         * appdomain.c: return NULL instead of throwing FileNotFoundException
5155         when LoadAssembly() fails.
5157 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5159         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5160         image if the owner is NULL.  Fixes the AOT failures.
5162 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5164         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5165         MonoGenericParam structure using memset so the image field is initialized
5166         as well.
5168 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5170         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5171         a plain store.
5173 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5175         * class.c (mono_class_setup_vtable_general): In the generic instance
5176         optimization, set method->slot for abstract virtual methods. Fixes part of
5177         #467834.
5179 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5181         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5182         which signals that the unloading has started but all appdomain services must
5183         remain operational.
5185         * appdomain.c (mono_domain_unload): The initial state for unloading now
5186         is unloading_start and we switch to unloading after the managed call to
5187         AppDomain::DomainUnload has finished.
5189         The new unloading state has to be created because managed code in the
5190         DomainUnload event can depend on things like the threadpool still working.
5191         The domain must remain fully functional while the event executes.
5193         This shown as an issue due to Process::WaitForExit, which waits for
5194         async reads of stdout and stderr to complete. Since those are processed
5195         in the threadpool the code deadlocks because the DomainUnload callback 
5196         waits for the async read finished event, which should have been set by a
5197         threadpool job but has been discarded due to the domain been in unload
5198         state.
5200 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5202         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5203         image must match.
5205 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5207         * reflection.c (resolve_object): For fields, inflate the class and
5208         then get the field in the inflated class.
5210 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5212         * object-internals.h (struct _MonoException): Added a comment
5213         explaining the new use of trace_ips.
5215 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5217         * generic-sharing.c (inflate_other_data): Inflate array methods
5218         correctly.
5220         * loader.c, class-internals.h: Rename search_in_array_class() to
5221         mono_method_search_in_array_class() and make it non-static.
5223 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5225         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5226         Hopefully fixes #458168.
5228 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5230         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5231         as it is performed elsewhere.
5233         Code is contributed under MIT/X11 license
5235 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5237         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5238         requests queued.
5239         * object.c (mono_raise_exception): Increment the exceptions total
5240         counter when an exception is thrown.
5241         * class-internals.h: Add a location for storing the total number of
5242         asp.net requests served.
5243         * mono-perfcounters.c: Implement update support for asp.net counters
5244         from the class libraries. Implement read support for asp.net counters
5245         and exceptions total counter.
5247 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5249         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5250         accessing klass->methods. Fixes #467385.
5252 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5254         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5255         for byval arguments without an [Out] attribute. Fixes #467212.
5257         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5258         Fix compilation under android.
5259         
5260         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5261         processed, scan them directly after they are copied, to achieve better locality
5262         and cache usage.
5264         * socket-io.c: Applied patch from Koushik Dutta
5265         (koush@koushikdutta.com). Disable IPV6 when running under android.
5267 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5269         * icall.c (ves_icall_InternalExecute): Add write barriers.
5271         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5272         the GC code.
5274         * sgen-gc.c: Implement write barriers in IL code.
5276 2009-01-17  Geoff Norton  <gnorton@novell.com>
5278         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5280 2009-01-17  Geoff Norton  <gnorton@novell.com>
5282         * image.c: When unloading the image->references table, there can be gaps
5283         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5284         when unloading an appdomain.
5286 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5288         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5289         speed up ptr-in-nursery checks.
5291         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5292         threads_lock () to prevent deadlocks.
5294         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5295         does not need to be scanned during minor collections, since writes to it
5296         must use write barriers.
5298 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5300         * metadata-verify.c: Add pe nt header verification.
5301         
5302 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5304         * gc.c: Fix a few warnings when using SGEN.
5306 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5308         * metadata-verify.c: Add pe optional header verification.
5310 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5312         * sgen-gc.c: Add support for user defined marker functions, used by
5313         MonoGHashTable to avoid registering a GC root for every hash node.
5315 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5317         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5318         non-pinned roots into separate hashes to avoid having to traverse them
5319         in functions which are only interested in one kind.
5321 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5323         * metadata-verify.c: Add pe header machine field verification.
5324         
5325 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5327         * metadata-verify.c: Add pe header size verification.
5329 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5331         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5332         using the GC, they don't contain references.
5334         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5336 2009-01-13  Geoff Norton  <gnorton@novell.com>
5338         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5339         AppDomains created on the native side can be cleaned up on the native side.
5341 2009-01-13  Geoff Norton  <gnorton@novell.com>
5343         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5344         as well as the managed api.
5346 2009-01-13  Geoff Norton  <gnorton@novell.com>
5348         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
5349         with a MonoAppDomain initialized against it.
5351 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5353         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
5354         
5355         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
5357         * marshal.c: Avoid setting the exception clauses after a method has been entered 
5358         into the wrapper caches. Fixes #465700.
5360         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
5361         method builder.
5362         (mono_mb_create_method): Set the clauses from the method builder.
5364 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5366         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
5367         Patch from Makoto Kishimoto.
5369 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5371         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
5372         encoding them as ROOT_DESC_COMPLEX.
5373         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
5375 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5377         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
5378         no longer point to the nursery.
5380         * sgen-gc.c: Add a few comments/FIXMEs.
5381         
5382         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
5384         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
5385         initialization of the various _method variables thread safe. Fixes
5386         #465377.
5388 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5390         * domain.c, domain-internals.h: Remove the shared_generics_hash
5391         and its lookup functions.
5393 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
5395         * socket-io.c:  Fixing the MSVC build. 
5397         Code is contributed under MIT/X11 license.
5399 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
5401         * metadata-verify.c: Add pe header watermark verification.
5403 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5405         * metadata-verify.c: Add lfanew verification.
5407 2009-01-12  Jb Evain  <jbevain@novell.com>
5409         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
5410         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
5412 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5414         * socket-io.c: Fix the build.
5416         * environment.c: Fix an #ifdef.
5418 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5420         * threadpool.c (async_invoke_thread): Handle the wait function returning
5421         WAIT_IO_COMPLETION as well.
5422         (async_invoke_io_thread): Ditto.
5424 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
5426         * threads.c: Fixing the Windows build.
5428         Code is contributed under MIT/X11 license.
5430 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5432         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
5433         interrupt a wait.
5434         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
5435         the thread to wait again.
5437 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5439         * metadata-verify.c: Initial skeleton of the metadata verifier.
5441         * pedump.c: Add support for the metadata verifier.
5443         * verify-internal.h: Export the whole assembly metadata verifier function.
5445 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5447         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
5449 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5451         * Makefile.am: Upgrade dtrace-prelink.sh location.
5453 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5455         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
5456         well. Otherwise the shutdown deadlock that happens on unix will can happen
5457         as well.
5458         If the main thread code finishes too fast it's possible that the finalizer
5459         thread won't have executed yet, won't record itself as the finalizer thread
5460         and the shutdown sequence will wait on it forever.
5462 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5464         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
5465         with MSVC.
5467 2009-01-08  Miguel de Icaza  <miguel@novell.com>
5469         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
5470         Robert Jordan for pointing this out.
5472 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
5474         * icall.c
5475         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
5476         ves_icall_System_IO_DriveInfo_GetDriveType.
5478 2009-01-07  Miguel de Icaza  <miguel@novell.com>
5480         * icall.c: Wrap calls to mono_strtod in CriticalSection
5481         invocations when using eglib, to work around #464316.
5483 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5485         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
5486         return value of GetCurrentDirectory to never access unitialized memory.
5488 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5490         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
5491         return value of GetCurrentDirectory and expand the buffer if needed.
5493         Fixes #459094.
5495 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
5497         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
5498           Adding a call to mono_init_com_types.
5500         Code is contributed under MIT/X11 license.
5502 2009-01-07  Geoff Norton  <gnorton@novell.com>
5504         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
5505         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
5506         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
5507         be the value of the ip buffer.
5509 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5511         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
5512         interfaces_packed here.
5514         Fixes part of #463294.
5516 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5518         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
5520         Fixes part of #463294.
5522 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5524         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
5525         is a boxed complex as well.
5527         Fixes part of #463294.
5529 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5531         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
5532         control if a methodspec should be created for the generic method definition from external assemblies.
5533         Caching of methodspec is done using the handleref hash table.
5535         Fixes #462592.
5537 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
5539         * loader.c (find_method): When searching the interfaces of a class
5540         check the transitive closure of implemented interfaces.
5542         Fixes #463303.
5544 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5546         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
5547         
5548 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5550         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
5551         interfaces calculation to fill_valuetype_array_derived_types.
5553         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
5554         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
5555         for example.
5557         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
5558         interfaces for valuetypes if needed.    
5560         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
5561         for their basetype as well. Types are array expanded if rank is > 0.
5563         Fixes #400716.
5565 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
5567         * socket-io.h : Changing the signature of
5568           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
5569           the blocking state.
5571         * icall-def.h :  Changing the signature of
5572           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
5574         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5575           For Windows only.  Avoid blocking when calling accept by
5576           querying for a connection via select.  The loop also queries
5577           the thread state every 1000 micro seconds for the thread
5578           stop state.  This will avoid the process hanging on shutdown
5579           when using a TcpChannel that is never connected to.
5581         Code is contributed under MIT/X11 license.
5583 2008-12-30  Marek Safar  <marek.safar@gmail.com>
5585         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
5587 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5589         * class.c (get_implicit_generic_array_interfaces): Extract common
5590         code to a helper function making it a lot easier on the eyes.
5592 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5594         * class.c (get_implicit_generic_array_interfaces): If the internal
5595         enumerator is an interface inflate System.Object instead of itself.
5597         Fixes #461261.
5599 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
5601         * object.c (mono_runtime_invoke_array): Don't assert with
5602         byref nullable types.
5604         * marshal.c (mono_marshal_get_runtime_invoke): To handle
5605         byref nullables we unbox the object and store it on the
5606         stack. 
5607         We can't use the boxed object since it is the T of Nullable<T>
5608         and the boxed representation of a nullable it's underlying type
5609         or null.
5610         We could cheat and create a boxed nullable and use the same
5611         machinery of other byref VTs but this feels like a hack and
5612         using the stack has the bonus of reducing heap pressure.
5614         Fixes #461941.
5616 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
5618         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
5619         return value.
5621         Fixes #461867.
5623 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
5625         * icall-def.h : Adding an internal call definition for 
5626           System.Environment.internalBroadcastSettingChange.
5628         * icall.c : Adding a Windows only implementation to broadcast a 
5629           WM_SETTINGCHANGE when an environment variable has changed.
5631         Code is contributed under MIT/X11 license.
5633 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5635         * class.c, class-internals.h: Made
5636         mono_class_has_parent_and_ignore_generics() non-static.
5638 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
5640         * image.c: deal with the mmap failing when loading an image.
5642 2008-12-17  Geoff Norton  <gnorton@novell.com>
5644         * threadpool.c: Ensure that the io_queue_lock is initialized
5645         in all circumstances, as we always attempt to cleanup against it.
5647 2008-12-17  Miguel de Icaza  <miguel@novell.com>
5649         * icall.c (ves_icall_System_Environment_get_Platform): For
5650         compatibility reasons for existing client code we will keep
5651         returning 4 for a while.   
5653         For how long will depend on the documentation being updated, and
5654         for us to give client code a chance to be updated.
5656         This reverts the original decison on #433108 since we did not
5657         catch roughly 33 instances of the broken code in our own source
5658         code base, we did not catch failures on the buildbots, and QA did
5659         not bring this as a problem.
5661         Only today I found some customer's code breaking due to our own
5662         class libraries not being fully updated and tracked it down to
5663         this change.  I am reverting it because if we could not even get
5664         our story straight in our own code base, how can we hope that our
5665         end user code be fixed?
5667         As of this morning, our Wiki page that documents how to detect
5668         Unix had not been fixed.    
5670 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
5672         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
5674         * class.c (mono_class_get_fields): Handle loading errors.
5676 2008-12-12 Mark Mason <mmason@upwardaccess.com>
5678         * metadata.c (mono_type_stack_size_internal): If SIZEOF_REGISTER > SIZEOF_VOID_P then use SIZEOF_REGISTER as the size and alignment of the stack slots.
5679         
5680 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5682         * mono-perfcounters.c: avoid warning.
5684 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5686         * reflection.c (ensure_runtime_vtable): Work on generic instances and
5687         make sure all interfaces have MonoClass::interface_id set.
5689         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
5690         method table is property set.
5692 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5694         * class.c: New function mono_class_setup_interface_id that setup
5695         MonoClass::interface_id if needed.
5697         * class-internals.h: Export new function.
5699 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5701         * class.c: Add code to sanity check the vtable after setup_vtable_general
5702         has done it's work.
5704 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5706         * icall.c: make Assembly.GetExecutingAssembly work properly when
5707         reflection is used to invoke the method.
5708         Bug #321781 fixed.
5710 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5712         * metadata/generic-sharing.c: Look for constraints in all type
5713         arguments, not just the first one.
5715 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5717         * appdomain.c: return the correct CodeBase for an Assembly instance
5718         that was loaded from the shadow-copy directories.
5719         Bug #458190 fixed.
5721 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5723         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
5725         * sgen-gc.c (check_object): New debugging helper function.
5727         * object.c: Fix calls to mono_value_copy_array ().
5729 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5731         * class.c (mono_class_setup_fields): If working on an inflated class
5732         first check if the generic definition did init with success.
5734         Fixes #445361.
5736 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5738         pedump.c (main): Fix a warning.
5740 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
5742         * object-internals.h : Adding a definition for 
5743           MonoReflectionComVisibleAttribute.
5745         * marshal.c (cominterop_com_visible) :  Method added to check the 
5746           ComVisible attribute of a class.
5748         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
5749           cominterop_raise_hr_exception added to consolidate common code 
5750           to raise hr exceptions.
5752         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
5753           if a managed class should support IDispatch.
5755         * marshal.c 
5756           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
5757           Added additional checks for managed object when getting 
5758           an IDispatch interface.
5760         Code is contributed under MIT/X11 license.
5762 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5764         pedump.c (main): Handle mono_get_method () returning NULL. 
5766 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5768         * marshal.h: Fix a warning.
5770 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5772         * marshal.c : Adding cominterop_release_all_rcws to release all
5773           runtime callable wrappers held by the runtime.
5775         * marshal.h : Adding declaration for cominterop_release_all_rcws.
5776           
5777         Code is contributed under MIT/X11 license.
5779 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5781         * metadata.c (mono_image_alloc_lock): New helper function.
5782         (mono_image_alloc0_lock): Ditto.
5784         * metadata.c: Use the alloc_lock () helper functions for allocating
5785         memory from the image mempool.
5787 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
5789         * class.c (mono_class_from_generic_parameter): Document it's
5790         locking behavior. Fix double checked locking here, we stored in
5791         param->pklass a partially initialized MonoClass and no membar was used.
5793 2008-12-05  Marek Habersack  <mhabersack@novell.com>
5795         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
5796         (3) functions are present in the C library use them to do the
5797         job. If they are absent, make sure that the sum of int_part and
5798         dec_part is rounded before returning. This is necessary due to the
5799         division of dec_part by the power of 10 before the final addition
5800         is performed - if the result is not rounded in some cases it will
5801         yield invalid results.
5803 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5805         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
5806         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
5807         instruction instead of a pointer constant.
5809 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
5811         * loader.c (mono_method_get_header): Do most of the work outside the
5812         loader lock, to avoid assembly load hook deadlocks.
5814         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
5815         (mono_metadata_parse_type_full): Ditto.
5817 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
5819         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
5820         Make the stack depth fixed. Ensure proper argument passing to the backtrace
5821         funtions. Finally, use a lock to produce well ordered output.
5823         The lock looks silly, as all calls to the corlib mempool should be guarded
5824         with the loader lock, but for some reason this fact doesn't help. 
5826         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
5828 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5830         * socket-io.c: 64 bit big-endian fixes.
5832 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
5834         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
5835         targets that require strict compatibility between the types.
5837         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
5838         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
5839         Kill the strict argument and create a new one valuetype_must_be_boxed.
5841         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
5842         state that all valuetypes must be boxed.
5844         Fixes #448560.
5846 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
5848         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
5849         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
5851         Contributed under MIT/X11 license.
5853 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
5855         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
5856         the inflate_generic_type machinery should handle it.
5858         This avoids a crash when the field's flags is zero and it's type is
5859         a primitive.
5860         What happens is that mono_metadata_parse_type_full will see that opt_attrs
5861         is zero and will return one of the cached built-in primitive types. Since
5862         those types live in read-only memory, the code that copies it crashes.  
5864 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5866         * object.c: Don't put function descriptors into generalized IMT
5867         thunks.
5869 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5871         * class.c: Enable generic code sharing on PPC64.
5873 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5875         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
5876         from mini/mini.c.
5878         * generic-sharing.c: Allocate the method template slists from the
5879         image mempool so it doesn't leak.
5881 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
5883         * class.c (generic_array_methods): Release the linked list.
5885 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5887         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
5888         invocation to g_utf16_to_utf8().
5890 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5892         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
5893         arguments on big endian archs.
5895 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5897         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
5898         the type name (test added in corlib).
5900 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5902         * pedump.c: initialize perf. counters. Fixes a segv.
5904 2008-11-25  Martin Baulig  <martin@ximian.com>
5906         * mono-debug-debugger.c
5907         (mono_debugger_runtime_invoke): Return the exception object if an
5908         exception was thrown.  Visual Studio displays the exception object
5909         in the locals window.
5911 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5913         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
5914         ftnptr.
5916 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5918         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
5919         MONO_TYPE_U are sizeof (gpointer), too.
5921 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5923         * marshal.c (mono_type_native_stack_size): Fixed size and
5924         alignment for reference types.
5926 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5928         * class.c (mono_class_generic_sharing_enabled): Disable generic
5929         code sharing for PPC64.
5931 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
5933         * icall.c (mono_method_get_equivalent_method): Make sure
5934         method->klass->methods is inited before looping over it.
5936 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5938         * object.c: when calling ExecuteAssembly in a newly created domain,
5939         the configuration file and application base are already set up.
5940         Bug #446353 take 2 fixed.
5942 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
5944         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
5945         Fixes #444715. Fix a warning.
5947 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
5949         * appdomain.c: write the full path of the assembly to the .ini file
5950         created when "shadow-copying"
5951         Bug #446353 fixed.
5953 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
5955         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
5956         if signature==FALSE.
5958 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5960         * marshal.h : Fix the cygwin build.
5961            marshal.c:12442: undefined reference to `_IID_IMarshal'
5962           
5963         Code is contributed under MIT/X11 license.
5965 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
5967         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
5968           free threaded marshaler when QueryInterface is called on a COM callable
5969           wrapper requesting the IMarshal interface.
5970           
5971         Code is contributed under MIT/X11 license.
5973 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
5975         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
5977         * reflection.c (mono_type_get_object): Special case the very common
5978         void type.
5980         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
5981         hold typeof(void).
5983 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
5985         * process.h : Adding method declaration for
5986           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5987           
5988         * process.c : Adding implementation for
5989           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5990           
5991         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
5992           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
5994         Code is contributed under MIT/X11 license.
5996 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
5998         * appdomain.c (unload_thread_main): Clean up threadpool by
5999         calling mono_thread_pool_remove_domain_jobs.
6001         * domain-internals.h (struct _MonoDomain): Add new fields to
6002         help coordinate the cleanup of the threadpool.
6004         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6005         that cleans up the threadpool of all jobs associated with an appdomain.
6006         It does that by cleaning up the queues and making sure all active
6007         threads are accounted.
6009         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6010         unloaded or in the process of. Take this is such way that there is
6011         no race condition between another thread starting the unload and the
6012         current thread acknowledging it.
6014         * threadpool.c (async_invoke_thread): Same.
6016         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6017         firing the new thread.
6019         * threadpool.c (start_tpthread): Same.
6021         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6023         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6025 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6027         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6028         Add support for DuplicateHandle.
6029         
6030         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6031         Add support for DuplicateHandle.
6032         
6033         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6034         Add support for DuplicateHandle.
6036         Code is contributed under MIT/X11 license.
6038 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6040         * class-internals.h: Make min_align into a whole byte.
6042         * class.c: Set min_align for SIMD types to 16.
6044 2008-11-05  Geoff Norton  <gnorton@novell.com>
6046         * attach.c: Default the attacher to enabled for all cases including
6047         embedded.
6049 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6051         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6052         change r117650.
6054 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6056         * monitor.c, monitor.h: New function for querying offsets of
6057         members of MonoThreadsSync.
6059 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6061         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6062         to speed up this function and to avoid the boundless memory growth caused by
6063         the signature_dup () calls.
6065 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6067         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6068         wrapper.
6070         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6071         by 1 bit.
6073         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6075 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6077         * appdomain.c:
6078         * domain-internals.h: made mono_set_private_bin_path_from_config()
6079         "internal".
6080         * object.c: call the above function after setting the configuration
6081         file path for the root domain.
6082         Fixes bug #314478.
6084 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6086         * assembly.c: when the assembly is loaded from an absolute path, end
6087         basedir with a directory separator.
6088         Bug #440781 fixed.
6090 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6092         * monitor.c (mono_monitor_get_fast_enter_method): If
6093         CompareExchange is not available, don't create the fastpath
6094         instead of asserting.  (The method is missing in the 1.1 profile.)
6096 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6098         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6100         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6101         Monitor.Exit IL fastpaths.
6103 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6105         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6107 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6109         * class.c (mono_class_create_from_typedef): Added Vector2l.
6111 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6113         * class.c (mono_class_create_from_typedef): Added Vector2d.
6115 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6117         * appdomain.c: translate \ into / for cache_path.
6118         * domain-internals.h: new mono_is_shadow_copy_enabled().
6119         * icall.c: (fill_reflection_assembly_name) do the same path
6120         manipulations that get_code_base does.
6121         (get_code_base) use mono_is_shadow_copy_enabled.
6123 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6125         * appdomain.c: shadow-copied assemblies go to CachePath +
6126         ApplicationName when both are set. DynamicBase has nothing to do with
6127         shadow copies.
6128         Bug #406877 fixed.
6130 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6132         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6133         STANDALONESIG table.
6135         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6136         standalone signatures.
6138         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6139         comparison code: instead of comparing the signatures using a custom
6140         equals function, transform them to a common signature and compare that. This
6141         works better with AOT.
6143 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6145         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6147         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6148         call for generic instances.
6149         (mono_class_setup_properties): Call setup_properties () before accessing
6150         gklass->properties.
6152         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6153         over the virtual methods of a class using metadata if possible, avoiding the
6154         creation of MonoMethod's for non-virtual methods.
6155         
6156         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6157         get_virtual_methods () to iterate over the virtual methods of classes.
6159 2008-10-25  Martin Baulig  <martin@ximian.com>
6161         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6163 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6165         * class.c (mono_class_create_from_typedef): Added Vector4i.
6167 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6169         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6170         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6171         special-casing applies to eliminate the call completely.
6173 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6175         * class.c (mono_class_create_from_typedef): Added Vector8s.
6177 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6179         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6181 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6183         * icall.c: get rid of annoying warning.
6185 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6187         * threadpool.c: in 1.x, if you change the background status of the
6188         threadpool thread, it's not reset.
6189         Remove unnecessary calls to SetState.
6191 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6193         * threadpool.c: asynchronously create a set of idle threads upon first
6194         use of the threadpool. SetMinThreads will now start the appropriate
6195         number of idle threads if they are not already running. The default is
6196         1 threadpool thread per CPU. Increased the maximum number of threads
6197         per CPU to 10.
6199 2008-10-22  Martin Baulig  <martin@ximian.com>
6201         Revert r116521 from Zoltan, it breaks the debugger:
6203         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6204         over the virtual methods of a class using metadata if possible, avoiding the
6205         creation of MonoMethod's for non-virtual methods.
6206         
6207         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6208         get_virtual_methods () to iterate over the virtual methods of classes.
6210 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6212         * threads.c: when creating a threadpool thread, set its state to
6213         'background'.
6214         * threadpool.c: reset the background state of a threadpool thread
6215         after finishing each work item
6216         Bug #437888 fixed.
6218 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6220         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6221         
6222         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6223         generic instances which works by inflating the methods in the container
6224         class's vtable.
6226         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6227         variant which doesn't make a copy if no inflation was done.
6228         (mono_class_setup_fields): Use it.
6230         * metadata.c (mono_metadata_get_shared_type): New helper function to
6231         return a shared instance of a given MonoType.
6233         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6234         a copy of most non-generic types.
6236 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6238         * threadpool.c: remove one more GetSystemInfo () call.
6240 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6242         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6243         use the code in mono-proclib.h to get processor information.
6245 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6247         * appdomain.c: fixed the logic that determines whether assemblies in a
6248         directory are "shadow-copied" or not. Bug #433483 fixed.
6250 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6252         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6253         warning.
6255 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6257         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6258         returning a vtype.
6260         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6261         reflection.c: Use mono_field_get_name () for accessing a field's name.
6263         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6264         class.c
6266         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6267         field.
6269         * loader.c (find_method_in_class): Reenable the metadata optimization by
6270         not using it for generic instances.
6272         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6273         data/def_type fields from MonoClassField into a separate structure.
6274         (struct MonoClassField): Remove data/def_type fields.
6275         (struct _MonoClass): Add a 'field_def_values' array to store the default
6276         values/RVA for fields.
6278         * class.c reflection.c: Update after the changes.
6279         
6280         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6281         for accessing field->data.
6283         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6285         * loader.c (find_method_in_class): Revert the last change for now as
6286         it breaks Mono.C5 unit tests.
6288         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6289         'field_generic_types' and 'field_objects' which contain the information
6290         previously stored in MonoInflatedField.
6291         (MonoInflatedField): Delete.
6292         (struct _MonoClassField): Delete 'generic_info' field.
6294         * reflection.c: Store the information which was previously in 
6295         field->generic_info in MonoDynamicGenericClass instead.
6297         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6298         MonoClassField changes.
6300 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6302         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6303         store the value inside the data array of the MonoMethodWrapper.
6304         This saves memory, is faster and fixes the lifetime issues (methods
6305         were never removed from the hash previously). May also fix bug#436996.
6307 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6309         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6310         generic instances, compute the type from the generic definition instead of
6311         looking in field->generic_info.
6313         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6314         for inflated fields, the only user was get_fieldref_token () which no
6315         longer needs it.
6317         * class.c (mono_class_init): Revert the last change as it seems to cause
6318         crashes.
6320         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6321         bytes on 64 bit platforms.
6323         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6324         
6325         * object.c (mono_class_create_runtime_vtable): Don't initalize
6326         field->data/field->def_type here, it is done lazily by 
6327         mono_class_get_field_default_value ().
6329         * icall.c (ves_icall_get_enum_info): Call 
6330         mono_class_get_field_default_value () instead of directly accessing
6331         field->data and field->def_type.
6333         * object.c (get_default_field_value): Ditto.
6335         * class.c (mono_field_get_data): Ditto.
6336         
6337         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6338         call for generic instances.
6340         * loader.c (find_method_in_class): If klass != from_class, then inflate
6341         the method with the context of from_class, since the caller assumes this.
6343 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6345         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6346         for accessing method->slot.
6348 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
6350         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
6352 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6354         * class.c (mono_method_get_vtable_index): Use
6355         mono_method_get_vtable_slot () for accessing method->slot.
6357         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
6358         accessing klass->methods.
6360         * class.c (mono_method_get_vtable_slot): New helper function.
6361         (mono_class_get_vtable_entry): Ditto.
6362         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
6363         accessing method->slot.
6365         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
6366         method to get_inflated_method ().
6368         * class.c (mono_class_get_inflated_method): New helper method to obtain
6369         a method of an inflated class without calling setup_methods ().
6370         (mono_class_get_cctor): Use get_inflated_method.
6372         * generic-sharing.c (mono_class_get_method_generic): Ditto.
6373         
6374         * marshal.c image.c: Lazily create all the marshal caches.
6376         * image.c (mono_image_init): Move initialization of runtime_invoke
6377         caches to marshal.c.
6379         * marshal.c (get_cache): New helper function to lazily initialize a 
6380         wrapper cache.
6381         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
6383         * debug-helpers.c (mono_method_full_name): Include generic arguments.
6385 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
6387         * loader.c: fixed check for interface type.
6389 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
6391         * appdomain.c: check for NULL setup before it's referenced.
6394 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
6396         * class.c: remove the unused old vtable setup code.
6398 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
6400         * class.c: don't depend on interface order in
6401         setup_interface_offsets (bug #435777).
6402         * reflection.c: sort the InterfaceImpl table (patch from
6403         Jb Evain  <jbevain@novell.com>).
6405 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
6407         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
6408         the low level assemblies lock.
6410 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
6412         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
6413         object.c, reflection.c, socket-io.c, threads.c: introduced
6414         mono_framework_version () to return the major framewrok version,
6415         changed the code that was using more complex patterns to use it.
6416         Return the correct value for PlatformID for OSX.
6418 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
6420         * icall-def.h, process.h, process.c: added an icall to get info about
6421         processes using mono-proclib.
6423 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
6425         * mono-perfcounters.c: use the mono-proclib functions to
6426         access process information.
6428 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
6430         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
6431         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
6432         reflection.c: remove rawbuffer usage: mmap support is more sanely
6433         provided by utils/mono-mmap.
6435 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
6437         * gc.c: use posix semaphores when possible so that
6438         mono_gc_finalize_notify() is signal safe.
6440 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
6442         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
6443         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
6444         be #ifdef-ed out, the linker will remove the rest.
6446         * marshal.c: Implement DISABLE_COM.
6448         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
6450 2008-10-11  Miguel de Icaza  <miguel@novell.com>
6452         * locales.c (string_invariant_compare_char): Optimization: do not
6453         call g_unichar_type unless we actually need the information.
6455 2008-10-10  Mark Probst  <mark.probst@gmail.com>
6457         * object.c, class-internals.h: Also create remoting trampolines
6458         for generic methods.  Pass the domain to the remoting trampoline
6459         creation function, too.
6461 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
6463         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
6465 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6467         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
6468         Vector4ui.
6470 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6472         * assembly.c:
6473         * locales.c: remove the use of g_strdown. Fixes bug #322313.
6475 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
6477         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
6478         for the least possible amount of time (extending the fix in r113458).
6480 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6482         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
6484 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6486         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
6487         as possible simd intrinsic types.
6488         Optimized the test to check for the common prefix first.
6490 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
6492         * class.c: back out part of a broken optimization committed on
6493         May 23th (bug #433908).
6495 2008-10-09  Mark Probst  <mark.probst@gmail.com>
6497         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
6498         Win32.  Should fix #432388 for most cases until we have the new
6499         profiler on Win32.
6501 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
6503         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
6504         instead of using inst->id so the hash is stable for AOT.
6506 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6508         * appdomain.c:
6509         * icall.c: create a .ini file for shadow-copied assemblies that
6510         contains the location of the original assembly. Use this to return the
6511         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
6512         Also fix the number of '/' for windows when returning the CodeBase.
6513         Fixes bug #430920.
6515 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6517         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
6519         Code is contributed under MIT/X11 license.
6521 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6523         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
6524           if if the class vtable needs initialized.
6526         Code is contributed under MIT/X11 license.
6528 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6530         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
6531           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
6532           STRING->BSTR, and CLASS->INTERFACE.
6534         Code is contributed under MIT/X11 license.
6536 2008-10-07  Marek Habersack  <mhabersack@novell.com>
6538         * sysmath.h: changed the declaration of the
6539         ves_icall_System_Math_Round2 icall by adding an extra
6540         away_from_zero parameter.
6542         * sysmath.c (ves_icall_System_Math_Round2): added support for
6543         away from zero rounding. The icall now takes an extra boolean
6544         parameter to signal that away from zero operation is requested.
6546 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
6548         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
6549         the delegate klass so it can work with full-aot.
6550         (mono_marshal_get_delegate_end_invoke): Ditto.
6551         (mono_marshal_get_delegate_invoke): Ditto.
6553 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
6555         * gc.c, attach.h, attach.c: remove a bad pattern:
6556         add_finalizer_callback () is not implemented correctly, it can't
6557         without adding more overhead to the finalizer loop and it's not
6558         even needed, since we know exactly what we need to call, so there is
6559         no need to do so through an expensive function pointer.
6561 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
6563         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
6564         for the no-gc case.
6565         * attach.c (mono_attach_init): Remove the #ifdef.
6567 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
6569         * attach.c (mono_attach_init): Don't use
6570         mono_gc_add_finalizer_thread_callback when compiling without GC.
6571         Fixes #432306.
6572         
6573         Code is contributed under MIT/X11 license.
6575 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
6577         * class.c (mono_class_create_from_typedef): Remove the 
6578         #ifndef DISABLE_SIMD stuff.
6580 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
6582         * class-internals.h (MonoClass): Added simd_type bit field.
6584         * class.c (mono_class_create_from_typedef): Check if type is a simd
6585         intrinsic.
6587 2008-10-03  Mark Probst  <mark.probst@gmail.com>
6589         * object.c (mono_method_add_generic_virtual_invocation): Only add
6590         instantiations to the thunk whose count is at least as large as
6591         the threshold.
6593 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
6595         * icall.c: changed the Type of the exception thrown when trying to
6596         invoke a constructor on an abstract class. Part of the fix for bug
6597         #324185.
6599 2008-10-02  Mark Probst  <mark.probst@gmail.com>
6601         * class.c, class-internals.h (mono_method_get_vtable_index): New
6602         function which returns the index into the vtable and properly
6603         handles inflated virtual generic methods.
6605 2008-10-01  Mark Probst  <mark.probst@gmail.com>
6607         * object.c, domain.c, object-internals.h, domain-internals.h:
6608         Generalize IMT thunk machinery to also handle thunks for virtual
6609         generic method invokes.  When a virtual generic method is invoked
6610         more than a number of times we insert it into the thunk so that it
6611         can be called without lookup in unmanaged code.
6613         * generic-sharing.c, class-internals.h: Fetching a
6614         MonoGenericInst* for a method from an (M)RGCTX.
6616 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
6618         * marshal.c (emit_marshal_string): Applied a variant of a patch by
6619         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
6620         marshalling. Fixes #431304.
6622 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
6624         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6625           handle when ref is specified without In or Out.
6627         Code is contributed under MIT/X11 license.
6629 2008-09-30  Mark Probst  <mark.probst@gmail.com>
6631         * loader.c (mono_get_method_constrained): Don't expand method with
6632         the class's context, because it's already a method of that class.
6634 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
6636         * attach.c : should be correct build fix.
6638 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
6640         * attach.c: Fix the previous change.
6642 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
6644         * attach.c : quick w32 build fix.
6646 2008-09-27  Miguel de Icaza  <miguel@novell.com>
6648         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
6649         crashes MonoDevelop: #430455.
6651 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
6653         * domain-internals.h (struct _MonoDomain): Move most fields used only by
6654         the JIT do MonoJitDomainInfo in ../mini/mini.h.
6656         * domain.c: Remove initialization/cleanup of the removed fields.
6658 2008-09-27  Mark Probst  <mark.probst@gmail.com>
6660         * class.c (mono_class_generic_sharing_enabled): Enable generic
6661         code sharing for PPC.
6663 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
6665         * attach.c : Fixing the Windows builds.
6667         Code is contributed under MIT/X11 license.
6669 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6671         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
6672         the default generic sharing mode to 'all'.
6674 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6676         * generic-sharing.c, class-internals.h: New function for checking
6677         whether a method needs a static RGCTX invoke wrapper.  A few
6678         funtions moved from mini/generic-sharing.c.
6680         * icall.c: New function used.
6682 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6684         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
6685         Static RGCTX invoke wrapping applies to value type methods, too.
6687         * class.c (mono_class_setup_vtable_general): In generic-shared
6688         value types, wrap methods with a static RGCTX invoke wrapper.
6690 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6692         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
6693         osx build.
6695 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
6697         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
6698         register a callback which is called when the finalizer thread is woken
6699         up.
6700         (finalizer_thread): Call the callback if it exists.
6702         * attach.h attach.c: New files, implementing the attach mechanism.
6704         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
6705         
6706         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
6707         by the previous change.
6709 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6711         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
6712         loader.c, marshal.c, metadata-internals.h, metadata.c,
6713         method-builder.c, object.c, reflection.c: introduced specific functions
6714         to allocate from the domain and image mempools and cleaned up most of
6715         the code to use them (still missing a few in reflection.c).
6716         Keep the loader bytes counter updated.
6718 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
6720         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
6721         loader-related counters.
6723 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
6725         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
6726         added more MS-compatible counters.
6728 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
6730         * class.c (mono_class_setup_fields): Call setup_fields before accessing
6731         class->blittable. Fixes #428217.
6733 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
6735         * reflection.c (mono_image_get_field_on_inst_token): Call 
6736         field_encode_signature () since that handles custom modifiers too.
6737         Fixes #424663.
6739 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
6741         * reflection.c (add_custom_modifiers): New helper function to merge custom
6742         modifiers stored in objects to a MonoType.
6743         (fieldref_encode_signature): Encode custom modifiers.
6744         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
6745         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
6747 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
6749         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
6750         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
6751         64-bit IL only images because imports are not resolved for IL only images.
6752         Special thanks to Bill Holmes for finding this bug and testing the patch.
6753         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
6755         Contributed under MIT/X11 license.
6757 2008-09-19  Miguel de Icaza  <miguel@novell.com>
6759         * mono-config.c (dllmap_start): Add support for the bits keyword
6760         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
6762 2008-09-19  Mark Probst  <mark.probst@gmail.com>
6764         * reflection.c (inflate_mono_method): When the class the method is
6765         to be inflated for is itself not inflated, just return the method.
6767 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
6769         * mono-perfcounters.c: use more user friendly process instance names.
6771 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
6773         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6774           handle "[in] ref" and "[in][out] ref" cases.
6776         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
6777           to mono_mb_create_method.  This was causing problems calling native to
6778           managed passing Variants by value.
6780         Code is contributed under MIT/X11 license.
6782 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
6784         * class.c (can_access_internals): Call mono_assembly_load_friends ()
6785         before accessing the friend_assembly_names field.
6787         * assembly.c (mono_assembly_load_friends): Make this callable multiple
6788         times.
6789         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
6790         called lazily when it is needed.
6792         * metadata-internals.h (struct _MonoAssembly): Add 
6793         'friend_assembly_names_inited' flag.
6795 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
6797         * mono-perfcounters-def.h: fix the types of a few counters.
6798         * mono-perfcounters.c: implemented the instance names getter
6799         and a few bugfixes.
6801 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
6803         * culture-info-table.h : regenerated.
6805 2008-09-17  Robert Jordan  <robertj@gmx.net>
6807         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
6808         context bound objects. Fixes #415577.
6810         Code is contributed under MIT/X11 license.
6812 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
6814         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
6815         implementation (bug #423582).
6817 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
6819         * object.c (mono_object_get_virtual_method): Handle the case method->slot
6820         is not set. Fixes #426309.
6822 2008-09-16  Jb Evain  <jbevain@novell.com>
6824         * class.c (mono_class_from_name): fix the exported type look up
6825         when the type is defined in a referenced assembly.
6827 2008-09-16  Jb Evain  <jbevain@novell.com>
6829         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
6830         increment the next index counter on each iteration to make that work
6831         for more than one type forwarder. Unmanaged part to fix #422929.
6833 2008-09-15  Mark Probst  <mark.probst@gmail.com>
6835         * object-internals.h: enum ComInterfaceType in
6836         MonoInterfaceTypeAttribute is guint32, not guint16.
6838 2008-09-12  Mark Probst  <mark.probst@gmail.com>
6840         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
6841         writing code.
6843 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6845         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
6846         not gboolean.
6848 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6850         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
6851         Endianness fixes for MonoSymbolFileOffsetTable.
6853 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6855         * process.c (complete_path) : Removing quotes from the 
6856           input path.  The glib file routines do not handle file paths
6857           that have quotes around them.
6859         Code is contributed under MIT/X11 license.
6861 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6863         * socket-io.h : Adding a comment to provide locations where 
6864           changes to MonoSocketAsyncResult need to be synced.
6866         Code is contributed under MIT/X11 license.
6868 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
6870         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
6871         parameters as well. Fixes #425001.
6873 2008-09-08  Miguel de Icaza  <miguel@novell.com>
6875         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
6876         windows build.
6878 2008-09-07  Miguel de Icaza  <miguel@novell.com>
6880         * console-io.c: Add support for tracking the window size if it
6881         changes.
6883         The setup is very simple: the TtySetup function will now return a
6884         pointer to a location in memory that tracks the current console
6885         size.  The managed code checks its current value every time its
6886         queried against the last value set, and updates accordingly.
6888         With this setup we can work with multiple consoles, and we do not
6889         require to poke into managed code from a signal handler.
6891         Additionally, the environment for COLUMNS and LINES is now handled
6892         in unmanaged code.
6894         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
6896 2008-09-07  Mark Probst  <mark.probst@gmail.com>
6898         * marshal.c (mono_type_native_stack_size): Treat
6899         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
6901 2008-09-04  Jb Evain  <jbevain@novell.com>
6903         * class.c (mono_class_is_assignable_from): fix assignability of nullables
6904         to nullables.
6906 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
6908         * verify.c (verify_type_compatibility_full): Revert change
6909         to allow converting a native int to unmanaged pointer be verifiable
6910         under non-strict mode.
6911         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
6913         * verify.c: Added some TODOs.
6915 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
6917         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
6918           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
6919           Changed to use GlobalAlloc for the memory returned on Windows platforms.
6921         Code is contributed under MIT/X11 license.
6923 2008-09-02  Jb Evain  <jbevain@novell.com>
6925         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
6927 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
6929         reflection.c (typebuilder_setup_fields): Handle classes with
6930         explicit size.
6932 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
6934         class.c (mono_class_setup_events): Add memory barrier due to
6935         double checked locking.
6936         
6937         class.c (mono_class_setup_properties): Same.
6939 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
6941         * class.c (mono_class_is_assignable_from): Fix the build.
6942         
6943         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
6944         before accessing klass->interface_bitmap. Fixes #421744.
6946 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
6948         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
6949         the runtime into no-exec mode, useful when running the AOT compiler.
6951         * appdomain.c gc.c object.c: Avoid executing managed code when running
6952         in no-exec mode.
6953         
6954         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
6956         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
6957         special case when the mono_assembly_loaded () returns NULL because the 
6958         search hook is not installed.
6960 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
6962         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
6963         crashes in bstr marshalling on linux.
6965 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6967         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
6968         with more than one parameter.
6970 2008-08-24  Miguel de Icaza  <miguel@novell.com>
6972         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
6973         start/stop flow control as well when turning off ICANON (allows
6974         C-s and C-q to be read by Console.ReadKey).
6976 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
6978         * class.c (mono_class_init): Move the initialization of nested classes
6979         into mono_class_get_nested_types (). Fixes #418433.
6981         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
6982         flag.
6984         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
6985         iterating tough the nested classes of a class.
6987 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
6989         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
6990         on arm.
6992 2008-08-22  Miguel de Icaza  <miguel@novell.com>
6994         * console-io.c (sigcont_handler): Support signal chaining for
6995         SIGCONT.
6997         (console_set_signal_handlers): Use best practices with sigaction,
6998         clear the structure before using it. 
7000 2008-08-22  Robert Jordan  <robertj@gmx.net>
7002         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7003         Fix the Windows build.
7005 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7007         * class.c (mono_class_generic_sharing_enabled): Make the default
7008         sharing mode 'corlib'.
7010 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7012         * console-io.c (console_set_signal_handlers): Fix a warning.
7014         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7015         method normally, the JIT will take care of avoiding recursion.
7017 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7019         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7021         Code is contributed under MIT/X11 license.
7023 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7025         * console-io.c (sigcont_handler): We need to restore the entire
7026         termios state, not only the original settings, as things like echo
7027         can be controlled after this (Booish exposes this issue with its
7028         own ReadLine implementation).
7030         Additionally, we need to set the terminal back into keypad_xmit
7031         mode.
7032         
7033         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7034         string as a paramter as well.   Otherwise we get different
7035         keyboard sequences.
7037 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7039         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7040         delegates with byref out parameter passing. Fixes #351520.
7042         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7043         a generic context.
7044         (mono_type_get_desc): Add the type arguments for GENERICINST.
7045         (mono_method_full_name): Stringify the class name using mono_type_full_name
7046         so it picks up generic arguments.
7048 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7050         * console-io.c: Removed debug output.
7052 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7054         reflection.c (mono_reflection_create_runtime_class): Alloc
7055         the nested classes linked list using the dynamic image mempool.
7056         Fixes leak in corlib compilation.
7058 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7060         * console-io.c: Fix incredibly annoying behavior on the console
7061         after resuming execution after control-z.   This affected every
7062         console application.
7064 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7066         * mempool-internals.h: Header for mono private mempool functions. The first
7067         two function are for allocating glib linked lists using pools.
7069         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7071         * Makefile.am: Added mempool-internals.h.
7073 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7075         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7076         (mono_domain_free): Ditto.
7078         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7079         be used by the JIT to store its domain-specific information, instead of putting
7080         it directly into MonoDomain.
7082         * domain.c (mono_install_create_domain_hook): New helper function to install
7083         a hook which initializes domain->runtime_info.
7085         * domain.c (mono_install_free_domain_hook): Ditto.
7086         
7087 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7089         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7090         asserting if the ares parameter is null.
7092         * mono-perfcounters.c: Fix warnings.
7094         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7095         is not needed, don't check for interruptions either.
7096         (mono_marshal_get_delegate_end_invoke): Ditto.
7098 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7100         * mono-perfcounters.c (predef_readonly_counter): added support for
7101         reading the ASP.NET Requests Queued counter from another process.
7103 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7105         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7106         MonoImage to simplify the AOT code.
7108 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7110         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7111         marshalling. Fixes #416078.
7113 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7114         
7115         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7116         it is set, looking up the icall address is deferred to the JIT, since 
7117         in embedded scenarios, the icall might not be registered in the runtime
7118         doing the AOT compilation. Backported from the 2.0 branch.
7120 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7122         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7123         Fixes #415621.
7125 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7127         * Makefile.am: added support for cross-compilation.
7129 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7131         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7133 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7135         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7137 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7139         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7140         mono-perfcounters.c: performance counters implementation.
7142 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7144         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7145         to gpointer, letting the AOT code decide what to store in it.
7147 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7149         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7150           mono_class_setup_methods if the methods are not initialized.
7152         Code is contributed under MIT/X11 license.
7154 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7156         * verify.c: Remove some debug code I commited by accident.
7158         * verify.c (mono_method_is_valid_in_context): Change the return value
7159         to make possible to distinguish between invalid and unverifiable.
7161         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7162         methods.
7164 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7166         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7167         constraints. Fixes regression in gtest-253.
7169 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7171         * verify.c (mono_verifier_verify_class): Don't allow generic types
7172         with explicit layout.
7174         * verify.c (mono_method_verify): Check locals and argument types.
7176 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7178         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7179         wait if the thread is in StopRequested state.
7181         * class.c (mono_class_from_name): Refactor the module searching code into
7182         a separate function so it can be reused in the AOT case too.
7184 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7186         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7187         Check both the type and it's generic type definition for loader errors.
7188         
7189         * verify.c (mono_method_is_valid_in_context): Don't generate another
7190         error when a type errors occur, this leads to the wrong exception been
7191         thrown.
7193 2008-07-28  Dick Porter  <dick@ximian.com>
7195         * icall-def.h
7196         * process.c
7197         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7198         New internal calls to duplicate and close a process handle.
7200 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7202         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7204 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7206         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7208 2008-07-27  Robert Jordan  <robertj@gmx.net>
7210         * class.c (mono_class_init): Don't compute class.has_finalize for
7211         valuetypes. Fixes #412477.
7213 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7215         * verify.c: Implement constraint equivalence checking.
7216         This is required when a generic parameter is used as
7217         argument to a constrained one.
7219         Fixes #410637.
7221 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7223         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7225         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7227         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7228         synch with managed object layout.
7230 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7232         * verify.c (do_branch_op): Handle valuetypes and generic
7233         arguments properly.
7235         * verify.c (do_cmp_op): Same.
7237         Fixes #410383.
7239 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7241         * generic-sharing.c: Fix memory leaks.
7243         * class.c, class-internals.h: Make
7244         mono_class_inflate_generic_type_with_mempool() non-static.
7246 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7248         * pedump.c (dump_verify_info): Dump full class name.
7250 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7252         * generic-sharing.c: Removed some old code that didn't do anything.
7254 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7255         * profiler.c: Added runtime_initialized_event,
7256         mono_profiler_install_runtime_initialized and
7257         mono_profiler_runtime_initialized. This new hook tells the profiler
7258         when the runtime is sufficiently initialized to be able to call
7259         mono_thread_attach on the root appdomain.
7260         * profiler.h, profiler-private.h: Likewise.
7262 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7264         * verify.c (do_cast): Do boxing for generic arguments as well.
7266         * class.c (is_nesting_type): Drop generic instantiations before
7267         checking for nesting.
7269         * class.c (can_access_instantiation): Allow access to generic
7270         arguments.
7272 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7274         * verify.c (verify_class_for_overlapping_reference_fields):
7275         On some cases, the field size might be zero, guard against that.
7276         Fix the explicit layout check to work as expected.
7278 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7280         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7281         mono_thread_resume () during shutdown, since the thread we want to abort
7282         might be suspended.
7284 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7286         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7287         warning.
7289         * debug-mono-symfile.c: Fix a warning.
7291         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7293         * object.c (mono_class_vtable): Check if exception_type is set, and return
7294         NULL as defined by the function comments.
7296 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7298         * mempool.c: Use malloc for every single mempool allocation if the
7299         configure option is set.  This makes it easier to track mempool
7300         allocations with tools like Valgrind.
7302 2008-07-22  Jb Evain  <jbevain@novell.com>
7304         * reflection.c (create_dynamic_mono_image): emit the same
7305         metadata version that SL2 does when creating a SL2 image.
7307 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7309         * icall-def.h:
7310         * icall.c: New icall System.Enum:get_hashcode. This function
7311         avoids the overhead of boxing the enum to the underlying type.
7313 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7315         * reflection.c (mono_method_get_object): Don't let static RGCTX
7316         invoke wrappers get into MonoReflectionMethods.
7318 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7320         * object-internals.h:
7321         * object.c: New mono_runtime_class_init_full function
7322         that makes throwing the exception optinal.
7324         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7325         for the case where the exception object is supplied.
7327 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7329         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7330         old ld versions.
7332         Contributed under MIT/X11 license.
7334 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7336         * string-icalls.c (ves_icall_System_String_InternalSplit):
7337         Optimize array allocation by caching the MonoClass of the
7338         array type.
7340         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7342         * reflection.c (mono_param_get_objects): Same.
7344 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7346         * icall-def.h:
7347         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
7348         It inflates the given type using the class context.
7350 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
7352         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
7353         the vtable if it already exists.
7355         * object-internals.h: Add mono_class_try_get_vtable as part of the
7356         internal API.
7358         * reflection.c (mono_type_get_object): Use the MonoObject from the
7359         vtable when possible. Reduces locking contention on reflection heavy
7360         code.
7362 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
7364         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
7365         g_bit_nth_msf () since that macro is not implemented in eglib.
7367 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
7369         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
7370         on platforms which do not support it.
7372 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7374         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
7376 2008-07-11  Martin Baulig  <martin@ximian.com>
7378         * mono-debug-debugger.h
7379         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
7381         * mono-debug-debugger.c
7382         (_mono_debugger_interruption_request): New global volatile variable.
7383         (mono_debugger_check_interruption): New public function.
7385         * threads.c
7386         (mono_thread_current_check_pending_interrupt): Call
7387         mono_debugger_check_interruption().
7388         (mono_thread_interruption_checkpoint_request): Likewise.
7390 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7392         * verify.c: Add more type checks for loaded types. Verify the result
7393         handle from ldtoken.
7395 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7397         * loader.c (field_from_memberref): Don't crash if the field
7398         wasn't found.
7400 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7402         * verify.c: Verify if type and method instantiations
7403         don't have invalid VAR or MVAR arguments.
7405 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7407         * verify.c: Fix double free of function pointer list.
7409 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7411         * object.c (mono_string_to_utf8): Comment the new code as it
7412         breaks under eglib.
7414 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
7416         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
7418 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
7420         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
7421           is not throw too many times.
7423         Code is contributed under MIT/X11 license.
7425 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7427         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
7428         debugging is turned off.
7430 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
7432         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
7434 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7436         * class-internals.h, class.c: Added new generic sharing option:
7437         Share only stuff in System.Collections.Generic, which is now the
7438         default.
7440 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7442         * generic-sharing.c, class-internals.h: New function for getting a
7443         generic method in a generic class given the corresponding method
7444         for a different instantiation of the class.  Partly refactored
7445         from mini-trampolines.c.
7447         * class.c: Make sure generic methods have a class_inst if they are
7448         part of a generic class.
7450         * metadata.c (mono_type_stack_size_internal): Handle type
7451         variables.
7453 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7455         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
7456         Signifies whether information on the this/vtable/mrgctx variable
7457         is available.
7459 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7461         * object.c, object-internals.h, icall.c: New function
7462         mono_delegate_ctor_with_method(), which does the same as
7463         mono_delegate_ctor(), but takes an explicit method argument
7464         instead of taking the method from the jit info.
7466         * marshal.c: When creating a delegate with an inflated method take
7467         the "this" argument as the target class for the castclass.
7469 2008-07-03  Mark Probst  <mark.probst@gmail.com>
7471         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
7472         mono_jit_info_table_find() to perform very badly in some cases.
7474 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
7476         * icall.c (type_from_typename): Handle 'string'.
7478         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
7479         wrappers into the wrapper_hash, since the key is not a MonoMethod.
7481 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
7483         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
7485         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
7486         number of available managed allocator types.
7488         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
7489         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
7491 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
7493         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
7494         which is a low level lock protecting just the 'jit_code_hash' hash table.
7496         * domain.c: Initialize+cleanup jit_code_hash_lock.
7497         
7498 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7500         * coree.c (mono_load_coree): Set coree_module_handle global variable only
7501         after initialization.
7503         * coree.h: Make MonoFixupExe internal.
7505         Contributed under MIT/X11 license.
7507 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7509         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
7510         because that is platform independent. Check NumberOfRvaAndSizes in PE32
7511         as well.
7512         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
7513         image being loaded is a CLI image and _CorValidateImage gets called.
7515         * coree.h: Add MonoLoadImage.
7517         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
7518         instead of LoadLibrary.
7520         Contributed under MIT/X11 license.
7522 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
7524         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
7525         for any primitive type.
7527 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
7529         * object.c (mono_array_new_specific): Optimize this and the other allocation
7530         functions a bit.
7531         
7532         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
7533         domains too if mono_dont_free_domains is set.
7535         * domain-internals.h (mono_dont_free_domains): New internal option controlling
7536         whenever to free appdomain data after it has been unloaded.
7538         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
7539         
7540 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
7542         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
7543         (mono_method_get_equivalent_method): Fix a warning.
7545         * object.c (mono_message_init): Avoid looking up array types for each call.
7547 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
7549         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
7550         call.
7552         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
7553         even more.
7555         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
7556         each iteration.
7558         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
7559         fields of an enum.
7561 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
7563         * object.c (mono_value_box): Fix boxing of nullables.
7565 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
7567         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
7568         mono_module_handle that is defined by the linker; no initialization required.
7569         * coree.h: Remove mono_module_handle, add __ImageBase, update
7570         mono_image_open_from_module_handle.
7571         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
7572         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
7573         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
7574         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
7575         to 4 GB away from image base address. IA64 version is not tested but was very
7576         easy to implement and should work if we ever need it.
7577         * domain.c (mono_init_internal): Avoid system error message boxes.
7578         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
7579         with has_entry_point. Handle do_mono_image_load fauilre correctly.
7580         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
7581         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
7582         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
7584         Contributed under MIT/X11 license.
7586 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7588         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
7589         as part of the private mono API.
7590         
7591         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
7592         Do proper argument checking for methods that belong to generic classes.
7593         Do proper type resolution for GMFH/2.
7594         Fixes #377324.
7595         
7596 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7598         * verify.c (do_switch): Fix a memory corruption bug with
7599         the jump index is out of bound.
7601 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7603         * verify.c: Disable debug code.
7605 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7607         * reflection.c (mono_image_get_methodbuilder_token): Use
7608         mono_image_get_methodspec_token_for_generic_method_definition
7609         instead of mono_image_get_memberref_token. We cache more memberef
7610         entries now.
7612 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7614         * verify.c: Inflate exception clause types.
7615         Fixes #402606.
7616         
7617 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7619         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
7620         name.
7622         * reflection.c (mono_image_get_ctorbuilder_token): Same.
7624         * reflection.c (mono_image_create_method_token): Same.
7626 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7628         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
7629         It does the same as mono_image_get_methodref_token but works on
7630         MethodBuilder.
7632         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
7633         and always generate a methodspec. This follows the old behavior and fixes
7634         the regressions in System.Core. 
7636 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
7638         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
7639         don't event mono_class_get () succeeds. Fixes #402182.
7641 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7643         * metadata-internals.h: Added MonoDynamicImage::methodspec
7644         hashtable to store methodspec tokens created for MethodBuilders.
7646         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
7647         MethodBuilders as open instantiations if a methodspec was requested.
7649         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
7651         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
7653         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
7655         Fixes bug #349190.
7657 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7659         * loader.c (method_from_methodspec): Avoid crashing if the
7660         method lookup fails.
7662 2008-06-20  Dick Porter  <dick@ximian.com>
7664         * socket-io.c (get_socket_assembly): Cope with Moonlight network
7665         classes being in a different assembly.  Fixes bug 399184.
7667 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
7669         * loader.c (mono_loader_init): Make this callable multiple times.
7670         (mono_dllmap_insert): Call mono_loader_init () so this works even before
7671         the runtime is initialized. Fixes #401755.
7673 2008-06-19  Dick Porter  <dick@ximian.com>
7675         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
7676         Fixes bug 349688.
7678 2008-06-19  Dick Porter  <dick@ximian.com>
7680         * socket-io.c:
7681         * icall-def.h: Implement Socket generic Send() and Receive()
7682         methods.  Fixes bug 395168.
7684 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
7686         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
7688         Contributed under MIT/X11 license.
7690 2008-06-18  Martin Baulig  <martin@ximian.com>
7692         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
7693         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
7694         set to 80.0.  The debugger <-> runtime interface is now frozen as
7695         well.   
7697         * mono-debug.c
7698         (mono_debug_debugger_version): Bump to 4.
7700 2008-06-18  Martin Baulig  <martin@ximian.com>
7702         * debug-mono-symfile.c
7703         (load_symfile): Don't check the minor version.
7705         * debug-mono-symfile.h: Bump the version number to 50.0.
7707 2008-06-18  Martin Baulig  <martin@ximian.com>
7709         * debug-mono-symfile.c
7710         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
7711         minimum required version.
7713 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7715         * reflection.c (mono_custom_attrs_from_property): Fix support for
7716         retriveving cattrs of dynamic inflated generic types.
7718         * reflection.c (mono_custom_attrs_from_event): Same.
7720         * reflection.c (mono_custom_attrs_from_field): Same;
7722         * reflection.c (typebuilder_setup_events): Same cattrs of events.
7724         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
7725         Moved to metadata.c.
7727         * metadata.c: New functions to retrive the equivalent field, event
7728         of property from the generic type definition.
7730         * metadata-internals.h: Added new functions from metadata.c.
7732 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7734         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
7735         to cached in a mempool is used.
7737         * metadata.c (free_generic_class): In some situations field generic_info type
7738         is not properly dup'ed and leads to double free'ing.
7740         Fixes #400643.
7742 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7744         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
7745         this arguments (will be needed later for generic methods).
7746         Collect stats.
7748 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7750         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7751         Create a static RGCTX invoke wrapper for methods which require it.
7753 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7755         * object.c, class-internals.h: New function for checking whether
7756         an individual field is special static.
7758 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
7760         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
7761         linear search since the table is sorted.
7763         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
7764         Fixes #324180.
7766 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
7768         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
7769         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
7771         * gc.c (mono_domain_finalize): Allow an infinite timeout.
7773         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
7774         
7775         * threads.c (mono_thread_request_interruption): Get rid of locking, use
7776         InterlockedCompareExchange to query and modify 
7777         thread->interruption_requested.
7779         * object-internals.h (struct _MonoThread): Change interruption_requested
7780         to a gint32 so it can be modified by atomic operations. Add 
7781         'critical_region_level' from the managed side, change small_id to a guint32,
7782         add new set of 'unused' fields.
7784         * appdomain.c: Bump corlib version.
7786 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7788         * class.c (mono_class_from_name): Search modules as well. Fixes
7789         #322332.
7791 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7793         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
7794         templates.  Templates are generalized with an additional type_argc
7795         argument.  RGCTX templates have type_argc==0, MRGCTX templates
7796         have type_argc>0.
7798         * domain-internals.h, domain.c: New hash table for looking up
7799         MRGCTXs.
7801         * metadata.c, metadata-internals.h: Rename hash and equal
7802         functions for MonoGenericInst's and make them public.
7804         * class-internals.h: New data structures for the MRGCTX.  Macros
7805         for distinguishing slots in the RGCTX and the MRGCTX.
7807 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7809         * object.c (mono_method_get_imt_slot): Put the same methods of
7810         different instantiations of the same generic interface in the same
7811         IMT slots, to make generic sharing simpler.
7813 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7815         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
7817         * metadata.c (mono_metadata_field_info_with_mempool): Added.
7818         This function works just like mono_metadata_field_info, but
7819         accept a mempool as argument to be used allocating memory.
7821         * marshal.c (mono_marshal_load_type_info): Use new function
7822         to load marshal data into image mempool.
7824 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7826         * class.c (mono_class_inflate_generic_type_with_mempool):
7827         This function allows to inflate a generic type using
7828         a mempool.
7830         * class.c (inflate_generic_type): Take a mempool as argument
7831         and use it to do type dup'ing.
7833         * class.c (mono_class_setup_fields): Field type for generic
7834         generic classes are allocated from the image mempool.
7836         * metadata.c (free_generic_class): Inflated field type is
7837         now allocated in the image mempool.
7839 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7841         * threads.c (thread_cleanup): Free MonoThread::name.
7843 2008-06-12  Marek Habersack  <mhabersack@novell.com>
7845         * appdomain.c (ensure_directory_exists): avoid unnecessary
7846         mkdir(2) calls when the shadow directory already exists.
7847         (mono_make_shadow_copy): copy also satellite assemblies from the
7848         private bin directories.
7850 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7852         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
7853         
7854         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
7855         a page boundary. Fixes #396219.
7857 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7859         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
7860         due to double-checked locking.
7862 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7864         * assembly.c (build_assembly_name): Release memory on failure.
7866         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
7868 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7870         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
7871         memory on failure.
7873 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7875         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
7876         memory on failure.
7878 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7880         * loader.c (field_from_memberref): Check if field signature type is equal
7881         to the non-inflated type of the field. Fixes #398980.
7883 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7885         * assembly.c (mono_assembly_load_from_full): Call 
7886         mono_assembly_load_friends () outside the assemblies lock, since it can
7887         acquire the loader lock. Fixes #323696.
7889         * reflection.c (resolve_object): Inflate the inst with the context for
7890         FieldOnTypeBuilderInst. Fixes #399010.
7892 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7894         * reflection.c (mono_image_get_field_on_inst_token): Don't
7895         inflate the field to encode it's signature. If it's a
7896         VAR or MVAR it should stay that way in the signature.
7897         Fixes #399047.
7899 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7901         * reflection.c (resolve_object): Release memory of inflated types.
7903 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7905         * loader.c (mono_method_get_signature_full): Remove assert about
7906         loading a methodspec to a generic method. We have such methods, such as
7907         System.Threading.Interlocked::CompareExchange<T>.
7908         This assert was removed since it crashes the verifier when it checks
7909         methods calling CompareExchange<T>.
7911 2008-06-10  Marek Safar  <marek.safar@gmail.com>
7913         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
7914         of Type array and not MonoType.
7916 2008-06-10  Marek Habersack  <mhabersack@novell.com>
7918         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
7919         <lupus@ximian.com>
7921 2008-06-10  Martin Baulig  <martin@ximian.com>
7923         * debug-mono-symfile.h
7924         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
7925         changes to the file format, but we were generating incorrect
7926         source file indices in the line number table due to a bug, which
7927         made backtraces report an incorrect source file.
7929 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7931         * mono-debug.c: Moved mono_debug_free_method_jit_info from
7932         mini/debug-mini.c to here.
7934         * mono-debug.c (il_offset_from_address): Free memory from find_method.
7936         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
7937         use it to release structs returned by mono_debug_find_method.
7939 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
7941         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
7942         since it needs to set method->slot for all interface methods.
7944 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7946         * class-internals.h: Forgot to add.
7948 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7950         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
7952         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
7953         Lookup the custom attributes from property_hash.
7955         * reflection.c (mono_save_custom_attrs): Save the custom attributes
7956         in property_hash. Allocate all data using the image mempool.
7958         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
7959         for dynamic_custom_attrs to checks if the image is dynamic.
7961 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7963         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
7964         assemblies array.
7965         
7966         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
7967         runtime functions while holding the domain assemblies lock.
7969 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7971         * verify.c: Reapplied the last bit of the reverted changes.
7973 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
7975         * verify.c: Reapplied more of the reverted changes.
7977 2008-06-09  Martin Baulig  <martin@ximian.com>
7979         * debug-mono-symfile.c (load_symfile): Check the major version
7980         first; if it's wrong, don't print the minor version in the error message.
7982 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
7984         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
7985         lock instead of the domain lock to avoid deadlocks, since the thread might
7986         already hold the loader lock.
7988         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
7989         (mono_thread_attach): Ditto.
7991         * monitor.c: Use a TLS variable for holding the current thread id instead
7992         of calling pthread_self ().
7993         (mono_monitor_init_tls): New internal function to initialize the TLS
7994         variable.
7995         (mono_monitor_try_enter_internal): Put the owner == id check after the
7996         owner == 0 check.
7998         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
7999         missed optimizations when using gcc-4.3.
8001 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8003         * reflection.c (mono_dynamic_image_free): Free the memory
8004         used by MonoGenericParam in MonoDynamicImage::gen_param.
8006         * reflection.c (mono_reflection_setup_generic_class): Allocate
8007         container from mempool.
8009         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8010         container from mempool.
8012 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8014         * threads.c (mono_set_pending_exception): New internal function to set the
8015         pending exception of the current thread.
8016         (mono_thread_get_and_clear_pending_exception): Check for 
8017         thread->pending_exception as well.
8019         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8021         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8022         it can trigger a collection.
8024 2008-06-06  Martin Baulig  <martin@ximian.com>
8026         Merged the `debugger-kahalo' branch.
8028         * mono-debug.h
8029         (MONO_DEBUGGER_VERSION): Bumped to 72.
8031         * debug-mono-symfile.h
8032         (MonoSymbolFileMethodIndexEntry): Removed.
8033         (MonoSymbolFileMethodEntry): New public typedef.
8034         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8035         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8036         `data_offset'.
8037         (MonoSymbolFileMethodEntry): Removed.
8038         (MonoSymbolFileLexicalBlockEntry): Removed.
8039         (MonoSymbolFileLineNumberEntry): Removed.
8040         (MonoDebugLexicalBlockEntry): Removed.
8041         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8042         removed `num_il_offsets' and `il_offsets'.
8043         (MonoSymbolFile): Replace `version' with `major_version' and
8044         `minor_version'.
8045         (MONO_SYMBOL_FILE_VERSION): Replace with
8046         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8047         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8049         * debug-mono-symfile.c
8050         (mono_debug_symfile_lookup_location): Add support for the new line
8051         number table format.
8053 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8055         * metadata.c (free_generic_class): Release the inflated
8056         MonoClass of dynamic generic classes if it's not a generic
8057         type definition.
8059 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8061         * verify.c: Reapplied more of the reverted changes.
8063 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8065         * reflection.c (lookup_custom_attr): Clean the cached flag or
8066         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8067         for SRE types.
8069 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8071         * verify.c: Reapplied a small part of the reverted changes.
8073 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8075         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8077         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8078         previously in managed code.
8079         (mono_monitor_exit): Ditto.
8080         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8082         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8083         the managed definition.
8085 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8087         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8089 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8091         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8092         
8093         * monitor.c: Add some micro optimizations.
8095         * icall.c (type_from_typename): Handle 'bool'.
8097 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8099         * verify.c: Implement constructor verification per P III 1.8.1.4.
8100         Fixes #396716.
8102 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8104         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8105         holding the assemblies lock here too.
8107 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8109         * verify.c: Kill stack_top function.
8111 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8113         * verify.c: Kill stack_get function.
8115 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8117         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8119 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8121         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8122         more reliable.
8124         * verify.c (mono_method_verify): Inflate params and locals to avoid
8125         mismatch when checking for compatibility.
8127 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8129         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8130         Length prefix should be size in bytes. Fix bug #339530.
8131         
8132         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8133         Length prefix should be size in bytes. Fix bug #339530.
8135         Code is contributed under MIT/X11 license.
8137 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8139         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8141         Contributed under MIT/X11 license.
8143 2008-06-05  Martin Baulig  <martin@ximian.com>
8145         * mono-debug-debugger.c
8146         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8148 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8150         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8151         while holding the assemblies lock to prevent deadlocks. Handle the case
8152         where the search hook returns NULL but the assembly was still loaded.
8153         Fixes #323696.
8155         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8156         modify domain state.
8158 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8160         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8161         * Makefile.am (pedump_LDADD): Post-process object files and
8162         add dtrace-generated object file, if necessary.
8164         Code is contributed under MIT/X11 license.
8166 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8168         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8170 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8172         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8174 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8176         * threads.c: Try to free everything from the delayed free table
8177         when shutting down threads, and set the variable to NULL after the
8178         table is freed so that calling
8179         mono_thread_hazardous_try_free_all() when shutting down the root
8180         domain doesn't crash.
8182 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8184         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8185         the caller if resulting type was inflated.
8187         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8188         was inflated.
8190         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8193 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8195         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8196         class library tests.
8198         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8199         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8200         #396989.
8202 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8204         * domain.c, domain-internals.h: The JIT infos are now freed by the
8205         JIT info table code.  They are freed immediately if there only a
8206         single JIT info table in circulation.  If there is more, the free
8207         is delayed via a queue.
8209         * threads.c, threads-types.h: New hazard pointer function for
8210         freeing all freeable delayed items in one sitting.
8212 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8214         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8216         * reflection.c (typebuilder_setup_properties): Same.
8218         * reflection.c (typebuilder_setup_events): Same.
8220 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8222         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8223         and use it for allocating memory.
8225         * reflection.c (mono_marshal_spec_from_builder): Same.
8227         * reflection.c: Change code to use new signatures.
8229         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8231 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8233         * decimal.c (rescale128): Put back one line which was accidently commented
8234         out.
8235         
8236         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8237         to cause crashes.
8239 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8241         * reflection.c (mono_reflection_generic_class_initialize): Name must
8242         be always malloc'ed so we can free it later on. Do this for field, property
8243         and event.
8245         * metadata.c (free_generic_class): Free field, property and event names.
8247 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8249         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8250         instead of g_memdup.
8252         * reflection.c (typebuilder_setup_fields): Same.
8254 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8256         * decimal.c (rescale128): Optimize this function a bit more.
8258 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8260         * metadata.c (free_generic_class): Release some memory from
8261         SRE generic classes.
8263 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8265         * reflection.c (mono_image_get_generic_field_token): No reference
8266         to name is kept, free it.
8268         * reflection.c (mono_reflection_generic_class_initialize): Free
8269         more memory of the inflated field.
8271 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8273         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8274         code.
8276 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8278         * reflection.c (mono_dynamic_image_free): Release memory used by
8279         MonoDynamicImage::array_methods elements.
8281         * reflection.c (assembly_add_win32_resources): Release memory after
8282         encoding.
8284 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8286         * decimal.c (log2_32): Use an optimized version for this function too.
8287         
8288         * decimal.c (log2_64): Fix this on 32 bit machines.
8290 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8292         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8294         * class.c (mono_metadata_signature_deep_dup): Same.
8296         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8297         a mempool.
8299         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8301         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8303         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8305         * class-internals.h: Update signatures to take a MonoMemPool.
8307 2008-06-02  Dick Porter  <dick@ximian.com>
8309         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8310         * icall-def.h: Add
8311         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8312         FormatMessage API to get the error text.  Fixes bug 321827.
8314 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8316         * decimal.c: Add some micro optimizations to make decimal operations faster.
8318 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8320         * reflection.c (method_encode_clauses): Take a mempool
8321         as parameter and use it to allocate the clause array.
8323         * reflection.c (mono_image_get_field_on_inst_token): Free
8324         the inflated type after encoding it.
8326         * reflection.c (mono_dynamic_image_free): Free each element
8327         of MonoDynamicImage::gen_params.
8329         * reflection.c (reflection_methodbuilder_to_mono_method):
8330         Allocate the generic param array from the mempool.
8331         Allocate signature params from the mempool.
8333         * reflection.c (mono_reflection_generic_class_initialize):
8334         Free inflated fields after been used.
8336 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8338         * icall.c: Reapply the memory leak fixes as they no
8339         longer make mono crash.
8341 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8343         * reflection.c (mono_type_get_object): Don't store the suplied
8344         MonoType with type_hash. A caller which pass a type that
8345         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8346         might end with a pointer to freed memory.
8347         The solution is to use byval_arg or this_arg from the associated
8348         MonoClass of the supplied type.
8350 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
8352         * icall.c: Revert the rest of the last change as it breaks the build too.
8354 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8356         * icall.c: Revert a leak fix as it's breaking the build.
8358 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8360         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
8362 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8364         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
8366 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8368         * icall.c: Fix some memory leaks.
8370 2008-05-29  Dick Porter  <dick@ximian.com>
8372         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
8373         async socket operations from the pending list when a socket
8374         closes.  Leaving it until the threadpool services the event
8375         exposes a race condition when a socket descriptor is reused.
8376         Fixes bug 377589.
8378 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8380         * object.c: Fix negative index check for array alocation.
8382 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8384         * icall.c, marshal.c: Delegate wrappers should skip visibility.
8385         This check is performed by the verifier for IL created delegates
8386         and by Delegate::CreateDelegate for programatically created ones.
8387         Fixes #372406.
8389 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8391         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
8392         Fix code to use mono_array_size_t instead of int.
8394         Based on patch by Luis F. Ortiz.
8395         Contributed under X11 license.
8396         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8398 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8400         * icall.c: Added ves_icall_System_Array_GetLongLength and
8401         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
8402         arrays.
8404         * icall.h: Export both new functions.
8406         Based on patch by Luis F. Ortiz.
8407         Contributed under X11 license.
8408         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8410 2008-05-28  Martin Baulig  <martin@ximian.com>
8412         The debugger now requires exactly r103463.
8414         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
8415         This version is not supported by the debugger, wait for 72.
8417 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8419         * object.h: Changed array related functions to use
8420         mono_array_size_t instead of guint32. Forgot to commit this file.
8422         Patch by Luis F. Ortiz.
8423         Contributed under X11 license.
8424         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8427 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8429         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
8430         don't define it. Use the number literal instead.
8432 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8434         * icall.c: Changed array related functions to use
8435         mono_array_size_t instead of guint32.
8437         * icall.c (ves_icall_System_Array_GetLength): Check for length
8438         overflow under MONO_BIG_ARRAYS.
8440         Based on patch by Luis F. Ortiz.
8441         Contributed under X11 license.
8442         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8444 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8446         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
8448         Based on patch by Luis F. Ortiz.
8449         Contributed under X11 license.
8450         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8452 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8454         * object.c, object.h: Changed array related functions to use
8455         mono_array_size_t instead of guint32.
8457         Patch by Luis F. Ortiz.
8458         Contributed under X11 license.
8459         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8461 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8463         * object.h: Introduced mono_array_size_t typedef. This must be used
8464         in all places an array length is expected. This is 64bits wide if
8465         MONO_BIG_ARRAYS is enabled.
8467         Patch by Luis F. Ortiz.
8468         Contributed under X11 license.
8469         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8471 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
8473         * security-manager.c class.c: Set the class exception info by calling
8474         mono_class_set_failure ().
8476         * class.c (mono_class_get_exception_data): New accessor function.
8477         (mono_class_set_failure): Store exception_data in the property hash.
8479         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
8480         the struct as a property.
8482         * loader.c (mono_get_method_full): Store the lookup result for method
8483         tokens in method_cache, the others in methodref_cache to decrease the memory
8484         usage of hash tables.
8486         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
8487         (mono_image_init): method_cache is lazy inited now.
8489         * metadata-internals.h (struct _MonoImage): Change method_cache to
8490         a MonoValueHashTable, add a separate methodref_cache.
8492 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
8494         * number-formatter.h: Fix tables to avoid arithemtic overflow in
8495           Double.ToString as exposed by Bug #383531.
8497 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
8499         * number-formatter.h: Make some tables static.
8501         * class.c (mono_method_set_generic_container): New accessor function.
8502         (mono_method_get_generic_container): Ditto.
8504         * class-internals.h (struct _MonoMethod): Remove rarely used 
8505         'generic_container' field, store it in the property hash instead. Add 
8506         'is_generic' boolean field instead.
8508         * image.c (mono_image_init): Initialize property_hash.
8509         (mono_image_close): Destroy property_hash.
8511         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
8512         hold rarely used fields of runtime structures belonging to this image.
8514         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
8515         to get/set method->generic_container.
8517         * loader.c (mono_get_method_from_token): Avoid loading the method header for
8518         generic methods.
8520 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
8522         * class.c (mono_class_inflate_generic_method_full): Don't increase
8523         mono_stats.inflated_method_count for methods found in the cache.
8525         * threads.c (mono_thread_request_interruption): Add a comment about 
8526         QueueUserAPC ().
8528 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
8530         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
8531         interface_offsets_packed table.
8532         
8533         * class.c (mono_class_init): Remove some dead code.
8535         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
8536         mono_class_setup_vtable () when CAS is active to detect security problems.
8538 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
8540         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
8542         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
8543         parameters as it's irrelevant for delegate checking.
8545 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
8547         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
8549         * class.c (mono_class_init): Control the creation of a generic vtable using
8550         a global which is true by default, but set to false by the runtime startup code.
8551         
8552         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
8553         Disabled for now since it breaks the embedding API.
8554         Move the setup of class->methods for arrays to mono_class_setup_methods ().
8555         (mono_class_setup_methods): Add a memory barrier.
8557         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
8558         when mono_class_init () doesn't compute the generic vtable.
8559         
8560 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
8561         * profiler.c: Added mono_profiler_install_statistical_call_chain,
8562         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
8563         to support call chains (backtrace) in the stat profiler.
8564         * profiler.c, profiler-private.h: Likewise.
8566 2008-05-22  Mark Probst  <mark.probst@gmail.com>
8568         * generic-sharing.c: Init generic class when a method of it is
8569         requested via a runtime generic context.
8571 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
8573         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
8575         * reflection.c (mono_type_get_object): Add a FIXME.
8577         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
8579         * class.c (mono_class_get_method_by_index): New helper function, returning an
8580         entry in the class->methods array.
8582 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8584         * class.c (mono_class_init): Only do the array optimization for szarrays. 
8585         Avoid creating a generic vtable for generic instances as well.
8586         (mono_class_get_method_from_name_flags): Don't search in the metadata for
8587         generic instances.
8589 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
8591         * loader.c (mono_get_method_constrained): Inflate the signature
8592         with class context. Fix #325283.
8594 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8596         * object.c (mono_class_create_runtime_vtable): Add a comment.
8598         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
8599         where needed.
8600         (setup_interface_offsets): Handle the case when this is called twice for arrays.
8601         (mono_class_setup_vtable_general): Add an assert.
8602         (mono_class_init): Avoid creating a generic vtable for arrays.
8604         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
8605         here, let mono_class_init () do that.
8607         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
8608         interfaces in mscorlib.
8610         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
8611         interfaces. Add some comments.
8612         (mono_class_init): Call mono_class_setup_methods () here since it is no
8613         longer called by mono_class_setup_vtable ().
8615         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
8616         not set in class->vtable.
8617         (mono_class_create_runtime_vtable): Reenable the disabled code.
8619         * object.c (mono_class_create_runtime_vtable): Disable the last change for
8620         now as it causes some test failures.
8622         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
8623         if using the vtable trampoline. Also remove some strange code which put the
8624         generic methods themselves into the vtable slots. Remove the AOT init_vtable
8625         stuff as it is no longer needed.
8627 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
8629         * pedump.c: Give make --verify all option check code as well.
8630         Using --verify code won't check for metadata now.
8632 2008-05-19  Martin Baulig  <martin@ximian.com>
8634         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
8636         * mono-debug.c
8637         (_mono_debug_using_mono_debugger): New global variable; it's set
8638         directly by the debugger, so mono_debug_using_mono_debugger() also
8639         works after attaching.
8641 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
8643         * object.c (mono_class_create_runtime_vtable): Use memory barriers
8644         as we do double checked locking on MonoClass::runtime_info and
8645         MonoClassRuntimeInfo::domain_vtables.
8647 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
8649         * debug-helpers.c (print_field_value): Fix a warning.
8651 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
8653         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
8654         set in the AOT case.
8656 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8658         * class.c (mono_class_setup_vtable_general): Use memory barriers
8659         as we do double checked locking on MonoClass::vtable.
8661 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8663         * reflection.c (resolve_object): Inflate only if the generic context
8664         is not null. Fixes #389886.
8666 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
8668         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
8669         instead of g_free.
8671         Code is contributed under MIT/X11 license.
8673 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8675         * class.c: Revert unrelated change.
8677 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8679         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
8680         a generic instantiation, use mono_class_from_mono_type instead of playing
8681         with MonoType directly.
8683 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8685         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
8686         checks must ignore generic instantiations, so mono_class_has_parent is not
8687         suitable. Fixes #390128.
8689 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
8691         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
8692         it to avoid registering tokens during metadata generation. Fixes #390023.
8694 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8696         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
8697         consistent.
8699         Contributed under MIT/X11 license.
8701 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8703         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
8704         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
8705         to fixup the EXE image.
8706         (mono_cleanup): Use mono_close_exe_image.
8707         (mono_close_exe_image): New function.
8708         * image.c: Include "marshal.h".
8709         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
8710         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
8711         counting when the image is loaded outside of mono_image_open_full. Set status
8712         based on GetLastError.
8713         * coree.c: Include required headers. Add init_from_coree.
8714         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
8715         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
8716         (_CorExeMain): Set init_from_coree.
8717         (CorExitProcess): Only call ExitProcess for now.
8718         (CorBindToRuntimeEx): New stub implementation.
8719         (CorBindToRuntime): New function.
8720         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
8721         (MonoFixupExe): ILONLY executables require no fixups.
8722         (mono_set_act_ctx): New function to set activation context.
8723         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
8724         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
8725         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
8726         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
8727         as MONO_INTERNAL.
8728         * domain-internals.h: Add mono_close_exe_image.
8730         Contributed under MIT/X11 license.
8732 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
8734         * metadata.c (mono_metadata_compute_size): Correctly calculate field
8735         size for generic param and event tables. Fixes #388977.
8737 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
8739         * loader.c (mono_method_signature): Use memory barriers because of the double
8740         checked locking pattern.
8742         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
8743         aborting or aborted as well. Fixes #376391.
8744         
8745         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
8746         existing runtime state in the Suspend handler during shutdown.
8748 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
8750         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
8752         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
8753         which are starting up or shutting down.
8755         * threads.c (mono_threads_set_shutting_down): Don't return a value since
8756         this function never returns if the runtime is already shutting down.
8758         * icall.c (ves_icall_System_Environment_Exit): Update after 
8759         mono_threads_set_shutting_down () signature change.
8760         
8761 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
8763         * class.c: Added can_access_instantiation to verify if the instantiation
8764         is visible. Fix access check for nested types as they returned TRUE
8765         before doing type and generic instantiation visibility checks.
8767 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8769         * reflection.c (mono_reflection_create_generic_class): The created type
8770         must have a different container from its TypeBuilder. Otherwise they
8771         will end sharing generic arguments, which is wrong.
8773         Due to the sharing, making a generic instance of the created type using
8774         the TypeBuider generic arguments resulted in the generic type definition
8775         been returned, which is wrong as well.
8777         As a bonus the code was leaking the type_params array. This memory should
8778         be allocated from the image mempool.
8780         This fixes bug #354047.
8782 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8784         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
8785         to here         as they are now used in assembly.c new code.
8786         Added a skipverification flag to MonoAssembly.
8787         New internal function mono_assembly_has_skip_verification.
8789         * assembly.c: New function mono_assembly_has_skip_verification. It checks
8790         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
8791         part of #387274.
8793 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8795         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
8796         needed. Fixes #387034.
8798         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
8800 2008-05-06  Miguel de Icaza  <miguel@novell.com>
8802         * assembly.c (mono_assembly_load_reference): Prevent crash while
8803         disassembling Silverlight 2.0 executables while we still do not
8804         have GACed libraries.
8806 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8808         * reflection.c: Special case generic type definitions as well. Fixes #383444.
8810 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
8812         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
8813         of the dynamic case. Fixes #387404.
8815 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8817         *verify.c (mono_verifier_is_class_full_trust): If under
8818         verify_all and the verifier mode was not set, only
8819         gac and corlib types are fulltrust. This makes --verify-all
8820         usable to detect unverifiable code, which is the expected
8821         use case.
8823 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8825         * verify.h: Ops, commited the header with debug
8826         enabled.
8828 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8830         * verify.c (merge_stack): Use the new value on unverifiable
8831         stack merges.
8833         * verify.c (verify_type_compatibility_full): Comparison
8834         of nullable types can't use mono_class_is_assignable_from.
8836         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
8837         that makes all verification errors be reported.
8839         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
8840         mono_method_verify.
8842 2008-05-05  Robert Jordan  <robertj@gmx.net>
8844         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
8845         support for value types. See #386415.
8847         * object.c: comments.
8849         Code is contributed under MIT/X11 license.
8851 2008-05-05  Martin Baulig  <martin@ximian.com>
8853         * debug-mono-symfile.h
8854         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
8855         for old pre-terrania symbol files.
8857 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8859         * mono-config.c: Add ppc64 architecture.
8861         Code is contributed under MIT/X11 license.
8863 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8865         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
8866           PPC64 uses function descriptors as well.
8868         Code is contributed under MIT/X11 license.
8870 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
8872         * object.c (compute_class_bitmap): Ignore literal static fields.
8874         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
8875         var has an invalid format.
8876         (describe_ptr): Add some sanity checks for the vtable.
8877         (add_nursery_frag): Clear unused nursery fragments.
8878         (major_collection): Clear all remaining nursery fragments.
8880 2008-05-03  Robert Jordan  <robertj@gmx.net>
8882         * image.c, metadata-internals.h: add thunk_invoke_cache.
8884         * marshal.c, marshal.h: implement
8885         mono_marshal_get_thunk_invoke_wrapper ().
8887         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
8889         Code is contributed under MIT/X11 license.
8891 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8893         * verify.c (do_leave): Empty the stack.
8895 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8897         * class.c (mono_class_is_assignable_from): Variance
8898         doesn't work between reference and value types. For example,
8899         given type C<T+>, C<int32> is not assignable to C<object>.
8900         Break the argument checking loop on first error. 
8902 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
8904         * icall.c : base64_to_byte_array() needs some more strict
8905           check for sequence of '=' characters. Patch by Santa
8906           Marta (http://deee.g.hatena.ne.jp/santamarta).
8908           Contributed under MIT/X11 license.
8909           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
8911 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
8913         * domain.c: Disable LoadLibrary support to fix Win32 build.
8915         Code is contributed under MIT/X11 license.
8917 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
8919         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
8920         to help with cache behaviour.
8922 2008-05-01  Miguel de Icaza  <miguel@novell.com>
8924         * appdomain.c (mono_domain_from_appdomain): Add new accessor
8925         method. 
8927 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
8929         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
8931 2008-05-01  Dick Porter  <dick@ximian.com>
8933         * process.c (process_get_fileversion): Only pass 16 bits of
8934         language ID to VerLanguageName.  Fixes bug 381204.
8936 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8938         * verify.c (mono_method_verify): Fix the comparison
8939         operator for code bounds check.
8941 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8943         * verify.c (mono_method_verify): Check the bounds of
8944         all access of the code array.
8946 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
8948         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
8950 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
8952         * image.c (mono_image_strong_name_position): Fix return value when the rva is
8953         not valid.
8955 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
8957         * loader.c (mono_get_method_from_token, mono_method_signature): Add
8958         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
8959         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
8960         fixup main EXE images when using mono.exe for mixed-mode assembly support.
8961         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
8962         mono_runtime_load.
8963         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
8964         runtime initialization from metadata.
8965         * assembly.c: Remove obsolete ceGetModuleFileNameA.
8966         (mono_set_rootdir): Use mono_get_module_file_name.
8967         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
8968         handles.
8969         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
8970         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
8971         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
8972         MonoCLIImageInfo. Add support for module handles.
8973         (load_cli_header): Update mono_cli_rva_image_map signature.
8974         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
8975         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
8976         (mono_image_rva_map): Add support for module handles.
8977         (mono_image_ensure_section_idx): Add support for module handles.
8978         (mono_image_close): Add support for module handles.
8979         (do_load_header): Add support for module handles.
8980         (mono_image_open_from_module_handle): New function for internal use.
8981         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
8982         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
8983         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
8984         handles.
8985         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
8986         * image.h: Add mono_image_fixup_vtable.
8987         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
8988         support.
8989         * coree.h: New file.
8990         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
8991         unsupported native code.
8992         (mono_marshal_set_callconv_from_modopt): New function splitted from
8993         mono_marshal_get_managed_wrapper.
8994         (mono_marshal_get_managed_wrapper): Use
8995         mono_marshal_set_callconv_from_modopt.
8996         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
8997         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
8998         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
8999         that results in a deadlock when the runtime is loaded in _CorDllMain.
9000         * Makefile.am: Add coree.c and coree.h.
9002         Contributed under MIT/X11 license.
9004 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9006         * generic-sharing.c: Search for type arguments in array element
9007         types as well.
9009 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9011         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9013         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9015         * object.c: Don't setup the RGCTX when the vtable is created,
9016         because we're setting it up lazily now.
9018 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9020         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9021         64 bit support.
9023 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9025         * verify.c (verify_class_for_overlapping_reference_fields): 
9026         If class is under fulltrust allow reference types to overllap
9027         if they have the same RVA.
9029 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9031         * pedump.c: Added new flag valid-only, that makes the verifier
9032         behaves just like --security=validil. It won't fail type load
9033         due to unverifiable restrictions.
9035 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9037         * class-internals.h (struct MonoMethod): Added a verification_success
9038         field to cache verifier executions. Reduced MonoMethod:slot size by
9039         one bit.
9041 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9043         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9044         instead of a 'vt' argument to save an indirection and to allow these to be used
9045         for valuetypes.
9046         (scan_vtype): New helper function to scan an area using a gc descriptor.
9047         (mono_gc_wbarrier_value_copy): Implement this.
9048         (handle_remset): Add support for REMSET_VTYPE.
9049         (find_in_remset_loc): Ditto.
9050         (mono_gc_base_init): Allow some debugging options to be controlled through the
9051         use of the MONO_GC_DEBUG env variable.
9052         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9053         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9055 2008-04-23  Martin Baulig  <martin@ximian.com>
9057         * domain.c (mono_domain_create): Move the call to
9058         mono_debug_domain_create() down, after allocating the domain id.
9060 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9062         verify.c (verify_class_for_overlapping_reference_fields): Skip
9063         static fields while verifying for overlapping fields as they
9064         don't matter at all.
9066 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9068         * domain-internals.h: added a declaration of
9069         mono_make_shadow_copy.
9071         * assembly.c (mono_assembly_open_full): shadow copying of
9072         assemblies moved to here, so that all the assemblies within the
9073         application domain's private binary directories can be
9074         processed. Fixes bug #380546
9076         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9077         mono_make_shadow_copy and made non-static. The decision whether
9078         to shadow-copy an assembly is made based on its location - it's
9079         copied if it's in one of the private application domain binary
9080         directories and its different to the target file in the shadow
9081         directory. Fixes bug #380546
9083 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9085         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9087         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9088         types.
9090         * reflection.c (mono_image_create_token): Handle 
9091         Method/ConstructorOnTypeBuilderInst.
9092         (resolve_object): Ditto.
9093         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9094         so it can be called from resolve_object. Also handle the case when the inflated
9095         class already has its methods setup.
9097 2008-04-21  Martin Baulig  <martin@ximian.com>
9099         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9101 2008-04-20  Geoff Norton  <gnorton@novell.com>
9103         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9104         pointer dereference.
9106 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9108         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9109         portability API to look up the assembly file. Fixes behavior in
9110         situations when the application has a bin/ directory, but the
9111         assembly search patch refers to Bin/ (and thus the requested file
9112         name is Bin/SomeLibrary.dll). Fixes bug #379888
9114 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9116         verify.c (mono_type_is_generic_argument): Extracted this check
9117         from a dozen places to here.
9119         verify.c: Fixed all issues related to boxing generic arguments
9120         and their constraints.
9122 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9124         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9126 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9128         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9129         isn't finished yet. Fixes #363447.
9131 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9133         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9134         Fixes #346419.
9136 2008-04-13  Jb Evain  <jbevain@novell.com>
9138         * domain.c: update the 2.1 profile versions.
9139         Merged from the Moonlight 2 branch.
9141 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9143         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9144         mscorlibs for the non-refonly case as well.
9146         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9147         in mono_assembly_load_from_full (). Fixes #378924.
9149 2008-04-11  Geoff Norton  <gnorton@novell.com>
9151         * icall.c: The global extern environ doesn't exist on Mac.  We
9152         need to call NSGetEnviron instead.
9154 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9156         verify.c: Add generic method constraint verification.
9158 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9160         class.c (mono_class_inflate_generic_method_full): Add a long
9161         explanation to the is_mb_open hack. Remove the FIXME.
9163 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9165         * verify.c (mono_method_verify): Mark all unknown opcodes
9166         as invalid. Mark jmp as unverifiable.
9168 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9170         * verify.c: Add code to do type constraint verification on class instances.
9172         * verify.c (mono_verifier_verify_class): Use the type constraint 
9173         verification code.
9175 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9177         * class.c (mono_class_get_field_default_value): Don't pass cindex
9178         as hint to mono_metadata_get_constant_index. The local is not initialized
9179         and should contain garbage most of the time. This could only work
9180         with a lot of luck.
9182 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9184         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9186 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9188         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9190         * class.c (mono_class_from_generic_parameter): Save the token of the
9191         generic param in MonoClass::sizes.generic_param_token.
9193         * reflection.c (mono_custom_attrs_from_class): If the class type is
9194         VAR or MVAR retrieve the attributes of the generic param.
9196 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9198         * class.c (mono_class_init): Do class verification if the verifier
9199         is enabled.
9201 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9203         * verify-internal.h: Added mono_verifier_verify_class.
9205         * verify.c: Added mono_verifier_verify_class. It checks for
9206         classes with explicit layout that have overlapping reference fields.
9208         * pedump.c: Init the verifier state prior to verification. Fixed
9209         command line arguments.
9211 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9213         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9215 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9217         * verify-internals.h: Fix a warning.
9219 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9221         * verify-internals.h: New header with the verifier configuration
9222         extracted from mini.c.
9224         * verify.c: Implemented the new functions exported by verify-internals.h.
9226 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9228         * verify.c: Add proper verification of ckfinite.
9230 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9232         * verify.c (do_conversion): Improved error message to something
9233         more meanfull.
9235         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9236         with primitive types.
9238 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9240         * verify.c: Added tail prefix checking. Marked icall
9241         as unverifible.
9243 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9245         * verify.c: Fix the detection of branches to the middle
9246         of an instruction.
9248 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9250         * verify.c: Implemented verification of volatile. and
9251         unaligned. prefix. Check if a type is valid after retrieving it.
9253 2008-04-01  Dick Porter  <dick@ximian.com>
9255         * process.c (process_get_fileversion): If there's no string block,
9256         set the file language to en_US.  Fixes the other new part of bug
9257         374600.
9259 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9261         * class.c: New functions mono_method_can_access_field_full and
9262         mono_method_can_access_method_full. They perform type visibility
9263         and type site check.
9265         * class-internal.h: Added exported functions.
9267         * verify.c: Use new functions to implement proper visibility checks.
9269 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9271         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9273 2008-03-28  Dick Porter  <dick@ximian.com>
9275         * process.c (process_get_fileversion): Use the first language ID
9276         we see, rather than insisting on an invariant language.  Fixes bug
9277         374600.
9279 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9281         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9282         the streams to fix reading of invalid memory later.
9284         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9285         to ease debugging.
9287 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9289         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9290         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9292 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9293         * threads.h: Added MonoThreadManageCallback type and
9294         mono_thread_set_manage_callback prototype
9295         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9296         (used to store the mono_thread_manage callback).
9297         * threads.c: Added mono_thread_set_manage_callback, and handle
9298         "MonoThread->manage_callback" in build_wait_tids.
9300 2008-03-26  Dick Porter  <dick@ximian.com>
9302         * process.c (process_get_fileversion): Set FileVersionInfo strings
9303         to Empty when the resource doesn't have the particular info.
9304         Fixes bug 355717.
9306 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9308         * verify.c (mono_method_verify): Proper prefix validation.
9310 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9312         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9313         itself in a separate argument instead of throwing them. Fixes #373448.
9315         * appdomain.c: Bump corlib version.
9317 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9319         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9321 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9323         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9324         version macros.
9326 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9328         * generic-sharing.c, class-internals.h: Code for putting
9329         reflection types into the runtime generic context.
9331 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9333         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9334         Fixes #340662. 
9337 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9339         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9341         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9343         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9345         * verify.c (do_cast): Let the result value keep the boxed status.
9347         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
9349 2008-03-17  Jb Evain  <jbevain@novell.com>
9351         * reflection.c: when running on a 2.0 runtime, emit
9352         unconditionally the #~ header version as 2.0, and the
9353         CLI header version as 2.5, for symmetry's sake with csc.
9355 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9357         * class.c: Remove the unused cache_interface_offsets stuff.
9359         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
9360         profiler.c: Fix warnings.
9362 2008-03-16  Mark Probst  <mark.probst@gmail.com>
9364         * generic-sharing.c, class-internals.h: Support for putting
9365         methods into the runtime generic context.
9367 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9369         * class.c (mono_class_setup_fields): Ignore calls made to this function for
9370         classes which are generic instances of not-yet finished typebuilders. Fixes
9371         #351172.
9373         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
9375 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
9377         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
9379         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
9380         field, replace it with a hash table in MonoDynamicImage.
9382         * reflection.c (inflate_mono_method): Access the generic definition object from
9383         image->generic_def_objects instead of imethod->reflection_info.
9385         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
9387         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
9388         
9389         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
9390         function in reflection.c so it is easier to keep in sync with the dynamic image
9391         creation code.
9393         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
9394         mono_image_close ().
9396 2008-03-15  Mark Probst  <mark.probst@gmail.com>
9398         * class.c (mono_class_generic_sharing_enabled): Disable generic
9399         sharing for all architectures except AMD64 and x86 to fix build.
9401 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9403         * verify.c: Use the generic definition MonoGenericContext when available.
9404         Remove code for checking generics instance compatibility in favor of
9405         mono_class_is_assignable_from.
9407 2008-03-14  Mark Probst  <mark.probst@gmail.com>
9409         * marshal.c, marshal.h, metadata-internals.h, image.c,
9410         wrapper-types.h: New wrapper for invoking a shared static method
9411         without having to pass the runtime generic context argument.
9413 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9415         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
9417 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
9419         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
9420         
9421         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
9422         create a token from a FieldOnTypeBuilderInst.
9423         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
9424         (resolve_object): Ditto.
9426         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
9427         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
9429 2008-03-14  Martin Baulig  <martin@ximian.com>
9431         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
9433         * debug-mono-symfile.h
9434         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
9435         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
9437 2008-03-10  Martin Baulig  <martin@ximian.com>
9439         * debug-mono-symfile.h
9440         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
9441         `lexical_block_table_offset'.
9442         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
9443         `lexical_blocks'.
9444         (MonoSymbolFile): Added `version'.
9446         * mono-debug.h
9447         (MonoDebugLexicalBlockEntry): Removed.
9448         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
9449         `lexical_blocks'.
9451         * mono-debug.c (mono_debug_add_method): Don't compute lexical
9452         blocks here; the debugger now does this internally.
9454 2008-02-27  Martin Baulig  <martin@ximian.com>
9456         * object.c (mono_runtime_exec_main): Call
9457         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
9458         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
9460 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9462         * verify.c (verify_type_compatibility_full): Allow native int to be converted
9463         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
9465 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9467         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
9468         ldftn with a virtual method.
9470 2008-03-13  Geoff Norton  <gnorton@novell.com>
9472         * decimal.c:  Only include memory.h if the platform has it.
9474 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
9476         * assembly.c, class.c, metadata-internals.h: make sure public key
9477         tokesns are compared in a case-insensitive way. Also, all
9478         the lookups in the GAC use a lowercase public key token
9479         (gaacutil already does the lowercasing on install). Fixes
9480         bug #369541.
9482 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
9484         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
9485         and return value.
9487 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
9489         * image.c: when someone loads a mscorlib from a file, return the
9490         currently loaded mscorlib (fixes bug #369253).
9492 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9494         * class.c: handle types with no parents by forcing them to have
9495         System.Object as a parent and marking them as broken (this currently
9496         allows the first part of bug #369173 to work as well, likely because
9497         we don't check for typeload exceptions everywhere yet).
9499 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
9501         * class.c: more complete check that types belong to corlib
9502         (fixes second part of bug #369173).
9504 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
9506         * generic-sharing.c:  Including glib.h for the MSVC builds to define
9507           "inline" to "__inline" before including mono-membar.h.
9508           
9509         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
9510           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
9511           MSVC builds.
9513         Contributed under MIT/X11 license.
9515 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9517         * verify.c (do_invoke_method): Remove return type validation.
9519         * verify.c (do_ret): Do return type validation at return site instead of
9520         call site.
9522 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9524         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
9526         * verify.c: Some todos cleaned and improved a few error messages.
9528 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
9530         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
9532 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
9534         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
9535         system types correctly.
9537         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
9538         function.
9540 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9542         * assembly.c (build_assembly_name): Fix a warning.
9544 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9546         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
9547         the called function takes an object type argument. Fixes storing or
9548         valuetypes across remoting as well as reducing memory usage.
9549         * image.c, metadata-internals.h: remove now unused ldfld_remote and
9550         stfld_remote wrapper caches.
9552 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9554         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
9555         is not found.
9557         * reflection.c (mono_image_register_token): New helper function to save
9558         a token->object mapping.        
9560         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
9561         managed code.
9563         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
9564         one dimension arrays. Fixes #367670.
9565         (mono_reflection_get_type_internal): Ditto.
9567 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
9569         * marshal.c: mono_load_remote_field_new() always returns object.
9570         so use the proper signature (fixes bug #366445).
9572 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9573         
9574         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
9575         add an 'inline_failure' flag instead.
9577 2008-03-04  Mark Probst  <mark.probst@gmail.com>
9579         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
9580         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
9581         contains the location of "this", used for exception handling.
9583 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9585         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
9586         their size on all platforms for perf reasons.
9588 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9590         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
9591         object-internal.h
9593         * object-internal.h: Same.
9595 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9597         * reflection.h: Fix the build I just broke.
9599 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9601         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
9602         Test if a token is valid, this remove explicit usage of 
9603         MonoDynamicImage::tokens from the verifier code.
9605         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
9607         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
9608         instead of direct access to MonoDynamicImage::tokens.
9610 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9612         * verify.c (token_bounds_check): Fix the build I just broke.
9614 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9616         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
9618         * verify.c (verifier_load_method): Fixed the errors message.
9620         * verify.c (mono_method_verify): Fixed a debug message.
9622 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
9624         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
9625         mono-perfcounters.h, class-internals.h: support for predefined
9626         writable counters, query of categories and counters, bugfixes.
9628 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9630         * verify.c (do_refanytype): Verify the refanytype opcode.
9632         * verify.c (mono_method_verify): Use do_refanytype.
9634 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9636         * verify.c (do_mkrefany): Verify the mkrefany opcode.
9638         * verify.c (mono_method_verify): Use do_mkrefany.
9640 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
9642         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
9643         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
9644         implementation.
9646 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9648         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
9649         the type load exception.
9651 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
9653         * verify.c: Added a few FIXME for method signatures
9655         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
9656         of mono_method_get_signature and get vararg call working. Removed unused
9657         checks for return value.
9659         * verify.c (do_refanyval): Verify the refanyval opcode.
9661         * verify.c (mono_method_verify): Implemented verification of arglist and
9662         use do_refanyval.
9664 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9666         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
9667         vtypes to marshal.c.
9669         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
9670         it works for AOT as well.
9672 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9674         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
9675         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
9676         the system time is adjusted.
9678 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
9680         * icall.c, icall-def.h: use the new time functions (fixes the
9681         non-monotonic behaviour of TickCount).
9683 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
9685         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
9686         it breaks the build.
9687         
9688         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
9689         cattr is not finished yet.
9691 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9693         * verify.c: Proper token validation for field, method and type.
9695 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9697         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
9699         * loader.c (method_from_memberref): Generate type load error instead of method missing
9700         if the type is not found.
9702 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
9704         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
9705         some of the conversions caused the generation of a marshal directive exception.
9707 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9709         verify.c: Report which exception should be thrown by the JIT.
9710         Added a lot of FIXME notes.
9712 2008-02-22  Mark Probst  <mark.probst@gmail.com>
9714         * generic-sharing.c: Runtime generic context slots are not
9715         instantiated on init anymore.  Instead, provide function to do the
9716         instantiating on demand.
9718         * class-internals.h: Added vtable to runtime generic context.
9719         Macros for encoding direct and indirect slot offsets in one
9720         guint32.
9722 2008-02-21  Mark Probst  <mark.probst@gmail.com>
9724         * object.c, generic-sharing.c: Moved some generic sharing code
9725         from object.c to generic-sharing.c.
9727         * generic-sharing.c: Added support for extensible runtime generic
9728         context.
9730         * metadata-internals.h: Two new hash tables in MonoImage for
9731         extensible runtime generic context support.
9733         * domain.c: Unregister generic vtables upon domain unloading.
9735         * image.c: Destroy new hash tables upon image unloading.
9737         * metadata.c: Unregister generic subclasses upon image unloading.
9739         * class-internals.h: New data structure for runtime generic
9740         context template.  New fields in the runtime generic context for
9741         extensible part.
9743         * Makefile.am: Added generic-sharing.c.
9745 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9747         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
9748         there is a pending loader exception, raise it.
9750         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9751         same.
9753         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
9754         same.
9756         Fixes #363450.
9758 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
9760         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
9762         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
9763         
9764         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
9765         ref-only requests for compatibility with MS.
9767 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9769         * reflection.c (mono_custom_attrs_from_method): Don't silently
9770         return an empty list for generic method instances.
9771         (mono_custom_attrs_from_param): Likewise.
9773 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
9774             Raja R Harinath  <harinath@hurrynot.org>
9776         Fix #354757
9777         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
9778         * class.c (mono_class_inflate_generic_method_full): Initialize it
9779         when a fully-open method is instantiated.
9780         * metadata.c (inflated_method_equal, inflated_method_hash): Update
9781         to new field.
9782         * reflection.c (inflate_mono_method): Don't create a temporary context.
9784 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9786         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
9787         Compute correct value, to prepare for imethod->reflection_info going away.
9789 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
9791         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
9793 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9795         * verify.c: Implement skip visibility flag.
9797 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9799         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
9800         which contains an extra field to tell the kind of exception that should be thrown.
9802         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
9804 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
9806         * loader.c (mono_method_get_param_names): Initialize 'klass' after
9807         'method' is updated.
9809 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
9811         * class.c (mono_class_layout_fields): Set class->min_align for classes using
9812         explicit layout as well. Fixes #360375.
9814 2008-02-11  Geoff Norton  <gnorton@novell.com>
9816         * loader.c: Guard and dereference against inflated generic methods
9818 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
9820         * class.c: Include Retargetable spec in assembly name.
9821         * assembly.c: Always include PublicKeyToken spec in assembly name
9822         (with value "null" if assembly is not signed), and include
9823         Retargetable spec.
9824         * icall-def.h: Added icall for Assembly.get_fullname.
9825         * icall.c: Added icall returning the fullname of an assembly.
9827 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
9829         * class.c (mono_class_setup_vtable_general): Add a missing call to
9830         mono_class_setup_methods () which is needed in the AOT case.
9832 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
9834         * verify.c (mono_type_get_stack_name): Added. Return the name for the
9835         stack type of the given MonoType.
9837         * verify.c (verify_type_compatibility_full): Handle the void type.
9839         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
9840         way stack merging works.
9842         * verify.c (store_local): Improved verification message.
9844         * verify.c (do_branch_op): If the merging is invalid, the method
9845         is unverifiable and not invalid. Improved error message.
9847         * verify.c (merge_stacks): Properly merge a boxed valuetype and
9848         a reference type diferent than System.Object. Improved error
9849         message.
9851 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
9853         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
9855         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
9856         type of an enum even if the argument is byref.
9858         * verify.c: Replace all explicit uses of enumtype and enum_basetype
9859         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
9861         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
9863         *verify.c (verify_type_compatibility_full): Make enum types
9864         compatible with their base types.
9866         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
9867         types are compatible for the special case of a boxed valuetype and
9868         System.Object.
9870         * verify.c (verify_stack_type_compatibility): The function
9871         is_compatible_boxed_valuetype was extracted from here.
9873         * verify.c (push_arg): Only set ctx->has_this_store if the method
9874         is not static.
9876         * verify.c (do_ldelem): Fixed a typo in an error message and added
9877         strict check for mixing int32 and native int as the array type
9878         and ldelem type.
9880         * verify.c (merge_stacks): Consider boxed valuetypes in the
9881         compatibility checks.
9883 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
9884         * profiler.h: (MonoGCEvent): Added start-stop the world events.
9886 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9887         *class.c: use_new_interface_vtable_code: renamed the env var to have
9888         a "MONO_" prefix, and fix the logic to enable it by default.
9890 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9891         *class.c:
9892         mono_class_setup_vtable_general: rewrote the way in which interface
9893         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
9894         makes the code more maintainable.
9895         For now the old code is still there, and can be activated setting
9896         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
9898 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
9900         * verify.c: guarded some debug functions around and #ifdef.
9902         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
9904 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
9906         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
9907         changes for now since they seem to break too many things.
9909 2008-02-05  Mark Probst  <mark.probst@gmail.com>
9911         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
9912         mono_marshal_find_nonzero_bit_offset): Added macro and function
9913         for finding the byte- and bit-offset of a bitfield within a
9914         struct.
9916 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
9918         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
9919         (mono_marshal_get_struct_to_ptr): Ditto.
9921         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
9922         cctor_signature.
9924 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
9926         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
9927         between methods for non-corlib types.
9929 2008-02-02  Geoff Norton  <gnorton@novell.com>
9931         * loader.c (mono_method_get_param_names): Populate the parameter name for 
9932         generic parameters as well. (Fixes #342536)
9934 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
9936         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
9938         * verify.c (do_invoke_method): Fix for calling with byref structs.
9940         * verify.c (do_cast): push a boxed value type based on the type token and not
9941         the type of stack.
9943 2008-01-31  William Holmes  <billholmes54@gmail.com>
9945         * process.c (process_module_string_read): Check the size returned form 
9946           VerQueryValue to avoid out of memory exception. 
9948 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
9950         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9951         Handle properly modules which are not in the moduleref table. Fixes
9952         #356938.
9954 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
9956         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
9957         the dynamic case which is now in managed code.
9958         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
9960         * marshal.c (mono_string_to_bstr): Fix a warning.
9961         (init_com_provider_ms): Ditto.
9963         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
9965         * exception.c (mono_get_exception_out_of_memory): New helper function.
9967 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
9969         * marshal.c: Add support for BSTR marshalling
9970         using other COM systems.
9972         Code is contributed under MIT/X11 license.
9974 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9976         * object.c (mono_runtime_invoke_array): reverted previous
9977         commit as it breaks the build.
9979 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9981         * object.c (mono_runtime_invoke_array): Verify arguments for
9982         invalid types. Fixes #348522.
9984 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
9986         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
9987         non-final virtual calls using call. 
9989         * verify.c (do_invoke): fixed some TODOs.
9991         * verify.c (push_arg): set has_this_store for "ldarga 0".
9993 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
9995         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
9996         which belong to an inflated class. Fixes #356531.
9998 2008-01-26  Robert Jordan  <robertj@gmx.net>
10000         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10001         which resort to FindFirstFile when a certain error condition
10002         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10003         Code is contributed under MIT/X11 license.
10005 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10007         * marshal.c (emit_marshal_string): Fix out string marshalling
10008         to use specified encoding. Fixes #323900.
10010         Code is contributed under MIT/X11 license.
10012 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10014         * class.c (mono_class_inflate_generic_method_full): Don't modify
10015         iresult->context after cache check.
10017 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10019         * class.c (mono_class_inflate_generic_method_full): Change the
10020         struct assignments to memcpy for better visibility and add some comments.
10022 2008-01-23  Dick Porter  <dick@ximian.com>
10024         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10025         procedure, and make it work on windows.
10027 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10029         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10030         a MonoReflectionTypeBuilder since it is always of that type.
10032         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10034         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10036         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10037         
10038         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10040         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10042         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10043         instantiations from the type cache.
10045 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10047         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10049         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10051 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10053         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10055         * verify.c (mono_method_verify): removed old TODO
10057 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10059         * verify.c (do_newobj): add visibility check.
10061 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10063         * verify.c (do_load_function_ptr): add visibility check.
10065 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10066         *class.c:
10067         mono_generic_class_get_class: hook profiler events.
10068         mono_field_get_offset: added to support heap-shot in the new profiler.
10069         *class.h: exported mono_field_get_offset.
10070         * reflection.c:
10071         mono_reflection_setup_internal_class: hook profiler events.
10073 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10075         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10076         argument here too and use it to avoid checking for pending exceptions if 
10077         possible.
10079 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10081         * assembly.c (build_assembly_name): add arg for passing the assembly
10082         flags. Do not consider a PublicKey with value "null" valid.
10083         (mono_assembly_name_parse_full): added boolean argument that will be
10084         set if the assembly name contains a PublicKeyToken spec. Added support
10085         for the Retargetable spec for which only Yes or No are allowed as valid
10086         value. Consider assembly name invalid if Retargetable spec is set, but
10087         either version, culture or public key (token) are not specified.
10088         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10089         with implementation in assembly.c.
10090         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10091         from MonoAssemblyName.
10092         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10093         introduced argument for mono_assembly_name_parse_full to know if the
10094         assembly name has a PublicKeyToken spec, and if it has instruct
10095         fill_reflection_assembly_name to use default value for keyToken (if
10096         PublicKeyToken is null).
10098 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10100         * verify.c (mono_method_verify): fixed ovf ops with
10101         float values. They are unverifiable now.
10103 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10105         * class.c (set_failure_from_loader_error): add BadImageException to the
10106         list of exceptions that can cause a type to fail to load.
10108         * class.c (mono_class_get_exception_for_failure): same.
10110 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10112         * verify.c (in_any_exception_block): added, check if offset
10113         is part of any exception handling clause.
10115         * verify.c (get_stack_type): added VAR and MVAR types.
10117         * verify.c (do_stobj): better error messages.
10119         * verify.c (do_cpobj): added, check cpobj.
10121         * verify.c (do_initobj): added, check initobj.
10123         * verify.c (do_sizeof): added, check sizeof.
10125         * verify.c (do_localloc): added, check localloc.
10127         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10129 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10131         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10132         save_lmf/restore_lmf opcodes.
10134         * threads.c (mono_threads_install_notify_pending_exc): New function to
10135         install a callback notifying the JIT there is a pending exception on a thread.
10136         (mono_thread_request_interruption): Call the new callback.
10137         (mono_thread_get_and_clear_pending_exception): New function to return the
10138         exception pending on a thread.
10140         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10141         to turn off checking for pending exceptions.
10142         (mono_marshal_get_native_wrapper): Ditto.
10144 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10146         * threads-types.h: Get rid of the unnecessary extern declarations.
10148 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10150         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10151         return field from parent class if not private.
10152         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10153         returns fields from parent class if they are not private.
10154         (method_nonpublic): added function to determine if a given method
10155         should be considered non-public. Returns false for private methods
10156         on parent class, and internal methods from parent on the 1.0 profile.
10157         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10158         use method_nonpublic function to determine whether method should be
10159         returned.
10160         (property_accessor_public): use newly introduced method_nonpublic
10161         function to determine whether accessor is non-public. 
10162         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10163         event from parent class if not private. Only return static event if
10164         Static flag is set, and only return static event from parent class if
10165         FlattenHierarchy flag is set.
10166         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10167         include non-private events from parent class.
10169 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10171         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10172         warning.
10174 2008-01-16  Wade Berrier <wberrier@novell.com>
10176         * security.c: Add assembly.h header to appease some warnings
10178 2008-01-16  Dick Porter  <dick@ximian.com>
10180         * process.c (process_module_string_read): Remove trailing null
10181         when saving string.
10183 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10185         * class-internals.h: A new data structure describing the layout of
10186         a runtime generic context (MonoRuntimeGenericContextTemplate).
10188         * metadata-internals.h: Added a hash table to MonoDomain that maps
10189         from open generic classes to their runtime generic context
10190         templates.
10192         * object.c: Building of the runtime generic context, including
10193         proper handling of generic type arguments of superclasses.
10194         Building of the runtime generic context according to the template.
10196 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10198         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10199         Fixes #350856.
10201         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10202         mono_portability_find_file (). Fixes #325466.
10203         (mono_image_get_public_key): Fix a warning.
10205 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10207         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10208         Fixes #353550.
10209         (mono_class_from_name_case): Ditto.
10211 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10213         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10214           common storage for the tables used in the System/NumberFormatter class.
10216 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10218         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10220 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10222         * verify.c (get_boxable_mono_type): check if the token is valid.
10224         * verify.c (set_stack_value): changed to add an error if an
10225         invalid type is set on stack. Changed all callers due to signature change.
10227         * verify.c (do_stobj): implement stobj validation.
10229 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10231         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10232         set container->is_method, it was set earlier.
10234         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10235         generic methods.
10237         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10238         is_method of the generic container to TRUE for methods.
10240 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10242         * metadata.c (type_in_image): Handle type parameters properly.
10244         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10245         memory ownership of this structure.
10247 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10249         * verify.c (get_boxable_mono_type): make typedref types been just
10250         unverifiable. check for void type.
10252         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10254         * verify.c (do_load_function_ptr): accept method spec tokens.
10256 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10258         * marshal.c (mono_class_native_size): Always set *align even if this is called
10259         recursively.
10261 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10263         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10264         out-of-date.
10266 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10268         * verify.c: removed some old unused tables. A huge bunch of small fixes
10269         to things found while testing the verifier with mono basic.
10271         * verify.c (dump_stack_value): dump null literal flag to.
10273         * verify.c (verify_type_compatibility_full): fix comparison
10274         for types that have a generic super type.
10276         * verify.c (verify_stack_type_compatibility): fix compatibility
10277         between null literals and reference types. fix compatibility between
10278         boxed valuetypes and object. fix corner case test for enums.
10280         * verify.c (do_cmp_op): proper verification of cgt.un in case
10281         of reference types.
10283         * verify.c (do_invoke_method): fix error message.
10285         * verify.c (do_store_indirect
10287         * verify.c (check_is_valid_type_for_field_ops): proper verification
10288         of managed pointers to valuetypes and boxed valuetypes. proper verification
10289         of null literals.
10291         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10292         allow token to be a reference type.
10294         * verify.c (do_cast): proper handling of boxes valuetypes.
10296         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10297         in object[].
10299         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10300         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10301         fixed the decoding of unbox_any
10303 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10305         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10307 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10309         * verify.c (do_newobj): do delegate verification.
10311         * verify.c (verify_delegate_compatibility): perform delegate
10312         verification.
10314         * verify.c (verify_ldftn_delegate): perform tests related to
10315         ldftn delegates.
10317         * verify.c (mono_delegate_signature_equal): perform the
10318         slightly diferent signature comparison required by delegates.
10320         * metadata.c (mono_metadata_type_equal_full): added and exported
10321         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10322         allows signature only comparison.
10324         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10325         as MONO_INTERNAL.
10327 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10329         * verify.c: added a bunch of stack_slot_* functions to
10330         make access to stack slot type easier. This is required to
10331         allow optional flags, like null literal, boxed value and
10332         this pointer.
10333         All access paths to IlStackDesc::stype have been changed 
10334         to use these new funcions.
10335         Removed a bunch of unused functions and cleared all warnings.
10336         This patch introduces the usage of the this pointer and 
10337         boxed value flags.
10339 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10341         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10343 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10345         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10346         match managed version.
10348         * appdomain.c: Bump corlib version.
10349         
10350         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
10351         argument.
10353 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
10355         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
10356         Set public key token to zero-length byte array if assembly is not
10357         strongnamed.
10359 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10361         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
10362         writing a vtype array elem.
10364 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
10366         * assembly.c (build_assembly_name): return FALSE if length of token is
10367         not 16 (if not "null").
10368         (mono_assembly_name_parse_full): return FALSE if value of version,
10369         culture, token or key is 0.
10370         * icall.c (fill_reflection_assembly_name): add boolean arguments to
10371         specify whether public key and public key token must be set to default
10372         value (zero-length byte array) if not available. Set versioncompat to
10373         SameMachine. If public key is available or the default is set, then
10374         set PublicKey flag.
10375         (ves_icall_System_Reflection_Assembly_FillName): if no public key
10376         is available, use empty byte array as default value. On the 2.0
10377         profile, use default value for public key token if not set.
10378         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
10379         profile, use default value for public key if not set. On the 2.0
10380         profile, use default value for public key token if not set.
10381         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
10382         default values for public key and public key token.
10384 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10386         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
10387         field to keep it in synch with the managed object.
10389         * marshal.c (emit_marshal_object): Add support for byref marshalling of
10390         delegates. Fixes #351520.
10392         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
10393         contains defined memory.
10394         
10395         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
10397         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
10398         
10399         * sgen-gc.c (check_consistency): New helper function to do a consistency check
10400         of the GC data structures.
10402         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
10404         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
10405         
10406         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
10407         barrier.
10408         (mono_array_clone_in_domain): Ditto.
10409         (mono_array_clone_in_domain): Ditto.
10411         * threads.c (start_wrapper): Register the thread start argument as a GC root.
10412         (cache_culture): Use a write barrier.
10414         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
10415         (ves_icall_get_property_info): Ditto.
10417         * object.h (MONO_STRUCT_SETREF): New macro.
10419         * class-internals.h (MonoStats): Add some GC statistics.
10421         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
10423 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
10425         * exception.c (mono_exception_from_name_two_strings):
10426         Break from loop after method is found.
10428 2008-01-04  Dick Porter  <dick@ximian.com>
10430         * process.c (process_module_string_read): Rename variable to
10431         reflect correct usage, after fixing bug 345972.
10433 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
10435         * verify.c (mono_type_create_fnptr_from_mono_method): 
10436         created a MonoType function pointer instance to be used during
10437         verification. The verifier releases this memory at end.
10439         * verify.c (mono_method_is_constructor): extracted repeated
10440         checks for constructor into a single class.
10442         * verify.c (do_push_field): use new extracted method
10443         for constructor check.
10445         * verify.c (do_newobj): same.
10447         * verify.c (do_ldftn): renamed to do_load_function_ptr
10448         and make it verify ldvirtftn too.
10450         * verify.c (mono_method_verify: proper verification
10451         of ldvirtftn. release created MonoMethod instances.
10453 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10455         * verify.c (token_bounds_check): added.
10457         * verify.c (do_ldftn): added.
10459         * verify.c (mono_method_verify): proper verificartion of ldftn.
10461 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10463         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
10464         than the table row count. It's the resposibility of the caller to
10465         make the bounds check and raise the correct error.
10467         * metadata.c (mono_metadata_decode_row_col): Same.
10469         * loader.c (mono_get_method_from_token): perform bounds check
10470         on token for methoddef table.
10472 2007-12-29  Miguel de Icaza  <miguel@novell.com>
10474         * icall.c
10475         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
10476         assert into a negative result, the managed code already coped with
10477         that.
10479         Some folks on Windows reported this error. 
10481 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
10483         * appdomain.c: Bump corlib version.
10484         * icall.c:
10485         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
10486         CultureInfo.CreateCulture to create CultureInfo for name.
10487         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
10488         create CultureInfo for name. Fixes bug #347174.
10490 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10492         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
10493         flags.
10495         * verify.c (is_valid_branch_instruction): allow branching to the
10496         first instruction of the protected block.
10498         * verify.c (is_valid_cmp_branch_instruction): same.
10500         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
10501         avoid double initialization.
10503         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
10504         detect which cases the eval stack should just be copied.
10506         * verify.c (mono_method_verify): check if the eval stack
10507         is empty when entering a protected block.
10509 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10511         * verify.c: added is_clause_in_range, is_clause_inside_range,
10512         is_clause_nested and verify_clause_relationship. They perform
10513         the verifications stated in P1 12.4.2.7.
10515         * verify.c (mono_method_verify): remove some unused variables,
10516         add the new exception clause checks, add instruction border
10517         checks for protected block start/end, improved some error 
10518         messages and fixed a bug in the way invalid instruction access
10519         is detected.
10521 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
10523         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
10524         from GC 7.0 if available.
10526         * object.c: Remove an unused define.
10527         
10528         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
10530         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
10532         * null-gc.c (mono_gc_make_descr_for_array): Implement.
10534         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
10536         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
10537         to take the same arguments as the other make_descr functions.
10539         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
10541         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
10542         directly.
10544         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
10545         mini.c.
10547         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
10548         call to boehm-gc.c.
10550         * boehm-gc.c (mono_gc_register_root): Fix a warning.
10552         * null-gc.c (mono_gc_register_root): Fix a warning.
10554         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
10556         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
10557         (mono_gc_base_init): Call GC_init ().
10559         * null-gc.c: Define mono_gc_register_root () as a no-op.
10561         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
10563 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
10565         * verify.c: add prototype for merge_stacks at top
10567         * verify.c (do_switch): added.
10569         * verify.c (merge_stacks): on some cases the stack merging
10570         was not happening properly. Unequal stack sizes at merge
10571         points should be invalid.
10573         * verify.c (mono_method_verify): added more debug info on stack state.
10574         verify switch properly.
10576 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
10578         * method-builder.h: New file, moved the mono_mb_ declarations here from 
10579         marshal.h.
10581         * boehm-gc.c marshal.c: Include method-builder.h.
10583         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
10585         * marshal.c: Remove some code which is now in method-builder.c.
10587 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
10589         * method-builder.c: New file, extraction of the method builder functionality 
10590         from marshal.c.
10592         * marshal.c: Move the mb functions into method-builder.c.
10594         * marshal.h marshal.c: Export some mono_mb_... functions.
10596         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
10598         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
10599         the caller.
10601         * class.c (mono_class_get_full): Check the token type in the dynamic case.
10603         * loader.c (mono_field_from_token): Ditto.      
10605         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
10606         type as well.
10607         
10608         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
10609         Fixes #342565.
10611         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
10612         a helper function for setting it.
10614         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
10616         
10617         * assembly.c: Significally simplify code now that referenced assemblies are 
10618         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
10620         * threads.h: Don't include  the internal threads-types.h header file. Fixes
10621         #349952.
10623 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
10625         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
10626         instructions that were target of branches or are at protected block boundaries.
10628         * verify.c (in_same_block): handle filter clauses.
10630         * verify.c (is_valid_branch_instruction): added. checks the target of
10631         instructions br or brtrue/false.
10633         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
10634         binary branch instructions such as beq and bge.
10636         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
10637         and made it pin the instruction as been part of the exception block.
10639         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
10640         of in_same_block.
10642         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
10643         of in_same_block.
10645         * verify.c (do_ret): ret from a protected block is unverifiable and
10646         not invalid.
10648         * verify.c (do_static_branch): verify br and br.s instructions.
10650         * verify.c (merge_stacks): add extra param to support detection
10651         of branches in the middle of instructions.
10652         
10653         * verify.c (mono_method_verify): verify branches and exception blocks
10654         that target the middle of instructions. Proper verification of br and br.s.
10656 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
10658         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
10659         skip_visibility field.
10660         (reflection_methodbuilder_from_dynamic_method): Ditto.
10662         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
10663         registrations. Fixes #348193.
10665         * threads.h: Move the internal mono_thread_get_pending_exception () to
10666         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
10668 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
10670         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
10671         icall registration. Fixes #348193.
10673         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
10674         for corlib classes into object. Fixes #349621.
10676 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
10678         * icall.c (property_accessor_nonpublic): new function to determine
10679         whether an accessor allows a property to be considered non-public.
10680         Returns false for private accessor(s) from parent class, and internal
10681         accessor(s) from parent on 2.0 profile (and higher).
10682         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
10683         to determine whether property should be included if NonPublic flag
10684         is set. Fixes bug #349078.
10686 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
10688         * verify.c (init_stack_with_value): added.
10690         * verify.c (mono_method_verify): extracted common
10691         code for exception initialization into init_stack_with_value.
10693         * verify.c (mono_method_verify): initialize the exception
10694         for handler clauses as well.
10696         * verify.c (mono_method_verify): fix the exception clause
10697         ordering rules, it should use handler end offset and not
10698         start offset.
10700 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
10702         * rawbuffer.c: remove useless warning.
10704 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
10706         * threads.h, threads-types.h: move functions to the correct header
10707         (fixes bug#349952).
10709 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10711         * verify.c (mono_method_verify): proper verification
10712         of exception handling clauses ranges and fallthru in
10713         and out of protected blocks.
10715 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10717         * verify.c (mono_method_verify): fixed compilation issue.
10719 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10721         * verify.c (mono_method_verify): a printf slipped in, changed
10722         to use verifier debug macro.
10724 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
10726         * verify.c (is_correct_leave): check for filter clauses.
10728         * verify.c (do_filter): added.
10730         * verify.c (mono_method_verify): property verification of leave.
10733 2007-12-18  Mark Probst  <mark.probst@gmail.com>
10735         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
10736         Win32 build, until we figure out how to do the proper thing on
10737         Win32.
10739 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
10741         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
10742         by the previous patch.
10743         
10744         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
10745         the assembly resolve handler for refonly assemblies.
10747 2007-12-17  Mark Probst  <mark.probst@gmail.com>
10749         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
10750         Make sure only one thread is allowed to commence shutdown, and
10751         don't allow new threads to be started once shutdown is in
10752         progress.
10754 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
10756         * verify.c (is_correct_endfilter): added.
10758         * verify.c (is_unverifiable_endfilter): added.
10760         * verify.c (do_endfilter): added.
10762         * verify.c (mono_method_verify): property verification of endfilter
10763         and fixed a corner case or endfinally.
10765 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
10767         * verify.h: new flags to support fail fast of unverifiable code and
10768         do non-strict verification. Non-strict verification is required to
10769         have MS runtime compatibility. There are a huge amount of unverifiable
10770         code that it accepts as verifiable. The strict mode verifies the code
10771         as the specs says.
10772         Non-strict mode will be required in cases where code needs to be
10773         accepted as verifiable but fails under strict mode.
10775         * pedump.c: added support to fail fast and non-strict verification.
10777         * verify.c: added support for both fail fast and non-strict verification.
10779 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
10781         * verify.c (is_correct_endfinally): added.
10783         * verify.c (mono_method_verify): property verification of endfinally.
10785 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10787         * verify.c (in_any_block): check for filter clauses.
10789         * verify.c (is_correct_rethrow): added.
10791         * verify.c (mono_method_verify): property verification of rethrow.
10793         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
10795 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10797         * verify.c (do_throw): added.
10799         * verify.c (mono_method_verify): property verification of throw
10801 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
10803         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
10804         assemblies. Fixes #346425.
10806 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
10808         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
10809         FieldBuilders.
10811         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
10813         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
10814         prevent asserts when this is called with a token which might not be valid.
10816         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
10817         lookup_dynamic_token_class with valid_token == FALSE.
10819         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
10821         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
10823         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10824         
10825 2007-12-10  Mark Probst  <mark.probst@gmail.com>
10827         * gc.c: Don't delay threadpool thread finalization unless Mono is
10828         shutting down.
10830 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10832         * threads.c: turn an assert into a non-fatal warning.
10834 2007-12-09  Robert Jordan  <robertj@gmx.net>
10836         * icall.c (GetVirtualMethod): Add missing argument validation.
10838 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10840         * verify.c (do_cast): added.
10842         * verify.c (mono_method_verify): property verification of castclass and isinst.
10845 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10847         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
10849         * verify.c (do_stelem): added.
10851         * verify.c (mono_method_verify): property verification of stelem.X.
10853 2007-12-07  Mark Probst  <mark.probst@gmail.com>
10855         * class.c, class-internals.h: Introduce an environment variable
10856         (MONO_GENERIC_SHARING) through which the extent of generic code
10857         sharing can be controlled (share all classes, share only corlib
10858         classes, or share nothing).
10860         * object.c: Only create runtime generic context for classes for
10861         which sharing is enabled.
10863 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10865         * verify.c (do_ldelem): refactor it to work with ldelem.any.
10867         * verify.c (mono_method_verify): property verification of ldelem.any.
10869 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10871         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
10872         added ldelem.X opcodes.
10874         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
10876         * verify.c: proper verification of ldelem.X 
10878 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
10880         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
10882 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10884         * verify.c (mono_method_verify): null literal requires special handling,
10885         the value pushed on stack need to be flagged as so.
10887         * verify.c (do_ldelema): Verify ldelema properly.
10889 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10891         * verify.c: Verify ldlen properly.
10893 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
10895         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
10896         to the target object's type. Fixes #346160.
10898 2007-12-05  Dick Porter  <dick@ximian.com>
10900         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
10901         Solaris needs the same workaround as BSD-derived systems.  Fixes
10902         bug 323524, patch by Burkhard Linke
10903         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
10905 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
10907         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
10908         handle to use when error dialog is shown; otherwise, update mask
10909         to show no error dialog when an error occurs.
10911 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
10913         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
10915         * class.c (mono_class_get_field_default_value): New helper function to initialize
10916         field->def_type and field->data.
10918 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
10920         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
10921         the general one.
10923         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
10925         * marshal.c: Avoid depending on delegate->method_info being set.
10927         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
10928         
10929         * object.c (mono_delegate_ctor): Set delegate->method.
10931         * object-internals.h (struct _MonoDelegate): Add 'method' field.
10933         * appdomain.c: Bump corlib version.
10935 2007-11-27  Raja R Harinath  <harinath@gmail.com>
10937         * metadata.c (mono_generic_inst_equal_full): Short-circuit
10938         equality check if we're comparing canonicalized MonoGenericInsts.
10940 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
10942         * class.c (generic_array_methods): Call mono_class_setup_methods () before
10943         accessing class->methods.
10945 2007-11-22  Dick Porter  <dick@ximian.com>
10947         * threads.c: Ensure that the synch_cs is set before trying to use
10948         it.
10950 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
10952         * profiler.c: r89126 broke the statistial profiler, unbreak.
10954 2007-11-22  Martin Baulig  <martin@ximian.com>
10956         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
10958         * mono-debug.c
10959         (mono_debug_debugger_version): Bump to 3.
10960         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
10961         -> mono_debugger_class_initialized().
10963         * mono-debug-debugger.c
10964         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
10966         * class.c
10967         (mono_debugger_start_class_init_func): Removed.
10968         (mono_debugger_class_loaded_methods_func): Added.
10969         (mono_class_setup_methods): Call it here.
10971 2007-11-22  Martin Baulig  <martin@ximian.com>
10973         * mono-debug.c
10974         (mono_debug_add_delegate_trampoline): New public method.
10975         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
10977         * mono-debug.h
10978         (MonoSymbolTable): Added `global_data_table'.
10979         (MonoDebuggerTypeKind): Removed.
10981 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
10983         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
10984         these methods.
10986         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10987         
10988 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
10990         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
10992 2007-11-20  Martin Baulig  <martin@ximian.com>
10994         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
10996         * mono-debug-debugger.c
10997         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
10998         (mono_debugger_remove_breakpoint): Likewise.
10999         (mono_debugger_check_breakpoints): Likewise.
11000         (mono_debugger_register_class_init_callback): New public method.
11001         (mono_debugger_remove_class_init_callback): Likewise.
11002         (mono_debugger_add_type): Likewise.
11004         * mono-debug-debugger.h
11005         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11007 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11009         * class.c: more interface implementations needed for the
11010         array enumerator (fixes bug #341112).
11012 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11014         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11015         fix ParamName of ArgumentNullExceptions.
11017 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11019         * reflection.c (mono_reflection_encode_sighelper): Generate the
11020         modopts and modreqs.   I have a useless test that crashes monodis,
11021         but that shows the code working.
11023 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11025         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11026         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11028 2007-11-15  Dick Porter  <dick@ximian.com>
11030         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11031         When joining a thread, it's the thread that's calling Join that
11032         gets WaitSleepJoin state not the target.  Fixes the standalone
11033         test case in bug 334740, and hopefully the whole bug too.
11035 2007-11-15  Dick Porter  <dick@ximian.com>
11037         * process.c: Read file version info from the files pointed at by
11038         process modules, not the current process.  Fixes bug 315969.
11040         Use windows typedef names in some places to fix warnings on the
11041         windows build.
11043 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11045         * image.c, metadata-internals.h: Added a generic_class_cache hash
11046         to MonoImage for looking up generic classes when sharing generics.
11048 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11050         * sgen-gc.c: warning cleanups.
11052 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11054         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11055         inherited properties.
11057 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11059         * object.c, class-internals.h: Added more information to the
11060         runtime generic context.
11062 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11064         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11065         instead of just the target method. Generalize the abstract method handling to
11066         handle any non-static method.
11068         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11069         mono_marshal_get_delegate_invoke () signature change.
11071 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11073         * class.c, class-internals.h: Made
11074         mono_type_get_basic_type_from_generic () public.  Fixed member
11075         access check for shared generics.
11077         * loader.c: Don't insert field into field cache if it's part of a
11078         non-inflated generic class.
11080         * domain.c, domain-internals.h: The generic sharing context is now
11081         part of the jit info data structure.  Added two accessor
11082         functions.
11084 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11086         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11087         the array Get/Set/Address methods, since the JIT inlines them.
11089         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11091         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11092         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11094         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11095         mono_marshal_get_delegate_invoke signature change.
11097         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11098         an additional argument. Add support for invoking abstract methods.
11100         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11102         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11104 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11106         * class.c: Do field layout for open generic classes as well.
11108 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11110         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11111         other objects, because the threadpool is still around.  Put them
11112         in a list instead and after finalizing all other objects in the
11113         root domain shut down the thread pool and then finalize the
11114         threads.  Fixes bug #337383.
11116         * threads.c, thread-types.h: New mono_thread_create_internal()
11117         function for marking a thread with the threadpool flag before it
11118         started.  Set synch_cs to NULL after freeing it.
11120         * threadpool.c: Mark threadpool threads before they start.
11122 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11124         * reflection.h, reflection.c: don't export random functions
11125         and lazy load dbnull and missing objects.
11127 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11129         * class.c: Initialize COM types if COM interfaces
11130         are present (not just COM classes).
11131         
11132         Code is contributed under MIT/X11 license.
11134 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11135         * reflection.c:
11136         create_dynamic_mono_image: hook module profiler events (dynamic case).
11137         mono_image_basic_init: hook assembly profiler events (dynamic case).
11139 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11140         * profiler.c:
11141         simple_appdomain_unload: completely terminate the profiler
11142         instead of only processing the statistical samples.
11143         simple_shutdown: make sure this is really called exactly once,
11144         even in multithreaded applications, and always listen to
11145         appdomain events.
11146         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11147         here, the "[un]load" functions will do it.
11148         Fixes bugs #333791 and #325261.
11150 2007-11-07  Geoff Norton  <gnorton@novell.com>
11152         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11153         rather than depend on __APPLE__.
11155 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11157         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11159 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11161         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11162         UTF16 MonoString. Fix the crash from bug #335488
11164 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11166         * marshal.c: Correct (for non-Win32 OS) length != size in 
11167         mono_string_from_bstr. Fix #339530.
11169 2007-11-06  Geoff Norton  <gnorton@novell.com>
11171         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11172         to succeed
11174 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11176         * process.c: Added run-time GetProcessId API detection for Windows.
11178 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11180         * reflection.c  (mono_param_get_objects): If a parameter has the
11181         attribute [System.Runtime.InteropServices.Optional] we should
11182         set the DefaultValue of the ParameterInfo to be
11183         System.Reflection.Missing instead of DBNull.
11185         See bug #339013.
11187         (mono_get_reflection_missing_object): New method,
11188         returns the System.Reflection.Missing.Value singleton instance.
11190 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11192         * culture-info-table.h : regenerated.
11194 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11196         * icall.c: Use GetEnvironmentStrings on windows
11197         so we are using the same environment block as 
11198         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11199         #333740.
11200         
11201         Code is contributed under MIT/X11 license.
11203 2007-10-31  Martin Baulig  <martin@ximian.com>
11205         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11207         * mono-debug-debugger.h
11208         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11210 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11212         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11213         classes.
11215 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11217         * culture-info-table.h : regenerated.
11219 2007-10-30  Robert Jordan  <robertj@gmx.net>
11221         * icall-def.h, icall.c:
11222         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11224         Code is contributed under MIT/X11 license.
11226 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11228         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11229         inflated class instead of inflating them again.
11230         
11231         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11232         dynamic case.
11234         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11235         Call setup_supertypes () after klass->parent is set.
11236         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11238         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11239         for inflated instances of not yet created dynamic generic classes.
11240         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11241         times from inflated_method.
11242         (methodbuilder_to_mono_method): Ditto.
11244 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11246         * gc.c: code cleanup and removed old untested option of not creating the
11247         finalizer thread.
11249 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11251         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11252         creating a jump trampoline for dynamic methods.
11254 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11256         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11257         generic TypeBuilders when called from another method of the same type (bug #335131).
11260 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11262         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11263         doesn't seem to work perfectly.
11264         
11265         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11266         called multiple times.
11267         (methodbuilder_to_mono_method): Ditto.
11268         (resolve_object): Inflate FieldBuilder's.
11270 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11272         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11273         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11274         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11276 2007-10-26  Dick Porter  <dick@ximian.com>
11278         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11279         Thread initialisation changes
11281 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11283         * verify.c: fix compatibility check between arrays and System.Array
11285 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11287         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11288         too. Fixes #336999.
11290 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11292         * object.c (mono_value_box): Use typed allocation here.
11294 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11296         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11297         trampoline instead of compiling the method right away.
11299         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11301 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11303         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11304         related fields for dynamic classes. Fixes #334493.
11306 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11308         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11309         
11310         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11312         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11313         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11315         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11317         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11318         if needed.
11319         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11321 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11323         * marshal.c: Use correct key when removing item
11324         from ccw_hash.
11325         
11326         Code is contributed under MIT/X11 license.
11328 2007-10-17  William Holmes  <billholmes54@gmail.com>
11330         *marshal.c: Adding a case to marshal booleans to U1
11332         Code is contributed under MIT/X11 license.
11334 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11336         * class.c (mono_class_from_name): Search the modules compromising dynamic
11337         assemblies. Fixes #331601.
11339 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11341         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11342         exception if the type name contains an assembly component. Fixes #334203.
11344         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11345         modules inside dynamic assemblies. Fixes #334200.
11346         
11347         * reflection.c: Set image->public_key and image->public_key_length;
11349         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
11350         fields.
11352         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
11353         
11354 2007-10-16  Mark Probst  <mark.probst@gmail.com>
11356         * metadata.c: Implemented correct comparing of generic classes.
11357         An inflated generic class can be equal to a non-inflated one if it
11358         is inflated with generic type variables as type arguments.  Fixes
11359         bug #333798.
11361 2007-10-15  Dick Porter  <dick@ximian.com>
11363         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
11364         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
11365         81646.
11367         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
11368         instead of a monitor lock.  This means that monitor_try_enter and
11369         co can set the thread state safely.
11370         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11371         thread_interrupt_requested, so interrupt actually works.
11373         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
11374         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
11375         state accessor function
11377 2007-10-15  Martin Baulig  <martin@ximian.com>
11379         * mono-debug.h
11380         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
11381         the debugger with the current runtime.
11383 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
11385         * object.c, object-internals.h: added the ability to set a single
11386         trampoline for all the slots in a vtable.
11388 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11390         * marshal.c: deal with a possible race condition during multicast
11391         delegate invocation.
11393 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11395         * class.c: ensure value type methods don't have the synchronized
11396         flag set.
11398 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
11400         * string-icalls.c, string-icalls.h: reverted unapproved patch that
11401         breaks the build.
11403 2007-10-11  Joel Reed  <joelwreed@comcast.com>
11405         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
11406         to take an options parameter so that empty entries can be removed during
11407         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
11409 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11411         * marshal.c: make sure we don't store the signature from a dynamic
11412         method into the runtime invoke cache (bug #327189).
11414 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11416         * marshal.c: make sure the wrapper methods are properly initialized.
11418 2007-10-11  Mark Probst  <mark.probst@gmail.com>
11420         * metadata.c, metadata-internals.h: Generalized
11421         mono_type_stack_size() to mono_type_stack_size_internal() which
11422         takes an additional argument specifying whether it allows open
11423         types.
11425 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
11427         * verify.c (do_invoke_method): handle typedbyref params
11428         correctly and check for unverifiable return values.
11430         * verify.c (do_newobj): fix a warning.
11432 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11434         * verify.c: don't tread typedbyref as allways unverifable,
11435         so uses, like (ld/st)loc.0 are valid. verify for the cases
11436         that it matters, like boxing related operations.
11438 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11440         * verify.c: add verification of the newobj opcode. verification
11441         of delegate instantation still missing due ldftn and virldftn not
11442         pushing the function type on stack
11444 2007-10-08  Mark Probst  <mark.probst@gmail.com>
11446         * class-internals.h: Runtime generic context data structure
11447         definition.
11449         * object.c: Initialization of runtime generic context at runtime
11450         vtable creation time.
11452 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
11453         * class.c (mono_class_create_from_typedef,
11454         mono_class_from_generic_parameter, mono_ptr_class_get,
11455         mono_fnptr_class_get, mono_bounded_array_class_get)
11456         * domain.c (mono_domain_create, mono_domain_free)
11457         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
11458         * image.c (do_mono_image_load, mono_image_close):
11459         Hooked up load-unload profiler events.
11461 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
11463         * domain.c: track statistics about the actual amount of native code
11464         allocated.
11466 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
11468         * class.c: the valuetype enumerators don't have the additional
11469         supertypes interfaces.
11471 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11473         * class.c: need more interfaces setup for the IEnumerator<T>
11474         object created for arrays (tests/ienumerator-interfaces.2.cs).
11476 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
11478         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
11480 2007-10-05  Alp Toker  <alp@atoker.com>
11482         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11483         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11484         #315863.
11486 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11488         * verify.c (verify_type_compatibility_full): verification of
11489         compatibility improved, validates correctly non-strict checks between
11490         native int and I4 types different than (unsigned)int32.
11492         * verify.c (do_store_indirect): added, do all verification of
11493         ldind.X opcodes. 
11495         * verify.c (get_load_indirect_mono_type): renamed to
11496         get_indirect_op_mono_type, as it now returns the MonoType for 
11497         ldind.X and stind.X opcodes.
11499 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11501         * reflection.c: Fix the encoding of generic type definition for
11502         TypeBuilders.
11504         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
11505         mono_image_typedef_or_ref but allows to specify if typespec lookups should
11506         be made. Typespec check is done prior to typeref cache lookup.
11508         * reflection.c (mono_image_typedef_or_ref): now just delegate to
11509         mono_image_typedef_or_ref_full.
11511         * reflection.c (encode_generic_class): encode the generic class
11512         directly instead of calling encode_type.
11514         * reflection.c (encode_type): encode the generic type definition
11515         MonoClass as a generic instantiation.
11517         * reflection.c (create_typespec): cache typespec tokens in
11518         the assembly->typespec cache. Don't create typespec for a generic
11519         instance MonoClass. Create typespec for the generic type defintion.
11521         * reflection.c (create_generic_typespec): encode the generic
11522         class directly instead of calling encode_type.
11524         * reflection.c (mono_image_create_token): encode the generic
11525         type definition not using a typespec for MonoType instances.
11528 2007-10-04  Raja R Harinath  <rharinath@novell.com>
11530         Fix #328812
11531         * class.c (mono_image_init_name_cache): Don't return nested
11532         'protected internal' classes.
11533         (mono_class_from_name_case): Likewise.
11535 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11537         * icall-def.h, icall.c : get_bundled_machine_config() is now the
11538           common function used by both DefaultConfig in System.dll and
11539           InternalConfigurationHost in System.Configuration.dll.
11541 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11543         * class.c: automatically add to vectors only a few essential explicit
11544         generic interfaces. The rest of the interfaces that arrays should
11545         provide are currently implicitly added (but still not lazily, see the
11546         design in the discussion of bug#325495 for the details of what is
11547         needed for that). Additionally, implicit interfaces are assigned the
11548         same vtable slot as the explicit interfaces (as they are compatible):
11549         this enables huge memory savings since we don't need to instantiate
11550         as many memthods and as large vtables anymore. Also, Since
11551         GetEnumerator<T> returns an instance of a type that is required to
11552         support a similarly large set of interfaces as arrays, we add
11553         implicit interfaces and interface offset sharing support to those
11554         types, too. This change adds all the required interfaces so that
11555         the anonarray.cs test case in the bug report works (we don't add
11556         all the interfaces to arrays of arrays 3-level deep and more because
11557         of the memory requirements explained in the bug and since they are much
11558         less common: the lazy-loading support will enabled them to work, too).
11560 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11562         * verify.c (merge_stacks): major clean up, all type compatibility
11563         checks are done by verify_type_compatibility. This fix my earlier lack
11564         of understanding of the CLR type system and merge_stacks no longer looks
11565         scary.
11567         * verify.c: fixed some bad spelling.
11569 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11571         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
11572         a given stack slock.
11573         
11574         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
11575         verify_type_compatibility_full. This removed a near indentical function and fixed
11576         handling of Int32 and IntPtr across all opcodes.
11578 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11580         * class.c: only vectors have the additional generic interfaces.
11582 2007-10-01  Jonathan Chambers <joncham@gmail.com>
11584         * mono-config.c: Use g_strcasecmp instead of
11585         strcasecmp like everywhere else to fix
11586         compilation with MSVC.
11587         
11588         Code is contributed under MIT/X11 license.
11590 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11592         * object.c, object-internals.h: refactored the IMT code to enable
11593         building a single slot at a time and lazily creating the IMT trampolines
11594         and thunks.
11596 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
11598         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
11600         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
11601         Fixes #328501.
11602         
11603 2007-09-29  Raja R Harinath  <harinath@gmail.com>
11605         * loader.c (method_from_methodspec): Rearrange to avoid
11606         un-necessary exposition.  Don't assert out if the method's
11607         declaring type is a generic type definition.
11609 2007-09-28  Martin Baulig  <martin@ximian.com>
11611         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
11613 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
11615         * class-internals.h: optimize field layout of MonoClass to
11616         requires less cachelines at runtime and save a few bytes on 64 bit
11617         systems.
11619 2007-09-28  Jb Evain  <jbevain@novell.com>
11621         * reflection.c: when encoding type names in custom attributes,
11622         if the type is a closed generic type, its generic arguments
11623         have to be serialized as AssemblyQualifiedName, so that when
11624         they are deserialized, it's possible to re-create them properly.
11625         Fixes #329450.
11628 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11630         * object.c, class-internals.h: added delegate-creation counter.
11632 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
11634         * class.c: cleanup of the code that synthetizes interfaces for
11635         arrays in 2.0: saves quit a bit of corlib mempool memory.
11636         Code to fix bug #325495 ifdeffed out for now until the issues
11637         with memory usage and O(n^2) behaviour are fixed.
11639 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11641         * marshal.c: when possible, do not duplicate the name of the methods
11642         in the method builder and in the generated MonoMethod.
11644 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11645         * verify.c: added support for type checking ldind_* opcodes.
11647 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11649         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
11650         which is used to distinguish the fully open instantiation of a TypeBuilder
11651         with the rest. This temporary hack is required to restore the property that
11652         the fully open instantiation is the same type of the generic type definition.
11654         * class-internals.h (mono_generic_class_is_generic_type_definition):
11655         new function as part of the internal API.
11657         * class.c (inflate_generic_type): return NULL when the generic inst is
11658         fully open. The fully open generic type is now the same as the generic type
11659         definition for non TypeBuilder types.
11661         * class.c (mono_generic_class_get_class): removed assert since it is
11662         no longer valid, gklass->cached_class can point to the generic type definition.
11664         * class.c (mono_generic_class_is_generic_type_definition): new.
11666         * metadata.c (mono_generic_class_hash): added is_tb_open field
11667         to the hash calculation.
11669         * metadata.c (free_generic_class): if the generic class is associated
11670         with the generic type definition, its field will come from the mempool and
11671         must not be freed.
11673         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
11674         new, this function identifies the corner case of a TypeBuilder fully open
11675         instantiation.
11677         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
11678         for lookup. Set gclass->cached_class to be the container class in case of
11679         the fully open instantiation of non TypeBuilder types.
11681         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
11682         to compare generic classes.
11684         * reflection.c (method_encode_methodspec): remove assert that
11685         no longer is valid.
11687         * reflection.c (mono_reflection_generic_class_initialize): add
11688         an aditional assert to ensure the proper type is used.
11690 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
11692         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
11693         to enjoy it.
11695 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11697         * verify.c (push_arg): Fixed support for ldarga
11698         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
11699         MonoType used as first arg in case of instance calls.
11701 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11703         * verify.c: Support for verifying VAR and MVAR types, 
11705 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
11707         * icall.c (ves_icall_get_property_info): Set the reflected type of the
11708         accessors correctly.
11710 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
11712         * threads.c: support OSX and other systems in
11713         mono_thread_get_stack_bounds (bug #328026).
11715 2007-09-25  Martin Baulig  <martin@ximian.com>
11717         * mono-debug.h
11718         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
11720 2007-09-24  Martin Baulig  <martin@ximian.com>
11722         * mono-debug.h
11723         (MonoDebugClassEntry): Moved the definition of this struct into
11724         mono-debug.c to make it private.
11726         * mono-debug.c
11727         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
11728         type table per symbol file, we don't need to store the symfile id
11729         any longer.
11731 2007-09-24  Martin Baulig  <martin@ximian.com>
11733         Create one type table per symbol file, since a `MonoClass *' gets
11734         invalid when its image is unloaded.
11736         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
11737         (MonoDebugHandle): Added `type_table'.
11739 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
11741         * mempool.c, mempool.h: added mono_mempool_new_size () API
11742         to be able to specify a smaller initial size for the pool.
11743         Adjusted the code to slowly increase pool size before using
11744         the previous default size.
11745         * image.c: use a small initial size for image mempools.
11747 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
11749         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
11750         Fixes ##320990.
11752         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
11753         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
11755 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
11757         * metadata.c (mono_type_create_from_typespec): Remove an invalid
11758         free. Fixes #327438.
11760 2007-09-21  Raja R Harinath  <harinath@gmail.com>
11762         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
11763         generic instantiations, etc.
11764         <MONO_TYPE_ARRAY>: Likewise.
11766 2007-09-21  Martin Baulig  <martin@ximian.com>
11768         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
11769         these structs were never defined.
11770         (MonoDebugHandle): Removed the `_priv' field, it was never used.
11772 2007-09-21  Martin Baulig  <martin@ximian.com>
11774         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
11776 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
11778         * image.c: removed the guid hash tables: we can get the same info
11779         without the additional memory usage hit (partially fixes also bug #327052).
11781 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11783         * profiler.h, profiler-private.h, profiler.c: add a new profiler
11784         event to handle unloading methods. After the event is called, the
11785         corresponding MonoMethod* must be considered invalid.
11786         * loader.c (mono_free_method): call the new mono_profiler_method_free
11787         event.
11789 2007-09-20  Mark Probst  <mark.probst@gmail.com>
11791         * domain-internals.h: New flag in MonoJitInfo which marks shared
11792         generic methods.  New hash table (shared_generics_hash) in
11793         MonoDomain to keep track of shared generic methods.  Prototypes
11794         for functions to register and lookup shared generic methods.
11796         * domain.c: Support for registering and looking up shared generic
11797         methods via a hash table (shared_generics_hash) in MonoDomain.
11799         * class-internals.h: New exception to signal failure of shared
11800         compilation of a generic method.  New counters for generics
11801         sharing in MonoStats.
11803 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
11805         * image.c, metadata-internals.h: don't keep a file descriptor open
11806         for loaded assemblies (bug#325988).
11808 2007-09-19  Raja R Harinath  <rharinath@novell.com>
11810         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
11811         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
11812         use the corresponding datatypes.
11813         (type_in_image): Update to changes.
11814         (CleanForImageUserData): Simplify.
11815         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
11816         Avoid quadratic behaviour in handling the "stolen" list by
11817         separating the filter predicate out, and by prepending the stolen
11818         items rather than appending them.
11819         (steal_ginst_in_image): Likewise.
11820         (mono_metadata_clean_for_image): Update to changes.
11822 2007-09-19  Martin Baulig  <martin@ximian.com>
11824         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
11826 2007-09-19  Martin Baulig  <martin@ximian.com>
11828         * mono-debug.c (mono_debug_cleanup): Don't call
11829         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
11831 2007-09-19  Raja R Harinath  <harinath@gmail.com>
11833         Fix crash on 'make run-test' in mcs/errors
11834         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
11835         Avoid more potential allocations in mono_class_from_mono_type.
11836         (ginst_in_image): Update to changes.
11837         (gclass_in_image): Rearrange slightly.
11839 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11841         * class.c (mono_class_init): Move the code that sets up class->methods to 
11842         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
11844         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
11845         canonical instance of an inflated generic signature.
11846         (mono_type_create_from_typespec): Remove an invalid free.
11848         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
11850 2007-09-18  Marek Habersack  <mhabersack@novell.com>
11852         * domain-internals.h: added a declaration of the
11853         mono_assembly_load_full_nosearch internal function.
11855         * assembly.c (mono_assembly_load_with_partial_name): use
11856         mono_try_assembly_resolve return value properly.
11857         (mono_assembly_load_full_nosearch): copied the function body from
11858         mono_assembly_load_full, without the code to invoke assembly
11859         search hooks.
11860         (mono_assembly_load_full): calls the above new function and if the
11861         assembly is not resolved, invokes the search hooks.
11863         * appdomain.c (mono_runtime_init): restore the global postload
11864         assembly search handlers.
11866 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11868         * class.c (mono_class_init): Make sure class->methods and class->properties
11869         are never NULL in the generics case.
11871         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
11873 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
11875         * metadata.c (free_generic_class): Disable some code to fix the build.
11877         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
11879         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
11880         from the image mempool.
11882         * metadata.c (free_generic_class): Free more data from the inflated class.
11884         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
11886         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
11887         mempool.
11888         (mono_type_create_from_typespec): Ditto.
11890         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
11891         MonoImage to the caller.
11892         (mono_init_internal): Save the opened image in a global variable.
11893         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
11895         * reflection.c (resolve_object): Fix a leak.
11897         * metadata.c: Fix the freeing of data in the generics caches.
11898         
11899         * metadata.c (free_generic_inst): Comment this out to fix the build.
11900         (free_generic_class): Ditto.
11902         * metadata.c: Free cached generic methods, instantinations and classes when
11903         they are removed from the caches.
11904         (mono_metadata_free_type): Free the type itself.
11906         * class.c: Free the result of mono_class_inflate_generic_type () in a few
11907         places.
11909 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11911         * boehm-gc.c: restrict managed allocs to __thread supporting
11912         architectures.
11914 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
11916         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
11917         (mono_generic_class_get_class): Fix a leak.
11919         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
11920         mono_metadata_free_type ().
11921         (mono_metadata_inflate_generic_inst): Fix a leak.
11923 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11925         * mono-debug.c (free_header_data): Fix a leak missed earlier.
11927         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
11928         mempool.
11930         * mono-debug.c (mono_debug_close_image): Fix call to 
11931         g_hash_table_remove ().
11933 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11935         * icall-def.h: redirect all the string ctor to the managed
11936         CreateString () methods.
11937         * string-icalls.c, string-icalls.h: removed dead code for string
11938         ctors and icalls.
11940 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11942         * mono-debug.c: Fix memory leaks.
11944 2007-09-14  Jonathan Chambers <joncham@gmail.com>
11946         * threads-types.h: Implement mono_hazard_pointer_set and 
11947         mono_hazard_pointer_clear macros using do/while(0) to fix
11948         compilation with MSVC.
11949         
11950         Code is contributed under MIT/X11 license.
11952 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11954         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
11955         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
11957 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11959         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
11960         icalls.
11962 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11964         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
11965         managed-code allocated as well.
11967 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11969         * class.c (mono_class_is_assignable_from): Add support for generic variance.
11971 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
11973         * boehm-gc.c: fixed the build after the AOT changes.
11975 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
11977         * wrapper-types.h: Add an ALLOC wrapper type.
11979         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
11980         reference managed allocator methods.
11982 2007-09-12  Marek Safar  <marek.safar@gmail.com>
11984         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
11985         of Type array and not MonoType, a fix suggested by Hari.
11986         
11987 2007-09-12  Jonathan Chambers <joncham@gmail.com>
11989         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
11990         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
11991         
11992         Code is contributed under MIT/X11 license.
11994 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11996         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
11998 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12000         * image.c (do_mono_image_open): if assembly file fails to open and
12001         MONO_IOMAP is in effect, try to find the path in a
12002         case-insensitive way.
12004         * appdomain.c (mono_runtime_init): do not install postload hooks -
12005         tests show that MS.NET doesn't use anything of that sort to
12006         trigger the AppDomain.AssemblyResolve event.
12007         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12008         made non-static.
12009         (mono_runtime_init): init portability helpers here.
12011         * assembly.c (mono_assembly_load_with_partial_name): if other   
12012         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12013         to resolve the assembly.
12015         * domain-internals.h: added mono_try_assembly_resolve and marked
12016         it as internal.
12018 2007-09-11  Jb Evain  <jbevain@novell.com>
12020         * object-internals.h (MonoReflectionDynamicMethod): add
12021         a `MonoReflectionType *owner` field. The owner is used
12022         * reflection.c:
12023         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12024         method as the class declaring the dynamic method.
12025         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12026         dynamic method to the declaring type of the methodbuilder.
12028 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12030         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12031         rules for calling methods via reflection.
12033 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12035         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12036         Inflate MonoType's.
12038 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12040         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12041         provide a managed method that does fast allocations without needing
12042         a managed->unmanaged transition. Boehm GC implementation currently
12043         enabled for ptrfree objects on sane architectures.
12045 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12047         * marshal.c, marshal.h: exported a couple of useful functions and
12048         added mono_mb_get_label () to easily handle backward branches.
12050 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12052         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12054 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12056         * loader.c (find_method): Fixed the regression introduced while
12057         fixing bug #81466.
12059 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12061         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12062         well.
12063         
12064         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12065         icall.c reflection.c: Pass a MonoGenericContext argument to 
12066         mono_lookup_dynamic_token ().
12068         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12069         #82744.
12070         
12071 2007-09-09  Robert Jordan  <robertj@gmx.net>
12073         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12074         for generic methods.
12076         * object.c (mono_object_get_virtual_method): Handle generic methods.
12077         Fixes bug #78882.
12079         Code is contributed under MIT/X11 license.
12081 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12083         * image.c: fix locking in mono_image_load_file_for_image ().
12085 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12087         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12088         used only as a cache: added an icall to fill it.
12090 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12092         * reflection.h: exposed mono_reflection_free_type_info
12093         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12094         since mono_reflection_bind_generic_parameters makes a copy of it.
12095         * reflection.c (free_type_info): subinfos should be freed.
12096         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12097         made non static.
12098         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12099         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12100         this fixes #82695 and #81726.
12101    
12103 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12105         * process.h, process.c:  added support for user profile/info in
12106           ProcessStartInfo. For now only Windows works.
12108 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12110         * metadata.c: consider the generic arguments when comparing
12111         signatures (bug #82614).
12113 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12115         * cil-coff.h, image.c: updated assembly loader to cope with the
12116         PE32+ 64 bit file format.
12118 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12120         * assembly.c, class.c, domain.c, loader.c: remove useless
12121         inclusion of cil-coff.h.
12123 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12125         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12126         if interface is marked with CoClassAttribute. 
12127    
12128         Code is contributed under MIT/X11 license.
12130 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12132         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12133         if it's seen twice in major collections.
12135 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12137         * sgen-gc.c: big objects are not copied to the gray area, but they
12138         need to be considered for scanning, too, if they are brought alive
12139         by an object ready for finalizations or a survived one.
12141 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12143         * sgen-gc.c: properly account the number of disappearing links when
12144         they are nullified.
12146 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12148         * sgen-gc.c: share the code to scan the registered roots between the
12149         different types of collections.
12151 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12153         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12155 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12157         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12158         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12160 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12162         * security-manager.c (mono_security_manager_get_methods):
12163         LinkDemandSecurityException now has 2 arguments instead of 3.
12165 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12167         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12168         platforms which need it.
12170 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12172         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12173         dtor.
12175 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12177         * threads.c: free the thread static data on thread exit.
12179 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12181         * class.c: walk the hierarchy to find the generic definition for
12182         a class (fixes runtime part of bug #82498).
12184 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12186         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12187         ...
12189         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12191 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12193         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12195 2007-08-24  Robert Jordan  <robertj@gmx.net>
12197         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12199 2007-08-24  Jb Evain  <jbevain@novell.com>
12201         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12202         for byref types.
12204 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12206         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12207         #82286.
12209 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12211         * assembly.c: Fix a warning.
12212         
12213 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12215         * appdomain.c: parse the <runtime> section looking for the probing
12216         element with the 'privatePath' attribute, which sets additional
12217         directories in which the runtime should look for assemblies.
12219 2007-08-23  Robert Jordan  <robertj@gmx.net>
12221         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12222         Fixes #82499.
12224 2007-08-23  Martin Baulig  <martin@ximian.com>
12226         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12227         _mono_debug_init_corlib() and remove it from the header file.
12229 2007-08-23  Martin Baulig  <martin@ximian.com>
12231         * mono-debug-debugger.c
12232         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12233         don't notify the debugger about it.
12235         * mono-debug-debugger.h
12236         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12238 2007-08-23  Robert Jordan  <robertj@gmx.net>
12240         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12241         Code is contributed under MIT/X11 license.
12243 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12245         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12247 2007-08-22  Martin Baulig  <martin@ximian.com>
12249         * mono-debug.c: Store debugging info on a per-domain basis and
12250         free it on domain unload.  Add support for unloading symbol files.
12252         * mono-debug.h
12253         (MonoDebugList): New typedef.
12254         (MonoSymbolTable):
12255         - add `data_tables and `type_table'.
12256         - replace 'symbol_files' and `num_symbol_files' with a
12257           `MonoDebugList *'.
12258         (mono_debug_data_table): Removed.
12259         (mono_debug_list_add): New public function.
12260         (mono_debug_list_remove): New public function.
12261         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12262         (mono_debug_init_2_memory): Renamed into
12263         mono_debug_open_image_from_memory().
12264         (mono_debug_close_image): New public function.
12265         (mono_debug_domain_create): Likewise.
12266         (mono_debug_domain_unload): Likewise.
12267         (MONO_DEBUGGER_VERSION): Bump to 60.
12269         * mono-debug-debugger.h
12270         (MonoDebuggerEvent):
12271         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12272         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12273         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12274         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12275           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12276         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12277           meaning.
12278         (mono_debugger_add_symbol_file): Removed.
12279         (mono_debugger_add_type): Removed.
12280         (mono_debugger_lookup_type): Removed.
12281         (mono_debugger_lookup_assembly): Removed.
12283         * domain.c
12284         (mono_domain_create): Call mono_debug_domain_create().
12285         (mono_init_internal): Call mono_debug_init_corlib().
12287         * assembly.c
12288         (mono_assembly_close): Call mono_debug_close_image().
12290 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12292         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12293         mmap call.
12295 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12297         * sgen-gc.c: ensure section->pin_queue_end is initialized
12298         correctly when non pinning objects in the section have been found.
12300 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12302         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12303         containing a list of directories separated by ':'. MSDN docs say
12304         the directories should be separated with ';'. Part of a bugfix for
12305         bug #81446
12307 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12309         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12310         it should MonoType and not MonoClass.
12312 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12314         * culture-info-table.h : regenerated.
12316 2007-08-20  William Holmes  <billholmes54@gmail.com>
12318         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12319          to call ReplaceFile Kernel32 on windows or in io-layer.
12320         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12321         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12322          as an internal call.
12324         Code is contributed under MIT/X11 license.
12326 2007-08-20  Jb Evain  <jbevain@novell.com>
12328         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12329         and MONO_EXCEPTION_FIELD_ACCESS.
12331         * debug-helpers.[c|h]: new mono_field_full_name function.
12333 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12335         * class.c: Removed class_security_level() and moved it to
12336         security-core-clr.c.
12338         * security-core-clr.c, security-core-clr.h: class_security_level()
12339         is now public and renamed to mono_security_core_clr_class_level().
12340         It also looks for security attributes in the classes a class is
12341         nested in.
12343 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12345         * security-core-clr.c, security-core-clr.h: CoreCLR security
12346         utility functions.
12348         * Makefile.am: Added security-core-clr.[ch].
12350         * security-manager.c, security-manager.h: Functions and enum for
12351         setting and getting the security mode.
12353         * class.c: CoreCLR security checks.
12355 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12357         * icall-def.h, process.c, process.h: implemented icall to get
12358         user/system processor times.
12360 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12362         * domain.c, threads.c, class-internals.h, domain-internals.h: New
12363         reader-lock-free jit_info_table.
12365 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
12367         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
12369         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
12371         * object-internals.h (MonoException): Add missing _data member.
12373 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12375         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
12376         checking that only methods with matching qname or fqname are picked
12377         from implemented interfaces.
12379 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12381         * verify.c (do_newarr):added, do type verification of
12382         newarr ops, push the right value on the eval stack.
12383         * verify.c (mono_method_verify): use do_newarr
12386 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12388         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
12389         factored the common code into get_boxable_mono_type, which
12390         is now using mono_type_get_full, this fixed byref related tests.
12392 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12394         * class.c: added mono_type_get_full, this function has the same
12395         behavior of mono_class_get_full but the returned MonoType has
12396         all metadata of the associated token in case of a typespec token.
12397         * class.c: added mono_type_retrieve_from_typespec, used by 
12398         mono_type_get_full to retrieve the token type.
12399         * class.c (mono_class_create_from_typespec): changed to use
12400         mono_type_retrieve_from_typespec.
12401         * class.c (mono_ldtoken): changed to use mono_type_get_full
12402         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
12403         * class-internals.h: exported mono_type_get_full for internal use.
12405 2007-08-16  Jb Evain  <jbevain@novell.com>
12407         * domain.c (supported_runtimes): add entry for
12408         the 'moonlight' runtime version.
12410 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12412         * verify.c (mono_method_verify): small typo sliped in.  
12414 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12416         * verify.c (do_unbox_value): added, do type verification of
12417         unboxing ops
12418         * verify.c (mono_method_verify): use do_unbox_value
12421 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12423         * verify.c (dump_stack_value): fixed typo, was printing string
12424         instead of object on stack.
12425         * verify.c (do_box_value): moved the byref check up as it leads
12426         to invalid code and should be done earlier.
12427         * verify.c: improved error messages for and ldobj
12429 2007-08-15  William Holmes  <billholmes54@gmail.com>
12431         * marshal.c (emit_marshal_custom): Omit the call to 
12432           marshal_native_to_managed when calling native to managed 
12433           and the argument is specified as an out argument.
12435         Code is contributed under MIT/X11 license.
12437 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12439         * verify.c: fixed the type checks for generics, function pointers and vectors.
12440         Added type verification for ldobj and ldtoken. The verifier
12441         would segfault if header or signature of a method contained references
12442         to non-existant types.
12444 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12446         * marshal.c (cominterop_get_ccw): Patch from
12447         Bill Holmes to no walk up interface hierarchy. 
12448         All parent methods should be present in the interface for COM.
12449    
12450         Code is contributed under MIT/X11 license.
12452 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12454         * marshal.c (emit_marshal_com_interface): Patch from
12455         Bill Holmes to handle COM Interfaces as return values
12456         for native->managed calls.
12457    
12458         Code is contributed under MIT/X11 license.
12460 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
12462         * marshal.c (cominterop_get_idispatch_for_object): Implement
12463         for runtime callable wrappers.
12464    
12465         Code is contributed under MIT/X11 license.
12467 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
12469         * pedump.c (main): changed from mono_init to mono_init_from_assembly
12470         so 2.0 types are accessible
12473 2007-08-13  Miguel de Icaza  <miguel@novell.com>
12475         * domain.c (mono_init_internal): Call mono_assembly_load_friends
12476         once we load mscorlib.   Due to the order in which we initialize,
12477         the mono_assembly_load_full routine that loads mscorlib did not
12478         load friends.   We now load it once we load the
12479         mono_defaults.internals_visible_class class. 
12481         * assembly.c: Expose the mono_load_friend_assemblies method.
12483 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
12485         * verify.c: improved the handling of boxing, better
12486         type checking for unary ops and conversion. Fix bug
12487         regarding managed pointer compatibility checking
12489 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12491         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
12493         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
12495 2007-08-09  Raja R Harinath  <rharinath@novell.com>
12497         * reflection.c (dup_type): Remove.
12498         * class.c (dup_type): Remove.
12499         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
12500         instead of the dodgy 'dup_type'.
12501         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
12502         handle the case where 'dup_type' needed the second argument.
12504 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
12506         * domain.c: Fix a warning.
12508 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12510         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
12511         checking that methods with the same fqname are not overridden
12512         with a method from an ancestor.
12514 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
12516         * threads.c (free_thread_static_data_helper): Avoid a crash if
12517         thread->static_data is not yet set.
12519 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
12521         * marshal.c: Use correct image when emitting
12522         native wrapper for COM calls.
12523    
12524         Code is contributed under MIT/X11 license.
12526 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
12528         * icall-def.h, security.c, security.h :
12529           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
12531 2007-08-07  Martin Baulig  <martin@ximian.com>
12533         * mono-debug-debugger.h
12534         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
12536         * domain.c (mono_domain_free): Call
12537         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
12539 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
12541         * verify.c (check_underflow, check_overflow): error message now returns IL offset
12542         * verify.c (in_same_block): code should test if either offset is inside the clauses
12543         * verify.c (mono_method_verify): push the exception into the eval stack of exception
12544         and filter blocks
12546 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12548         * image.c (mono_image_close): Fix a leak.
12550         * object.c (mono_runtime_invoke_array): Avoid using alloca.
12552         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
12554 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12556         * domain.c, threads.c, threads-types.h: fix memory retention issue
12557         with thread static variables not being cleared on domain unload.
12558         Reuse thread static slots after domain unload.
12560 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12562         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
12563         nullable type.
12565         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
12566         now done in mono_runtime_invoke_array.
12568         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
12569         receiver is a nullable type.
12571         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
12572         generic parameter.
12574 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
12576         * marshal.c: Implement COM Objects as return type for 
12577         managed->unmanaged calls. Added Release calls for COM Object
12578         out/return values in managed->unmanaged calls.
12580         Code is contributed under MIT/X11 license.
12582 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12584         * threads.h, threads-type.h: move the hazard pointer declarations
12585         to the private header.
12587 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12589         * file-io.c, appdomain.c: memory leak fixes.
12591 2007-08-02  Dick Porter  <dick@ximian.com>
12593         * socket-io.c
12594         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
12595         SO_REUSEADDR setting into io-layer/sockets.c.
12597 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
12599         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
12600         from Object when called on a generic parameter. Fixes #82211.
12602 2007-08-01  Dick Porter  <dick@ximian.com>
12604         * file-io.c (convert_share): Test FileShare values bit-by-bit.
12605         Fixes bug 79250 yet again.
12607 2007-07-30  Martin Baulig  <martin@ximian.com>
12609         Merged the `debugger-dublin' branch.
12611         * mono-debug.h
12612         (MonoDebugDataTable): New typedef.
12613         (MonoDebugMethodAddressList): New typedef.
12614         (MonoDebugWrapperData): Removed.
12615         (MonoDebugSymbolTable): Removed `current_data_table',
12616         `current_data_table_size', `current_data_table_offset'.
12617         (MonoDebugDataItemType): Moved into mono-debug.c.
12618         (MonoDebugMethodJitInfo): Remove `address'.
12619         (mono_debug_data_table): New global variable.
12620         (mono_debug_lookup_method_addresses): New public function.
12621         (mono_debug_find_method): Take a `MonoMethod *', not a
12622         `MonoDebugMethodInfo *'.
12624         * mono-debug.c: Drop support for the old symbol tables.
12626 2007-06-28  Martin Baulig  <martin@ximian.com>
12628         * mono-debug.c (mono_debug_debugger_version): New public variable.
12630 2007-07-31  William Holmes  <billholmes54@gmail.com>
12632         * metadata.c Changed mono_type_create_from_typespec to not insert
12633           the type into the hash map until after
12634           do_mono_metadata_parse_type has completed.
12635         Fixes Bug #82194
12636         Code is contributed under MIT/X11 license.
12638 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
12640         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
12641         generic parameter. Fixes #82211.
12643 2007-07-27  Jb Evain  <jbevain@novell.com>
12645         * pedump.c (dump_metadata, dump_metadata_header): dump
12646         versions contained in the metadata header.
12648 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12650         * threads.c: register small_id_table with the GC.
12652 2007-07-27  Mark Probst  <mark.probst@gmail.com>
12654         * threads.c, threads.h, class-internals.h, object-internals.h:
12655         Hazard pointers, to be used by lock-free parallel algorithms.
12657 2007-07-26  Dick Porter  <dick@ximian.com>
12659         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
12660         routine on non-windows platforms, as I've not managed to think of
12661         a non-kludgy way of doing this.  Finishes off bug 78739.
12663 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12665         * object.c: properly setup interface_bitmap in proxy vtables.
12667 2007-07-25  Marek Habersack  <mhabersack@novell.com>
12669         * appdomain.c (get_shadow_assembly_location): do not use TickCount
12670         to create unique shadow copy target directories, use the domain's
12671         serial number instead. Each domain gets a unique target directory
12672         that way.
12674         * domain.c (mono_domain_create): added code to increment domain
12675         shadow copy serial number and cache the value in the current
12676         domain structure.
12678         * domain-internals.h (struct _MonoDomain): added a new field -
12679         shadow_serial to hold the serial number used in generation of
12680         shadow-copy directories. This is to make sure that the directory
12681         name is unique for each and every domain created. We avoid a race
12682         condition with overriding assemblies already in use by other app
12683         domains.
12685 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
12687         * class.c (mono_bounded_array_class_get): fixed memory leak when 
12688         binding generic parameters.
12690 2007-07-24  Raja R Harinath  <rharinath@novell.com>
12692         * metadata.c (do_mono_metadata_parse_generic_class): Use
12693         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
12694         error.
12696 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12698         * loader.c, class-internals.h, reflection.c: removed the per-method
12699         generics hashtable: we use the global one through the call of
12700         mono_class_inflate_generic_method ().
12702 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12704         * class.c, metadata.c, class-internals.h: introduce yet another
12705         generics global cache for inflated methods (fixes 98% of the perf
12706         issue in bug #81806).
12708 2007-07-23  Raja R Harinath  <rharinath@novell.com>
12710         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
12711         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
12712         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
12713         return a MonoGenericInst containing (a copy) of those types.
12714         (mono_metadata_inflate_generic_inst): Update to changes.
12715         (mono_metadata_parse_generic_inst): Likewise.
12716         (mono_get_shared_generic_inst): Likewise.
12717         * reflection.c (mono_class_bind_generic_parameters): Likewise.
12718         (mono_reflection_bind_generic_method_parameters): Likewise.
12719         * metadata-internals.h: Likewise.
12720         * icall.c (free_generic_context): Kill.
12721         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
12723         * reflection.c (reflection_methodbuilder_to_mono_method): Use
12724         mono_metadata_type_dup.
12725         * marshal.c (mono_mb_create_method): Likewise.
12727         * metadata.c (mono_metadata_type_dup): Rename from
12728         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
12729         MonoImage.  Handle a few more cases, esp. when no mempool is given.
12730         * marshal.c, metadata-internals.h: Update to changes.
12732 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12734         * class.c: fixed a small leak for array classes and removed warning.
12736 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
12738         * loader.c (mono_method_get_param_token): Make this work on generic methods.
12739         Return 0x8000000 for return parameters. Fixes #82161.
12741 2007-07-21  Marek Habersack  <grendello@gmail.com>
12743         * appdomain.c (get_shadow_assembly_location): append the current
12744         ticks value to the path. Avoids overwriting the same assemblies by
12745         several threads at the same time.
12747 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12748         and Raja R Harinath  <rharinath@novell.com>
12750         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12751         Simplify slightly.
12752         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
12753         property for testing if a method is a generic method definition.
12755 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12757         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
12759 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12761         * verify.c: used function from private branch, reverted to the one in class.h 
12763 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12765         * verify.c: a typo slipped in and the code wont compile
12767 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12769         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
12770         disabled box instruction as it is doing the wrong thing
12771         improved stack dump messages, now it is easier to debug type related issues
12774 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
12776         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
12778 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12780         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
12781         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
12782         grouped with class and valuetype. This change will simply 
12783         the code as it should be handled just like unmanaged pointers.
12785 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12787         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
12789 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12791         * verify.c: several stack merge issues fixed, reference comparisons now
12792         check the type size. strict type check now works correctly.
12793         added more uses of IS_MANAGED_POINTER macro.
12794         fixed issues pointed by running the test suite against .net.
12795         
12797 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12799         * class.c, loader.c, class-internals.h: Removed the
12800         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
12801         defines.
12803         * icall.c: Better error checking in some internal reflection
12804         methods.
12806 2007-07-18  William Holmes  <billholmes54@gmail.com>
12808         * filewatcher.c : removed unused variable 'filename' in 
12809           ves_icall_System_IO_FSW_SupportsFSW
12811 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12813         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
12814         obsolete, removed.
12816 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
12818         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
12819         
12820         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
12822 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
12824         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12825         Implement generics support.
12826         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12828         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
12829         type_args and method_args arguments.
12830         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
12831         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12832         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
12834 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
12836         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
12837           It adds a rootimage parameter to mono_reflection_get_type_internal,
12838           adds new function mono_reflection_get_type_with_rootimage and use
12839           the rootimage to resolve the types instead of the current image
12841 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12843         * culture-info-table.h: Forgot to update after r78304.
12845 2007-07-13  Raja R Harinath  <rharinath@novell.com>
12847         * class.c (mono_class_is_open_constructed_type)
12848         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
12850 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
12852         * class.c (mono_bounded_array_class_get):  method fails if used with
12853         an incomplete TypeBuilder enum (no basetype field), fixed it by 
12854         avoiding calculating the size for such array as it cannot be instantiated.
12855         Fix bug #82015
12857 2007-07-12  Raja R Harinath  <rharinath@novell.com>
12859         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
12860         field.
12861         * metadata.c, reflection.c: Update to changes.
12863 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
12865         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
12866         mono_class_is_valid_enum, they are used to valide a enum when loading.
12867         * reflection.c: used new functions to throw TypeLoadException when and
12868         invalid enum is build with TypeBuilder. Fixes #82018
12869   
12870 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12872         * object.c: forgot commit of mono_class_setup_methods () to access
12873         iface->methods.
12874         * object-internals.h: added a few more handy fields to
12875         MonoIMTCheckItem.
12877 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12879         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
12880         iface->methods.
12882 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12884         * class-internals.h, object-internals.h, object.c: IMT-based
12885         interface invocation core from Massimiliano Mantione
12886         (massi@ximian.com) with a reworked arch-specific interface,
12887         bsearch implementation and a few bugfixes and memory savings by me.
12889 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
12891         * class.c (mono_class_create_from_typedef): mono would segfault if 
12892         an enum did not have a __value field. It now throws a TypeLoadException
12893         for such cases. Fix bug #82022
12895 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12897         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
12899 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12901         * class.c (mono_class_init): If a class is already inited but has
12902         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
12904 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12906         * class.c: Properly handle the case of an unimplemented interface
12907         method.  Fixes: 81673.
12909 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12911         * class-internals.h, object.c: cleanup patch from massi: use
12912         MonoVTable->interface_bitmap since the vtable interfaces offset array
12913         is going away.
12915 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12917         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
12918         GetMDStreamVersion icall instead.
12920 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
12922         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
12923         not use mono_dl_build_path() with a full library name: makes
12924         fallbacks to libgaim and libfam work.
12926 2007-07-06  William Holmes  <billholmes54@gmail.com>
12928         * assembly.c: Added a continue statement in probe_for_partial_name when
12929          parse_assembly_directory_name fails.  Fixes : 82002
12931 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
12933         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
12934         and added a verification  for TYPEDBYREF.
12935         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
12936         make native int interchangeable with int32 and some small cleanup and formating.
12937         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
12938         handle byref of byref.
12939         * verify.c (push_local): handle byref of byref.
12940         * verify.c (do_binop): invalid mix of values is unverifiable
12941         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
12942         added visibility checks
12943         * verify.c (field related method): added visibility checks
12944         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
12946 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
12948         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
12949         string.
12951 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
12953         * profiler.c (mono_profiler_load): Fix an off-by-one error.
12955         * marshal.c (emit_marshal_string): When returning a string from managed code,
12956         allways make a copy even for unicode strings. Fixes #81990.
12958 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
12960         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
12961         of byref generic inst types (bug #81997).
12963 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
12965         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
12966         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
12968 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
12970         * marshal.c (emit_marshal_string): Add support for unicode strings in
12971         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
12973 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
12975         * verify.c: field load/store are now verified, missing only access checks now
12977 2007-06-28  Martin Baulig  <martin@ximian.com>
12979         * mono-debug.c (mono_debug_debugger_version): New public variable.
12981 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
12983         * locales.c: When constructing DateTimeFormat or NumberFormat for
12984         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
12985         MonoCultureInfo contructed from the current locale is always
12986         read-only and has UseUserOverride set to true. All MonoCultureInfo
12987         instances returned for GetCultures have both IsReadOnly and
12988         UseUserOverride set to true. Fixes part of bug #81930.
12990 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
12992        * icall-def.h: Update System.__ComObject icalls
12993        * marshal.c: Avoid managed transition (and object creation)
12994        when looking up COM interface in RCW.
12995        * marshal.h: Ditto.
12996        
12997        Code is contributed under MIT/X11 license.
12999 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13001         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13002         to avoid crashes during assembly unloading.
13004 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13006         Fix MethodInfo.IsGenericMethodDefinition
13007         * reflection.c (mono_reflection_bind_generic_method_parameters):
13008         Rearrange code to ensure we always uses a generic method definition.
13009         * class.c (mono_class_inflate_generic_method_full): Set
13010         'generic_container' field only for generic method definitions.
13011         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13012         Use presense of 'generic_container' field as indication of being a
13013         generic method definition.
13015 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13017         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13019         * object-internals.h: Reflect changes in the layout of the managed Delegate
13020         class.
13021         
13022         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13023         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13024         runtime memory used by the dynamic method. Fixes #77146.
13026 2007-06-21  Dick Porter  <dick@ximian.com>
13028         * file-io.h: 
13029         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13030         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13031         81767.
13033 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13035         * reflection.c (method_encode_methodspec): Add a tripwire.
13036         * class.c (inflate_generic_type): The fully open generic type is
13037         not the same as the generic type definition.
13039 2007-06-21  Martin Baulig  <martin@ximian.com>
13041         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13043         * mono-debug-debugger.h
13044         (MonoDebuggerBreakpointInfo): Removed.
13045         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13046         (mono_debugger_remove_breakpoint): Likewise.
13047         (mono_debugger_breakpoint_callback): Likewise.
13048         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13050 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13052         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13053         generic type is not the same as the generic type definition.
13054         * class.c (mono_generic_class_get_class): Likewise.
13056 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13058         * icall.c: The second argument to 
13059         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13060         is a MonoType not a MonoClass.
13062 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13064         * verify.c: support for function pointers in the verifier
13066 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13068         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13070 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13072         * assembly.c: removed Mono.Data.SqliteClient from the list of
13073         forward-compatible assemblies as it breaks the ABI (bug #81899).
13075 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13077         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13078         lookup/update with the loader lock.
13079         * reflection.c (mono_class_bind_generic_parameters): No need to
13080         protect mono_metadata_lookup_* with the loader lock.
13081         * class.c (inflate_generic_type): Likewise.
13082         
13083         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13084         on a generic instantiated type.
13086 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13088         *verify.c: produce meanfull error messages on verification error
13089         *verify.c: fixed some cases of verification errors reported as validation errors
13090         *pedump.c: fixed the error name array, now it shows validation errors properly
13091         *verify.h: fixed the contant that should be used for verification errors
13093 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13095         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13096         for bug #77596, 81858 and 80743 (generics data structures on domain
13097         unload).
13099 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13101         Avoid allocating 'MonoGenericContext' on the heap.
13102         * class-internals (_MonoMethodInflated::context): Make field
13103         inline, not a pointer.
13104         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13105         stack.  Use the context embedded within the inflated method as the
13106         hash key, rather than 'new_context'.
13107         * class.c (inflate_generic_context): Simplify.  Return a struct
13108         rather than allocating on the heap.
13109         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13110         doesn't salt away a copy of the context -- simplifying the
13111         lifetime rules of a 'MonoGenericContext *'.
13112         (mono_method_get_context): Return pointer to embedded context.
13113         (setup_generic_array_ifaces): Allocate temporary context on stack.
13114         * reflection.c (inflate_mono_method): Likewise.
13115         (mono_reflection_bind_generic_method_parameters): Likewise.
13116         Use the context embedded within the inflated method as the hash key.
13118         Avoid a source of allocation of 'MonoGenericContext'.
13119         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13120         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13121         * class.c: Update to changes.
13122         (mono_generic_class_get_context): Simplify drastically.  Now just
13123         returns a pointer to the field.
13124         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13125         argument as a const pointer.
13126         (mono_metadata_generic_context_equal): Likewise.
13127         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13128         Update to changes.
13130 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13132         * verify.c improved the handling of brtrue/brfalse, factored out common code
13134 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13136         Kill MonoGenericMethod.
13137         * class-internals.h (MonoGenericContext::method_inst): Rename from
13138         'gmethod' and convert to a MonoGenericInst.
13139         (MonoGenericMethod): Remove.
13140         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13141         * loader.c (method_from_methodspec): Update to changes.  Use a
13142         MonoGenericContext as the key to the hashtable.
13143         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13144         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13145         (mono_metadata_generic_context_hash): Likewise from
13146         'mono_metadata_generic_method_hash'.  Change hash function.
13147         (mono_metadata_load_generic_params): Update to changes.
13148         (mono_get_shared_generic_method): Remove.
13149         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13150         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13151         (inflate_generic_context): Likewise.
13152         (mono_class_inflate_generic_method_full): Likewise.
13153         (setup_generic_array_ifaces): Likewise.
13154         (mono_class_create_from_typespec): Likewise.
13155         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13156         (method_encode_methodspec): Update callsite.
13157         (reflection_methodbuilder_to_mono_method): Update to changes.
13158         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13159         MonoGenericContext as the key to the hashtable.
13160         (inflate_mono_method): Update to changes.
13162         * class-internals.h (MonoGenericMethod::container): Remove.
13163         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13165 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13167         * profiler-private.h, profiler.c, profiler.h: added API to profile
13168         exception events.
13170 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13172         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13174 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13176         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13177         Fixed overflow and underflow not aborting the verification process.
13179 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13181         * class-internals.h (MonoStats): Added stats entries for dynamic
13182         code allocations.
13184 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13186         * loader.c (mono_free_method): Free header->locals and header->clauses.
13188         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13189         dynamic case.
13191         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13193         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13195 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13197         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13198         the tables.
13200 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13202         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13204 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13206         MonoGenericMethod on a diet
13207         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13208         here ...
13209         (_MonoGenericMethod::reflection_info): ... from here.
13210         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13211         Update to changes.
13212         * reflection.c (inflate_mono_method): Likewise.
13213         (mono_reflection_bind_generic_method_parameters): Likewise.
13215 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13217         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13218         *verify.c: factored long ldarg forms to share code with short forms
13220 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13222         *verify.c: fixed code formating factored some duplicate code
13223         into a new function
13225         *verify.h: fixed binary incompatibility introduced earlier
13227         *pedump.c: fixed formating
13229 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13231         Fix assertion when disassembling Mono.C5.dll
13232         * loader.c (method_from_methodspec): Avoid inflating a method
13233         twice with the same context.  If the methodref is inflated, use
13234         the declaring method instead.
13236         * class.c (mono_class_from_generic_parameter): Fix case similar to
13237         bug #81830 handled below, but for method containers.
13239 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13241         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13242         get_shared_generic_class.  Directly inflate the instance.
13243         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13244         (inflate_generic_class): Delete.
13245         (get_shared_generic_class): Delete.  Move setting of
13246         'cached_class' and 'cached_context' ...
13247         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13249         * metadata.c (mono_metadata_lookup_generic_class): Change
13250         signature to take the components of a MonoGenericClass rather than
13251         an allocated MonoGenericClass.  Change semantics to be intern-like.
13252         * reflection.c (mono_class_bind_generic_parameters): Update to
13253         changes.  Make locking region tighter.
13254         * class.c (inflate_generic_class): Update to changes.
13255         (get_shared_generic_class): Likewise.
13256         * metadata-internals.h: Likewise.
13258         * reflection.c (mono_class_bind_generic_parameters): Take and
13259         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13260         (mono_reflection_bind_generic_parameters): Use
13261         'mono_class_bind_generic_parameters' rather than duplicate the code.
13262         * class.c (mono_bounded_array_class_get): Update to changes.
13263         * object-internals.h: Likewise.
13265         * reflection.c (mono_class_bind_generic_parameters): Only support
13266         parameterizing generic type definitions.  Remove support for other
13267         open types.
13269 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13271         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13273         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13274         in the dynamic case.
13276 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13278         * threads.c: When cleaning up thread, reset the Background bit.
13279         Fixes bug #81720.
13281 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13283        * metadata.c: Move variable declarations to top of scope.
13284        * verify.c: Move variable declarations to top of scope.
13286        Code is contributed under MIT/X11 license.
13288 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13290         * reflection.c (mono_class_bind_generic_parameters): Replace
13291         open-coded loop with mono_metadata_inflate_generic_inst.
13293         * class.c (get_shared_generic_class): Don't call
13294         mono_get_shared_generic_inst.  Use the container's own
13295         'class_inst'.
13297         * metadata.c (mono_metadata_load_generic_params): Move
13298         initialization of 'context' field here from ...
13299         * class.c (mono_class_create_from_typedef): ... here, and ...
13300         * loader.c (mono_get_method_from_token): ... here.
13302         * class.c (get_shared_generic_class): Rename from
13303         mono_get_shared_generic_class and make static.
13304         (mono_get_shared_generic_inst): Move to metadata.c.
13305         * loader.c (mono_get_shared_generic_method): Likewise.
13306         * class-internals.h, metadata-internals.h: Update to changes.
13308         Fix #81830
13309         * class.c (mono_class_from_generic_parameter): Don't assume a
13310         generic container owner exists.  Generic containers from monodis
13311         don't have any.
13313 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13315         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13316         * verify.h: new typedefs to returns the non-verifiable status
13317         * verify.c: initial implementation of generics, stack merging and object compatibility check
13319 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13321         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13322         a MonoInternalHashTable again (fixed bug in internal hash table
13323         code).
13325 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13327         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13328         MonoInternalHashTable again (fixed bug in internal hash table
13329         code).
13331 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13333         * class.c, image.c, class-internals.h, domain.c,
13334         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13335         changes.  Have to figure out what makes them break the SWF
13336         regression.
13338 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13340         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13341         a MonoInternalHashTable now.
13343 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13345         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13346         MonoInternalHashTable now.
13348 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13350         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
13351         invoke_impl code.
13353         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
13355         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
13356         dependent trampoline.
13358         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13360         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
13362 2007-05-29  Robert Jordan  <robertj@gmx.net>
13364         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
13366 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
13368         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
13370 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
13372        * marshal.c: Fix interface lookup loops for
13373        cominterop_get_com_slot_for_method and 
13374        cominterop_get_method_interface. Only need to lookup
13375        if type is a class, else use interface type method is on.
13377        Code is contributed under MIT/X11 license.
13379 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
13381         * reflection.c: HasSecurity can be present even if no specially 
13382         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
13383         SecurityAttribute). Fix CAS regression tests on buildbot.
13385 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13387        * appdomain.c: Add configure checks for header files.
13388        * image.c: Add configure checks for header files.
13389        * file-io.c: Add configure checks for header files.
13390        * debug-mono-symfile.c: Add configure checks for header files.
13391        * threadpool.c: Add configure checks for header files.
13392        * console-io.c: Add configure checks for header files.
13393        * profiler.c: Add configure checks for header files.
13394        * rawbuffer.c: Add configure checks for header files.
13395        * icall.c: Add configure checks for header files.
13396        * rand.c: Add configure checks for header files.
13397        * socket-io.c: Add configure checks for header files.
13399        Code is contributed under MIT/X11 license.
13401 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
13403         * reflection.c (mono_custom_attrs_from_builders): Remove the 
13404         assertion as it breaks the build.
13405         
13406         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
13408         * reflection.c (lookup_custom_attr): Make a copy here too.
13410         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
13411         dynamic images.
13413         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
13414         images.
13416         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
13417         info.
13419 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13421         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
13422         (load_cattr_value): Ditto.
13424 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
13426         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
13428 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
13430         * threads.c: In "start_wrapper", set apartment_state to MTA if
13431         apartment_state is Unknown and we're running on 2.0 profile or
13432         higher.
13433         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
13434         to main method, then set apartment_state to Unknown on 1.0 profile,
13435         and MTA on 2.0 profile.
13437 2007-05-16  Jb Evain  <jb@nurv.fr>
13439         * class-internals.h (MonoDefaults): Add an attribute_class and
13440           customattribute_data_class.
13441         * domain.c (mono_init_internal): Populate them.
13442         * reflection.c: Use them to remove duplicates. Make a vew
13443         MonoClass variables `static'.
13445 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13447         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
13448         step in implementing IMT, so that all isinst checks now can go
13449         through the bitmap.
13450         This was needed because vtables for TransparentProxy need to look
13451         like the vtable of the "target" class, so they need to point to
13452         its interface bitmap directly.
13454         * object.c: inside "mono_class_create_runtime_vtable" and
13455         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
13457 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13459         * object-internals.h
13460           culture-info.h : added territory field in MonoCulture and
13461           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
13462         * locales.c : fill territory field above too.
13463         * culture-info-table.h : regenerated.
13465 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13467         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
13468         Fixes #81599.
13470 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
13472         * object.c: Always initialize apartment, even if 
13473         there is no custom attributes on entry point.
13474         
13475         Code is contributed under MIT/X11 license.
13477 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
13479         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
13480         * metadata.c: If no encoding is set, check for unicode
13481         on class.
13482         
13483         Code is contributed under MIT/X11 license.
13485 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13487         * threads.c: Handle if mono_thread_current returns NULL 
13488         
13489         Code is contributed under MIT/X11 license.
13491 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13493         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
13494         in start_wrapper. Added mono_thread_init_apartment_state and
13495         mono_thread_cleanup_apartment_state.
13496         * object.c: Initialize thread apartment state on main thread
13497         by checking for STAThreadAttribute on entry point.
13498         * object-internals.h: Add apartment_state field to MonoThread.
13499         * threads-types.h: Add unmanaged definition of 
13500         System.Threading.ApartmentState, MonoThreadApartmentState.
13501         
13502         Code is contributed under MIT/X11 license.
13503         
13504 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
13506         * class.c: Fix windows build.
13507         * class-internals.h: Fix windows build.
13508         
13509         Code is contributed under MIT/X11 license.
13511 2007-05-08  Robert Jordan  <robertj@gmx.net>
13513         * process.c (CreateProcess_internal):
13514         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
13515         .CreateNoWindow was specified. Fixes #81496.
13517 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13519         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
13520         step in implementing IMT, replaced it with two compact arrays
13521         (interfaces_packed and interface_offsets_packed) and a bitmap that
13522         is used for isinst checks (interface_bitmap).
13524         * class.c: (compare_interface_ids): compare function to pass to
13525         bsearch when looking for an interface with a given id.
13526         (mono_class_interface_offset): reimplemented using bsearch on
13527         interfaces_packed, getting the offset from interface_offsets_packed.
13528         (print_implemented_interfaces): utility debugging function.
13529         (setup_interface_offsets): reworked to initialize interfaces_packed,
13530         interface_offsets_packed and interface_bitmap.
13532         * object.c: replaced all accesses to "MonoClass.interface_offsets"
13533         with uses of interfaces_packed and interface_offsets_packed.
13535 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13537         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
13538         mono_class_interface_offset prototype to wrap all accesses to
13539         "MonoClass.interface_offsets".
13541         * class.c: Implemented mono_class_interface_offset, and wrapped all
13542         accesses to "MonoClass.interface_offsets".
13544         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
13545         "MonoClass.interface_offsets".
13547 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13549         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
13550         GetMethodFromHandle overloads (bug #78637).
13552 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13554         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
13555         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
13557 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
13559         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
13560         #81498.
13562         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
13563         gracefully.
13564         (mono_custom_attrs_from_index): Ditto.
13566         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
13567         Fixes #81501.
13569 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13571         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
13572         is now allocated from a mempool.
13574 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
13576         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
13577         caller holds threads_lock, leading to deadlocks. Fixes #81476.
13579 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13581         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
13582         mono_loader_clear_error () too late. Fixes #81463.
13584 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
13586         * culture-info-table.h : regenerated.
13588 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13590         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
13591         is missing.
13593 2007-04-25  Dick Porter  <dick@ximian.com>
13595         * Makefile.am: Put the mingw enforced-optimisation back into the
13596         PLATFORM_WIN32 section.
13598 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13600         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
13601         patch.
13603         * image.c (mono_image_load_module): New API function to load a module reference.
13605         * image.c (load_modules): Load modules lazily. Fixes #80812.
13607         * class.c (mono_class_from_typeref): Use mono_image_load_module.
13608         
13609         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
13611         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
13612         to mono_image_load_module_dynamic.
13614 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
13616         * marshal.c: Fix calling convention for CCW on non-windows
13617         platforms. STDCALL on windows, CDECL everywhere else to work 
13618         with XPCOM and MainWin COM.
13619         
13620         Code is contributed under MIT/X11 license.
13622 2007-04-23  Martin Baulig  <martin@ximian.com>
13624         Fix #80969.
13626         * loader.c
13627         (method_from_memberref): Added `gboolean *used_context' argument.
13628         (mono_get_method_from_token): Likewise.
13629         (mono_get_method_full): Don't insert the method in the cache when
13630         `used_context' is true.
13632 2007-04-23  Raja R Harinath  <rharinath@novell.com>
13634         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
13636         * reflection.c (mono_reflection_bind_generic_parameters): Don't
13637         create new MonoTypes for returned types.
13638         * class.c (mono_generic_class_get_class): Export mono-internal.
13639         * class-internals.h: Update to changes.
13641 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13643         * threadpool.c, threadpool.h, icall-def.h: patch from
13644         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
13646 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
13648         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
13649         
13650         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
13652         * threads.c (mono_thread_get_stack_bounds): New helper function.
13654         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
13655         Correctly compute stack bounds when attaching. Fixes #81394.
13657 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
13659         * reflection.c: fix handling of doubles in custom attributes
13660         for the arm-fpa format (bug #81368).
13662 2007-04-18  Raja R Harinath  <rharinath@novell.com>
13664         * reflection.c (assembly_add_win32_resources): Mildly relax an
13665         bounds check to let the end pointer point just past the end of the
13666         allocated buffer.  (may fix #81384)
13668 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
13670         * culture-info-table.h : regenerated.
13672 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
13674         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
13675         the thread is aborted early.
13677 2007-04-05  Dick Porter  <dick@ximian.com>
13679         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
13680         FindFirstFile()/FindNextFile() to find entries.  This lets the
13681         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
13682         81038.
13684         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
13685         the parameters of
13686         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
13688 2007-04-04  Martin Baulig  <martin@ximian.com>
13690         * debug-helpers.c
13691         (mono_method_desc_full_match): Add support for nested classes.
13693 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
13695         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
13697 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
13699         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
13700         waiting for too many threads.
13702 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
13704         * environment.c: Fix return value check on uname so we can get the 
13705         executing version on Solaris operating systems.
13707 2007-03-28  Jb Evain  <jbevain@gmail.com>
13709         * class.c (mono_type_get_name_recurse): Complete the
13710         fix for the creation of assembly qualified names for
13711         pointer types. Fixes #81208.
13713 2007-03-27  Dick Porter  <dick@ximian.com>
13715         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
13716         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
13717         changed.
13719         * threads.c
13720         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
13721         the value of ReleaseMutex().
13723 2007-03-27  Dick Porter  <dick@ximian.com>
13725         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
13726         in little-endian order, not network endian, so must be converted
13727         to host endian here.  Fixes bug 80593.
13729 2007-03-22  Jb Evain  <jbevain@gmail.com>
13731         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
13732         qualified names for pointer types. Fixes #81208.
13734 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
13736         * marshal.c: Add support for PreserveSigAttribute. 
13737         
13738         Code is contributed under MIT/X11 license.
13740 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
13742         * process.c: Fix endianness issues. Fixes #81126.
13744         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
13745         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
13747         * image.c (mono_image_lookup_resource): Make this work on big-endian
13748         machines.Change API contract so the caller needs to free the return value.
13749         
13750         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
13751         API change.
13752         
13753 2007-03-14  Martin Baulig  <martin@ximian.com>
13755         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
13756         mono_type_get_desc() as well.
13758 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13760         * icall.c:  Fix environ access in VS.  
13761         
13762 2007-03-13  Alp Toker  <alp@atoker.com>
13764         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13765         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13766         #63841.
13768 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
13770         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
13771         circular references among dynamic methods. Fixes #81091.
13773         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
13775 2007-03-09  Martin Baulig  <martin@ximian.com>
13777         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
13779 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
13781         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
13782         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
13783         
13784         Code is contributed under MIT/X11 license.
13785         
13786 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
13788         * loader.c: Reapply patch for bug #79424.
13790 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13792         * metadata.c (mono_type_to_unmanaged): Only convert object to
13793         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
13795 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
13797         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
13798         (and incorrectly set) is_reference field from MonoGenericInst.
13800 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13802         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
13803         a little earlier.
13805         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
13807         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
13809 2007-03-05  Miguel de Icaza  <miguel@novell.com>
13811         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
13812         FileOptions.1 value to mean "temporary", map that to
13813         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
13815         Fixes 80688
13817 2007-03-03  Marek Habersack  <mhabersack@novell.com>
13819         * appdomain.c: implement MS .Net style shadow copying. Copies of
13820         the assemblies are made in a subdirectory of the dynamic base
13821         directory, the assembly names are preserved.
13822         Copy .mdb and .config files along with the assemblies being shadowed.
13824 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13826         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
13827         (emit_marshal_handleref): Ditto.
13829         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
13830         on Visual C++. Fixes #80671.
13832 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13834         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
13835         for clone operations.
13837 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13839         * marshal.c: Fix warnings.
13841 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
13843         * loader.c: allow case-insensitive matching of the dll name
13844         in dllmap handling when prefixed with "i:".
13846 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
13848         * threads.c: Fix #ifdef for dummy_apc function for VS.
13850 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
13852         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
13854 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
13855         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
13856         giving precedence to the methods with a fully qualified name
13857         (InterfaceName.MethodName) when building the interface sections
13858         of the vtable.
13860 2007-02-16  Dick Porter  <dick@ximian.com>
13862         * threadpool.c (append_job): Fix fast-path array handling, so it's
13863         less likely the array will grow exponentially when the load is
13864         heavy.
13866 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13868         * metadata-internals.h, loader.c: fix dllmap lookup order
13869         for non-function maps, too, and prepare for fallback code.
13871 2007-02-12  Robert Jordan  <robertj@gmx.net>
13873         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
13874         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
13875         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
13876         GlobalFree. Fixes a part of bug #77075.
13878 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
13880         * loader.c: implemented typedef parent in field memberref.
13882 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
13884         * marshal.c: Fix warnings and remember to call Release on
13885         IUnknown of RCW.
13886         
13887         Code is contributed under MIT/X11 license.
13889 2007-02-10  Miguel de Icaza  <miguel@novell.com>
13891         * class-internals.h: Add MonoHandleRef definition, and
13892         handleref_class to mono_defaults. 
13894         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
13895         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
13897         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
13898         (do nothing on this stage)
13899         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
13900         (emit_marshal_handleref): New method, used for argument handling
13901         of HandleRefs. 
13903 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
13905         * class.c (mono_class_setup_parent): Lazily init com types.
13906         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
13907         init com types.
13908         * object.c (mono_remote_class_vtable): Lazily init com types.
13909         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
13910         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
13911         * domain-internals.h: Expose mono_init_com_types.
13912         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
13913         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
13914         Add support for COM Callable Wrapper marshalling.
13915         * marshal.h: Add icall definitions.
13916         * gc.c: Handle freeing of CCWs in finalizer code.
13917         
13918         Code is contributed under MIT/X11 license.
13920 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
13922         * reflection.c: changed all the signature encoding code to use
13923         a variable-sized buffer.
13925 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13927         * marshal.c: locking fixes: never take the loader lock
13928         or other runtime locks when holding the marshal lock
13929         (fixes bug#80664).
13931 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
13933         * marshal.c: make the delegate function pointer mapping
13934         work for the moving GC.
13936 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
13938         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
13939         for bug #80618.
13941 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13943         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
13944         gmodule.
13946 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
13948         * threadpool.c: made the code moving-GC safe.
13950 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13952         * assembly.c, boehm-gc.c, class-internals.h, class.c,
13953         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
13954         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
13955         warning cleanup.
13956         * reflection.c: warning cleanup, some threading and moving GC fixes.
13958 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
13960         * class.c, loader.c: create the needed Set/Get/Address array methods
13961         as well as the .ctors in mono_class_init (), fixes bug #80567.
13963 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
13965         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
13966         we doesn't decrease its alignment. Should fix the sparc build.
13968 2007-01-24  Dick Porter  <dick@ximian.com>
13970         * socket-io.c
13971         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
13972         Create the returned object if we need to ignore an unsupported
13973         socket option.  Fixes a segfault reported by Atsushi.
13975 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13977         * class.c, object.c: restrict GC-tracked fields to
13978         UIntPtr fields used inside corlib, so we provide better
13979         type info to the GC and also allow broken packing as in
13980         bug #80580.
13982 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
13984         * sgen-gc.c: removed duplicated function.
13986 2007-01-19  Miguel de Icaza  <miguel@novell.com>
13988         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
13989         value that means that the value is not supported, but that we
13990         should not return a failure, but instead report this as a
13991         successful operation.
13993 2007-01-19  Raja R Harinath  <rharinath@novell.com>
13995         Fix tests/bug79956.2.il
13996         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
13997         (mono_generic_class_get_class): If the generic definition in an
13998         enum, copy over other fields related to it.
14000 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14002         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14003         genericinst enums (bug #79215).
14005 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14006         * class.c: Fix bug 80307.
14008 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14010         * image.c: if the file table is not present, try to load
14011         all the modules, since we don't have info about them
14012         having or not metadata (bug #80517).
14013         * assembly.c: allow mono_assembly_load_references () to
14014         work for netmodules.
14016 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14018         * image.c, metadata-internals.h, object.c: execute module
14019         cctors when running on the 2 runtime if present (bug #80487).
14021 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14023         * icall.c: optimized InitializeArray() on bigendian.
14025 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14027         * icall.c: fix for the broken ARM FPA double format.
14029 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14031         * icall.c: handle endian issues for r4 and r8 types, too, in
14032         the InitializeArray() icall.
14034 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14036         * loader.c (mono_loader_error_prepare_exception): Clear the error
14037         once we have extracted the information from it, do this before we
14038         call into the JIT's class loading mechanisms.
14040         * object.c (mono_class_create_runtime_vtable): Do not clear the
14041         loader error before calling mono_class_get_exception_for_failure
14042         as the loader error is needed inside
14043         mono_class_get_exception_for_failure to throw the error (thinko).
14045         Fixes #80521
14046         
14047 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14049         * reflection.c: align fields rva data so it's faster to load at
14050         runtime.
14052 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14054         Prepare to simplify GenericMethod handling.
14055         * class-internals.h (mono_method_get_context): New accessor function.
14056         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14057         rather than directly accessing '->context' field.
14059         * class-internals.h (_MonoGenericParam.method): Move ...
14060         (_MonoGenericContainer): ... here.  Add into union with klass field.
14061         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14062         Update to changes.
14064 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14066         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14067         the wrapper type enum and reduce relocations.
14069 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14071         * reflection.c (inflate_mono_method): Reuse method instantiation
14072         from the generic method, if available.
14074 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14076         * marshal.c (emit_marshal_variant): Fix conv_arg
14077         type in last commit, based on whether parameter is byref.
14078         
14079 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14081         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14082         marshalling.
14083         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14084         MONO_TYPE_OBJECT back for VARIANT support.
14086 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14088         * marshal.c, marshal.h, icall-def.h: Implement 
14089         Marshal.ReAllocCoTaskMem.
14091 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14093         * marshal.c: memory retention fixes: use the proper
14094         image cache for runtime_invoke method lookups.
14096 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14098         * mempool.c: added code to help debug mempool allocations.
14100 2007-01-11  Dick Porter  <dick@ximian.com>
14102         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14103         support (experimenting with faking it with IP_MTU_DISCOVER for
14104         systems that don't have IP_DONTFRAGMENT.)
14105         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14106         icall.
14108         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14110         * socket-io.h: Add new fields to MonoSocketAsyncResult
14111         corresponding to the new ones in Socket.cs.
14113 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14115         Fix IronPython regression mentioned in #80249
14116         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14117         'cached_context' field, since it may have been initialized as a
14118         side-effect of metadata parsing.
14120         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14121         (_MonoGenericClass.cached_class): Move here and rename from lone
14122         remaining field of ...
14123         (_MonoInflatedGenericClass): ... this.  Remove.
14124         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14125         to changes.
14127         Fix mcs/tests/test-128.cs regression.
14128         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14129         2007-01-10 change below.
14130         [MONO_TYPE_OBJECT]: Recurse into array case.
14132 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14134         * class-internals.h (mono_get_inflated_generic_class): Remove.
14135         * class.c (mono_get_inflated_generic_class): Remove.
14136         (mono_generic_class_get_class): Rename from
14137         mono_class_create_generic.
14138         (mono_class_from_mono_type) [GENERICINST]: Use it.
14139         * reflection.c, metadata.c: Update to changes.  Use
14140         'mono_class_from_mono_type'.
14142 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14144         * reflection.c: use passed type when encoding an array element
14145         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14147 2007-01-09  Robert Jordan  <robertj@gmx.net>
14149         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14150         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14151         Fixes bug #80392.
14153 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14155         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14157         * object.c (set_value): Avoid aliasing between type->data.klass
14158         and type->data.generic_class.
14160         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14162 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14164         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14165         between type->data.klass and type->data.generic_class.
14167 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14169         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14170         value in out parameters.
14172 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14174         Simplify invariant for MonoGenericClass::klass field.
14175         * class.c (mono_class_create_generic): Verify 'klass' is null.
14176         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14177         initialize 'klass' field.
14179 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14181         Ongoing work to avoid redundant data and simplify invariants.
14182         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14183         'generic_class', and change type to a GenericInst.
14184         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14185         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14187 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14189         * class.c : skip io-layer under PLATFORM_WIN32.
14191 2007-01-03  Tor Lillqvist  <tml@novell.com>
14193         Fix #80305: In a bundled executable, look in the bundled exe
14194         assembly to determine the runtime version. Add the possibility to
14195         bundle also the machine.config file.
14196         
14197         * assembly.c (mono_assembly_open_from_bundle): Make
14198         non-static. Allow being called even if we have no bundled
14199         assemblies, and return NULL right away in that case.
14201         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14202         here.
14204         * domain.c (app_config_parse): Take an assembly exe file name as
14205         parameter instead of a config file name. Check for a bundled
14206         config file for that assembly by calling
14207         mono_config_string_for_assembly_file() (see below) before looking
14208         for one in the file system.
14209         (get_runtimes_from_exe): Corrsponding change to call of
14210         app_config_parse().
14211         (get_runtimes_from_exe): Check for bundled assembly exe file first
14212         by calling mono_assembly_open_from_bundle(). If no bundled
14213         assembly exe file is found, call mono_image_open() as before to
14214         look it up in the file system.
14216         * mono-config.c: Add variable bundled_machinec_onfig.
14217         (mono_config_string_for_assembly_file): New function.
14218         (mono_config_for_assembly): Move code snippet that looks for a
14219         bundled assembly .config file into the above new function. Call
14220         it.
14221         (mono_register_machine_config, mono_get_machine_config): New
14222         functions to set and retrieve
14224         * assembly.h: Declare mono_register_machine_config().
14226         * mono-config.h: Declare mono_get_machine_config() and
14227         mono_config_string_for_assembly_file().
14229         * icall.c: No declaration of environ necessary on Win32. It is
14230         declared (as a macro expanding to a function call) in stdlib.h.
14231         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14232         New internal mono function. Returns the value of
14233         mono_get_machine_config() as a Mono string.
14235         * icall-def.h: Add get_bundled_machine_config().
14237 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14239         Remove redundant field
14240         * class-internals.h (_MonoGenericContext.container): Remove field.
14241         * loader.c (mono_method_get_signature_full): Don't parse a
14242         "container" for a signature parse when the signature is inflated
14243         immediately.
14244         (method_from_methodspec): Likewise, for a generic_inst.
14245         * class.c, metadata.c, reflection.c: Update to changes.
14247 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14249         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14250         'cached_context', and change semantics -- it starts off NULL, and
14251         is initialized on demand.
14252         * class.c (mono_generic_class_get_context): New accessor to
14253         replace 'context' field accesses.
14254         (mono_class_get_context): New helper.
14255         (*): Update to changes.
14256         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14258 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14260         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14261         before the memcpy.   Fixes Marshal2 regression.
14263 2007-01-02  Jb Evain  <jbevain@gmail.com>
14265         * blob.h: add a MONO_TYPE_ENUM definition
14266         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14267         fix the encoding of arrays of enums in custom attributes.
14269         Fixes #79666.
14271 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14273         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14274         string is null terminated, but only cut the string short if it
14275         overflows the buffer.   
14276         
14277         (mono_string_to_byvalstr): Also fix this routine.   The code here
14278         was not properly terminating a string (it was only terminated
14279         because of the previous catch-all memset). 
14281         I left the memset, because I do not know if applications expect
14282         the runtime to clear this region. 
14284         Fixes #79944.
14286         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14287         Clear the error before returning to unmanaged code to prevent the
14288         runtime from being confused later on (fixes  80420).
14289         (ves_icall_type_from_name): Always call mono_loader_clear_error
14290         after parsing a type that could have failed.
14291         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14293         * loader.c (mono_loader_clear_error): Fix indentation.
14295 2006-12-28  Martin Baulig  <martin@ximian.com>
14297         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14299 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14301         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14302         getting a token for an EnumBuilder.
14304 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14306         * reflection.c: be more careful in case resource generation
14307         fails to create the data array.
14309 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14311         * sgen-gc.c: write barrier for clone and fix unregister handles.
14313 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14315         * reflection.c: some fixes needed in the generics code for the moving GC.
14317 2006-12-22  Robert Jordan  <robertj@gmx.net>
14319         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14320         account. Fixes bug #80299.
14322 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14324         Fix WaitHandle usage in delegates.
14325         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14326         * object.c (mono_wait_handle_new): Use the property set method to
14327         initialize the handle.
14328         (mono_wait_handle_get_handle): New.
14329         * threadpool.c (mono_async_invoke): Use it.
14330         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14331         Likewise.
14332         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14334 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14336         * marshal.c (emit_marshal): Call emit_marshal_variant and
14337         emit_marshal_com_interface when applicable.
14338         (emit_marshal_variant, emit_marshal_com_interface): Add
14339         methods for this case and remove if's from emit_marshal_object.
14340         
14341 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14343         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14345 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
14347         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
14348         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
14349         and GlobalFree on Windows. Remove FIXME.
14351 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14353         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
14354         implementation for managed objects.
14356 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14358         * object.c: implemented code to be used for checking
14359         that no reference field overlaps with non-references.
14361 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14363         * threadpool.c: fix queue code to be compatible with the
14364         moving GC.
14366 2006-12-18  Miguel de Icaza  <miguel@novell.com>
14368         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
14369         in structures by throwing ArgumentNullException.
14371         (emit_marshal_safehandle): Also when they are null parameters.
14373         (emit_marshal_safehandle): Add support for ref
14374         SafeHandles parameters
14376 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14378         * profiler.c: updated to use the mono-dl API instead of
14379         gmodule.
14381 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14383         * profiler.c: updated to use the mono-dl dynamic loading
14384         API instead of gmodule.
14386 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
14388         * profiler.c: use readlink, older versions of glib don't have
14389         g_file_read_link ().
14391 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14393         * profiler.c: try to detect the path to mono if libc fails to provide
14394         a useful name (bug #80286).
14396 2006-12-16  Raja R Harinath  <rharinath@novell.com>
14398         Fix #80242
14399         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
14400         instance, use the generic type definition instead.
14401         (ves_icall_Type_GetNestedTypes): Likewise.
14402         * class.c (mono_class_create_generic): Always set the
14403         nested_classes of a generic instance to NULL, even if the generic
14404         type definition has nested types.
14406 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
14408         * marshal.c (mono_string_from_bstr): Revert previous Windows change
14409         and fix on Linux.
14410         
14411 2006-12-15  Miguel de Icaza  <miguel@novell.com>
14413         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
14414         my arguments were in the wrong order.   I also fixed the Windows
14415         version which seems to have had the same issue.
14417         (mono_free_bstr): On Unix, this is g_free.
14418         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
14419         conversions (for the tests in corlib to pass).
14421 2006-12-14  Miguel de Icaza  <miguel@novell.com>
14423         * marshal.c (emit_ptr_to_object_conv): For now, ignore
14424         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
14425         exception if a ref SafeHandle in a struct has changed).
14426         
14427         (emit_struct_conv): Do not perform layout checks for classes
14428         derived from SafeHandle, as those are specially handled. 
14430         (emit_object_to_ptr_conv): Add support for
14431         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
14433         (emit_marshal_safehandle): Implement conversion of return values
14434         of safehandles (MARSHAL_ACTION_CONV_RESULT).
14435         
14436         * threads.c: WaitHandle now is compiled with two different handles
14437         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
14438         for 2.0.
14439         
14440         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
14441         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
14442         these routines to cope with both kinds of fields.
14444 2006-12-12  Miguel de Icaza  <miguel@novell.com>
14446         * metadata.c (mono_type_to_unmanaged): Handle the case where
14447         type->data.klass is a SafeHandle, and in that case, return the
14448         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
14449         MONO_MARSHAL_CONV_SAFEHANDLE. 
14451 2006-12-11  Miguel de Icaza  <miguel@novell.com>
14453         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
14454         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
14455         calling emit_marshal_object.
14457         (emit_marshal_safehandle): Implement marshalling of
14458         SafeHandle parameters (no ref support yet).
14460         (MarshalAction): Document the defines as I implement
14461         them for SafeHandle.
14463         (emit_marshal_object): indentation police.
14465         * class-internals.h: Define MonoSafeHandle.
14466         Add safehandle_class to MonoDefaults type.
14468         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
14469         list of classes to check for fields. 
14471         * domain.c (mono_init_internal): Add SafeHandle to the list of
14472         mono_defaults loaded.
14474 2006-12-15  Raja R Harinath  <rharinath@novell.com>
14476         Fix #80253
14477         * reflection.c (mono_reflection_bind_generic_parameters): If the
14478         generic type definition is a type builder, ensure that it is fully
14479         initialized before instantiating it.  Kill some dead code.
14481 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
14483         * object.c: clear the loader_error () before loading
14484         more metadata stuff (bug #80258).
14486 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
14488         * icall.c, icall-defs.h: type modifiers icalls for
14489         parameters and properties.
14491 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
14493         * object.c, icall.c: fixed warnings.
14495 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14497         * marshal.c: fixed a couple of leaks and coding style in a few places.
14499 2006-12-08  Dick Porter  <dick@ximian.com>
14501         * process.c: Cope with NULL ProcessStartInfo arguments on windows
14502         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
14503         80173.
14505 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
14507         * process.c: ProcessStartInfo may have only filename set and
14508         arguments can be NULL.
14510 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14512         * icall.c: fix leak found by Robert Jordan.
14514 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14516         * marshal.c, marshal.h: generate managed method to access an element
14517         of a multi-dimensional array.
14519 2006-11-30  Paolo Molaro (lupus@ximian.com)
14521         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
14523 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14525         * icall.c: back out GetFields () fix until the serialization code is
14526         fixed to not depend on the incorrect behaviour.
14528 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
14530         * profiler.c: provide defaults if none are set.
14532 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14534         * Makefile.am, attrdefs.h: new public header file with
14535         constants for attributes for use by embedders.
14537 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
14539         * icall.c: GetFields () fix for bug #80064.
14541 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
14543         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
14544         removed long unused icalls.
14546 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
14547   
14548         * marshal.c: 
14549                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
14550                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
14551                 can be generated without a delegate class.
14552                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
14553         
14554         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14556 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14558         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
14559         #80069.
14561 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14563         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
14564         icall-def.h: added icalls needed by System.GC.
14566 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
14568         * loader.c: ensure the class in catch clauses is handled
14569         correctly for generics methods (fixes bug#79980).
14571 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14573         * monitor.h, monitor.c: added mono_locks_dump () function
14574         to help debug deadlocks involving managed locks.
14576 2006-11-13  Dick Porter  <dick@ximian.com>
14578         * file-io.c (get_file_attributes): If the file is a symlink try
14579         and get the stat data for the target, but also add the
14580         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
14581         the specs for the windows symlink support, but will probably have
14582         to be reworked when I have test data from a vista machine.  Fixes
14583         bug 79887.
14585 2006-11-13  Dick Porter  <dick@ximian.com>
14587         * gc.c (mono_domain_finalize): 
14588         * marshal.c (mono_delegate_begin_invoke): 
14589         * threadpool.c (socket_io_init, mono_thread_pool_init)
14590         (mono_thread_pool_finish): 
14591         * monitor.c (mono_monitor_try_enter_internal): 
14592         * threads.c (mono_thread_resume, mono_thread_init)
14593         (mono_thread_suspend_all_other_threads)
14594         (mono_thread_execute_interruption): 
14595         * appdomain.c (mono_domain_unload): Check for NULL error returns
14596         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
14597         75733.
14599 2006-11-11  Miguel de Icaza  <miguel@novell.com>
14601         * process.c
14602         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
14603         Only close the handle if the value of the handle is not
14604         INVALID_HANDLE_VALUE.  This just makes the process a bit more
14605         robust.
14607         Improvement for #75733, so that we do not run into this problem. 
14609         
14610         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
14611         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
14612         internal variables.  Fixes #79462 
14613         
14615 2006-11-09  Dick Porter  <dick@ximian.com>
14617         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14618         Use poll() not select().  Fixes bug 79397.
14620 2006-11-09  Raja R Harinath  <rharinath@novell.com>
14622         Fix #79872
14623         * assembly.c (mono_assembly_load_from_full): Check that the given
14624         image has an assembly manifest.
14626 2006-11-09  Ankit Jain  <jankit@novell.com>
14628         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
14629         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
14630         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
14632 2006-11-07  Dick Porter  <dick@ximian.com>
14634         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14635         Put the old resolver behaviour back for pre-2.0 profiles.
14637 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14639         * threadpool.c: precise GC and locking fixes.
14641 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
14643         * class.c: don't load types that have an explicit unaligned
14644         managed reference. Provide better info in the TypeLoad exception.
14645         Part of the fix for bug #79744.
14646         * object.c: use the correct check for class type load issues.
14648 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14650         * class.c: enforce alignment of fields with managed references
14651         even when Pack=1 is forced by the user (bug #77788).
14653 2006-11-03  Dick Porter  <dick@ximian.com>
14655         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14656         If the address reverse lookup fails, return it as the hostname
14657         anyway.  Fixes bug 79721.
14659 2006-11-03  Dick Porter  <dick@ximian.com>
14661         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
14662         Fix build on Windows.
14664 2006-11-02  Dick Porter  <dick@ximian.com>
14666         * icall-def.h: 
14667         * object-internals.h: 
14668         * exception.c (mono_get_exception_thread_interrupted): 
14669         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
14670         Fixes bug 74525.
14672         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
14673         Check for pending Thread.Interrupt.
14675 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
14676         * loader.c: Fixed bug 79684.
14678 2006-10-27  Dick Porter  <dick@ximian.com>
14680         * file-io.c (get_file_attributes): Force symlinks to directories
14681         to be returned as a regular file.  Fixes bug 79733.
14682 2006-10-26  Dick Porter  <dick@ximian.com>
14684         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
14685         CreateFile to open a directory then we need to set the
14686         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
14688 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14690         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
14691         friends.
14693 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14695         * sgengc.c: small cleanup of timer code.
14697 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14699         * sgen-gc.c: fix some warnings and start adding support for
14700         complete object removal on domain unload.
14702 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
14704         * assembly.c: build_assembly_name should not consider a version
14705         number without build or revision number invalid. Fixes bug #79715.
14707 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
14709         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
14710         call kernel32 function OutputDebugString directly.
14711         
14712         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14713         
14714 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
14716         * reflection.c: small cleanup, using a function to insert a MonoString
14717         in the string heap.
14719 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
14721         * reflection.c: moving GC fixes.
14723 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14725         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
14726         all the objects with finalizers belonging to an unloading appdomain.
14728 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14730         * sgen-gc.c: added ability to allocate even when the nursery is fully
14731         pinned and fixed a couple of bugs.
14733 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14735         * threads.h: Revert the last change for now.
14737         * threads.h (mono_thread_get_pending_exception): Rename this to
14738         mono_thread_get_undeniable_exception ().
14740 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
14742         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
14743         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
14744         when fname does not refer to valid assembly. This result in a more
14745         meaningful error message.
14746         * exception.c: added mono_get_exception_bad_image_format2 which 
14747         constructs a BadImageFormatException using the ctor taking a custom
14748         message and the file name. Passing in a NULL msg results in a default
14749         message.
14750         * exception.h: define mono_get_exception_bad_image_format2 function.
14751         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
14752         when file name pointed to an invalid IL image. Use 
14753         mono_get_exception_file_not_found2 to construct FileNotFoundException,
14754         as this results in a more meaningful error message.
14756 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14758         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
14759         #79465.
14761 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14763         * metadata.c (mono_type_size): Change the align parameter to guint32 for
14764         consistency with the other _size functions.
14765         (mono_type_stack_size): Ditto.
14767         * class.c object.c icall.c: Fix warnings caused by the above change.
14769         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
14771         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
14773         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
14775 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
14777         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
14778         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
14779         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
14780         threadpool.h, threads-types.h: mark more internal functions.
14782 2006-10-11  Dick Porter  <dick@ximian.com>
14784         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14785         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
14786         reproduce the bug even before applying the fix.)
14788 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
14790         * reflection.c: allow retrieving attributes for arguments in generic
14791         methods (bug #79241).
14793 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
14795         * debug-mono-symfile.c: properly check fopen () result (found by
14796         coverity).
14798 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
14800         * reflection.c: make error message clearer and fixed two
14801         issuelets found by Coverity.
14803 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
14805         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
14807 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
14809         * object-internals.h, gc-internal.h, profiler-private.h:
14810         mark internal functions.
14812 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14814         * reflection.c: put data in the text section.
14815         * icall.c: recognize more types in type_from_typename ().
14816         * process.c, marshal.c: added some GC FIXMEs.
14818 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14820         * loader.c: check for NULL before initializing.
14822 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
14824         * gc.c (finalizer_thread): Use a non-alertable wait here.
14826         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
14827         until the correct solution is found.
14829 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14831         * reflection.c (mono_module_get_object): Avoid an assert when operating on
14832         modules with no metadata. Fixes #79596.
14834         * image.c (load_metadata_ptrs): Put back the error message when
14835         the #- heap is encountered since the support is not complete yet.
14837 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14839         * gc.c: do not allow the user to SuppressFinalize () a
14840         delegate because it would leak the trampoline if present.
14842 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14844         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
14845         PropertyPtr table.
14847 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14849         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
14851         * metadata.c (mono_metadata_get_param_attrs): Ditto.
14853         * row-indexes.h: Add definitions for *Ptr tables.
14855         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
14857         * metadata.c (mono_metadata_translate_token_index): New helper function to
14858         translate table indexes used in uncompressed metadata.
14859         (mono_metadata_decode_table_row): Ditto.
14860         (mono_metadata_decode_table_row_col): Ditto.
14862         * metadata.c: Add table schema for *Ptr tables.
14864         * class.c loader.c: Use the new helper function to access the affected metadata
14865         tables.
14866         
14867         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
14868         #38532.
14869         
14870 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
14872         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
14873         sequences which can be unbounded in size. Fixes #79583.
14875 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14877         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
14878         static initialization.
14880         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
14882         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
14884         * domain.c (mono_domain_free): Free up type_init_exception_hash.
14886         * object.c (mono_runtime_class_init): Implement correct semantics when a static
14887         ctor fails, i.e. throw the same exception on subsequent accesses.
14888         
14889 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
14891         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
14892         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
14893         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
14894         Handle marshalling of interfaces and VARIANTs contained in structs.
14895         
14896         Code is contributed under MIT/X11 license.
14897         
14898 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14900         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
14901         
14902         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
14903         mempool.
14905 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14907         * console-io.c: ignore previous SIGINT handler.
14909 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14911         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
14912         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
14913         #79460, #79461, #79485.
14915         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
14917         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
14918         #79217.
14920 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14922         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
14923         could be generated from it.
14925 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
14927         * rand.c: fix read loop to correctly handle EINTR.
14929 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14931         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
14932         internal calls are defined to keep methods closer to the declaring
14933         type and allow a significant reduction in runtime relocations and
14934         memory usage.
14936 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
14938         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
14939         exception message to have FileNotFoundException use the default
14940         assembly load error message. Fixes bug #79426.
14941         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
14943 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14945         * threadpool.c: (start_thread_or_queue) use the root domain when
14946         creating the thread instead of the async object one.
14948 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
14950         * class.c, object.c, class-internals.h, reflection.c:
14951         for arrays, store element_size inside MonoClass (speedup
14952         for array object creation).
14954 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
14956         * icall.c: fixed CodeBase to use the file name and not the module
14957         name (bug #79365).
14959 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
14961         * mono-debug.c, mono-debug.h: export find_method as
14962         mono_debug_find_method ().
14964 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14966         * debug-helpers.c, class-internals.h: added a few functions useful
14967         when debugging under gdb.
14969 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14971         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
14972         characters that need special handling.
14974 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
14976         * mono-config.c: make the os/cpu specification more flexible,
14977         allowing lists and negation.
14979 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
14981         * marshal.c: COM Interop fixes. Handle case where method->klass.
14982         is interface. Handle BSTR/MonoString when null. Use CDECL as 
14983         calling convention on non-windows platforms. This is for
14984         compatibility with XPCOM and MainWin COM.
14985         
14986         Code is contributed under MIT/X11 license.
14987         
14989 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
14991         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
14992         correctly. Fixes #79217.
14994         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
14996 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
14998         * mono-config.c: allow both an os and cpu attribute for dllmap
14999         and dllentry elemnets to enable a single config file to be used
15000         for multiple architectures.
15002 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15004         * loader.c: MonoLoaderError was cleared too soon on load failure.
15005         Fixes bug #79424.
15007 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15009         * icall.c: use the defining class vtable when accessing a
15010         static field, not a pobblibly derived class.
15012 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15014         * icall.c string-icalls.c: Remove references to unicode.h.
15016         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15018         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15020         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15021         indicating the image where custom marshaller types should be looked up.
15022         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15023         custom marshallers, instead of corlib. Fixes #79425.
15025 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15027         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15029 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15031         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15032         Implement Environment.ProcessorCount.
15033         
15034         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15035         Implement Environment.ProcessorCount.
15036         
15037         * icall.c: 
15038         Add Environment.ProcessorCount icall.
15039         
15040         Patch by Jason McFall.
15042 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15044         * assembly.c: don't append .exe/.dll when the filename already contains
15045         one of those extensions.
15047 2006-09-12  Martin Baulig  <martin@ximian.com>
15049         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15050         to array interfaces.
15052 2006-09-11  Martin Baulig  <martin@ximian.com>
15054         * reflection.c (mono_image_build_metadata): Create the
15055         MethodImpl's after emitting all types and methods, so we don't
15056         need another fixup pass for them.
15058 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15060         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15061         change.
15063 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15065         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15066         unload.
15068 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15070         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15071         args is not set. Fixes #78926.
15073 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15075         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15077         * image.c (load_class_names): Move this to class.c, and rename it to 
15078         'mono_image_init_name_cache'.
15079         (load_modules): Fix a warning.
15081         * class.c icall.c image.c: Initialize image->name_cache lazily.
15083         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15084         on its name using information in the AOT file.
15086         * class.c (mono_class_from_name): Use the new hook function.
15088 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15090         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15091         correctly.
15093         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15094         Fixes #79289.
15095         
15096 2006-09-06  Martin Baulig  <martin@ximian.com>
15098         * icall.c (mono_lookup_internal_call): Small fix.
15100 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15102         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15103         double g_free.
15105 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15107         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15108         when --debug is specified.
15110 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15112         * class.c (setup_generic_array_ifaces): Fix a warning.
15114 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15116         * Temporarily remove the patch to assemly.c that checks the
15117         assembly versions as it breaks our gacutil.
15119 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15121         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15123         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15124         a net 1.0 runtime.
15126         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15127         created using the default ctor. Fixes #79152.
15128         (mono_string_builder_to_utf16): Ditto.
15130 2006-09-01  Martin Baulig  <martin@ximian.com>
15132         Fix handling of the generic array interfaces.
15134         * class-internals.h
15135         (MonoDefaults): Removed `generic_array_class' and added
15136         `generic_ilist' class.
15138         * class.c
15139         (mono_bounded_array_class_get): Add the new generic array interfaces.
15140         (setup_generic_array_ifaces): New static method; create vtable
15141         entries for each method in the generic array interfaces.
15143         * metadata.c
15144         (select_container): Allow "parent-less" generic methods.
15146         * marshal.c
15147         (mono_marshal_get_generic_array_helper): New public method.
15149         * icall.c
15150         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15151         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15152         moved the interncall into System.Array.
15154 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15156         A few more cases of avoiding work on types with ->byref set.
15157         Has the real fix for #79238
15158         * icall.c (is_generic_parameter): New helper.
15159         (ves_icall_Type_GetGenericParameterPosition): Use it.
15160         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15161         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15162         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15163         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15164         reference types.
15165         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15166         reference types.
15167         (ves_icall_Type_get_IsGenericInstance): Likewise.
15168         (ves_icall_Type_get_IsGenericType): Likewise.
15170 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15172         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15173         class if possible.
15175         * mempool.h (mono_mempool_get_allocated): New helper function.
15177         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15178         change.
15180         * mempool.c: Fix warnings and the calculation of stats.
15182         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15184         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15186         * loader.c (mono_get_method_from_token): Update method_count stat.
15188         * class-internals.h (MonoStats): Add some stats.
15190 2006-08-31 Robert Jordan  <robertj@gmx.net>
15192         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15193         with managed variants.
15194         All code is contributed under the MIT/X11 license.
15195         
15196 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15198         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15199         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15201         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15203         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15204         with cycles in classes.
15206         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15208         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15209         missing a [MarshalAs] directive. Fixes #79203.
15211         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15212         klass->marshal_info. Fixes #79217.
15214 2006-08-30  Martin Baulig  <martin@ximian.com>
15216         Committing a patch from Joachim Ante <joe@otee.dk>:
15217         Add support for binary data symbol stores.
15219         * debug-mono-symfile.c
15220         (mono_debug_open_mono_symbol_file): Renamed into
15221         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15222         arguments.
15224         * mono-debug.c
15225         (mono_debug_open_image): Added `raw_contents' and `size' args.
15226         (mono_debug_init_2_memory): New public function.
15228 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15230         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15232 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15234         * appdomain.c: implement support for ShadowCopyFiles.
15236 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15238         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15239         when value is NULL (and should remove CID #51).
15241 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15243         * image.c: moved 2 functions to ../utils.
15245 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15247         * gc.c: cope with the target object of a GC handle being NULL
15248         (bug #78877).
15250 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15252         * class.c: recursively check parent's explicit implementations
15253         of interface methods (fixes bug #79125).
15255 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15257         * filewatcher.c: Avoid warnings when building, do not redefine
15258         constants that are defined.
15260         Remove warnings.
15262 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15264         * image.c: don't fail when the link points to an absolute path.
15266 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15268         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15269         Fix CID #3.
15271 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15273         * image.c (full_path): A new method used to obtain the actual path
15274         of an assembly even in the presence of symbolic links.  
15276         This is necessary for the case where we are running a binary that
15277         has been GACed, but we are using the "published" path name
15278         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15279         file in the GAC.
15281         This was the source of the failure for the `xsp' command with the
15282         recent AppDomain changes, as far as the runtime was concerned,
15283         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15284         $prefix/mono/gac/blah/version/blah.exe.
15286         (do_mono_image_open): use full path
15288 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15290         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15292 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15294         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15295         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15297 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15299         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15300         small structures. Fixes #78990.
15302 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15304         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15306         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15308 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15310         * appdomain.c:
15311         * marshal.c: don't load all the assemblies from a domain into newly
15312         created ones. The new domains might have different rules and load
15313         assemblies from different locations. Fixes bug #76757.
15315         Patch by Lluis. Conflicts resolved by Brian Crowell.
15317 2006-08-16  Alp Toker  <alp@atoker.com>
15319         * socket-io.c: First half of the fix for #79084.
15320         Set sa_size to the length of the content, not that of the struct.
15321         Don't add NULL suffix to the content, this should be done in
15322         managed code if needed.
15324 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15326         Fix part of #79012
15327         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15328         mono_metadata_parse_type returns NULL.
15330 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15332         * normalization-tables.h : new file for string normalization data.
15333         * locales.c, locales.h, icall.c :
15334           added load_normalization_resource() for string normalization,
15335           and icall as well.
15336         * Makefile.am : added normalization-tables.h to the sources.
15338 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15340         * marshal.c: Add more helper functions to reduce code duplication and use them
15341         everywhere.
15343 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15345         * marshal.c: Fix non-x86 stdcall warnings.
15346         
15347         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
15348         them everywhere.
15350 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
15352         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
15353         type check on multi-dimensional arrays. Fixes #79000.
15355 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
15357         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
15358         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
15359         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
15360         * class-internals.h: add is_com_object to class structure.
15361         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
15362         null checks to COM object marshalling. Fix .ctor call on RCW.
15363         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
15364         
15365         All code is contributed under the MIT/X11 license.
15367 2006-08-09  Dick Porter  <dick@ximian.com>
15369         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
15370         racing mono_monitor_allocator_lock() somewhere, so don't delete
15371         the critical section for now.  Found by running and exiting
15372         monodevelop.
15374 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
15376         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
15377         (ves_icall_System_ComObject_FindInterface): Ditto.
15378         (ves_icall_System_ComObject_CacheInterface): Ditto.
15380         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
15381         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
15383 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15385         * threadpool.c: treat pipes from process asynchronous reads as sockets
15386         when reading from them, so we get select/poll or epoll to wait for
15387         data.
15389 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
15391         * loader.c: Fix a typo (CID #233) in the null check.
15393 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
15395         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
15396         Hopefully fixes #78949.
15397         
15398         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
15399         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
15400         bytes. Fixes #78972.
15402 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15404         * filewatcher.c: we need to set errno here.
15406 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15408         * filewatcher.c: let Win32Exception get the error value.
15410 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15412         * filewatcher.c: translate errno into win32 errors for Win32Exception
15413         to know what happened.
15415 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
15417         * threadpool.c: Fix more warnings.
15419         * assembly.c (search_loaded): Fix warnings.
15421         * threadpool.c (mono_thread_pool_finish): Fix warnings.
15422         (mono_async_invoke): Ditto.
15424 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
15426         * object.c (mono_remote_class_vtable): Need to create proxy vtable
15427         entries for __ComObject type in addition to ComImport types.
15428         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
15429         about hash table.
15430         
15431         All code is contributed under the MIT/X11 license.
15433 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15435         * image.c: avoid tentative loading of modulerefs that contain
15436         no metadata (P/Invoke library names).
15438 2006-07-28  Dick Porter  <dick@ximian.com>
15440         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
15441         mono_loader_lock() somewhere, so don't delete the critical section
15442         for now.  Found by running and exiting monodevelop.
15444 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15446         * filewatcher.c: define the inotify syscalls when we're building on
15447         linux and have sys/syscall.h. The build system might not have support
15448         for inotify but the target system might have it.
15450 2006-07-26  Miguel de Icaza  <miguel@novell.com>
15452         * domain.c: Documentation updates.
15454         * loader.c (mono_free_method): Do not release the method
15455         information if we are being profiled, as profilers will use this
15456         information at shut down to present some data to the user.
15458         This is needed so that the profiler does not crash, as the
15459         profiler tends to keep MonoMethods around, and they might become
15460         invalid if we free these.
15462         (mono_get_method_constrained): Return the original CIL stream
15463         method as well, so verification can be performed against it.
15465 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15467         * filewatcher.[ch]: support for inotify file system watcher.
15468         * icall.c: add new internal calls for the inotify file system watcher.
15470 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15472         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
15473         #78888.
15475 2006-07-20  Dick Porter  <dick@ximian.com>
15477         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
15478         warning.
15480 2006-07-20  Dick Porter  <dick@ximian.com>
15482         * threads.c (start_wrapper): Do the thread cleanup while we still
15483         hold a reference to its object.  Fixes bug 78123.
15485 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
15487         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
15488         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
15489           "managed-to-managed".
15490         * icall.c: Redirect string constructors that take sbyte* to
15491           ves_icall_System_String_ctor_RedirectToCreateString.
15492         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
15493           to CreateString () methods with matching signature.
15494         * reflection.c: Use original security informations for
15495           MONO_WRAPPER_MANAGED_TO_MANAGED.
15496         * security-manager.c: Use original security informations for
15497           MONO_WRAPPER_MANAGED_TO_MANAGED.
15498         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
15499           that is a placeholder and only its address should be used.
15500         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
15501           that is a placeholder and only its address should be used.
15503 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
15505         Begin implementing COM Interop.
15506         * appdomain.c: Increment corlib version.
15507         * class.c: Set ComImport classes' parent to __ComObject.
15508         * loader.c: Mark cominterop methods as such.
15509         * domain.c: Add __ComObject class to MonoDefaults structure.
15510         * image.c: Add 2 hashtables to the image for COM Interop related methods
15511         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
15512         using the mempool allocator
15513         
15514         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
15515         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
15516         declaration for mono_metadata_type_dup_mp.
15517         
15518         * debug-helpers.c: Added strings for two additional wrapper types
15519         * object.c: Create proxy objects for ComImport classes
15520         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
15521         and added __ComObject class to MonoDefaults structure.
15522         
15523         * object-internals.h: Finish MonoRealProxy definition, and add definition of
15524         MonoComInteropProxy and MonoComObject.
15525         
15526         * marshal.c: Added support for COM Interop
15527         (signature_cominterop): Converts managed signature to corresponding
15528         unmanaged COM signature.
15529         (cominterop_get_function_pointer): gets unmanaged function pointer via
15530         COM object vtable
15531         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
15532         (cominterop_get_method_interface): returns interface type that method is defined on
15533         (mono_mb_emit_cominterop_call): emits native call to function pointer
15534         gotten from vtable
15535         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
15536         that matches signature of unmanaged function.
15537         (cominterop_get_native_wrapper): wrapper around adjusted method call.
15538         (cominterop_get_invoke): forwards call from proxy to __ComObject
15539         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
15540         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
15541         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
15542         
15543         * marshal.h: Added Marshal icall declarations.
15544         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
15545         so we can access them in finalizer
15546         
15547 2006-07-14  Dick Porter  <dick@ximian.com>
15549         * object.c (mono_type_initialization_cleanup): Fix a race
15550         condition by temporarily commenting out the critical section
15551         deletion.
15553 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
15555         * reflection.c (create_custom_attr): Fix some warnings.
15556         (create_custom_attr_data): Ditto.
15557         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
15558         types. Fixes #78855.
15560 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
15562         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
15564         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
15566 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
15568         * reflection.c (resolve_object): Add support for DynamicMethod.
15570         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
15571         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
15573 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
15575         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
15576         don't leak GPtrArray's pdata has we have no use (nor free) for it.
15578 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
15580         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
15581         Fixes #77888.
15583 2006-06-30  Raja R Harinath  <rharinath@novell.com>
15585         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
15586         slightly: remove a shadow local variable.
15588 2006-06-29  Raja R Harinath  <rharinath@novell.com>
15590         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
15591         definition that introduces the virtual function slot.
15592         Also fix Coverity #105.
15594 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
15596         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
15597         for dynamic assemblies. Fixes #78724.
15599 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
15601         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
15602         Fixes #78722.
15604 2006-06-21  Martin Baulig  <martin@ximian.com>
15606         * reflection.c
15607         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
15608         fixes #76484.
15610 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
15612         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
15614 2006-06-20  Raja R Harinath  <rharinath@novell.com>
15616         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
15617         nor TYPEREFs.
15618         * class.c (mono_class_create_from_typespec): Add 'context' argument.
15619         Inflate result if necessary.
15620         (mono_class_get_full): Remove old version.  Rename from
15621         'mono_class_get' and add 'context' argument.  Pass it to
15622         ..._create_from_typespec.
15623         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
15624         (mono_ldtoken): Revert change below.
15626 2006-06-20  Martin Baulig  <martin@ximian.com>
15628         * class.c (mono_ldtoken): Don't pass the generic context to
15629         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
15631 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
15633         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
15634         and later freeing it. Fixes #78638.
15636 2006-06-15  Miguel de Icaza  <miguel@novell.com>
15638         * icall.c (mono_class_get_throw): Revert over-zealous error
15639         throwing, the caller for mono_class_get_throw will cope with
15640         errors when classes are not properly initialized already.
15642         The code still copes with loader exceptions though.
15644         Fixes the regression in reftype1 and reftype3 from the CAS tests.
15645         
15646 2006-06-14  Miguel de Icaza  <miguel@novell.com>
15648         Fixes the `make run1' version of RuntimeAbort (to be commited,
15649         source is in Bugzilla).
15650         
15651         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
15652         FALSE on class loading failure instead of returning true.
15654         * class.c (mono_class_create_from_typedef): It is possible for
15655         mono_metadata_interfaces_from_typedef_full to fail if a class is
15656         not found, cope with this.
15657         
15659 2006-06-14  Dick Porter  <dick@ximian.com>
15661         * socket-io.c: 
15662         * process.c: Fix a bunch of signed/unsigned warnings from gcc
15663         4.1.1
15665 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
15667         * culture-info-table.h : oops, forgot to make it nsync with r61548.
15669 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15671         * icall.c: Another fix for building mono in Visual Studio.
15673 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15675         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
15676         
15677 2006-06-09  Martin Baulig  <martin@ximian.com>
15679         * debug-mono-symfile.c: Put this back and really fix it this
15680         time. Sorry for all the trouble.
15682 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
15684         * icall.c (mono_class_get_throw): Fix a warning.
15685         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
15686         ReflectionTypeLoadException if needed. Fixes #78606.
15688         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
15689         (mono_class_init): Ditto.
15691         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
15692         ref_only exceptions.
15693         (mono_loader_clear_error): Make this work even if there is no error.
15695 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
15697         * object-internals.h marshal.c marshal.h icall.c: Implement method 
15698         Marshal.GetComSlotForMethodInfo using internal call.
15700 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
15702         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
15703         a function for signalling it.
15705         * class.c (mono_class_from_typeref): Use the new kind of loader error when
15706         a referenced assembly is not found.
15708         * loader.c (mono_loader_error_prepare_exception): Add support for 
15709         LOADER_ERROR_ASSEMBLY. Fix formatting.
15711 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15713         * domain.c appdomain.c class-internals.h marshal.c: Add support 
15714         for VARIANT marshalling on windows and increment corlib version
15715         since Variant struct was added.
15717 2006-06-03  Miguel de Icaza  <miguel@novell.com>
15719         * debug-mono-symfile.c: Revert Martin's previous patch which broke
15720         stack trace line information:
15722         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
15723         (Martin) when looking up B which is between A and C, return A not C.
15725         Bug is #78573.
15727         Thanks to Alexander Olk for tracking this down.
15729 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
15731         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
15732         
15733         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
15734         avoid clobbering its value.
15735         (mono_string_to_lpstr): Fix a warning on windows.
15737 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15739         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
15741         * reflection.c loader.c: Removed references to 'dummy' flag.
15743         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
15745         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
15746         it gets GC tracking.
15748         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
15749         GC tracking.
15750         
15751         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
15753         * marshal.c threadpool.c: Update callers of mono_async_result_new.
15755         * appdomain.c: Bump corlib version.
15757 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15759         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15760         CEE_STIND_REF when working with object references.
15762 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15764         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
15765         Fixes #78539.
15767 2006-05-30  Miguel de Icaza  <miguel@novell.com>
15769         * loader.c (method_from_memberref): Fix argument value for
15770         mono_loader_set_error_method_load (I was passing the MonoClass
15771         instead of the class name char *).
15773 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15775         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15776         CEE_STIND_REF when working with object references.
15778 2006-05-30  Martin Baulig  <martin@ximian.com>
15780         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
15781         mono_method_full_name() change and replace the ':' with a '.'
15782         here.
15784 2006-05-30  Martin Baulig  <martin@ximian.com>
15786         * debug-mono-symfile.c
15787         (mono_debug_symfile_lookup_location): Fix the algorithm:
15788         when looking up B which is between A and C, return A not C.
15790 2006-05-29  Martin Baulig  <martin@ximian.com>
15792         * mono-debug.h
15793         (MonoDebugMethodInfo): Make the typedef public.
15794         (MonoDebugSourceLocation): New public struct.
15796         * mono-debug.c
15797         (mono_debug_source_location_from_address): Removed.
15798         (mono_debug_source_location_from_il_offset): Removed.
15799         (mono_debug_il_offset_from_address): Removed.
15800         (mono_debug_address_from_il_offset): Removed.
15801         (mono_debug_lookup_method): New public function.
15802         (mono_debug_lookup_source_location): New public function; replaces
15803         the old mono_debug_source_location_from_*() functions; see the
15804         inline documentation.
15805         (mono_debug_free_source_location): New public function.
15806         (mono_debug_print_stack_frame): New public function; see the
15807         inline documentation.
15809         * debug-mono-symfile.c
15810         (mono_debug_find_source_location): Renamed into
15811         mono_debug_symfile_lookup_location(); only take a
15812         `MonoDebugMethodInfo *' and an `offset' argument; added inline
15813         documentation.
15814         (mono_debug_find_method): Renamed into
15815         mono_debug_symfile_lookup_method().
15817 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
15819         * assembly.c (mono_assembly_open_full): Dont overwrite the status
15820         returned by mono_image_open_full ().
15822         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
15823         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
15824         #78517.
15826         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
15827         #78518.
15829 2006-05-27  Miguel de Icaza  <miguel@novell.com>
15831         * class.c (mono_class_from_typeref): handle missing images
15832         earlier, deals with bug #78418.   Refactor code; 
15834         Fix a warning introduced in my previous commit (some stale code
15835         from before I revisited my patch).
15837         * class.c (mono_class_create_from_typedef): On failure, remove the
15838         class from the MonoImage->class_cache as the class is not
15839         initialized;   Fixes the leak pointed out by Paolo.
15841 2006-05-25  Dick Porter  <dick@ximian.com>
15843         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
15844         DeleteCriticalSections until I figure out which one may still be
15845         sometimes locked when mono_thread_cleanup is called.
15847 2006-05-24  Dick Porter  <dick@ximian.com>
15849         * threads.c (mono_thread_cleanup): Move the threading cleanup out
15850         of mono_thread_manage and back into its own function, so it can be
15851         called after the finalizer thread has finished.
15853         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
15855 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
15857         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
15858         Fixes #78495.
15860         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
15861         with non-blittable elements.
15862         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
15864 2006-05-24  Martin Baulig  <martin@ximian.com>
15866         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15867         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
15869         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
15870         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
15871         `mono_debugger_event_handler' to NULL.
15873 2006-05-24  Martin Baulig  <martin@ximian.com>
15875         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
15877 2006-05-24  Martin Baulig  <martin@ximian.com>
15879         * mono-debug-debugger.h
15880         (mono_debugger_create_notification_function): Added
15881         `MonoCodeManager *' argument.
15883 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
15885         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
15887 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
15889         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
15890         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
15891         implementation.
15893 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
15895         * icall.c: precise GC support: objects can't be stored in unmanaged
15896         memory anymore, even if they are kept alive by other references: since
15897         they can move the GC needs to be able to always find them.
15899 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15901         * object.c: precise GC support for static fields. Support
15902         for moving GCs: write barriers and pinned allocation for interned
15903         strings.
15905 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15907         * domain.c, domain-internals.h: precise GC support for the MonoDomain
15908         structure.
15910 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15912         * class.c, gc.c: sgen and precise GC updates.
15914 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
15916         * marshal.h, marshal.c: added write barrier wrapper and precise type
15917         fixes.
15919 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
15921         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
15922         support.
15924 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15926         * reflection.c: precise and sgen GC updates.
15928 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
15930         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
15932 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
15934         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
15936 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
15938         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
15939         MONO_TYPE_OBJECT. Fixes #78462.
15941 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
15943         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
15944         and blittable types.
15946 2006-05-17  Miguel de Icaza  <miguel@novell.com>
15948         * class.c (mono_class_get_exception_for_failure): Implement parts
15949         of a TODO: if the loader error is set (instead of the class
15950         error), we return a Loader exception that can be properly thrown
15951         elsewhere.
15953         This was exposed by some Winforms 2.0 code that I tried to run
15954         (Atsushi pointed me to it).
15956 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
15958         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
15959         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
15960         
15961         * marshal.c (emit_marshal_vtype): Add limited support for 
15962         UnmanagedType.LPStruct. Fixes #78427.
15964         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
15965         Applied a patch from kangaroo to fix #77523.
15967 2006-05-17  Martin Baulig  <martin@ximian.com>
15969         * threads.c
15970         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
15971         (debugger_thread_created): Removed.
15972         (debugger_thread_exited): Removed.
15974 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
15976         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15978         * object-internals.h (MonoReflectionResource): Sync with managed version.
15980 2006-05-12  Wade Berrier <wberrier@novell.com>
15982         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
15984 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
15986         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
15987         functions try to allocate from the image mempool.
15989 2006-05-12  Dick Porter  <dick@ximian.com>
15991         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
15993 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
15995         * object.c: The FieldGetter and FieldSetter methods require the full
15996         name of the class, not only the name. Fixes bug #78277.
15998 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16000         * loader.c (method_from_memberref): Do not pass the NULL klass to
16001         mono_loader_set_error_() methods.  Pass the non-NULL value
16002         (class). 
16004 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16006         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16007         (mono_assembly_close): Null out assembly->image->references after freeing it.
16009         * image.c (mono_image_close): Free image->references.
16010         
16011         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16013 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16015         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16016         before checking if it's NULL (g_assert).
16018 2006-05-10  Martin Baulig  <martin@ximian.com>
16020         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16021         I thought I already killed that two months ago, but now it somehow reappeared.
16023 2006-05-10  Martin Baulig  <martin@ximian.com>
16025         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16027 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16029         * reflection.c: Allocate memory for dynamically created methods in the image
16030         mempools.
16032 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16034         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16035         don't use the ad pointer before checking if it's NULL (g_assert).
16037 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16039         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16040         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16042         * marshal.c: Allocate all signatures from mempools.
16044         * marshal.c: Allocate some more signatures from mempools.
16046 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16048         * object.c (mono_load_remote_field): The code used to provide a
16049         temporary variable for returning results if the user did not
16050         provide a result pointer.  But our temporary variable was allocted
16051         on the satck.
16053         Fix calling code to always pass a result area.   Coverity ID 103.
16055 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16057         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16058         value, not the old. Fixes #78312.
16059         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16061         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16062         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16063         per-image cache.
16065         * assembly.c (mono_assembly_close): Free image->references.
16067         * assembly.c (mono_assembly_names_equal): Fix a warning.
16068         (mono_assemblies_cleanup): Cleanup more global data.
16070         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16072         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16073         ptr_cache and image->modules.
16075         * image.c (mono_image_init): Allocate array_cache lazily.
16076         
16077 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16079         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16080         behavior was changed recently and has bad side effects.
16082 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16084         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16085         
16086         * assembly.c (mono_assembly_close): Remove a debug printf.
16088         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16090         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16091         to also allow for temporary references between mono_image_open ()/close ().
16093         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16095 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16097         * marshal.c: Fix support for dynamic methods.
16099         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16101         * marshal.c (mono_marshal_cleanup): New cleanup function.
16103         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16104         image mempools.
16106         * class.c (mono_class_init): Fix leaking class->nested_classes.
16108         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16110         * image.c (mono_image_init): Initialize the new cashes.
16112         * image.c (mono_image_close): Destroy the new cashes.
16114         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16116         * mempool.c (mono_mempool_strdup): New helper function.
16118         * class-internals.h: Add prototype for mono_loader_unlock ().
16120         * domain.c (mono_jit_info_table_find): Fix a warning.
16121         (mono_debugger_check_runtime_version): Ditto.
16123         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16124         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16125         functions to these modules.
16127         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16128         metadata modules.
16129         
16130         * marshal.c (mono_free_bstr): Fix a warning.
16132         * assembly.c (mono_assembly_open_full): Fix another small leak.
16134         * object.c: Fix some unload leaks in the remoting code.
16136         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16137         function.
16139         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16141         * reflection.c: Fix some unload leaks in dynamic assemblies.
16143 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16145         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16146         * marshal.h: Add BSTR support on Win32
16147         * icall.c: Add BSTR icalls
16148         * metadata.h: Add BSTR enums
16150 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16152         Work to catch the crash from #76795 and turn it into an
16153         exception.   As I stubbed out pieces of the VisualBasic support,
16154         I found a number of places where the code was failing and I added
16155         checks to those places. 
16156         
16157         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16158         function return a status code.  If we fail to parse the signature
16159         from mono_metadata_parse_generic_inst, return FALSE.
16161         * loader.c (mono_get_method_from_token): If we fail to load the
16162         method (mono_class_get) return NULL.   
16164         * (method_from_memberref): Return NULL if we are unable to parse
16165         the method signature
16167         (mono_loader_error_prepare_exception): Since we now use the
16168         loader_error flag internally to stop processing, and obtaining
16169         exceptions that might be thrown will walk this code path the
16170         proper way of going from a MonoLoaderError into a
16171         MonoException was convoluted.   This new routine encapsulates the
16172         process of turning the error into an exception and *clearing* the
16173         error afterwards.
16174         
16175 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16177         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16178         with missing assemblies), and to cope with:
16180                 * Missing fieldref from a non-existing assembly.
16181                 * Missing methodref from a non-existing assembly.
16183         The first batch of work to address *some* of the issues from 76661.
16184         
16185         * object.c (mono_class_create_runtime_vtable): If we fail to
16186         initialize the class raise the exception here. 
16188         * metadata.c (mono_class_get_overrides_full): If any methods fail
16189         to load return the failure to the caller.
16191         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16192         flagging assemblies that failed to load.   
16194         Do not crash if we are unable to load the assembly.
16196         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16197         assemblies. 
16199         * loader.c (mono_loader_set_error_type_load): Change the
16200         convention to always pass unallocated strings, so we make our own
16201         copies (I know our own code had duplicated strings before, but
16202         this keeps the normal conventions).
16203         (method_from_memberref): Call mono_loader_set_error_method_load
16204         for all possible failures of loading the class. 
16205         Remove assert, turn into a loader error.
16207         (mono_loader_error_to_exception): Move this routine from mini
16208         (mini_loader_error_to_exception) there was no need to have that in
16209         mini. 
16211         * class.c (mono_class_from_typeref): If we were not able to load
16212         the assembly with mono_assembly_load_reference, call the
16213         mono_loader_set_error_type_load to register the problem.
16215         (mono_class_setup_fields): If we fail to load the type from
16216         mono_metadata_parse_type_full, call mono_class_set_failure and
16217         break from the loop.
16219         If class->exception_type is set, we do not layout the fields as
16220         that might crash the runtime, and instead return (from breaking
16221         from the previous loop).
16223         (mono_class_setup_vtable): This now returns a boolean indicating
16224         whether the table was properly setup.   The decision is driven by
16225         mono_class_get_overrides_full which might run into non-existing
16226         methods. 
16227         
16228         (mono_class_init): Returns TRUE on success or FALSE if there was a
16229         problem in loading the type (incorrect assemblies, missing
16230         assemblies, methods, etc).
16232         When we call mono_class_setup_fields we also check for a potential
16233         error inside this call (either a class exception or a general
16234         loader exception).
16236         (mono_class_create_from_typedef): If the parent fails to load
16237         (calling mono_class_get_full) return NULL.
16238         
16239         ** Important **
16241         calls to mono_metadata_parse_type_full should be checked
16242         everywhere and set the mono_class_set_failure
16243         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16245         The current patch checks the places where my manually constructed
16246         tests show the errors are showing up, but we should do it
16247         everywhere. 
16249         ** Important2 **
16251         mono_class_init return values should be tested everywhere, like
16252         the previous case this is something that we should audit
16253         everywhere and not only on the cases exposed by the tests I
16254         created. 
16256 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16258         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16259         boolean parameter and instead pass the information on `options'
16260         parameter (FileOptions).
16262         * icall.c: Register the new signature for MonoIO.Open.
16264         * debug-helpers.c (dis_one): Trying to understand how coverity
16265         works.  Fix Run 5, item 78.
16267 2006-04-26  Dick Porter  <dick@ximian.com>
16269         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16270         dereference.
16272 2006-04-25  Martin Baulig  <martin@ximian.com>
16274         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16276         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16277         debugger_thread_created().
16278         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16279         special way.
16280         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16281         (mono_debugger_finalize_threads): New function; undo the effects
16282         of mono_debugger_init_threads().
16283         (mono_debugger_create_all_threads): Removed.
16285 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16287         * image.c (mono_image_close): Tidy up trace messages.
16289         * assembly.c (mono_assembly_close): Ditto.
16291         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16292         no longer references an already freed assembly. Fixes #78168.
16294 2006-04-21  Dick Porter  <dick@ximian.com>
16296         * threads.c (mono_thread_detach): Fix reference counting when
16297         detaching threads.
16299 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16301         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16302         #78155.
16304 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16306         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16307         (mono_type_to_stind): Ditto.
16309         * marshal.c: Use the new helper functions to simplify code.
16311         * image.c (mono_image_close): Add some code for help debug assembly unloading
16312         problems.
16314         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16315         image mempool.
16317         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16318         assembly was already loaded in another appdomain. Fixes #78083.
16320 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16322         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16323         referenced assemblies.
16324         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16326         * domain.c (mono_domain_free): Add a trace message.
16328         * appdomain.c (add_assemblies_to_domain): Ditto.        
16330         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16331         field.  
16333 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16335         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16337 2006-04-12  Martin Baulig  <martin@ximian.com>
16339         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16340         `USE_INCLUDED_LIBGC'.   
16342 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16344         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16345         the patch contains ../ and a small directory name later. Hopefully fixes
16346         #78035.
16348 2006-04-10  Martin Baulig  <martin@ximian.com>
16350         Clean up the debugger's thread-handling code.
16352         The debugger's thread-handling code has been moved from
16353         ../mini/debug-debugger.c to threads.c.  We now iterate directly
16354         over the `threads' hash, keep track of exiting threads and also
16355         use proper locking.
16357         We can now debug XSP and XSP based applications with the debugger.
16359         * object-internals.h (MonoThread): Added `gpointer end_stack'.
16361         * threads.h
16362         (MonoThreadCallbacks): Removed; this was only used by the debugger.
16363         (mono_install_thread_callbacks): Likewise.      
16365         * threads.c (mono_thread_callbacks): Removed.
16366         (debugger_thread_created, debugger_thread_exited): New static functions.
16367         (start_wrapper): Call debugger_thread_created().
16368         (thread_cleanup): Call debugger_thread_exited().
16369         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
16370         (mono_debugger_init_threads): New public function.
16371         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
16372         iterate directly over the `threads' hash and also use proper locking.
16374         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
16376         * mono-debug-debugger.h
16377         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
16379 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16381         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
16382         argument type=array. Fixes #78057.
16384 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
16386         * culture-info-table.h : regenerated. Fixed bug #69652.
16388 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16390         * loader.c metadata.c: Reapply a variant r59116.
16391         
16392         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
16394         * class.c (mono_class_setup_interface_offsets): New internal function.
16396         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
16397         interfaces too. Fixes #77398.
16399         * reflection.c (encode_cattr_value): Add support for 
16400         parameter type=object, argument type=array.
16401         (load_cattr_value): Ditto. Fixes #77916.
16403         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
16404         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
16406         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
16407         a byval char array and CharSet is Ansi.
16409         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
16411 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
16413         * metadata.c: Add some locking comments.
16414         
16415         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
16416         mempool.
16417         (mono_metadata_free_method_signature): Don't free the signature itself.
16419         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
16421         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
16422         reference the same MonoImage.
16423         (mono_assembly_load_from_full): Add an assert.
16425 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
16427         * image.c (mono_image_close): Don't put the image we are about to free into the
16428         loaded_images_guid_hash.
16430         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
16431         to reduce code duplication.
16433         * marshal.c: Register the native functions called by this module as icalls, to
16434         somewhat centralize the creation of MonoMethodSignature's.
16436         * loader.c (mono_method_signature): Add a cache for method signatures.
16438         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
16439         the parameter attributes of a method.
16440         (mono_metadata_parse_method_signature_full): Refactored the computation of
16441         parameter attributes into a separate function. Also avoid one allocation in
16442         most cases.
16444         * assembly.c (mono_assembly_close): Ditto.
16446         * image.c (mono_image_close): Log trace messages with INFO level.
16448         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
16450         * image.c reflection.c: Correct reference counting of image modules.
16451         
16452         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
16453         of this function from the image mempool.
16454         
16455         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
16456         to allow more cached types to be used.
16458         * mono-debug.c (mono_debug_add_method): Appled patch from
16459         David S. Miller  <davem@sunset.davemloft.net>: Access 
16460         minfo->lexical_blocks[] entry elements using read32().
16462 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
16464         * loader.c (mono_free_method): No longer free the method header for non-dynamic
16465         methods as it is allocated from the mempool.
16467         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
16468         image mempool.
16470         * metadata-internals.h: Add comments describing the reference counting scheme
16471         used for MonoImage and MonoAssembly.
16473         * image.c assembly.c reflection.c: Rework reference counting of images and 
16474         assemblies so they are freed when the runtime is shut down. Free some 
16475         additional memory structures when an image is unloaded.
16476         
16477 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
16479         * class.c loader.c reflection.c: Allocate more data structures in
16480         the image mempool.
16482 2006-03-31  Miguel de Icaza  <miguel@novell.com>
16484         * icall.c
16485         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
16486         build on pre glib 2.4 systems.
16488 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
16490         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
16492         * icall.c: Fix some warnings.
16494 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
16496         * culture-info-table.h : regenerated.
16498 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
16500         * threads.c, object-internals.h, verify.c: changed the culture caching
16501         code to use a normal MonoArray for storage so the GC can keep track of
16502         them easily. Fixed bits of the cache logic, too and simplified the
16503         code.
16505 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
16507         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
16508         thread for non-Boehm GCs.
16510 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16512         * domain.c, object.c, domain-internals.h: reduce the amount of memory
16513         needed to keep track of the data for static fields.
16515 2006-03-29  Raja R Harinath  <rharinath@novell.com>
16517         Fix #75172
16518         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
16519         for interface classes.  Use 'num_methods' instead.
16520         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
16521         before using '->vtable_size' field.
16523 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16525         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
16526         doesn't contain managed pointers, so use a normal hashtable.
16528 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16530         * reflection.c, class-internals.h, domain.c: fixed handling of types
16531         used as values for objects in custom attributes (bug #77915):
16533 2006-03-24  Martin Baulig  <martin@ximian.com>
16535         * class.c (mono_class_setup_fields): Added support for generic
16536         instances; fixes #77580.
16538 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16540         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
16542 2006-03-24  Dick Porter  <dick@ximian.com>
16544         * file-io.c (get_file_attributes): More stat macro breakage.
16545         Fixes bug 77759.
16547 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
16549         * profiler.c: added the file=filename option in the default profiler
16550         to output the profile data to filename.
16552 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16554         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
16555         bug #77877.
16557 2006-03-22  Martin Baulig  <martin@ximian.com>
16559         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
16560         allocated `MonoClassField *' in `fb->handle'.
16562 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16564         * class.c, image.c, metadata-internals.h: implemented new mechanism to
16565         allocate interface ID to save memory and allow better ID reuse on
16566         appdomain unload. setup_generic_vtable () removal from Martin.
16568 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16570         * object.h, appdomain.c, domain.c, exception.c, icall.c,
16571         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
16572         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
16573         write barriers for reference stores with managed objects accessed with
16574         C structures in the runtime and in embedding programs.
16576 2006-03-20  Raja R Harinath  <rharinath@novell.com>
16578         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
16579         'interface_id' and 'max_interface_id' fields of MonoClasses
16580         representing open generic types.
16582 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
16584         * object.h, object.c, icall.c: added functions to deal with
16585         storing valuetypes that contain references in managed objects.
16586         * reflection.c, string-icalls.c, threads.c, marshal.c: small
16587         fixes and comments around uses of mono_array_addr ().
16589 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
16591         * object.h, icall.c, monitor.c: object.GetHashCode ()
16592         implementation that supports the moving garbage collector.
16594 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16596         * icall.c, threads-types.h, threads.c: implemented finalizer for
16597         LocalDataStoreSlot.
16599 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
16601         * metadata.c (mono_type_size): Add a fixme.
16602         (mono_type_stack_size): Ditto.
16604         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
16605         'type_forwarders' field.
16607         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
16608         attribute from net 2.0.
16610         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
16611         from class.c.
16613         * class.c (mono_class_setup_fields): Fix a warning.
16614         
16615         * class.c (mono_class_from_name): Add support for assemblyref entries
16616         in the EXPORTEDTYPE table.
16618         * reflection.c: Add support for handling type forwarders under net 2.0.
16620         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
16621         
16622 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
16624         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
16625         overwriting entries in ModuleBuild->types, also clean up the code
16626         a little. Fixes #77774.
16628 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16630         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
16631         load friend assembly info when present.
16633 2006-03-14  Raja R Harinath  <rharinath@novell.com>
16635         Fix crasher on gtest-158.cs.
16636         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
16637         the return value if the MonoClass we want is yet in an
16638         inconsistent state.
16639         * class.c (mono_class_create_from_typedef): Add an comment
16640         explaining an order dependency between mono_class_setup_parent and
16641         mono_class_setup_mono_type.
16643 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16645         * class.c: documentation updates and events bug fix.
16647 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16649         * class.c: some cleanup, locking fixes.
16651 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16653         * class.c: fix the generics code to setup nested
16654         type info to the instantiated type (bug #77770).
16656 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16658         * marshal.c: fixed a few type correctness issues.
16660 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16662         * loader.c: the Set/Get/Addrtess array methods should be public.
16664 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16666         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
16667         
16668         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
16669         info->wrapper.
16671 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
16673         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
16675         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
16677         * mempool.c (mono_mempool_alloc): Speed this up a bit.
16678         (mono_mempool_alloc0): Ditto.
16680 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16682         * socket-io.c:
16683         (create_object_from_sockaddr): it was allocating 4 extra bytes
16684         for the AF_UNIX data. Fixes bug #77747.
16686 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
16688         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
16690 2006-03-09  Dick Porter  <dick@ximian.com>
16692         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
16693         Fixes bug 76966 again.
16695 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
16697         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
16698         names from r57532
16699         * appdomain.c: Bumped corlib version to 48 (due to r57532)
16701 2006-03-07  Martin Baulig  <martin@ximian.com>
16703         * object.c
16704         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
16706 2006-03-07  Martin Baulig  <martin@ximian.com>
16708         * class.c
16709         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
16710         regression introduced in r56970; see gtest-252.cs.
16712         * loader.c (mono_get_method_constrained): Correctly handle generic
16713         methods; see gtest-253.cs.
16715 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
16717         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
16719 2006-03-04  Martin Baulig  <martin@ximian.com>
16721         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
16722         compute the parent type at runtime, just like we're already doing
16723         it for interfaces.
16725         * reflection.c
16726         (mono_reflection_bind_generic_parameters): Don't compute the
16727         parent type anymore.
16729         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
16731 2006-03-04  Martin Baulig  <martin@ximian.com>
16733         * mono-debug-debugger.h
16734         (mono_debugger_create_notification_function): Allocate memory at
16735         runtime and return a pointer to it.
16737 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
16739         * assembly.c: Fix windows build.
16740         
16741         * assembly.c: Fix build.
16743         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
16745         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
16746         
16747 2006-03-03  Dick Porter  <dick@ximian.com>
16749         * process.c
16750         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
16751         Check parameters before dereferencing them.  Fixes Aaron's part of
16752         bug 77393.
16754 2006-03-03  Raja R Harinath  <rharinath@novell.com>
16756         Fix performance regression.
16757         * loader.c (find_method_in_class): Add 'from_class' argument.
16758         Rename 'klass' argument to 'in_class'.  The signature is compared
16759         against the method in 'in_class', and the corresponding method is
16760         returned from 'from_class'.
16761         (find_method): Walk both 'in_class' and 'from_class' in parallel.
16762         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
16763         type definition and generic instantiation in parallel.
16764         (mono_get_method_constrained): Update to changes.
16766 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16768         * threads.c: make sure the domain is correct, too when doing
16769         mono_thread_attach ().
16771 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
16773         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
16774         windows. Fixes #77683.
16776 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
16778         * object.h, *: introduced specific way to set elements of an array
16779         of references to be used as write barrier. Still need to audit the
16780         uses of mono_array_addr.
16782 2006-03-01  Miguel de Icaza  <miguel@novell.com>
16784         * object-internals.h: New field to cache the assmebly name, patch
16785         from Tambet Ingo (tambet@ximian.com)
16787 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16789         * decimal.h, class-internals.h, metadata-internals.h,
16790         file-io.h: mark a few function declarations as internal, to
16791         reduce the number of PLT entries.
16793 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16795         * file-io.c: fix typo in warning message.
16797 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
16799         * loader.c: on unix, lookup the "*A" version of a function
16800         if charset is auto as a second option before failing.
16802 2006-02-28  Raja R Harinath  <rharinath@novell.com>
16804         * class.h (mono_class_inflate_generic_method): Revert to two
16805         argument version.
16806         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
16807         (mono_class_inflate_generic_method_full): Add.
16808         * class.c (mono_class_inflate_generic_method_full): Rename from
16809         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
16810         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
16811         * loader.c, reflection.c: Update to changes.
16813 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
16815         * icall.c: const fixes and small improvements.
16817 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16819         * threadpool.c: for asynchronous connect(), enable the same workaround
16820         for BSD 6 as for the Mac. Fixes bug #77637.
16822 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
16824         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
16825         formatted classes. Fixes #77524.
16827 2006-02-24  Raja R Harinath  <rharinath@novell.com>
16829         * class.c (inflate_generic_type): Add a couple more
16830         micro-optimizations.
16831         (inflate_generic_context): Don't use the 'gmethod' from
16832         'inflate_with'.
16833         (mono_class_inflate_generic_method): If the method has generic
16834         parameters, but the passed-in context doesn't have a 'gmethod',
16835         create one.  Use the possibly simplified generic instantiation
16836         from the declaring class instead of the one passed in.
16838 2006-02-24  Raja R Harinath  <harinath@gmail.com>
16840         Make generic method signature and method header handling lazy.
16841         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
16842         (inflate_generic_header): Likewise.
16843         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
16844         parameter to avoid inflating types.
16845         (mono_get_inflated_method): Empty out.
16846         * class.h (mono_class_inflate_generic_method): Update to changes.
16847         * loader.c (mono_get_method_from_token): Don't parse signature for
16848         generic methods, nor methods of generic classes.
16849         (mono_method_signature): Rename from 'mono_method_signature'.
16850         Inflate signature on demand.
16851         (mono_method_get_header): Inflate method header on demand.
16852         * reflection.c: Update to changes.
16854 2006-02-23  Raja R Harinath  <rharinath@novell.com>
16856         * metadata.c (mono_metadata_inflate_generic_inst): If the
16857         instantiation is closed, don't bother expanding it in the new
16858         context.
16859         * class.c (inflate_generic_class): If the generic instantiation
16860         doesn't change after inflation, return the argument itself.
16861         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
16862         Add bounds checks.
16863         (inflate_generic_context): If neither the generic class nor the
16864         generic method instantiations change, return the original context.
16865         * reflection.c (mono_method_get_object): Do
16866         'mono_get_inflated_method' before accessing the ->klass field.
16867         (inflate_mono_method): Don't create a MonoGenericMethod unless
16868         necessary.
16869         (inflate_method): Don't pass a constructed type as the declaring
16870         type of a methodbuilder.
16872 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
16874         * object.c: fix memory overwrite.
16876 2006-02-22  Dick Porter  <dick@ximian.com>
16878         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
16879         it doesn't work any more.
16880         (mono_threads_request_thread_dump): Fix unused variable warnings.
16882 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16884         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
16885         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
16886         the public header file.
16888 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
16890         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
16892 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16894         * class-internals.h, object.c: reduce the size of MonoVTable
16895         and store the interface_offsets array at negative offsets.
16897 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16899         * metadata.c: tweak table descriptors data structures to reduce
16900         size and runtime relocations.
16902 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16904         * marshal.c: fix some types and opcodes to be type-safe
16905         in marshaling wrappers.
16907 2006-02-21  Ankit Jain  <jankit@novell.com>
16909         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
16911 2006-02-21  Raja R Harinath  <rharinath@novell.com>
16913         * metadata.c (get_constraints): Relax debugging checks for monodis.
16915 2006-02-21  Ankit Jain  <jankit@novell.com>
16917         * metadata.c (mono_metadata_load_generic_params): Move the code
16918         checking for ambiguous generic params from here to mono/dis/get.c
16919         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
16921 2006-02-21  Raja R Harinath  <harinath@gmail.com>
16923         Fix assertion triggered when compiling nemerle.
16924         * class.c (mono_get_shared_generic_inst): Rename from
16925         get_shared_inst and make non-static.
16926         * loader.c (mono_get_shared_generic_method): New.  Used to create
16927         the MonoGenericContext-equivalent of a MonoGenericContainer.
16928         (mono_get_method_from_token): Initialize the 'context' field of
16929         the created MonoGenericContainer.
16930         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
16931         * metadata.c (get_constraints): Add sanity check.
16932         * class-internals.h: Add new internal methods.
16934         * reflection.c (verify_safe_for_managed_space): New sanity check.
16935         Currently checks that owner-less generic parameters aren't allowed
16936         in managed space.
16937         (mono_type_get_object): Use it.
16938         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
16939         that are now in mono_type_get_object.
16940         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
16942 2006-02-19  Raja R Harinath  <harinath@gmail.com>
16944         * metadata.c (mono_type_create_from_typespec): Rename from
16945         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
16946         argument and caching of types in the generic container.
16947         (unwrap_arrays, find_generic_param): Remove.
16948         * metadata-internals.h: Update.
16949         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
16951 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
16953         * class.c (mono_class_get_exception_for_failure): Fix a warning.
16955         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
16956         return values. Fixes #77581.
16958         * class.c (mono_fnptr_class_get): Switch name and name_space.
16960         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
16961         classes and add support for [In, Out] attributes.
16962         (mono_marshal_free_asany): Ditto. Fixes #77524.
16964 2006-02-18  Raja R Harinath  <harinath@gmail.com>
16966         * class.c (mono_class_from_generic_parameter): Make more robust to
16967         incomplete MonoGenericContainers from monodis.
16969 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16971         * class-internals.h: added some more exception types.
16972         * class.c, metadata.c: added a few checks to handle missing
16973         types.
16975 2006-02-17  Raja R Harinath  <rharinath@novell.com>
16977         Use owner-less generic-params some more.
16978         * class.c (my_mono_class_from_generic_parameter): Remove.
16979         (mono_class_from_generic_parameter): Handle null image,
16980         param->name and param->owner.
16981         (mono_class_from_mono_type): Update.
16982         (mono_class_create_from_typespec): Remove 'container' parameter.
16983         If that parameter is non-null, the result is always inflated by
16984         'mono_class_get_full' anyway.
16985         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
16986         parameter.
16987         (mono_class_get_full): Update.
16989         * class.c (inflate_generic_type) [GENERICINST]: If the generic
16990         instance is not open, don't bother inflating.
16991         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
16992         parse metadata for inflated classes.
16993         (_mono_class_get): Change GenericContext* parameter to
16994         GenericContainer*.
16995         (mono_class_create_from_typespec): Likewise.  Simplify, and
16996         implement trivially.  All the cases are handled in
16997         mono_class_from_mono_type.  Don't inflate returned class.
16998         (mono_class_get_full): Delegate GENERICINST optimization to
16999         inflate_generic_type.
17000         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17002 2006-02-16  Dick Porter  <dick@ximian.com>
17004         * socket-io.c (create_object_from_sockaddr): Fix typo.
17005         (create_sockaddr_from_object): Check array lengths before
17006         potentially accessing items off the end.
17007         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17008         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17009         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17010         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17011         length checks to avoid wraparound overflows.
17012         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17013         contents of the array of sockets
17014         (hostent_to_IPHostEntry2)
17015         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17016         Check return value of inet_ntop ().
17017         (addrinfo_to_IPHostEntry): Fix typo
17019 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17021         Type metadata parsing doesn't use generic-instantiation information.
17022         * metadata.c (mono_metadata_parse_array_full): Change
17023         MonoGenericContext* parameter to MonoGenericContainer*.
17024         (mono_metadata_parse_type_full): Likewise.
17025         (mono_type_create_from_typespec_full): Likewise.
17026         (mono_metadata_parse_mh_full): Likewise.
17027         (mono_metadata_parse_generic_inst): Likewise.
17028         (do_mono_metadata_parse_generic_class): Likewise.
17029         (do_mono_metadata_parse_type): Likewise.
17030         * metadata-internals.h: Update to changes.
17031         * class.c (mono_class_find_enum_basetype): Likewise.
17032         (mono_class_setup_fields): Likewise.
17033         (mono_class_create_from_typespec): Likewise.
17034         * loader.c (method_from_methodspec): Likewise.
17035         (mono_get_method_from_token): Likewise.
17036         (mono_method_get_header): Likewise.
17038 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17040         * marshal.c: handle additional GENERICINST case (patch from
17041         Thong Nguyen <tum@veridicus.com>).
17042         Fix a few cases where LDIND_I/STIND_I was used for references.
17044 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17046         * reflection.c (mono_reflection_get_token): Remove unused variable.
17048 2006-02-16  Martin Baulig  <martin@ximian.com>
17050         * reflection.c (mono_reflection_get_token): Add support for fields
17051         in instantiated generic types.
17053         * icall.c
17054         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17056 2006-02-15  Martin Baulig  <martin@ximian.com>
17058         * icall.c
17059         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17060         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17061         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17062         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17064 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17066         * class.c, metadata.c, metadata.h, object.c, icall.c,
17067         marshal.c: changed mono_type_get_underlying_type () to do
17068         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17069         Fixed handling of instantiated generic valuetypes (bug #75479).
17071 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17073         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17074         Delegate to mono_metadata_decode_value, and work on the returned value.
17076         * icall.c (ves_icall_MonoType_GetGenericArguments):
17077         Add consistency check here too.
17078         
17079 2006-02-15  Ankit Jain  <jankit@novell.com>
17081         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17082         char/short etc.
17084 2006-02-15  Ankit Jain  <jankit@novell.com>
17086         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17087         signed values, used only for representing lower bounds of arrays.
17088         (mono_metadata_parse_array_full): Use new
17089         mono_metadata_decode_signed_value to decode lower bounds.
17091 2006-02-14  Martin Baulig  <martin@ximian.com>
17093         * reflection.c
17094         (mono_reflection_get_token): Support "MonoGenericMethod" and
17095         "MonoGenericCMethod" and allow generic instances / methods.
17097 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17099         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17100         to obtain the terminal size using an ioctl.
17102         * object.c (mono_nullable_init): Revert this as nullable reference
17103         types are not valid.
17104         (mono_nullable_box): Ditto.
17106 2006-02-09  Dick Porter  <dick@ximian.com>
17108         * threads.c (mono_thread_detach): Drop a reference to the thread
17109         we're detaching.
17111 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17113         * object.c (mono_nullable_init): Handle nullable reference types.
17114         (mono_nullable_box): Ditto. Fixes #77446.
17116 2006-02-07  Martin Baulig  <martin@ximian.com>
17118         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17120 2006-02-07  Ankit Jain  <jankit@novell.com>
17122         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17123         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17124         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17125         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17126         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17127         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17129 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17131         * class.c (mono_class_create_generic): Set type_token as well.
17133         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17134         compatible with MS.
17136 2006-02-02  Martin Baulig  <martin@ximian.com>
17138         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17139         has never been used so far.
17141 2006-02-02  Martin Baulig  <martin@ximian.com>
17143         * mono-debug-debugger.h: Changed comment at the top of this file;
17144         the header is not installed, but it's safe to #include it from
17145         within the JIT.
17147         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17148         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17150 2006-02-02  Martin Baulig  <martin@ximian.com>
17152         * mono-debug.h
17153         (MonoSymbolTable): Removed the `metadata_info' field.
17155         * mono-debug.c
17156         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17158         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17159         (mono_debugger_add_builtin_types): Removed.
17160         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17161         (mono_debugger_create_notification_function): We now operate on a
17162         pre-allocated area; take a `gpointer' and return `void'.
17164         * mono-debug-debugger.c
17165         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17166         (mono_debugger_add_builtin_types): Removed.
17168 2006-02-02  Martin Baulig  <martin@ximian.com>
17170         * threads.c (mono_debugger_create_all_threads): New public method.
17172 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17174         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17175         breaks on several platforms.
17177 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17179         * assembly.c: the VS.NET build doesn't supply default values for
17180         MONO_ASSEMBLIES and MONO_CFG_DIR.
17182 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17184         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17185         helper function.
17187         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17189         * loader.c (method_from_memberref): Fix a warning.
17191         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17193         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17194         with explicit layout. Fixes #77433.
17196 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17198         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17199         max_interface_id is initialized before using it. Fixes #77398.
17200         (ves_icall_Type_GetInterfaces): Ditto.
17202 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17204         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17205         allocate memory for parameter attributes when parsing memberref
17206         signatures.
17207         * loader.c (mono_loader_set_error_method_load): Don't warn.
17208         (method_from_memberref): Ensure MissingMethodException gets thrown
17209         if method is not found.  Make warning more informative.
17211 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17213         Fix #77397
17214         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17215         return true if is byref.
17216         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17217         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17218         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17220 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17222         Fix tests/find-method.2.il
17223         * loader.c (find_method, find_method_in_class): Remove is_inflated
17224         argument.  Revert 2006-01-18 change.
17225         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17226         is generic, search for method in its generic definition.
17227         * class.c (mono_class_setup_vtable_general): Print generic
17228         arguments of generic types in debugging printf.
17230 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17232         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17234         * threads.c (mono_threads_request_thread_dump): New helper function.
17236 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17238         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17240 2006-01-25  Ankit Jain  <jankit@novell.com>
17242         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17243         move definition to ..
17244         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17245         
17246 2006-01-25  Ankit Jain  <jankit@novell.com>
17247             Raja R Harinath  <rharinath@novell.com>
17249         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17250         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17251         as necessary.
17253 2006-01-25  Martin Baulig  <martin@ximian.com>
17255         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17256         `MonoDebuggerThread' into debug-debugger.c.
17258 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17260         * profiler.c: fix printing of data.
17262 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17264         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17265           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17267 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17269         * object.c: fix deadlock related to string interning.
17271 2006-01-23  Martin Baulig  <martin@ximian.com>
17273         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17275         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17277 2006-01-23  Martin Baulig  <martin@ximian.com>
17279         * mono-debug.h: Moved the prototypes of some functions which are
17280         used by the JIT here from mono-debug-debugger.h.
17282 2006-01-21  Martin Baulig  <martin@ximian.com>
17284         * Makefile.am: Don't install mono-debug-debugger.h.
17286 2006-01-21  Martin Baulig  <martin@ximian.com>
17288         * mono-debug-debugger.h: Enforce the private status of this header
17289         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17290         Moved some stuff from mono-debugger-jit-wrapper.h here.
17292 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17294         * class.c (mono_class_from_typeref): Add a sanity test to help
17295         catch lack of assembly load/search hooks.
17297 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17299         * marshal.c (emit_struct_conv): Relax the fields with same offset
17300         check even more. Fixes #77230.
17302 2006-01-18  Martin Baulig  <martin@ximian.com>
17304         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17305         argument; if false, we compare the uninstantiated signatures.
17306         (method_from_memberref): Compare the uninstantiated signatures;
17307         fixes #76417.
17309 2006-01-18  Robert Jordan  <robertj@gmx.net>
17311         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17312         Clear the weak link. Fixes bug #77170.
17314         * gc.c (mono_gchandle_free):
17315         Reflect *-gc.c changes (tiny optimization).
17317 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17319         * metadata.c (mono_metadata_signature_dup): Applied patch from
17320         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17321         Fixes #77288.
17323 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17325         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17326         marshalling from native to managed code. Fixes #77230.
17328 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17330         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17331         connect. Fixes bug #77020.
17333 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17335         * class.c: fixed id assignement for nested interfaces (bug #77275).
17336         Added also better info for --print-vtable debugging.
17338 2006-01-12  Martin Baulig  <martin@ximian.com>
17340         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17341         interfaces on-the-fly; fixes #76625.
17343         * class-internals.h
17344         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17345         don't need that anymore.
17347 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17349         * socket-io.c
17350         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17351         To avoid initing the nested_classes when not needed I turned the
17352         PeerCredData as a toplevel internal class, as it has to be shared
17353         anyways. 
17355         Fixes the CASA issue.
17357 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17359         * domain.c: Accessors for MonoJitInfo
17361         * profiler-private.h: Add jitinfo to the end jit hook
17363         * profiler.[ch]: Define new hooks, called after jitting which give
17364         the MonoJitInfo that was compiled
17366 2006-01-10  Martin Baulig  <martin@ximian.com>
17368         * class.c (mono_class_setup_events): Add support for generic
17369         classes; fixes #76440.
17371 2006-01-06  Raja R Harinath  <rharinath@novell.com>
17373         Fix #77160.
17374         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
17375         on passed-in method.
17377 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17379         * object.c (mono_runtime_invoke_array): Add Nullable support.
17381         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
17383 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
17385         * file-io.c: Don't consider sockets as directory and avoid an endless
17386         loop. Fix bug #76966.
17388 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17390         * object.c (mono_nullable_init): New helper function.
17391         (mono_nullable_box): Ditto.
17393         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
17395         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
17397         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
17398         
17399 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
17401         * class.c (mono_class_is_assignable_from): Make T assignable to 
17402         Nullable<T>.
17404 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
17406         * appdomain.c: Bump corlib version to 46.
17407         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
17408         serialization purpose) and changed ves_icall_System_Reflection_
17409         Assembly_get_code_base signature to accept a boolean (to escape, or 
17410         not, the assembly code base).
17412 2005-12-23  Dick Porter  <dick@ximian.com>
17414         * icall.c: 
17415         * threads-types.h: 
17416         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
17417         CreateEvent icall now returns "created" boolean parameter.
17419 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
17421         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
17422         #76967.
17424         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
17425         when attr_klass is an interface. Fixes #77045.
17427 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
17429         * marshal.c (emit_struct_conv): Fix previous patch.
17430         
17431         * marshal.c (emit_struct_conv): Add a check for fields with the same
17432         offset.
17434 2005-12-20  Raja R Harinath  <rharinath@novell.com>
17436         Fix regression in Mono.C5.
17437         * class.c (mono_class_create_generic): If 'klass' is an interface
17438         set up the interface offsets.
17439         (mono_class_is_assignable_from): Don't throw away generic arguments.
17441 2005-12-19  Raja R Harinath  <rharinath@novell.com>
17443         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
17444         type parameters.
17446 2005-12-15  Raja R Harinath  <rharinath@novell.com>
17448         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
17449         dead store.
17450         (do_mono_metadata_parse_generic_class): Don't pass the current
17451         generic context when parsing the type being instantiated: it
17452         cannot use it, anyway.
17454         * loader.c (method_from_memberref): Don't inflate a signature if
17455         it doesn't contain any type parameters.
17457 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
17459         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
17461 2005-12-14  Martin Baulig  <martin@ximian.com>
17463         * class.c
17464         (mono_type_get_name_recurse): Don't return null for type
17465         parameters and open generic classes.
17466         (mono_class_setup_methods): Don't exclude generic instances.
17467         (mono_get_unique_iid): Use different IDs for different
17468         instantiations of the same generic type.
17469         (mono_class_setup_vtable): Only use setup_generic_vtable() for
17470         open generic instances; create a normal vtable for closed generic
17471         instances.
17472         (mono_class_setup_vtable_general): We're now also called for
17473         closed generic instances.
17475         * reflection.c
17476         (mono_reflection_bind_generic_parameters): Correctly use
17477         mono_metadata_lookup_generic_inst() everywhere.
17479 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
17481         * object.c (mono_class_create_runtime_vtable): Call 
17482         mono_class_setup_vtable ().
17484         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
17485         function.
17486         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
17487         #76959.
17489         * loader.c (mono_loader_set_error_type_load): Print the type load
17490         warnings to the console so they are more visible to the user.
17491         (mono_loader_set_error_method_load): Ditto.
17493         * reflection.c (ensure_runtime_vtable): Revert the last change as it
17494         is still broken.
17495         
17496         * reflection.c (ensure_runtime_vtable): Fix build.
17498         * reflection.c (ensure_runtime_vtable): Disable an optimization which
17499         doesn't work in all cases.
17501 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
17503         * object.c (mono_array_new_full): Treat a single dimensional array
17504         with 0 lower bounds as an szarray. Fixes #76973.
17506         * reflection.c (custom_attr_visible): Really fix this.
17508 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
17510         * reflection.c (custom_attr_visible): Allow nested public attributes
17511         as well.
17513         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
17514         interface check.
17516 2005-12-12  Raja R Harinath  <harinath@gmail.com>
17518         * class.c (set_generic_param_owner): Delete.
17519         (mono_class_create_from_typedef): Don't set ->owner field of
17520         generic parameters to "param containers" of enclosing classes.
17521         * reflection.c (mono_reflection_initialize_generic_parameter):
17522         Likewise.
17524 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
17526         * reflection.c (custom_attr_visible): Fix build.
17528 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
17530         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
17531         private attributes.
17532         
17533         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
17534         handling of null parameter defaults.
17536 2005-12-09  Raja R Harinath  <rharinath@novell.com>
17538         * class.c (mono_class_from_generic_parameter): Don't set
17539         klass->generic_container.
17540         (my_mono_class_from_generic_parameter): Likewise.
17542 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
17544         * reflection.c (load_public_key): Fix a warning.
17545         (method_encode_code): Fix unaligned accesses.
17547 2005-12-07  Martin Baulig  <martin@ximian.com>
17549         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
17551         * reflection.c
17552         (write_generic_param_entry): Encode our custom attrs.
17554         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
17556 2005-12-07  Martin Baulig  <martin@ximian.com>
17558         * reflection.c (encode_new_constraint): Removed; we don't use the
17559         `NewConstraintAttribute' anymore.
17561 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
17563         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
17564         not fire a TypeResolve event when Assembly.GetType () is called.
17566 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
17568         Beginning of support for nullable types in the runtime. Parts of
17569         this patch are from Martin.
17571         * appdomain.c (MONO_CORLIB_VERSION): Bump
17573         * domain.c (mono_init_internal): get the nullable type
17575         * class.c (mono_class_is_nullable): New method
17576         (mono_class_get_nullable_param): New mehod
17577         (mono_class_create_generic): In types T? set cast_class to T
17579         * class-internals.h (MonoDefaults): new nullable default class
17580         (mono_class_get_nullable_param, mono_class_get_nullable_param):
17581         new methods.
17583 2005-12-05  Raja R Harinath  <rharinath@novell.com>
17585         * metadata.c (select_container): New.  Refactor code to select the
17586         appropriate GenericContainer given the type of generic parameter
17587         we are looking for.
17588         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
17589         not a MonoGenericContext.  Use select_container.  Update parameters.
17590         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
17591         and MONO_TYPE_MVAR.
17592         (unwrap_arrays): Remove duplicate tests.
17593         (find_generic_param): Rename from 'has_same_context'.  Now walks a
17594         generic instantiated class to find any arguments that are generic
17595         parameters.
17596         (mono_type_create_from_typespec_full): Use find_generic_param to
17597         avoid evicting some generic instantiations from the typespec
17598         cache.
17600 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
17602         * reflection.c: fixed writing of doubles on ARM FPA.
17604 2005-12-02  Robert Jordan  <robertj@gmx.net>
17606         * icall.c: Fixed EventInfo.ReflectedType (#76829).
17608 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17610         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
17611         least on SUSE 10 they are not the same (on debian, they are just the
17612         same thing).
17614 2005-12-01  Raja R Harinath  <rharinath@novell.com>
17616         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
17617         DeclaringType for VARs and MVARs.
17618         * class.c (set_generic_param_owner): Fix initialization of owner
17619         fields.
17621 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
17623         * icall.c: fixed Enum.ToObject() to correctly convert the values.
17625 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17627         * threadpool.c: workaround for a bug that shows up on the Mac:
17628         select()+connect() on a blocking socket is not like it should
17629         be, so we proceed to connect() in that case, wasting the I/O
17630         threadpool thread until connect succeedes. Fixes bug #75436.
17632 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17634         * threadpool.c: fix typo when setting file descriptor states.
17636 2005-11-28  Raja R Harinath  <rharinath@novell.com>
17638         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
17639         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17640         create a temporary signature container.
17641         (mono_metadata_parse_generic_param): Update to changes.
17642         (mono_type_create_from_typespec_full): Update to changes.
17643         * loader.c (method_from_memberref): Don't use a
17644         MonoGenericContainer while parsing a memberref signature.
17645         (method_from_methodspec): Remove dead-store of the 'container'
17646         variable.  It's overwritten before use.
17648         * metadata.c (mono_type_create_from_typespec_full): Make debugging
17649         checks tighter.
17650         (mono_metadata_parse_generic_param): Likewise.
17651         * loader.c (find_method_in_class): Does not need a
17652         MonoGenericContainer.  Use 'mono_method_signature' rather than
17653         'mono_method_signature_full'.
17654         (find_method, mono_get_method_constrained, method_from_memberref):
17655         Update to changes.
17657         * metadata.c (mono_type_create_from_typespec_full): Ensure that
17658         owner-less generic-parameters are never evicted from the typespec
17659         cache.
17661         * loader.c (method_from_memberref): Don't use the current context
17662         when parsing signatures.
17663         (method_from_methodspec, mono_get_method_from_token): Update to changes.
17665         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
17666         side-effects in g_assert.
17667         * loader.c (mono_get_method_from_token): Resolve klass earlier so
17668         that we don't potentially lose information.
17670 2005-11-26  Dick Porter  <dick@ximian.com>
17672         * icall.c:
17673         * threads.c: icalls to implement basic (ie, not named)
17674         System.Threading.Semaphore.
17676 2005-11-24  Dick Porter  <dick@ximian.com>
17678         * process.c
17679         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17680         Use GetProcessId() if it's available.
17682 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
17684         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
17686 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17687             Ankit Jain  <jankit@novell.com>
17689         * loader.c (mono_get_method_from_token): Initialize 'method' field
17690         of all generic parameters before parsing the signature.  Remove
17691         code that "fixed"-up MVAR references.
17693 2005-11-23  Ankit Jain  <jankit@novell.com>
17695         * metadata.c (mono_metadata_has_generic_params):
17696         (mono_metadata_load_generic_param_constraints):
17697         (mono_metadata_load_generic_params): Move duplicate code ...
17698         (mono_metadata_get_generic_param_row): ... here. Returns the
17699         first row-id in GenericParam table for a given owner (token).
17700         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
17701         prototype.
17703 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17704             Ankit Jain  <jankit@novell.com>
17706         * metadata.c (mono_metadata_class_equal): Pass signature_only when
17707         comparing VARs too.
17708         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
17709         type->data.generic_param only if the type is an MVAR.
17710         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
17711         leak owner-less VARs and MVARs into managed space.
17713 2005-11-21  Martin Baulig  <martin@ximian.com>
17715         * class-internals.h
17716         (MonoMethod): Moved the `generic_container' here from
17717         `MonoMethodNormal' since we now also need it for
17718         `MonoMethodPInvoke';
17719         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
17720         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
17721         an union containing both `MonoMethodNormal' and
17722         `MonoMethodPInvoke'.
17724         * loader.c
17725         (mono_get_method_from_token): Allow implementing generic methods
17726         as interncalls.
17728         * threads.c
17729         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
17730         icall.
17732 2005-11-17  Dick Porter  <dick@ximian.com>
17734         * icall.c: 
17735         * process.h: 
17736         * process.c: Split the Process Start_internal icall into
17737         ShellExecuteEx_internal and CreateProcess_internal, which are
17738         called depending on whether UseShellExecute is true.  Fixes bug
17739         76670.
17741         * appdomain.c (MONO_CORLIB_VERSION): Incremented
17743 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
17745         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
17746         'msize' parameters, use the information in 'mspec' instead.
17747         (emit_object_to_ptr_conv): Ditto.
17749         * marshal.c (emit_struct_conv): Handle explicit layout structs with
17750         fields out of order. Fixes #76733.
17752 2005-11-17  Ankit Jain  <jankit@novell.com>
17754         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
17756 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
17758         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
17759           bug #76575.
17761 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17763         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
17764         for types with non-auto layout. Fixes #76717.
17766 2005-11-16  Ankit Jain  <jankit@novell.com>
17768         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
17769         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
17770         if generic_context is null.
17771           (mono_metadata_generic_param_equal): param->owner can be null.
17772           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
17773         null.
17775 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17777         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
17778         the correct value.
17780 2005-11-15  Martin Baulig  <martin@ximian.com>
17782         * object.c (set_value): Use mono_class_from_mono_type() instead of
17783         the hack for generic instances; fixes #76136.
17785 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
17787         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
17788         fields.
17790         * image.c (load_metadata_ptrs): Initialize the new fields.
17792         * reflection.c (create_dynamic_mono_image): Ditto.
17794         * reflection.c (build_compressed_metadata): Use the new fields.
17796         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
17797         icall.
17799         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
17800         icall.
17801         
17802 2005-11-15  Ankit Jain  <jankit@novell.com>
17803             Raja R Harinath  <harinath@gmail.com>
17805         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
17806         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
17807         new per-generic_container cache if the cached MonoType's context matches
17808         the current context.
17809           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
17810         to the expected context.
17811           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
17813 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17815         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
17816         we changed the signature of an icall.
17817         * icall.c: Modify to mono_double_ParseImpl return true/false 
17818         depending on the success, instead of throwing the exception. This will
17819         help us in Double.TryParse methods.
17820         
17821 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
17823         * marshal.c (emit_marshal_object): Throw an exception when
17824         marshalling 'object' instead of crashing. Fixes #76696.
17826 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17828         * class-internals.h: Add prototype for mono_type_get_full_name ().
17830 2005-11-11  Dick Porter  <dick@ximian.com>
17832         * threads.c (mono_thread_manage): Make sure the main thread has
17833         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
17835 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17837         * loader.c (mono_loader_set_error_type_load): Log a warning to the
17838         console about the missing type.
17839         (mono_loader_set_error_method_load): Ditto.
17841 2005-11-09  Miguel de Icaza  <miguel@novell.com>
17843         * mono-config.c (mono_get_config_dir): Set the system defaults if
17844         none is specified.
17846         * assembly.c (mono_set_dirs): New API entry point to set the
17847         assembly and the config directory in one call
17849 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
17851         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
17852         the ftnptr was created from a delegate in a domain other than the
17853         current domain. Fixes #75377.
17855         * exception.h exception.c: Add mono_get_exception_not_supported ().
17857 2005-11-08  Martin Baulig  <martin@ximian.com>
17859         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
17861 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
17863         * security-manager.h: Added definitions to deal with strongname key 
17864         pairs bigger (and smaller) than 1024 bits.
17865         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
17866         adjust wrt the public key length being used.
17868 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
17870         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
17871           Windows build (r51396-51397).
17873 2005-11-03  Martin Baulig  <martin@ximian.com>
17875         * class.c (mono_class_setup_vtable_general): Also add generic
17876         methods to the vtable; fixes #76581.
17878 2005-11-01  Miguel de Icaza  <miguel@novell.com>
17880         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
17881         sure that we lookup GetString method from the System.Text.Encoding
17882         class, not the derived class or we get an empty method.
17884         Fixed class #76612.
17886 2005-10-25  Miguel de Icaza  <miguel@novell.com>
17888         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
17889         if it has been previously set (embedders). 
17891         Make mono_set_rootdir available also on Unix.
17893 005-10-24  Robert Jordan  <robertj@gmx.net>
17895         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
17897 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17899         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
17900         only calls which are made to native code use this flag.
17902         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
17904 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
17906         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
17907         Add support for FieldBuilders.
17909 2005-10-29  Martin Baulig  <martin@ximian.com>
17911         * mono-debug.c
17912         (mono_debug_using_mono_debugger): New public method; returns
17913         whether we're running inside the debugger.
17915 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
17917         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
17918         for Method/Constructor/FieldBuilders.
17920 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
17922         * reflection.c (module_add_cattrs): Save custom attributes for global methods
17923         and fields as well.
17925 2005-10-26  Martin Baulig  <martin@ximian.com>
17927         * mono-debug-debugger.c
17928         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
17930 2005-10-24  Raja R Harinath  <harinath@gmail.com>
17932         * icall.c (base64_to_byte_array): Don't pass an out-of-range
17933         integer to isspace.
17935 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
17937         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
17938         when passing valuetypes byref. Fixes #76502.
17940 2005-10-19  Jackson Harper  <jackson@ximian.com>
17942         * profiler.c: Don't put a . in front of types that are not in a
17943         namespace.
17945 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
17947         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
17949 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
17951         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
17952         #76436.
17953         (mono_marshal_get_ldflda_wrapper): Fix a warning.
17955 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17957         * assembly.c metadata-internals.h icall.c: Define an additional
17958         parameter for mono_assembly_name_parse_full, so we can avoid creating
17959         S.R.AssemblyName.Version when no version info wasn't passed.
17960         
17961 2005-10-09  Miguel de Icaza  <miguel@novell.com>
17963         * class.c (mono_type_get_full_name): Reimplement method that was
17964         removed. 
17966         * image.c: Some docs
17968 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
17970         * profiler.c (output_newobj_profile): Fix printing of Total memory
17971         on x86.
17973 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17975         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
17977 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
17979         * threads.c: remove debug output.
17981 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
17983         * threads.c (mono_thread_manage): Fix crashes if more than 64
17984         threads need to be aborted. Hopefully fixes #75899.
17986         * assembly.c (mono_stringify_assembly_name): New helper function.
17988         * class.c: Use mono_stringify_assembly_name instead of the similar
17989         static function.
17991         * assembly.h assembly.c: Add support for calling a postload search 
17992         hook if an assembly cannot be loaded.
17994         * appdomain.c: Register new search hooks which call the AssemblyResolve
17995         events in AppDomain. Fixes #75231
17997 2005-10-07  Martin Baulig  <martin@ximian.com>
17999         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18000         methods without debug info.
18002 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18004         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18005         wrappers.
18007 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18009         * file-io.c: now that we return symlinks, use lstat and, when the file
18010         is a symbolic link, stat, to get the file attributes. Also avoid the
18011         conversion to/from utf16/external.
18013 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18015         * class.c (mono_class_layout_fields): Compute klass->has_references
18016         correctly if an embedded valuetype is not yet initialized. Fixes
18017         #76331.
18019 2005-10-04  Martin Baulig  <martin@ximian.com>
18021         * metadata.c
18022         (mono_metadata_load_generic_param_constraints): New public
18023         function; splitted the constraints loading out from
18024         mono_metadata_load_generic_params().
18026         * class.c (mono_class_create_from_typedef): Call
18027         mono_metadata_load_generic_param_constraints() after setting up
18028         the type and creating our parent; fixes #75329.
18030 2005-10-04  Martin Baulig  <martin@ximian.com>
18032         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18033         non-dynamic parent classes.
18035 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18037         * file-io.c : win32 build fix (ETXTBSY seems not found).
18039 2005-10-04  Martin Baulig  <martin@ximian.com>
18041         * reflection.c
18042         (mono_image_get_methodspec_token): Make the cache actually work;
18043         fixes #75974.
18045 2005-10-04  Martin Baulig  <martin@ximian.com>
18047         * class.c (mono_class_name_from_token): Removed the unneccessary
18048         `MonoGenericContext *' argument.
18050 2005-10-04  Martin Baulig  <martin@ximian.com>
18052         * loader.c
18053         (method_from_methodspec): Make the caching work again; fixes the
18054         performance regression from #76262.
18056 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18058         * file-io.c:
18059         * file-io.h:
18060         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18061         GetFileSystemEntries that performs the same work but without going
18062         into io-layer, locking, etc.
18064 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18066         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18067         ThreadState_Stopped as well. Fixes #76047.
18069 2005-09-29  Martin Baulig  <martin@ximian.com>
18071         * class.c
18072         (inflate_generic_context): If the new context has a `gmethod', set
18073         its `container' that that gmethod's `container'.
18075         * metadata.c
18076         (mono_metadata_parse_generic_param): Simplify things;
18077         `generic_container = generic_context->container;' is just fine.
18079         * loader.c (method_from_methodspec): Code cleanups.
18081 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18083         * decimal.c: fix warning (and let gcc generate correct
18084         code on ARM with optimizations).
18086 2005-09-28  Martin Baulig  <martin@ximian.com>
18088         * loader.c
18089         (method_from_memberref): Added `MonoGenericContext *class_context'
18090         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18091         (method_from_methodspec): If we're a memberref, use the enclosing
18092         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18094 2005-09-28  Martin Baulig  <martin@ximian.com>
18096         * object.c (mono_runtime_invoke_array): Added support for
18097         MONO_TYPE_GENERICINST; fixes #75917.
18099 2005-09-27  Martin Baulig  <martin@ximian.com>
18101         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18102         `k->byval_arg.type' to determine the actual type.
18104         * loader.c (method_from_methodspec): Removed some hacks.
18106 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18108         * class-internals.h (mono_field_is_deleted): Do the test for
18109         rtspecialname before we check the actual name of the field. This
18110         prevents us from dereferencing a pointer into the string table,
18111         saving us from accessing a few pages
18113         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18114         macros. This will allow a deadlock debugger to easily be plugged
18115         in.
18117 2005-09-27  Martin Baulig  <martin@ximian.com>
18119         * loader.c (method_from_methodspec): Create a "signature"
18120         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18122 2005-09-27  Martin Baulig  <martin@ximian.com>
18124         * class.c
18125         (inflate_generic_class): Correctly set the new context's
18126         container.
18128         * loader.c
18129         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18130         instead of a `MonoGenericContext *'.
18131         (mono_method_signature_full): Take a `MonoGenericContainer *'
18132         instead of a `MonoGenericContext *'.
18134         * metadata.c
18135         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18136         instead of a `MonoGenericContext *'.
18137         (mono_metadata_parse_method_signature_full): Likewise.
18139 2005-09-26  Martin Baulig  <martin@ximian.com>
18141         * class.c
18142         (mono_class_from_generic_parameter): Set `klass->generic_container'
18143         (mono_class_from_generic_parameter): Likewise.
18144         (mono_bounded_array_class_get): We inherit the generic container
18145         from the element class.
18147         * loader.c
18148         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18149         argument rather than computing it here.
18150         (method_from_memberref): Correctly set the generic context before
18151         parsing the signature.  Fixes #75681.
18153 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18155         * object.c (mono_class_has_special_static_fields): Fix warnings.
18157 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18159         * assembly.c: Add parse_public_key function, to
18160         par the public keys. Also added mono_assembly_name_parse_full,
18161         to define it the parsed key should be freed or not.
18162         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18163         to parse a long format assembly name.
18164         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18165         private, since calling it to preserve the key requires
18166         freeing it manually.
18167         
18168 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18170         * locales.c : removed HAVE_ICU part.
18172 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18174         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18175         field_is_special_static if the klass has no special static fields.
18177         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18178         (MonoCachedClassInfo): Likewise.
18180         * object.c (mono_class_has_special_static_fields): New helper function.
18182 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18184         * class.c (mono_class_create_from_typedef): Don't call 
18185         interfaces_from_typedef_full for enums.
18186         (mono_class_create_from_typedef): Compute the base types of enums directly
18187         without calling mono_class_setup_fields ().
18188         (mono_class_find_enum_basetype): New helper function.
18190         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18191         one place inside the string heap.
18192         
18193 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18195         * class.c: locking fixes, code cleanups, some docs added.
18196         Allocate some data structures in the image mempool.
18198 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18200         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18201         the example code.
18202         
18203 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18205         * class-internals.h, class.c, reflection.c: reduce memory taken by
18206         MonoClass.
18208 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18210         * metadata.c, metadata.h, loader.h: documentation updates, code and
18211         API cleanups.
18213 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18215         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18216         the example code.
18218         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18219         page faults caused by the runtime while reading metadata.
18221 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18223         * socket-io.c: the field names were changed 3 months ago and no one
18224         realized until bug #76077 got filed!
18226 2005-09-20  Martin Baulig  <martin@ximian.com>
18228         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18230 2005-09-20  Martin Baulig  <martin@ximian.com>
18232         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18233         write the rank into the class entry.
18235 2005-09-20  Martin Baulig  <martin@ximian.com>
18237         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18239 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18241         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18243         * icall.c (custom_attrs_defined_internal): New icall.
18245         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18246         function.
18247         (mono_custom_attrs_construct_by_type): New helper function.
18249 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18251         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18252         terminate the resulting string. Fixes #76123.
18254 2005-09-16  Martin Baulig  <martin@ximian.com>
18256         * mono-debug.c
18257         (mono_debug_add_method): Ignore inflated methods for the moment.
18259 2005-09-14  Martin Baulig  <martin@ximian.com>
18261         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18263 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18265         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18266         return a success/failure indication.
18267         (mono_metadata_interfaces_from_typedef_full): Ditto.
18268         (get_constraints): Ditto.
18270 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18272         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18273         
18274         * marshal.c (emit_marshal_array): Add support for returning string
18275         arrays from delegates. Fixes #76063.
18277         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18279 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18281         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18282         icall.
18284 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18286         * reflection.c icall.c: Fix after mono_get_exception_type_load
18287         signature change.
18289         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18290         (mono_assembly_load_reference): Use the new helper.
18292         * class-internals.h (MonoLoaderError): New structure containing 
18293         information about type loading errors.
18295         * class-internals.h loader.c: Add APIs to store per-thread loader
18296         error information.
18298         * loader.c class.c: Set the loader error if needed.
18300         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18302 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18304         * decimal.c: fixed to handle the broken ARM fp format.
18306 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18308         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18309         broken.
18311 2005-09-06  Martin Baulig  <martin@ximian.com>
18313         * domain.c (supported_runtimes): Added v2.0.50727.
18315 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18317         * culture-info.h: reduce the size of some structures.
18319 2005-09-05  Martin Baulig  <martin@ximian.com>
18321         Reflect latest API changes in the August CTP.
18323         * icall.c
18324         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18325         ("MonoType.HasGenericArguments"): Removed.
18326         ("MonoMethod.BindGenericParameters"): Renamed to
18327         "MakeGenericMethod".
18328         ("MethodBuilder.BindGenericParameters"): Renamed to
18329         "MakeGenericMethod".    
18331 2005-09-05  Martin Baulig  <martin@ximian.com>
18333         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18335 2005-09-05  Martin Baulig  <martin@ximian.com>
18337         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18339         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18340         generic_container is non-NULL.
18342 2005-09-05  Martin Baulig  <martin@ximian.com>
18344         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18346         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
18348 2005-08-29  Michal Moskal  <malekith@nemerle.org>
18350         * reflection.c (encode_locals,
18351         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
18352         for large generic types.
18354 2005-09-05  Martin Baulig  <martin@ximian.com>
18356         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18358         * class.c (mono_dup_array_type): New public method.
18359         (mono_metadata_signature_deep_dup): New public method.
18360         (dup_type): Correctly duplicate array and function types.
18362 2005-09-05  Martin Baulig  <martin@ximian.com>
18364         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18366         * reflection.c (get_default_param_value_blobs): Handle generic types
18367         and generic methods.
18369 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
18371         * class.c: Fixed error reporting (method/class were inversed) for 
18372         inheritance demands.
18373         * security-manager.c|h: Added the AppDomain when calling the managed
18374         System.Security.SecurityManager.InheritanceDemand method.
18376 2005-09-01  Raja R Harinath  <rharinath@novell.com>
18378         * reflection.c (encode_marshal_blob): 'marshaltype' and
18379         'marshaltyperef' are alternate sources for the custom marshaler
18380         name.
18382 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
18384         * class.c: fix creation of array classes with rank == 1
18385         (patch by Ankit Jain <jankit@novell.com>).
18387 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
18389         * object.c: fix check for creating the bound data for arrays vs
18390         szarrays.
18392 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18394         * object.c: configuration file name is now based on the executable name,
18395         not the image name. Fixes bug #75931.
18397 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18399         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
18400         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
18402 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18404         * rand.c: Use wincrypt.h instead of WinCrypt.h.
18406 2005-08-24  Ankit Jain  <jankit@novell.com>
18407             Raja R Harinath  <rharinath@novell.com>
18409         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
18410           called by it recursively.
18411           (mono_class_init): Remove special case in pending_init handling, since it's
18412           superseded by the fix to mono_class_from_typeref.
18414 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18416         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
18417         BROKEN_THREAD_START stuff.
18419 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18421         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
18422         trampoline.
18424         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
18425         
18426         * object.c (mono_delegate_ctor): Replace the original function address with
18427         a delegate trampoline.
18429 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
18431         * icall.c: add boolean argument to base64_to_byte_array and 
18432         InternalFromBase64String to control whether a whitespace-only string
18433         is allowed (or should casue a FormatException to be thrown). We need
18434         this as the behavior has changed between MS.NET 1.x and 2.0, and we
18435         to match the MS behaviour in both profiles.
18436         * appdomain.c: Bump corlib version.
18438 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18440         This patch implements a big portion of publisher policy
18441         support, used to bind assembly versions and redirect
18442         one assembly from version A to version B.
18444         * assembly.c:
18445         New GSList loaded_assembly_bindings, for storing the cached
18446         assembly bindings.
18447         (assembly_binding_maps_name): New static function for checking if a 
18448         assembly binding information maps an assembly name.
18449         (mono_assembly_binding_info_free): New function for freeing
18450         assembly binding information resources.
18451         (get_publisher_policy_info): New static function for retrieving 
18452         assembly binding information from a MonoImage.
18453         (compare_versions): New static function for comparing an assembly
18454         binding information data and the version of an assembly name.
18455         (check_policy_versions): New static function for checking if an
18456         assembly binding info mapping an assembly name is valid for it.
18457         (mono_assembly_load_publisher_policy): New static function for
18458         loading the 'policy.major.minor.MyAssembly' image for an assembly
18459         with an assembly name 'aname'.
18460         (mono_assembly_bind_version): New static function for updating
18461         assembly redirection.
18462         (mono_assembly_apply_binding): New static function for applying
18463         assembly binding.
18464         (search_binding_loaded): New static function for searching 
18465         loaded assembly binding infos in the cache domain.
18466         (mono_assembly_load_full): Don't apply assembly binding for
18467         reflection only assemblies.
18469         * metadata-internals.h: Add MonoAssemblyBindingInfo,
18470         which contains information about assembly binding. Also
18471         declare signature for mono_config_parse_publisher_policy ()
18472         function, used to retrieve pub policy info.
18473         
18474         * mono-config.c:
18475         (publisher_policy_start): New static function used to parse publisher 
18476         policy config files.
18477         (publisher_policy_parser): New static MonoParseHandler containing 
18478         the functions used when parsing config files.
18479         (mono_config_parse_publisher_policy): New function for parsing
18480         publisher policy files.
18481         
18482 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18484         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
18486         * marshal.c (mono_delegate_free_ftnptr): Ditto.
18488         * object.c (mono_get_addr_from_ftnptr): New helper function.
18490         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
18492         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18494 2005-08-19  Dick Porter  <dick@ximian.com>
18496         * threads.c, threads.h, appdomain.c, appdomain.h,
18497         profiler-private.h, monitor.c, object.c, object-internals.h,
18498         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
18499         store the thread ID, so it can hold a 64 bit value if needed.
18501 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18503         * reflection.c (mono_reflection_create_dynamic_method): Store the
18504         handle class into the method references as well so ldtoken works in
18505         dynamic methods.
18507         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
18508         types.
18510 2005-08-19  Ankit Jain <jankit@novell.com>
18512         Fix #75847.
18513         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
18514           here rather than using the method signature of a arbitrary function
18515           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
18516           two arguments.
18517           Hack done with Harinath.
18519 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18521         * threadpool.c: disable printing stack traces when we get a exception
18522         in a threadpool thread. I need to do more testing to figure out which
18523         cases actually print this. Fixes bug #75828.
18525 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18527         * icall.c: there might be ignored whitespace after the last '='. This
18528         fixes length computation and bug #75840.
18530 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
18532         * assembly.c (mono_assembly_load_full): Consider .exe extension as
18533         well. Fixes #75809.
18535         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
18536         #75784.
18537         
18538         * reflection.c (create_custom_attr_data): Ditto.
18540 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
18542         * locales.c, culture-info.h : removed RegionLCIDMap.
18543         * culture-info-tables.h : regenerated.
18545 2005-08-16  Martin Baulig  <martin@ximian.com>
18547         * class.c (mono_type_get_name_recurse): Small fix.
18549 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
18551         * locales.c : indentation fixie.
18553 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
18555         * object-internals.h,
18556           locales.h,
18557           locales.c,
18558           culture-info.h,
18559           icall.c : added RegionInfo table support.
18560         * culture-info-table.h : regenerated for region support.
18562 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
18564         * reflection.c (resolve_object): handle all kinds of MonoMethod
18565         including generic ones
18567 2005-08-12  Ankit Jain <jankit@novell.com>
18569         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
18570           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
18572 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
18574         * process.c: Don't close a thread handle when it's NULL. This is a
18575         workaround for bug #75733.
18577 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18579         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
18581 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
18583         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
18585 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18587         * threadpool.c: if a work item in the thread pool has a callback that
18588         catches a exception, don't propagate it after invoking the callback.
18589         Fixes bug #75336.
18591 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18593         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
18595         * class-internals.h (MonoCachedClassInfo): Add some new fields.
18597         * class.c (mono_class_init): Load field info lazily in the AOT case.    
18599         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
18601 2005-08-03  Ankit Jain  <jankit@novell.com>
18603         Fix #75683.
18604         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
18605           PInvoke calling convention is 0.
18607 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
18609         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
18610         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
18612 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
18614         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
18615         to handle threads not started by the GC (patch by Michael Meeks
18616         <michael.meeks@novell.com>).
18618 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
18620         * reflection.c: Make buffer used in emitting types larger for some
18621         big generic types (patch by Michal Moskal).
18623 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
18625         * mono-debug.c: Fix some (not all) alignment problems.
18627 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18629         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
18630         Invoke mono_image_load_from_data_full passing the refonly
18631         parameter.
18633         * assembly.c
18634         (mono_assembly_open_from_bundle): Add the refonly argument, 
18635         in order to pass it to other methods it calls to.
18636         (do_mono_assembly_open): Add the refonly argument, in order 
18637         to pass it to other methods it calls to.
18638         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
18639         the refonly parameter to it.
18641         * image.c: Add loaded_images_refonly_hash and
18642         loaded_images_refonly_guid_hash to cache the reflection
18643         only loaded images.
18644         (mono_images_init): Initialize the hash tables used for
18645         caching the reflection only images.
18646         (load_modules): Invoke mono_image_open_full passing the refonly
18647         parameter to load the modules the correct way.
18648         (build_guid_table): Add the refonly argument, to re-build the 
18649         correct hash table.
18650         (do_mono_image_open): Added the refonly argument, in order to
18651         define it for the loaded image.
18652         (mono_image_loaded_full): New function, which receives an
18653         additional parameter to look for the image in the refonly or
18654         non-refonly section.
18655         (mono_image_loaded): Updated, using mono_image_loaded_full.
18656         (mono_image_loaded_by_guid_full): The same case that happens
18657         with mono_image_loaded_full.
18658         (mono_image_loaded_by_guid): Likewise.
18659         (register_image): Use the ref_only variable inside MonoImage
18660         to decide in which hash table store the current image.
18661         (mono_image_open_from_data_full): Rename
18662         mono_image_open_from_data to mono_image_open_from_data_full,
18663         adding the refonly argument, to define the ref_only variable 
18664         inside MonoImage.
18665         (mono_image_open_from_data): Return 
18666         mono_image_open_from_data_full.
18667         (mono_image_open_full): Rename mono_image_open to
18668         mono_image_open_full, receiving the new refonly argument,
18669         to pass it to inner methods.
18670         (mono_pe_file_open): Update this function, to open
18671         a MonoImage as a non-refonly image.
18672         (mono_image_close): Use the refonly variable inside
18673         MonoImage to remove the image from the correct caches.
18675         * image.h: Add the signatures of mono_image_open_full,
18676         mono_image_open_from_data_full, mono_image_loaded_full,
18677         mono_image_loaded_by_guid_full.
18679         * metadata-internals.h: Add the ref_only field to 
18680         MonoImage.
18681         
18682 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18684         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
18685         Fix the last behavior, which used to load the assemblies and
18686         extract MonoReflectionAssemblyName information, instead of
18687         extract it from the metadata tables. Needed for Reflection
18688         Only assemblies.
18689         
18690 2005-07-29  Martin Baulig  <martin@ximian.com>
18692         * mono-debug-debugger.c
18693         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
18694         not initialized.
18696         * mono-debug.c
18697         (mono_debug_address_from_il_offset): Check whether we have
18698         debugging support before attempting to take the lock.
18699         (mono_debug_source_location_from_address): Likewise.
18700         (mono_debug_source_location_from_il_offset): Likewise.
18701         (mono_debug_il_offset_from_address): Likewise.
18702         (mono_debug_address_from_il_offset): Likewise.
18704 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
18706         * class.c (mono_class_from_name_case): Add support for dynamic images.
18707         Fixes #75650.
18709         * object.c (mono_class_compute_gc_descriptor): Add a workaround
18710         for #75479.
18712 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18713         
18714         * reflection.c (mono_method_get_object): Fix warning.
18716 2005-07-28  Martin Baulig  <martin@ximian.com>
18718         * mono-debug.c
18719         (mono_debug_add_wrapper): Also write the wrapper type.
18721 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18723         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
18724         
18725         * class.c (mono_class_init): Avoid reading nested classes if the AOT
18726         data indicates the class has none.
18728 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
18730         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
18731         loader lock with the debugger lock. Prevents deadlocks for beagle.
18733         Beagle can now run on an smp box for a weekend without any
18734         issues. Woohoo!
18736 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
18738         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
18739         in a module. Fixes #75629.
18741 2005-07-26  Martin Baulig  <martin@ximian.com>
18743         * mono-debug.c (mono_debug_add_wrapper): New static method.
18744         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
18745         interncall or a wrapper.
18747         * mono-debug.h (MonoDebugWrapperData): New public typedef.
18748         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
18749         (MONO_DEBUGGER_VERSION): Bump to 51.
18751         * mono-debug-debugger.c
18752         (mono_debugger_add_type): Removed this empty function.
18753         (mono_debugger_add_method): Likewise.
18755 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
18757         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
18758         before accessing method->slot.
18760 2005-07-21  Jb Evain  <jbevain@gmail.com>
18762         * reflection.c (method_encode_clauses/class): Handle filters clauses.
18763         Fixes #75010.
18765 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
18767         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
18768         #75587.
18770 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18772         * image.h image.c: Add mono_image_get_guid () API function.
18774 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
18776         There were issues when multiple threads tried to load
18777         assemblies. A deadlock was created between assemblies_mutex and
18778         mono_domain_assemblies_lock. This fixes the issue by making the
18779         assembly ref counting be lock free. See bug 75586.
18780         
18781         * image.c (mono_image_close): The add ref function here was using
18782         Interlocked operations while the unref was using a mutex and a
18783         --. I don't think this was ever a bug that would be exposed in a
18784         non-pendantic way (ie, by an embedder doing a ref on one thread
18785         and an unref on another), but for the sake of correctness, this is
18786         now Interlocked.
18788         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
18789         (mono_assembly_load_reference): Call mono_assembly_addref rather
18790         than touching the refcount ourselves.
18791         (mono_assembly_close): Use InterlockedDecrement to unref the
18792         assembly. Don't acquire the lock unless it is actually needed.
18794 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18796         * class.c (mono_class_layout_fields): Fix calculation of has_references
18797         for generic types.
18799 2005-07-12  Martin Baulig  <martin@ximian.com>
18801         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18803         * metadata.c
18804         (mono_type_hash): Provide better hashing for generic instances.
18805         (mono_generic_inst_hash): Improve hashing.
18806         (mono_generic_class_hash): Likewise.
18808         * reflection.c (mymono_metadata_type_hash): Improve hashing for
18809         generic instances.
18811 2005-07-12  Martin Baulig  <martin@ximian.com>
18813         * reflection.c (mono_reflection_create_runtime_class): Remove the
18814         hack for generic type definitions and non-`Run' assemblies.
18815         (mono_reflection_bind_generic_parameters): Also use
18816         `klass->wastypebuilder' to check for TypeBuilders.
18818 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18820         * class.c (mono_class_layout_fields): Fix calculation of has_references
18821         for generic types.
18823         * class.c (inflate_generic_class): Fix a leak.
18824         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
18825         for generic types.
18827 2005-07-11  Martin Baulig  <martin@ximian.com>
18829         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
18830         on error.
18832 2005-07-11  Martin Baulig  <martin@ximian.com>
18834         * loader.c (find_method): Also lookup in
18835         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
18837 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18839         * appdomain.c (mono_domain_unload): Don't free the error message
18840         before passing it to mono_get_exception_...
18842         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
18843         
18844 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
18846         * threads.c: try to better guess an available RT signal (bug #75387).
18848 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18850         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
18851         and CACHE_OBJECT.
18853 2005-07-07  Martin Baulig  <martin@ximian.com>
18855         * class.c (mono_type_get_name_full): Return NULL for
18856         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
18857         fixes #75408.
18859 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18861         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
18862         exit the appdomain as well being aborted.
18864         * threadpool.c: Create all threadpool threads inside the root appdomain, and
18865         change back to the root domain after calling managed code. This enables
18866         appdomains using threadpools to be unloaded.
18868 2005-07-07  Martin Baulig  <martin@ximian.com>
18870         * class-internals.h
18871         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
18872         into `MonoDynamicGenericClass' since we only need it for dynamic
18873         types.
18875         * reflection.c (mono_class_bind_generic_parameters): We don't need
18876         to compute the `parent' here.
18878 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
18880         * culture-info-table.h : regenerated.
18882 2005-07-06  Martin Baulig  <martin@ximian.com>
18884         * icall.c
18885         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
18887         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
18889 2005-07-06  Martin Baulig  <martin@ximian.com>
18891         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
18892         we're doing a signature-only comparision; fixes #74945.
18894 2005-07-06  Martin Baulig  <martin@ximian.com>
18896         * class-internals.h (MonoGenericClass): Moved some things out into
18897         a new `MonoInflatedGenericClass' type.  
18898         (MonoInflatedGenericClass): New type; the `klass' of a
18899         `MonoGenericClass' is now computed lazyly in
18900         mono_get_inflated_generic_class().      
18902         * class.c (mono_get_inflated_generic_class): New public function.
18903         (mono_class_inflate_generic_method): Removed the unused
18904         `MonoClass *' argument.
18905         (setup_generic_vtable): Don't call mono_get_inflated_method() on
18906         all the methods.
18907         (mono_class_create_generic): Make this static and merge it with
18908         mono_class_create_generic_2(); we're now called automatically from
18909         mono_get_inflated_generic_class().
18911         * loader.c (mono_method_signature): Call
18912         mono_get_inflated_method() here.
18914 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
18916         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
18917         type of fields with RVA.
18919         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
18920         for this pseudo class.
18921         (my_mono_class_from_generic_parameter): Likewise.
18922         (mono_class_init): Allow interfaces to have cctors.
18924 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18926         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
18927         lazily for AOT methods.
18929 2005-07-05  Martin Baulig  <martin@ximian.com>
18931         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
18932         returns FALSE for a successful match, not TRUE.
18934 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18936         * loader.c (mono_method_get_index): Optimize this a bit.
18938 2005-07-04  Martin Baulig  <martin@ximian.com>
18940         * class.c
18941         (class_compute_field_layout): Move the check for generic type
18942         definitions into mono_class_layout_fields().  Fixes #74684.
18943         (mono_class_from_generic_parameter): Correctly compute
18944         `klass->parent'; fixes #75457.
18946         * reflection.c (register_assembly, register_module): Make sure
18947         `domain->rejobject_hash' is already created.
18949 2005-07-02  Martin Baulig  <martin@ximian.com>
18951         * class-internals.h
18952         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
18953         `MonoDynamicGenericClass'.      
18955 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
18957         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
18958         returned by a field getter is null, since null is a valid value.
18960 2005-07-01  Martin Baulig  <martin@ximian.com>
18962         * reflection.c (mono_reflection_generic_class_initialize): Update
18963         the `dgclass->fields [i].parent' to the correct class.
18964         (mono_image_get_fieldref_token): Use the declaring type, not the
18965         reflected type.
18967 2005-07-01  Martin Baulig  <martin@ximian.com>
18969         * loader.c (find_method): Also look in the interfaces; fixes #75429.
18971 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
18973         * threads.c (thread_cleanup): assert that thread != NULL
18974         (wait_for_tids_or_state_change): We were using the wrong variable
18975         when accessing wait->threads. `i' was always out of the bounds of
18976         the array.
18978 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18980         * loader.c: map user32 and kernel32 to libMonoSupportW
18982 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
18984         * appdomain.c (unload_thread_main): Mark this as WINAPI.
18986 2005-06-28  Martin Baulig  <martin@ximian.com>
18988         * loader.c (method_from_methodspec): Fix #75334.
18990 2005-06-28  Martin Baulig  <martin@ximian.com>
18992         Fix #74953 - Arrays now implement the generic IList<T> interface
18993         on the 2.0 platform.
18995         * class-internals.h (MonoDefaults): Added `generic_array_class'.
18997         * reflection.c (mono_class_bind_generic_parameters): New public
18998         function; similar to mono_reflection_bind_generic_parameters(),
18999         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19001         * domain.c (mono_init_internal): Try to initialize.
19002         `mono_defaults.generic_array_class' here; this'll only succeed if
19003         we're using the 2.0 corlib.
19005         * icall.c
19006         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19007         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19008         (mono_lookup_internal_call): Added support for nested classes.
19010         * loader.c
19011         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19012         we're an interncall and have generic arguments.
19014         * class.c
19015         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19016         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19017         instance of System.Array.InternalArray<T> for arrays, so they
19018         implement the generic IList<T> interface.
19020 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19022         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19023         (chastamar@yahoo.com). Fixes #75374.    
19025 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19027         * culture-info-table.h: regenerated.
19029 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19031         * icall.c: handle spaces correctly for base64 strings.
19033 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19035         * *.c: Kill some warnings.
19037 2005-06-23  Duncan Mak  <duncan@novell.com>
19039         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19040         that this builds on Solaris 10 (x86).
19042 2005-06-23  Martin Baulig  <martin@ximian.com>
19044         * class.c
19045         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19046         generic type definitions.
19048 2005-06-23  Martin Baulig  <martin@ximian.com>
19050         Fix #75331.
19052         * metadata.c (mono_class_get_overrides): Renamed to
19053         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19054         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19055         pass it to mono_get_method_full().
19057 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19059         * reflection.c (mono_reflection_create_runtime_class): take the
19060         mono_domain_lock in this method. Prevents deadlocks
19062 2005-06-22  Martin Baulig  <martin@ximian.com>
19064         * loader.c (method_from_methodspec): Fix #75330.
19066 2005-06-22  Martin Baulig  <martin@ximian.com>
19068         * reflection.c (type_get_qualified_name): Use
19069         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19070         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19071         argument; use it if we don't have an assembly name.
19073 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19075         * object.c: In mono_message_init, set "copy out" flag for in
19076         parameters with the [Out] flag.
19078 2005-06-21  Martin Baulig  <martin@ximian.com>
19080         * class.c
19081         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19082         and MONO_TYPE_PTR.
19084 2005-06-21  Martin Baulig  <martin@ximian.com>
19086         * class.c (mono_class_init): Don't initialize `class->fields' for
19087         generic instances since they're initialized again in
19088         compute_field_layout(). 
19089         (compute_field_layout): Set the field's `generic_info' here; fix
19090         #75320. 
19092 2005-06-21  Martin Baulig  <martin@ximian.com>
19094         * class-internals.h
19095         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19097         * metadata.c (mono_metadata_generic_method_equal): Also
19098         distinguish the `generic_class'; fixes #75334.
19100 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19102         * domain.c:
19103         * appdomain.c:
19104         * domain-internals.h:
19105         * reflection.c: 'domain_assemblies' field is now protected by its own
19106         lock. Don't call into managed code to run the AssemblyLoad event if we
19107         now there are no registered delegates for it.
19109 2005-06-20  Martin Baulig  <martin@ximian.com>
19111         * class.c (mono_class_is_assignable_from): Use a custom version of
19112         mono_class_has_parent() to make things work for generic instances;
19113         fix #75300.
19115 2005-06-20  Martin Baulig  <martin@ximian.com>
19117         * loader.c (method_from_methodspec): Apply a patch from
19118         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19120 2005-06-20  Martin Baulig  <martin@ximian.com>
19122         * class.c (mono_class_init): Reverted Zoltan's last change; it
19123         breaks generics.
19125 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19127         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19129 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19131         * socket-io.c: fix the index in the socket array for writable/error
19132         sockets. Fixes bug #75306.
19134 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19136         * class.c (mono_class_init): Allow interfaces to have static ctors.
19138 2005-06-17  Martin Baulig  <martin@ximian.com>
19140         * loader.c (method_from_methodspec): Use `context->container' when
19141         parsing the `gmethod->inst'.
19143 2005-06-17  Martin Baulig  <martin@ximian.com>
19145         * class.c (mono_type_get_name_recurse): Don't add the assembly
19146         name for type arguments.
19148 2005-06-15  Martin Baulig  <martin@ximian.com>
19150         * reflection.c (mono_image_get_inflated_method_token): Encode
19151         correct klass; fixes #75260.
19153 2005-06-13 Michal Moskal <malekith@nemerle.org>
19155         * icall.c: Make GetCorrespondingMethod/Constructor take
19156         MonoReflectionMethod method not MonoMethod. Removed
19157         MonoType.GetCorrespondingField, and make
19158         MonoGenericType.GetCorrespondingField take name not
19159         MonoClassField.
19161 2005-06-13  Michal Moskal <malekith@nemerle.org>
19163         * reflection.c (field_encode_signature, encode_locals):
19164          Make sizes of buffers for types larger (for big generic types).
19165          (create_generic_typespec,
19166          mono_reflection_sighelper_get_signature_local,
19167          mono_reflection_sighelper_get_signature_field):
19168          Add asserts for too small buffers.
19170 2005-06-15  Martin Baulig  <martin@ximian.com>
19172         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19173         if our parent is not a dynamic type.
19175 2005-06-15  Martin Baulig  <martin@ximian.com>
19177         * class-internals.h (MonoTypeNameFormat): New enum.
19179         * class.c
19180         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19181         (mono_type_get_full_name): Removed.
19182         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19183         argument instead of the boolean's.
19185         * icall.c (ves_icall_System_MonoType_getFullName):
19186         Added `gboolean assembly_qualified'.    
19188         * reflection.h
19189         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19191         * reflection.c (mono_reflection_parse_type): Parse the new type
19192         name format.
19194 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19196         * icall.c: no need to convert from utf16 to utf8 and then back again
19197         after the call to GetLogicalDrives.
19199 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19201         * icall.c: frombase64. Fix problems exposed by new tests.
19203 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19205         * icall.c: added internal calls for converting char [] and strings in
19206         base64 into byte [].
19208 2005-06-10  Martin Baulig  <martin@ximian.com>
19210         * class.c (mono_class_create_generic_2): Read the nested classes
19211         from the metadata rather than from `gklass->nested_classes' since
19212         `gklass' might not be initialized yet.
19214 2005-06-09  Duncan Mak  <duncan@novell.com>
19216         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19217         all public headers. Fixes #74919.
19219 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19221         * domain.c: The key for proxy_vtable_hash is now a pointer
19222         array. Added new GHashFunc and GCompareFunc functions for this.
19224         * class.h: The list of interfaces in MonoRemoteClass is known in
19225         advance and can't grow (we create a new MonoRemoteClass if needed),
19226         so now the interface array can be allocated together with
19227         MonoRemoteClass.
19228         
19229         * object.c: Added a new method create_remote_class_key.
19230         Fixed mono_remote_class so it does not depend on
19231         mono_upgrade_remote_class.
19232         Removed extend_interface_array.
19233         Added new method clone_remote_class(), which makes a copy of a remote
19234         class and adds a new interface or class to it.
19235         mono_upgrade_remote_class() now creates a new remote class (or gets
19236         it from the cache) if an vtable upgrade is needed. In this way
19237         we make sure that other objects sharing the same remote class
19238         don't get the new vtable with unwanted interfaces.
19239         
19240         * object-internals.h:
19241         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19242         
19243         * marshal.c: Track changes in mono_upgrade_remote_class().
19245 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19246         * icall.c: Add runtime methods for obtaining members of inflated
19247         class, which were created from supplied non-inflated members. It
19248         is used in internal Get{Method,Constructor,Field} methods in
19249         System.Type
19251 2005-06-09  Martin Baulig  <martin@ximian.com>
19253         * reflection.c
19254         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19256 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19257         * reflection.c (mono_image_basic_init): Define
19258         Version in MonoDynamicAssembly. 
19259         
19260 2005-06-08  Martin Baulig  <martin@ximian.com>
19262         Fix #75136.
19264         * loader.c
19265         (mono_method_signature_full): New public method; takes a
19266         `MonoGenericContext *'.
19267         (find_method): Use mono_method_signature_full() and pass the
19268         klass'es context to it.
19270         * class.c (mono_class_is_inflated_method): Use
19271         mono_method_signature_full() and pass the context to it.
19273 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19275         * object.c: add proper locking in mono_remote_class_vtable(),
19276         fixes possible memory corruption.
19278 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19280         * marshal.c (mono_remoting_marshal_init): set
19281         initialized after initialization.
19283 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19285         * locales.c : hush.
19287 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19289         * object.c (extend_interface_array): fix really silly
19290         memory corrupting / comparison bug.
19292 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19294         * reflection.c: Functions added to support the creation
19295         of CustomAttributeData, which includes Attribute data
19296         used by ReflectionOnly methods.
19298         * reflection.h:  mono_reflection_get_custom_attrs_data and
19299          mono_custom_attrs_data_construct added (functions exposed).
19301          * icall.c: Added mono_reflection_get_custom_attrs_data
19302          as icall.
19303         
19304 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19306         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19307         lupus's request.
19309 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19311         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19313         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19314         dynamic DllImportAttribute.
19316         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19317         dynamic DllImportAttribute.
19319         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19320         Fixes #75162.
19322 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19324         * threads.c: avoid segfault when an unstarted thread is aborted.
19326 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19328         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19329         Returns the name and version of the runtime for reporting.
19331 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19333         * appdomain.c: bump corlib version.
19334         * object-internals.h: new field in MonoReflectionAssembly.
19336 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19338         * object-internals.h: Carlos forgot to add this field.
19340 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19342         * icall.c: Added create_version to create instances
19343         of Version of MonoReflectionAssemblyName. This change helps
19344         the AssemblyName tests to keep running fine.
19345         
19346 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
19347   
19348         * object.c (mono_method_return_message_restore): A somehow less
19349         intrusive fix for #75138.
19351 2005-06-03  Raja R Harinath  <rharinath@novell.com>
19353         * object.c (mono_method_return_message_restore): Fix computation
19354         of expected number of out args.
19356 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19358         * reflection.c (mono_image_get_method_info): Fix the case when the
19359         charset is empty.
19361 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
19363         * object.c: Added missing null check in
19364           mono_method_return_message_restore.
19366 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19368         * reflection.c (mono_image_get_method_info): Handle the case when
19369         dllentry is empty.
19371 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
19373         * object.c: When creating the vtable for a proxy, take into account
19374         all inherited interfaces, not only the ones registered in
19375         iclass->interfaces. This fixs bug #74996.
19376         Also, in mono_method_return_message_restore, verify that the array
19377         of out args has the expected lengh.
19379 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19381         * socket-io.c: update the timeout in Poll when the call is interrupte.
19383 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19385         * socket-io.c: support abort/suspend in Select_internal after last
19386         change.
19388 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19390         * threadpool.c: remove warning.
19392 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19394         * icall.c:
19395         * socket-io.[ch]: Select_internal uses poll() now when available, thus
19396         removing the 1024 limit from select(). Runtime part of the fix for
19397         bug #71203.
19399 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19401         * socket-io.c: when resolving the addresses for the same
19402         host returned by gethostname(), get the local IPs from the interface
19403         list. Loopback addresses are discarded if the are interfaces up with
19404         non-loopback ones. Fixes bug #63265.
19406 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
19408         * appdomain.c, verify.c, object-internals.h, reflection.c:
19409         bumped corlib number to 36, and added new extra_flags field
19410         to ReflectionMethodBuilder and friends.  Fixes #75060.
19412 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
19414         * gc.c: register a new weak link only if the object is non-null
19415         (fixes bug#75047).
19417 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19419         * culture-info.h : short time pattern too.
19421 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19423         * culture-info.h : expand long time pattern string length.
19425 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19427         * culture-info-table.h : update (more French date format; #72788).
19429 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
19431         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
19432         the method is static. Fixes #75029.
19434 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
19436         * reflection.c: Update the table_idx field of method builders after
19437         saving the module, since it can change. This is a workaround for
19438         bug #74914. 
19440 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19442         * culture-info-table.h : update (additional French date format).
19444 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19446         * icall.c (ves_icall_type_Equals): Revert last change.
19447         
19448         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
19450         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
19452 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
19454         * class-internals.h: Added executioncontext_class field to 
19455         MonoDefaults structure.
19456         * domain.c: Cache System.Threading.ExecutionContext class in 
19457         mono_defaults.
19458         * object.c: Capture the ExecutionContext for asynchroneous calls in
19459          mono_async_result_new.
19460         * object-internals.h: Added execution_context and original_context 
19461         fields to MonoAsyncResult. Added execution_context to MonoThread.
19462         * security-manager.c|.h: Added mono_get_context_capture_method to 
19463         return the capture method (if required by the security manager or by
19464         the framework version used).
19465         * threadpool.c: Apply capture (if present) ExecutionContext in 
19466         mono_async_invoke and revert to original context after it completes.
19468 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
19470         * culture-info-table.h : updated (real hacky solution for zh-CHT).
19472 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
19474         * culture-info-table.h : zh-CHT related workaround.
19476 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19478         * marshal.c (emit_marshal_custom): Add some error checking and call the
19479         methods in the ICustomMarshaler interface. Fixes #74875.
19480         
19481         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
19482         native->managed wrappers.
19484 2005-05-12  Martin Baulig  <martin@ximian.com>
19486         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
19487         here and use the loader lock.
19489         * mono-debug.c: Properly lock when the debugger is not attached.
19490         (mono_debug_init): Release the initial lock if we're not running
19491         in the debugger.
19493 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19495         * marshal.c (emit_marshal_custom): Pass through NULL values without
19496         calling the custom marshalling routines.
19498         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
19499         conversion in structures. Fixes #74882.
19501 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
19503         * culture-info-table.h : zh-* cultures were missing.
19505 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
19507         * threads.c: Added a new event background_change_event which is signaled
19508         when a thread changes its background mode.
19509         Moved here several checks previously done in managed code. The checks
19510         require the thread lock, and using the thread lock in managed code
19511         can result in deadlocks.
19512         Merged Start_internal and Thread_internal into a single method. Now 
19513         Thread_internal does all work of creating and starting a thread.
19514         Added icalls for setting and getting the state of the object. Moved from
19515         managed code to avoid locking there.
19516         Added wait_for_tids_or_state_change() which is called instad of
19517         wait_for_tids when waiting for non-backround threads to end. This method
19518         will return if one of the threads ends or the background_change_event
19519         is signaled.
19520         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
19521         the background mode. This method signals the background_change_event
19522         event.
19523         * icall.c:
19524         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
19525         removed Start_internal.
19526         
19527 2005-05-11  Martin Baulig  <martin@ximian.com>
19529         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
19530         to order of some fields to get proper alignment on 64-bit machines.
19532 2005-05-11  Martin Baulig  <martin@ximian.com>
19534         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
19535         changes as they're broken and completely fuck up the debugger.
19537         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
19539 2005-05-10  Martin Baulig  <martin@ximian.com>
19541         * reflection.c (mono_reflection_generic_class_initialize): Don't
19542         call mono_class_setup_parent() here.
19544 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19546         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
19547         send/receive timeout use an integer in milliseconds. We were using a
19548         struct timeval.
19550 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19552         * locales.c:
19553         (internal_get_cultures): reserve the first slot of the array for the
19554         InvariantCulture, which will be filled in managed code.
19556 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
19558         * reflection.c (mono_image_fill_module_table): Initialize the
19559         GENERATION field as well.
19561 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19563         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
19564         Monitor.Enter on the object.
19566 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19568         * threads.c: Enable the wait for running threads when exiting.
19569         * icall.c: Suspend all threads before exiting.
19571 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19573         * assembly.c (mono_assembly_load_reference): Fix warning.
19575 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19577         * threadpool.c: changed the default number of threads per cpu. From now
19578         on, the default will be 20 + (5 * number of cpus) instead of 50.
19580 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
19582         * loader.c (mono_method_get_signature_full): Add locking here.
19584 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
19586         * appdomain.c: Moved methods for parsing and freeing assembly
19587         names to assembly.c.
19588         * assembly.c, domain-internals.h: Created public methods for parsing
19589         assembly names. Fixed mono_assembly_load_with_partial_name:
19590         it now finds the best match, taking into account the version,
19591         token and culture specified in the partial name. Also return
19592         the latest version if no version information is specified.
19594 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
19596         * threadpool.c: replace check for SocketAsyncCall class.
19598 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19600         * threadpool-internals.h:
19601         * Makefile.am: added threadpool-internals.h
19603         * threadpool.c: call mono_unhandled_exception on exceptions not handled
19604         that happen in threadpool threads (tested on MS).
19605         (mono_thread_pool_remove_socket): new function that dispatch any pending
19606         AIO call on a socket that is closing. By now only epoll really needs it,
19607         as select/poll wake up when the socket closes.
19610         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
19612 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
19614         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
19616 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
19618         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
19620 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
19622         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
19623         has an abort request, convert it into a suspend request.
19625 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
19627         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
19628         warning for the usage of `UnmanagedFunctionPointerAttribute' which
19629         is not supported yet.
19631 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19633         * image.c: register assemblies loaded from data (bundles) in the loaded
19634         assemblies hash. Fixes bug #74772.
19636 2005-04-29  Martin Baulig  <martin@ximian.com>
19638         * class.c (mono_type_get_name_recurse): Update to the new naming
19639         schema from the latest .NET 2.x beta2.
19640         (mono_class_setup_vtable_general): If we're a generic instance,
19641         copy the vtable from our generic type definition and inflate all
19642         the methods in it.
19644         * loader.c (find_method): Update to the new naming schema from the
19645         latest .NET 2.x beta2.
19647 2005-04-29  Raja R Harinath  <harinath@gmail.com>
19649         * class.c (mono_class_init): Add a mono_loader_unlock to the
19650         #74734 fix.
19652 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19654         * icall.c (ves_icall_System_Environment_Exit): Remove the 
19655         suspend_all_other_threads () call for the time being, since it can hang.
19657         * threads.c (mono_thread_manage): Similarly, disable the waiting for
19658         the background threads to exit, since it can also hang.
19660         * class.c (mono_class_init): Applied patch from Ankit Jain 
19661         (radical@gmail.com). Avoid pending init errors when a field refers
19662         to a nested class using a typeref. Fixes #74734.
19664         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
19665         this for dynamic modules.
19667 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19669         * threads.c: don't wait for threads that are in the process of aborting
19670         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
19671         and waiting for background threads to finish. This makes xsp and
19672         mod-mono-server exit without random length delays and/or hangs.
19674 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19676         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
19678 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
19680         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
19681         dynamic types to prevent infinite loops. Fixes #74727.
19683         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
19684         ..._is_assignable_to.
19686 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
19688         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
19690 2005-04-25  Martin Baulig  <martin@ximian.com>
19692         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
19694         * domain.c
19695         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
19697         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
19699         * reflection.c (build_compressed_metadata): Set metadata header
19700         version to 2.0.
19702 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19704         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
19705         number into an integral and a decimal part. Fixes #70473.
19707         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
19709 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
19711         * culture-info-table.h : reflected the latest locale-builder output.
19713 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19715         * threadpool.c: check for SuspendRequested too when deciding if
19716         mono_thread_interruption_checkpoint should be called.
19718 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19720         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
19721         * threads.c: remove interruption_mutex and use Interlocked instead. When
19722         suspending all the threads, wait for all the suspended events at once.
19723         If we're shutting down and get an APC that is going to be queued,
19724         call mono_thread_execute_interruption immediately, as the thread might
19725         be sleeping on a pthread condition or mutex.
19727         * icall.c: call mono_runtime_set_shutting_down before suspending the
19728         threads.
19730         Fixes bug #74693. And now xsp is happier when exiting.
19732 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19734         * loader.c (mono_stack_walk): Fix #74690.
19736 2005-04-22  Martin Baulig  <martin@ximian.com>
19738         * mono-debug.h (MonoDebugMethodJitInfo): Added
19739         `MonoDebugMethodJitInfo *jit'.
19741         * mono-debug.c (mono_debug_read_method): Cache the
19742         MonoDebugMethodJitInfo in `address->jit'.
19743         (mono_debug_free_method_jit_info): New public method.
19745 2005-04-22  Martin Baulig  <martin@ximian.com>
19747         * class.c (mono_class_is_assignable_from): Disallow
19748         type parameter -> interface.
19750 2005-04-21  Dick Porter  <dick@ximian.com>
19752         * threads.c (mono_thread_create): Turn an assertion into an error.
19754 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19756         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
19757         
19758         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
19759         Fix some gcc 4.0 warnings.
19761 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
19763         * file-io.c: fix alt dir separator char on unix systems
19764         and cleanup (fixes bug #71214).
19766 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
19768         * marshal.c: Use CALLVIRT instead of CALL when dispatching
19769         a call to a remote domain, since the method may be an
19770         interface method in the client domain. This fixes bug #74192.
19772 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19774         * threadpool.c: recv/send are now performed before going back to managed
19775         code to save one transition.
19777 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19779         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
19781         * metadata/threadpool.c: removed hack to workaround the bug above.
19783         Fixes bug #74618.
19785 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19787         * reflection.c reflection.h: Fix handling of parameter defaults in
19788         dynamic methods. Also fixes handling of parameter attributes.
19789         Fixes #74609.
19791         * mono-debug.c (mono_debug_close_image): Fix warning.
19793 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19795         * socket-io.h: replaced old unused field with new 'blocking'.
19796         * threadpool.c: restore socket blocking state on windows(tm).
19798 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
19800         * icall.c: don't return the codebase in the AssemblyName[] returned by
19801         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
19802         * object-internals.h: Removed FIXME (fields were presents) and fixed
19803         versioncompat declaration.
19805 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19807         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
19808         not closed, so don't cleanup when it happens.
19810 2005-04-13  Chris Toshok  <toshok@ximian.com>
19812         * mono-debug-debugger.h: change prototype for
19813         mono_debugger_lookup_type.
19815         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
19816         this function, although it should probably be named
19817         mono_debugger_init_type.
19819 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19821         * threadpool.c: fix non-AIO case.
19823 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
19825         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
19826         the built-in profiler to measure just JIT compilation times.
19828 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19830         * threadpool.c: the epollfd might be closed by another thread at
19831         any time, so ignore EBADF at treat it as a "we're closing" sign.
19833 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19835         * threadpool.c: release the semaphores with a count equals to the number
19836         of working threads in both IO and regular pools. Fixed typo that messed
19837         up the count of IO pool threads. Don't initialize the pipe handles if
19838         we're using epoll.
19840 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19842         * threadpool.c: some systems don't like a NULL when deleting the socket
19843         from epoll.
19845 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19847         * threadpool.c: fix semaphore allocation.
19849 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19851         * threadpool.c: added epoll() based implementation for asynchronous IO
19852         that is used instead of the default poll() when available.
19853         It can be disabled by setting MONO_DISABLE_AIO.
19855 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19857         * threadpool.c: windows needs 'closesocket' and instead of returning
19858         0 when the stream is closed while in select, it returns -1. Fixes bug
19859         #74573.
19861 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
19863         * class.c (class_compute_field_layout): Fix the regression caused by
19864         the previous try.
19866 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19868         * threadpool.c: separate pool for socket async. IO.
19869         * threadpool.h: mono_max_worker_threads is not a global any more.
19871 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
19873         * class.c (class_compute_field_layout): Fix #74549.
19875 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19877         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
19878         use 2 connected sockets instead.
19880 2005-04-08  Miguel de Icaza  <miguel@novell.com>
19882         * mono-config.c: Add new entry point for mkbundle
19883         mono_config_parse_memory. 
19885 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19887         * threadpool.c: removed another unused function.
19889 2005-04-08  Ankit Jain  <radical@corewars.org>
19891         * reflection.c (get_default_param_value_blobs): Add 'types'
19892         parameter to get the types encoded in the constant table.
19893         (mono_param_get_objects): Use the type from the constant table,
19894         not the type of the parameter, when creating default values.
19895         Handle null default values correctly.
19897 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19899         * file-io.c:
19900         * file-io.h:
19901         * threadpool.c:
19902         * threadpool.h:
19903         * icall.c:
19904         * socket-io.c: removed dead code for async IO.
19906 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19908         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
19910         * threadpool.c: intercept socket async. calls and pass them to a thread
19911         that is polling and dispatching the job items to the threadpool as
19912         socket become ready. Fixes bugs #71217, #71933.
19914         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
19915         between char and short/ushort arrays.
19917         * socket-io.c: remove dead code.
19919 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19921         * locales.c,
19922           icall.c : removed InternalToUpper_Comp() and
19923           InternalToLower_Comp().
19925 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19927         * char-conversions.h : The tables were incorrectly generated. Should
19928           be generated against invariant culture.
19930 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19932         * object.c (mono_runtime_invoke_array): Fix return value when 
19933         passing pre-created valuetype objects to ctors.
19935         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
19936         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
19937         Fixes #74338.
19939 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
19941         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
19942         only used with --security and hides the wrong corlib version error.
19944 2005-03-30  Joshua Tauberer  <tauberer@for.net>
19946         * class.c: Changed mono_class_name_from_token so that types
19947         outside of a namespace don't have an initial period.  Improved
19948         the g_warning message used in _mono_class_get when loading
19949         fails.
19950         * assembly.c: In mono_assembly_load_reference, when an assembly
19951         can't be found, "No such file or directory" is misleading and
19952         unhelpful because a few paths were checked for the presence of
19953         the assembly.  When that happens (ENOENT), display a nicer
19954         message indicating the directories that were searched.  In all
19955         cases, the warning is made easier to read for non-hackers.
19957 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
19959         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
19960         project/solution.
19961         * appdomain.h|domain.c: Removed inline from functions.
19962         * appdomain.c: Reduced warnings when compiling on windows.
19963         * icall.c: Fixed output_debug declaration to gunichar2*.
19964         * mono-config.c: Reduced warnings when compiling on windows.
19965         * rand.c: Added missing "windows.h". Added missing return value.
19966         * rawbuffer.c: Added missing winsock2.h for windows.
19967         * sysmath.h: Added mono-compiler.h header to allow/ease 
19968         compilation with non-GCC compilers.
19969         * threads.c: Fixed declarations to compile with VS.NET C compiler.
19970         Removed cast warnings.
19972         Adapted from the work of J Lothian (for VC6).
19974 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
19976         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
19977         from default_path.
19979 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
19981         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
19982         the 2.0 profile.
19984 2005-03-27  Raja R Harinath  <harinath@gmail.com>
19986         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
19987         has to be in $(exec_prefix).  $(prefix) is for arch-independent
19988         stuff, and it would probably use $(prefix)/share rather than
19989         $(prefix)/lib.
19991 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19993         * console-io.c: added 2 includes that might be missing.
19995 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
19997         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
19998         profile.
20000         * reflection.c (create_custom_attr): Allocate the params array using
20001         alloca so it gets GC tracking.
20003 2005-03-23  Chris Toshok  <toshok@ximian.com>
20005         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20006         out some spew.
20008 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20010         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20011         changes to pick up any changes in prefix, etc.
20013 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20015         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20016         
20017         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20018         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20020 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20022         * class-internals.h object-internals.h class.c reflection.c: Extend the
20023         mono_lookup_dynamic_token () function to return the class of the
20024         token as well. 
20026         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20027         well. Fixes #73848.
20029 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20031         * security-manager.c: Skip inheritance checks for intra-corlib
20032         class inheritance and method overrides. This skips a lot of checks
20033         and (anyway) permissions cannot work until corlib is loaded.
20035 2005-03-23  Martin Baulig  <martin@ximian.com>
20037         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20038         MONO_TYPE_GENERICINST.  
20040 2005-03-23  Martin Baulig  <martin@ximian.com>
20042         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20044 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20046         * class.c: added locking comments to some functions.
20047         Cache the interface offsets arrays (saves about 20 KB
20048         of runtime memory in a typical app).
20049         Reduce the time overhead in mono_class_setup_supertypes ().
20051 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20053         * icall.c: speedup and fix leaks in GetMethodsByName and
20054         GetPropertiesByName.
20056 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20058         * reflection.c: some locking fixes.
20060 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20062         * metadata.c: added missing break in case statement.
20064 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20066         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20067         typedbyref return values. Fixes #73941.
20069 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20071         * security-manager.c|h: Added demandunmanaged method and 
20072         suppressunmanagedcodesecurity class to MonoSecurityManager.
20073         Renamed aptc class to allowpartiallytrustedcallers.
20075 2005-03-17  Martin Baulig  <martin@ximian.com>
20077         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20079 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20081         * file-io.c: disabled file async. IO using aio_*. It uses the
20082         threadpool now. Workaround for bug #73718.
20084 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20086         * assembly.h, mono-config.c: added code to deal with bundled configs
20087         for bundled assemblies.
20089 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20091         * *.c, private.h: cleanup, removing old private.h header file.
20093 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20095         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20096         and throw_on_unmappable_char attributes.
20098 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20100         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20101         _ProcessName_internal.
20103 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20105         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20106         #73631.
20108         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20109         are no longer used.
20111 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20113         * object.c (compute_class_bitmap): Add support for generics. Fixes
20114         #73527.
20116 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20118         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20120 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20122         * filewatcher.c: commented out the code for windows watcher, as we don't
20123         use it (we use the managed implementation instead).
20125 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20127         * object-internals.h (MonoThread): Remove 'unused1' field.
20129         * appdomain.c: Bump corlib version.
20131         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20133         * reflection.c (mono_reflection_create_runtime_class): Remove the
20134         AssemblyBuilder.Save optimization since it causes too many problems.
20136 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20138         * exception.c|h: Added mono_get_exception_reflection_type_load to
20139         create a ReflectionTypeLoadException object.
20140         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20141         to return NULL is a InheritanceDemand fails during reflection. Updated
20142         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20143         ReflectionTypeLoadException if an InheritanceDemand fails during 
20144         reflection. Added icall mapping for GetLinkDemandSecurity.
20145         * security-manager.c|h: Added ves_icall_System_Security_
20146         SecurityManager_GetLinkDemandSecurity internal call to return the
20147         class and methods permissions set for a LinkDemand. Removed unused
20148         fields in MonoSecurityManager.
20150 2005-03-10  Martin Baulig  <martin@ximian.com>
20152         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20153         it's a generic instance.
20155 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20157         * reflection.c (mono_get_object_from_blob): Applied patch from
20158         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20160         * class.c (mono_class_is_assignable_from): Another try at fixing 
20161         #73469 without breaking anything.
20163 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20165         * class.c: (mono_class_is_assignable_from): Revert the last changes
20166         since they don't work with generics.
20167         
20168         * class.c (mono_class_is_assignable_from): Fix build bustage.
20170         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20171         the managed IsAssignableFrom method. Fixes #73469.
20173         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20174         function.
20176 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20178         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20179         memory when the remoting callback does not sets the out arguments.
20180         Fixes #73007.
20182         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20183         by mistake.
20185         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20187         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20189         * appdomain.c: Bump corlib version.
20191 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20193         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20194         function.
20196         * threads.c (mono_thread_attach): Detect threads which are not started
20197         by the GC pthread wrappers.
20199 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20201         * icall.c: Added new icall for RNG.
20202         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20203         single handle on Linux to access /dev/urandom and fix #73183.
20205 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20207         * object.c: setting the new vtable in a transparent proxy object must
20208         not change the GC descriptor.
20210 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20212         * object.c: fixed compilation without GCJ support.
20213         * reflection.c: for runtime-created types ensure klass->has_references
20214         is correct (bug #73215).
20216 2005-03-02  Martin Baulig  <martin@ximian.com>
20218         * class.c (mono_class_is_assignable_from): Make this work if
20219         `oklass' is a generic instance; fixes #72831.
20221 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20223         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20224         with hasthis set.
20225         
20226         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20228         * marshal.c: Reorganize native->managed marshalling code to also use
20229         the emit_marshal_... functions.
20231 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20233         * object.c: typed allocs have issues with bitmap sizes > 30,
20234         so check for max_set >= 30.
20236 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20238         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20239         managed code. Fixes #73012.
20241         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20243         * metadata.c reflection.c: Load/Emit elem_mult as well.
20244         
20245         * metadata.h (MonoMarshalSpec): Add comment.
20247         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20249         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20250         num_elem to -1 if not given.
20252         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20254         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20255         given values.
20257 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20259         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20261 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20263         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20265         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20267 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20269         * object.c: generalized the reference bitmap creation
20270         and added hooks for the new GC.
20271         * class-internals.c: removed the gc_bitmap field from MonoClass.
20273 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20275         * domain.c: help the compiler to produce better code
20276         in mono_jit_info_table_find ().
20278 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20280         * object.c: make all allocations look typed.
20282 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20284         * socket-io.c: load Mono.Posix if it's not loaded already
20285         (fixes bug#73033).
20287 2005-02-24  Martin Baulig  <martin@ximian.com>
20289         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20290         * reflection.c (dup_type): Likewise.
20292 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20294         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20295         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20297 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20299         * domain.c, threads.c, object-internals.h: make the critical thread
20300         local vars use the fast access mode (even when we're compiled in
20301         a lib). Provide accessors to be used by the jit during codegen.
20303 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20305         * appdomain.c: Changed hook functios behavior to include
20306         support for the reflection only assemblies. Some icalls were changed
20307         to support the mentioned assemblies too. Signatures of static methods
20308         try_assembly_resolve and real_load now have an additional parameter:
20309         refonly.
20311         * assembly.c: General changes to mono_assembly_ methods to support
20312         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20313         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20314         suffix, to support an additional gbool parameter to specify whether
20315         the assembli is reflection only or not. Created some new hook functions 
20316         to add support for reflection only assemblies. Signatures of static 
20317         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20318         have now an additional parameter: refonly.
20320         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20321         indicating whether the assembly is reflection only or not.
20323         * exception.c: Add mono_get_exception_invalid_operation.
20325         * icall.c: Throw an InvalidOperationException when trying to invoke
20326         a property/method/event, or trying to set/get the value of a field.
20327         Also add an icall to retrieve the ref_only flag to the
20328         MonoReflectionAssembly.
20330 2005-02-23  Chris Toshok  <toshok@ximian.com>
20332         Part of fix for #72827.
20333         * mono-debug.c (mono_debug_add_method): add lexical block data to
20334         the info we write.  Kind of a hack at the moment - we copy the
20335         lexical block info from the MonoDebugMethodInfo to the
20336         MonoDebugMethodJitInfo here, before writing it.
20337         (mono_debug_read_method): read the lexical block info.
20339         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20341         * debug-mono-symfile.h: add lexical block support.
20343         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20344         support.
20346 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20348         * loader.c (mono_lookup_pinvoke_call): Fix warning.
20350         * object.c (mono_runtime_free_method): Call mono_free_method () and
20351         put the TODOs there.
20353         * loader.c (mono_free_method): Free up most memory allocated for 
20354         dynamic methods.
20356 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20358         * reflection.c: properly flag a Type argument to a
20359         named custom attr value (bug #72248).
20361 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20363         * reflection.c: reduce code duplication in named custom
20364         attribute encoding.
20366 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
20368         * reflection.c: properly encode custom attrs of type object
20369         (bug #72649).
20371 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20373         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
20375 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
20377         * socket-io.c: load System.dll if it's not loaded already
20378         (bug #72850 and #70477).
20380 2005-02-21  Martin Baulig  <martin@ximian.com>
20382         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20383         generic instances.
20385 2005-02-21  Martin Baulig  <martin@ximian.com>
20387         * reflection.c (mono_image_build_metadata): We also need to
20388         "fixup" the MethodImpl table after we computed the final method
20389         indices.  Call fixup_methodimpl() to do that.
20390         (fixup_methodimpl): New private method.
20392 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20394         * assembly.c: special case mscorlib.dll (bug#72536),
20395         patch from Carlos Alberto Cortez.
20397 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
20399         * threads-types.h threads.c: Fix build bustage.
20401         * threads.c: Use a union for long<->double conversions.
20403         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
20404         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
20406         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
20407         containing the checkpoint call with NOT_TAKEN.
20408         
20409         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
20410         checkpoint before pushing the arguments, so they won't have to be
20411         spilled to stack.
20413 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20415         * domain.c, assembly.c, domain-internals.h: make some data
20416         const and relocation-free.
20418 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20420         * object.c, appdomain.c, class-internals.h: introduce the
20421         MonoClassRuntimeInfo structure to hold the info needed to
20422         use a class at runtime. Made mono_class_vtable() lock-free
20423         for all the appdomains.
20425 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
20427         * metadata-internals.h, image.c: introduce a per-image mempool to
20428         be used for memory that has the same lifetime as the image.
20430 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
20432         * domain.c: In mono_init_internal(), instead of selecting the first
20433         runtime version supported by an executable, get a list of all
20434         supported versions and select the one for which an mscorlib exists
20435         (since even if the runtime supports a given version, it doesn't mean
20436         that the framework for that version is installed).
20437         Modified get_runtimes_from_exe to support this behavior.
20438         In supported_runtimes, added information about additional system
20439         assembly versions.
20440         
20441         * assembly.c: Added support for more than one system assembly version
20442         per runtime version. Updated the assembly list.
20443         In mono_assembly_remap_version, removed the initial version check,
20444         since we don't know to which version we need to compare until we
20445         get the version set on which the assembly is based.
20446         Moved the code for loading corlib into the new method
20447         mono_assembly_load_corlib(), so it can be used by the initialization
20448         code.
20449         
20450         * domain-internals.h: Updated data structures and added declaration
20451         for mono_assembly_load_corlib.
20453 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20455         * reflection.c (resolve_object): Fix the creation of the signature in 
20456         the SignatureHelper case.
20458         * assembly.c (mono_assembly_remap_version): Fix binary search.
20459         
20460 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
20462         * class.c: Added inheritance check when a method is overloaded (from a
20463         virtual method or when implementing an interface) and when a class is
20464         inherited. Added functions to set a failure for a class and to 
20465         retreive the exception from a failure.
20466         * class-internals.h: Added fields to MonoClass to keep the exception
20467         information status for inheritance (or other exceptions) to be thrown
20468         later (i.e. not at load time).
20469         * object.c: Throw the inheritance SecurityException when a type is to 
20470         be created with either class or method inheritance violations.
20471         * reflection.c|h: Fix when getting declsec from a class. Removed 
20472         unrequired code for class. Improved sanity in parameter naming.
20473         * security-manager.c|h: Added functions to check for class and method
20474         inheritance.
20476 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20478         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
20479         and has_finalize in dynamic types as well.
20481 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
20483         * culture-info-table.h : fixed currency format for en-GB (and so on).
20485 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
20487         * gc.c: ensure the GC handles never have 0 as a value.
20489 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20491         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
20492         a pointer to a struct to unmanaged code. Fixes #72625.
20494 2005-02-16  Martin Baulig  <martin@ximian.com>
20496         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
20498 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20500         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
20502 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20504         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
20506         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
20507         UnmanagedFunctionPointerAttribute, use it for determining calling convention
20508         etc. Fixes #71471.
20510         * reflection.c (mono_custom_attrs_get_attr): New helper function.
20512         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
20514 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
20516         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
20517         changes to make the current context a field in MonoThread.
20519 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20521         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
20522         the last change.
20523         
20524         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
20525         extracted from mono_marshal_get_native_wrapper.
20527         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
20528         to create wrappers around native functions.
20530         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
20531         delegates for arbitrary function pointers. Fixes #71472.
20533 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20535         * threads.c: cleaned up the code a little.
20537 2005-02-15  Martin Baulig  <martin@ximian.com>
20539         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
20540         the data table.
20542         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
20543         allocate larger chunks if needed.
20545 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20547         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
20548         in by mistake.
20550 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
20552         * domain.c: keep the domains in an array and ensure the domain ids
20553         are kept small, so they can be used as indexes to domain-specific data
20554         with a small memory overhead.
20556 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20558         * icall.c: Handle byref types in Type icalls. Fixes #72544.
20560 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
20562         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
20564 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20566         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
20568         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
20569         values.
20571         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
20572         
20573 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20575         * domain-internals.h: add the hashtable here.
20577         * class-internals.h: Remove `info' from MonoMethod
20579         * domain.c: Add a new hashtable, jit_trampoline_hash
20581 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20583         * object.c: don't set the value of static fields
20584         (fixes bug#72494).
20586 2005-02-11  Martin Baulig  <martin@ximian.com>
20588         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
20589         (mono_debug_add_method): Silently ignore the method if it's too big.
20590         (mono_debug_add_type): Likewise.
20592 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
20594         * threads.c, appdomain.c: remove #ifdefs from the code.
20596 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20598         * metadata-internals.h: Added flags to MonoAssembly to cache the most
20599         common security informations. This allows us to stay in unmanaged code
20600         when doing LinkDemand and it's special cases (except for the first 
20601         time for initialization). The flags a very much used with --security.
20602         * reflection.c|h: Added code to get declarative security attributes 
20603         for LinkDemand and InheritanceDemand. This required to refactor the
20604         existing code for Demand.
20605         * security-manager.c|h: Added new method fields for the special cases
20606         of LinkDemand.
20608 2005-02-10  Martin Baulig  <martin@ximian.com>
20610         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
20611         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
20613 2005-02-10  Martin Baulig  <martin@ximian.com>
20615         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
20616         debugging code; this is almost a complete rewrite.
20618         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
20620 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20622         * domain.c, object.h: expose mono_string_equal () and 
20623         mono_string_hash ().
20624         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
20625         it's implemented in managed code.
20627 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20629         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
20630         lo leak objects between appdomains.
20632 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20634         * assembly.c: old compilers compilation fix from 
20635         robertj@gmx.net (Robert Jordan).
20637 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
20639         * class-internals.h: Little reminder for the future.
20641         * debug-helpers.c: Fix up wrapper_type_names
20643 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20645         * image.c, metadata-internals.h: when loading an image from a file,
20646         mmap all of it and use the same codepaths as when using a
20647         in-memory image: the code is simpler and we use less memory
20648         (both writable and readonly).
20650 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20652         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
20653         API to alloc runtime data structures that need to be tracked by the
20654         GC and contain pointers.
20655         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
20656         make the code more readable and eventually use a different GC.
20658 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
20660         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
20661         for out arguments.
20662         
20663 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
20665         * object.c: In release_type_locks(), don't release the cctor lock
20666         if it has already been released. This fixes a crash in the
20667         thread5 test.
20669 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20671         * gc.c, marshal.c, icall.c: register a delegate for finalization
20672         only when the native function pointer has been allocated for it.
20674 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20676         * object.c: cleaned up some code, allocate objects that are
20677         pointer free with the atomic malloc variant. Allocate memory
20678         for static data from the mempool if it's pointer-free.
20679         Allocate the bounds array at the end of the array data, when needed.
20680         * object-internals.h, object.h: move a private function in a private
20681         header.
20682         * class.c: handle missing case in tracking references in fields.
20684 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20686         * class.c, class-internals.h: keep track if a type has
20687         reference fields in either the instance or static fields.
20689 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
20691         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
20692         and renamed to MonoRuntimeInfo. Added fields to store the expected
20693         framework assembly version. Changed mono_get_framework_version and
20694         mono_get_runtime_version for a single mono_get_runtime_info method.
20695         
20696         * assembly.c: Added method to remap system assembly versions to the
20697         current executing runtime version. Removed old mapping code.
20698         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
20699         
20700         * icall.c, reflection.c: Track api changes.
20702 2005-02-06  Miguel de Icaza  <miguel@novell.com>
20704         * loader.c (method_from_memberref): Improve error reporting,
20705         produce the class name instead of the typeref/typedef index. 
20707 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
20709         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
20711 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20713         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
20714         stdcall and charset name mangling.  Reorganize the code and add
20715         some tracing stuff.
20717 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20719         * monodiet.c: More iters!
20721         * marshal.c: Iter usage.
20723         * icall.c: Iter usage.
20725         * object.c: Use iters.
20727         * debug-helpers.c: More iters
20729 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20731         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
20732         under win32.
20734 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20736         * mono-debug-debugger.c: use iters
20738         * class.c, class-internals.h: mono_class_setup_events is static
20739         now
20741         * All callers: use iters
20743 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20745         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
20746         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20748 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20750         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
20752         * marshal.h: Add prototypes for ldfld/stfld_remote.
20754         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
20755         this is called during startup.
20756         
20757 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20759         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
20760         MonoThreadsSync struct private in monitor.c. Changed the way
20761         MonoThreadsSync is allocated so it's faster and there is no
20762         need to keep track of it with a finalizer and it uses less memory.
20763         This also finally allows us to allocate mono objects as ptrfree when
20764         there are no reference fields.
20766 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
20768         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
20769         disappearing link to the GC interface and use them to simplify
20770         the gchandles code.
20772 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20774         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
20775         stfld_remote which call mono_load/store_field_new. This allows methods
20776         calling ldfld/stfld wrappers to be AOTed.
20778         * console-io.c: Include sys/filio.h under solaris.
20779         
20780         * console-io.c: Include curses.h if needed correctly.
20782 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20783         
20784         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
20785         method->klass as well.
20787         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
20789         * class.c (mono_class_init): Switch on lazy initialization of 
20790         methods.
20792         * class.c (mono_class_get_finalizer): Handle the case when the 
20793         finalizer is inherited.
20795 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20797         * console-io.c: <curses.h> is needed by term.h on solaris.
20799 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
20801         * icall.c, class-internals.h, monodiet.c, class.c: Remove
20802         mono_class_setup_properties where possible. Remove this ftn from
20803         the header file, and make it static.
20805 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20807         * loader.c: Add missing setup_... call.
20809         * class.c: Add missing setup_... calls.
20811         * class.c (mono_class_init): Switch on lazy initialization of 
20812         the generic vtable.
20813         
20814         * class.c (mono_class_init): Fix generics broken by the recent changes.
20816         * monodiet.c (handle_type): Add missing setup_... calls.
20818         * class.c: Back out garbage in previous patch.
20819         
20820         * class.c: Add missing setup_... calls.
20822         * class.c (mono_class_get_method_from_name_flags): Avoid calling
20823         mono_class_setup_methods () if possible.
20825         * class-internals.h (MonoClass): Add 'has_cctor' flag.
20827         * class-internals.h (MonoCachedClassInfo): New structure.
20829         * class.c: Initialize properties and events fields of MonoClass lazily.
20831         * class.c: Add infrastructure for lazily initializing the methods and
20832         vtable fields of MonoClass. Not yet used.
20834         * class.c (mono_class_get_finalizer): New helper function.
20836         * class.c: Add infrastructure for loading some class related data from
20837         an AOT file.
20839         * object.c: Add infrastructure for initializing the vtable from data
20840         in the AOT file.
20842         * gc.c (run_finalize): Use mono_class_get_finalizer ().
20844         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
20845         appropriate initialization function before accessing parts of the
20846         MonoClass structure.
20848         * marshal.c: Fix warnings.
20849         
20850         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
20852         * mono-debug-debugger.c (get_exception_message): Use 
20853         mono_class_get_method_from_name_flags ().
20855 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
20857         * reflection.c, appdomain.c: Replace a few manual searches that
20858         Zoltan missed. (Paolo approved this part of my initial patch).
20860 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
20862         * profiler.c: disable recording statistical events at report time.
20864 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20866         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
20867         to byteswap arrays of enum values, too (bug #72080).
20869 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20871         * appdomain.c (set_domain_search_path): Allow this to be called if
20872         domain->setup is not yet set.
20874         * loader.c (mono_method_get_index): New helper function.
20876         * loader.c reflection.c: Use mono_method_get_index ().
20878         * class.c (mono_class_get_method_from_name_flags): New helper method.
20880         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
20881         this.
20883         * class.c (mono_class_get_cctor): New helper method.
20885         * string-icalls.c object.c class.c marshal.c reflection.c: Use
20886         mono_class_get_method () to look up methods.
20888 2005-02-01  Miguel de Icaza  <miguel@novell.com>
20890         * console-io.c: Fix the build, this should work on Windows.
20892 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
20894         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
20895         be set to null to keep things valid
20897 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20899         * icall.c: added Console 2.0 icalls.
20900         * Makefile.am: added console-io.[ch]
20901         * console-io.[ch]: internal calls for Console 2.0 API.
20903 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20905         * class.c: make sure we consider all the interfaces
20906         when calculating max_interface_id (bug found by
20907         Jeroen Frijters running ikvm).
20909 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20911         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
20912         valuetype fields to null.
20914         * object.c (set_value): Ditto. Fixes #71669.    
20916 2005-01-31  Martin Baulig  <martin@ximian.com>
20918         * metadata.c (mono_metadata_has_generic_params): New public
20919         function; checks whether something is a generic method.
20921 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20923         * appdomain.c: fix infinite recursion when adding assemblies.
20925 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
20927         * object.c: Fix small typo to return all items for Environment.
20928         GetCommandLineArgs.
20930 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20932         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
20933         reflection.c: more domain and assembly-unload related fixes
20934         and memory leaks plugs.
20936 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20938         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
20940 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20942         * loader.c (mono_method_signature): Make this method lazy
20943         (mono_get_method_from_token): Don't computate the signature here.
20945         Doing this saves quite a bit of memory. I got 90 kb on starting up
20946         monodoc. It should also save some disk reads on startup.
20948         * *: MonoMethod->signature might be NULL now. You *MUST* use
20949         mono_method_signature.
20951 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
20953         * object.c (mono_runtime_get_main_args): Return an array from the
20954         current domain here. Fixes #71938.
20956 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
20958         * monitor.c: formatting changes to comply with the
20959         mono coding style and remove #ifdefs from the code.
20961 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20963         * metadata.c, private.h: remove some unneeded data
20964         and use a more compact representation for table schemas.
20966 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
20968         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
20969         to get a better distribution in hash tables.
20970         * *.c: use mono_aligned_addr_hash() where appropriate.
20971         * assembly.c: make var static.
20973 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
20975         * domain-internals.h: Put MonoJitInfo on a diet.
20977         * domain.c: Fix a warning.
20979 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20981         * gc.c: rework the gc handles code to reuse handles
20982         when freed.
20984 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20986         * domain.c: fixed long standing bug in mono_string_equal() which
20987         was brought to light with the ldstr changes.
20989 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
20991         * reflection.c: Remove warning by adding missing include for marshal.h
20993 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20995         * domain.c, object.c: change the ldstr_table to hold
20996         MonoString* as keys: makes the runtime isinterned lookup
20997         faster and simplifies memory management.
20999 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21001         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21002         possible to add imperative security checks before calling the icall.
21003         * reflection.c: Return security attributes on the original MonoMethod
21004         (and not the wrapped one). This fix permissions on icalls.
21006 2005-01-25  Dick Porter  <dick@ximian.com>
21008         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21009         the check for mktime() support actually test the mktime() return
21010         value.  "Fixes" bug 71682, though the output is still different to
21011         MS.
21013 2005-01-25  Martin Baulig  <martin@ximian.com>
21015         * class.c (mono_class_is_assignable_from): Make this work for
21016         generic instances.
21018 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21020         * marshal.c (mono_string_utf8_to_builder)
21021         (mono_string_builder_to_utf16): We might not have ownership of the
21022         string. In thise case, we need to create a new buffer.
21024         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21025         be null, in which case, use the default capacity.
21027 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21029         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21030         GC events to the profiler.
21032 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21034         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21035         if you don't want the GC to run.
21037 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21039         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21040         start providing a GC API and keeping different implementations in
21041         their own file.
21042         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21044 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21046         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21047         mmap rather than allocating a huge buffer.
21048         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21049         above.
21051 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21053         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21054         and CheckExecutionRights.
21055         * reflection.c|h: Keep the index of the declarative security to be 
21056         used, instead of the pointer, when AOT compiler is used. Also add 
21057         class initialization when requesting demands.
21058         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21059         CheckExecutionRights. Both properties are now FALSE by default, and
21060         unmodifiable, unless the --security option is used.
21062 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21064         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21065         reflection.c: properly refcount images and assemblies, many leaks fixed.
21067 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21069         * threadpool.c: increase the timeout for threads in the thread pool to
21070         10s.  Fixes bug #67159.
21072 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21074         * class-internals.h: Sun's compiler insists on explicit
21075         signed on bit fields to handle then correctly.
21077 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21079         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21080         Make the size of the array fit only the number of invalid path
21081         chars that we have.
21083         * class.c (_mono_class_get): Improve the error reporting when a
21084         class referenced is not found, to assist debugging. 
21086 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21088         * threads.c: fix off-by-one error.
21089         * domain.c: free data allocated in the domain.
21091 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21093         * reflection.c (mono_method_body_get_object): Fill out exception info
21094         as well.
21096         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21097         structure.
21098         
21099 2005-01-19  Martin Baulig  <martin@ximian.com>
21101         * loader.c (mono_get_method_constrained): Make this work again.
21103 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21105         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21106         guint16 to match the managed side.
21108         * reflection.c (mono_reflection_body_get_object): Fill out local
21109         variables array.
21111         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21112         as well.
21114         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21115         'local_var_sig_token'.
21117 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21119         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21120         System.Drawing.
21122         * reflection.c (mono_method_body_get_object): Handle abstract and
21123         runtime methods.
21125 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21127         * marshal.c, loader.c, class-internals.h, reflection.c:
21128         store the emthod data for a wrapper in an array instead of a list.
21130 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21132         * marshal.c: change the code to allocate memory more
21133         conservatively for method wrappers.
21135 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21137         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21138         fields from MonoClass to the marshal info structure where they belong.
21140 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21142         * class.c, object.c, class-internals.h, marshal.c: rearrange
21143         some fields and tweak some types to lower memory usage.
21145 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21147         * threads.c (signal_thread_state_change): Handle the case when the
21148         target thread is the current thread.
21150         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21152         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21153         emit_ptr_to_object_conv. 
21155         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21156         marshalling. Fixes #71352.
21158 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21160         * metadata.h, blob.h: move table enum to blob.h so it can be included
21161         in any header.
21162         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21163         cut the size of MonoImage/MonoDynamicImage.
21165 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21167         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21169 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21171         * reflection.c, reflection.h, icall.c: add a function to check
21172         if an attribute type is defined for a metadata object.
21174 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21176         * object-internals.h: Added some needed fields from StringBuilder class.
21177         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21179 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21181         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21182         threads before shutting down the runtime.
21184         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21186 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21188         * object-internal.h, threads.c: implement stacksize and 
21189         parameterized thread start functionality (requires
21190         matching corlib). Marked broken code for later removal.
21192 2005-01-12  Martin Baulig  <martin@ximian.com>
21194         * class-internals.h (MonoGenericClass): Moved the `initialized'
21195         flag to MonoDynamicGenericClass, removed `init_pending'.
21196         (MonoGenericInst): Added `is_reference' flag.
21198 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21200         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21201         inside the MSDOS header. Fixes #71201.
21203         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21204         gc thread.
21205         (mono_domain_finalize): Ditto.
21207 2005-01-12  Martin Baulig  <martin@ximian.com>
21209         * class.c (mono_get_shared_generic_class): Use the cache for
21210         non-dynamic generic classes.
21212         * class-internals.h (mono_class_create_generic_2): Removed
21213         function prototype, this function is now static inside class.c.
21215         * class.c (mono_class_create_generic_2): Made this static, only
21216         call it from mono_class_init() and mono_class_setup_parent().
21217         (collect_implemented_interfaces_aux): Call mono_class_init() on
21218         the interfaces we collect.
21219         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21221 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21223         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21224         it a real thread handle.
21226         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21227         MonoJitExceptionInfo, since each catch clause needs its own variable.
21228         
21229 2005-01-11  Dick Porter  <dick@ximian.com>
21231         * image.c (mono_pe_file_open): New variant on mono_image_open()
21232         that does not set up the CLI metadata; used for FileVersionInfo so
21233         it can get the data for windows binaries too.
21234         
21235         * process.c (process_read_string_block): Don't read off the end of
21236         the StringTable block.
21238         These both fix bug 70766.
21240 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21242         * gc.c: set some fields to NULL at GC cleanup time.
21243         * threads.c: if we quit the main thread, call exit ().
21245 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21247         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21249 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21251         * threads.h, threads.c, object.c: added accessor and settor for
21252         main_thread. Handle it specially when exiting from it: wait
21253         for other foreground threads to exit.
21255 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21257         * process.c, verify.c: remove some bloat.
21259 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21261         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21262         the calling convention to cdecl under win32.
21264 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21266         * object.c (mono_object_get_size): New function to get the size of
21267         an object instance.
21269         * profiler.c (simple_allocation): Use above.
21271 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21273         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21274         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21275         get an appdomain by it's id and we can't assume the root's id is 0).
21276         * domain-internals.h: Change the function prototype to match.
21277         * icall.c: Change the icall table for AppDomain.
21279 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21281         * locales.c (string_invariant_compare_char): Only compute
21282         GUnicodeTypes in the case where we need them.  Test for ordinality
21283         first and return if so.
21285         From the commit:
21287                 /*
21288                  * FIXME: here we must use the information from c1type and c2type
21289                  * to find out the proper collation, even on the InvariantCulture, the
21290                  * sorting is not done by computing the unicode values, but their
21291                  * actual sort order.
21292                  */
21294 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21296         * loader.c: for P/Invoke methods, allow the "Internal" shared
21297         library name to refer to the calling process symbol namespace.
21299 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21301         * Makefile.am: Add the security manager to the build.
21302         * security-manager.c|h: New. Initialization of the security manager.
21304 2005-01-07  Dick Porter  <dick@ximian.com>
21306         * threads.c: 
21307         * monitor.c: Update thread state during Monitor and WaitHandle
21308         waits.  Fixes bug 71031.
21310 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21312         * reflection.c (property_encode_signature): Correctly handle when the
21313         property has no methods.
21315 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21317         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21318         
21319         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21320         fields from mb, not rmb. Fixes #71017.
21322         * marshal.c (emit_ptr_to_str_conv): Add support for 
21323         ByValTStr -> string conversion. Fixes #71015.
21325         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21327         * mempool.c (mono_mempool_contains_addr): New helper function.
21329 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21331         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21332         HasSematics encoded fields.
21333         
21334         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21335         invalid string marshalling.
21337         * metadata.c: Fix warnings.
21338         
21339 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21341         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21342         profiler support.
21344 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21346         * domain.c object.c domain-internals.h: Revert part of r38077 since the
21347         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
21348         tests.
21350 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21352         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
21353         so methods containing these can be AOTed.
21355 2005-01-03  Martin Baulig  <martin@ximian.com>
21357         * loader.c (find_method): Removed the hack for generic instances.
21358         (method_from_memberref): If our parent is a generic instance, pass
21359         its generic type definition to find_method() and then inflate the
21360         method.
21361         (mono_get_method_constrained): Pass the generic type definition to
21362         find_method() and inflate the method later.
21364         * class-internals.h (MonoStats): Added `generic_class_count'.
21366         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
21367         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
21369         * reflection.c (mono_custom_attrs_from_params): Don't ignore
21370         generic type definitions.
21372 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21374         * loader.c icall.c: Fix warnings.
21376 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
21378         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
21379         blittable types. Fixes #70864.
21381 2004-12-29  Martin Baulig  <martin@ximian.com>
21383         * icall.c
21384         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
21386         * reflection.c (mono_method_get_object): Create a
21387         "System.Reflection.MonoGenericMethod" for inflated methods; don't
21388         call mono_get_inflated_method().
21390         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
21392 2004-12-27  Martin Baulig  <martin@ximian.com>
21394         * class-internals.h (MonoMethod): Added `is_inflated' flag.
21395         (MonoMethodInflated): Added `inflated' field.
21397         * class.c (mono_class_inflate_generic_method): Don't really
21398         inflate the method here; just set the `is_inflated' flag in the
21399         MonoMethod.
21400         (mono_class_get_inflated_method): Actually inflate the method here
21401         if it's not already inflated; we use the MonoMethodInflated's new
21402         `inflated' field as a cache.
21404 2004-12-26  Martin Baulig  <martin@ximian.com>
21406         * class.c
21407         (inflate_generic_class): Moved some code out of inflate_generic_type().
21408         (mono_class_inflate_generic_method): If we're already inflated,
21409         inflate the context and use the declaring method; ie. make sure
21410         the declaring method of an inflated method is always the generic
21411         method definition.
21412         (mono_class_create_from_typedef): Create
21413         `class->generic_container->context->gclass'.
21415 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
21417         * metadata-internals.h, marshal.c, reflection.c: More
21418         MonoGHashTable->GHashTable.
21420         * domain-internals.h, class.c: Change MonoGHashTable's into
21421         GHashTables for some cases where no gc stuff is used
21423         All users: update apis
21425 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
21427         * metadata.c (builtin_types): Make this `const'. Makes this get
21428         put into the shareable section.
21429         (mono_metadata_init): Casts to make gcc happy.
21431 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
21433         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
21435 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
21437         * icall.c: Added an internal call to retrieve the position and length
21438         of assembly-level declarative security attributes (RequestMinimum, 
21439         RequestOptional and RequestRefuse). This is used by the Assembly class
21440         to re-create the corresponding permission sets.
21442 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21444         * marshal.c: fix the stelemref wrapper to be type correct
21445         (and faster).
21447 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21449         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
21450         to do key & 0x7fffffff. Hashtable already does this. It just
21451         results in longer code.
21453 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
21455         * appdomain.c: Bump corlib version.
21456         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
21457         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
21458         * reflection.c|h: Add functions to get declarative security infos
21459         (blob position and length) for assemblies, classes and methods.
21461 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
21463         * reflection.c: sort the constant table (bug #70693).
21465 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
21467         * object-internals.h, threads.c, domain.c: add accessors for
21468         the MonoThread and MonoDomain tls keys.
21470 2004-12-18  Martin Baulig  <martin@ximian.com>
21472         * class.c (inflate_generic_type): If we're inflating a generic
21473         instance, set `ngclass->context->container = context->container';
21474         ie. the container we inflated into.
21476         * metadata.c (mono_metadata_parse_generic_param): Reflect above
21477         inflate_generic_type() changes.
21479 2004-12-17  Martin Baulig  <martin@ximian.com>
21481         * class-internals.h
21482         (MonoGenericClass): Replaced `MonoType *generic_type' with
21483         `MonoClass *generic_class'.  Removed `dynamic_info'; if
21484         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
21485         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
21487 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
21489         * exception.c (mono_exception_from_token): New helper function.
21491 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
21493         * assembly.c (mono_assembly_load_with_partial_name): Call 
21494         mono_assembly_loaded before invoking the preload hooks. Fixes
21495         #70564.
21497         * object-internals.h (MonoThread): Change culture_info and 
21498         ui_culture_info into an array.
21500         * threads.c: Cache culture info objects from more than one appdomain.
21502         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
21503         current UI culture.
21505 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21507         * threads.h threads.c appdomain.c: Clear the culture_info field of
21508         all threads during unloading if they point to an object in the dying
21509         appdomain.
21511 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
21513         * culture-info.h (TextInfoEntry): New struct
21514         * object-internals.h: sync with managed
21515         * locales.c: fill the `text_info_data' field
21516         * culture-info-tables.h: update
21518 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
21520         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
21521         collector.
21523 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
21525         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
21526         (ves_icall_ModuleBuilder_getMethodToken): Ditto
21528 2004-12-12  Martin Baulig  <martin@ximian.com>
21530         * mono-debug-debugger.c (write_type): If we're an enum and the
21531         builtin types have already been initialized, call mono_class_init().
21533 2004-12-11  Martin Baulig  <martin@ximian.com>
21535         * metadata.c (mono_metadata_load_generic_params): Added
21536         `MonoGenericContainer *parent_container' argument; automatically
21537         compute `container->is_method'; pass the correct owner to
21538         get_constraints().      
21540         * reflection.c (compare_genericparam): Sort the GenericParam table
21541         according to increasing owners. 
21543 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21545         * profiler.c: allow disabling the default profiler.
21547 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
21549         * decimal.c, icall.c: allow disabling System.Decimal support.
21551 2004-12-09  Marek Safar <marek.safar@seznam.cz>
21553         * reflection.c: Add support for null attribute arguments.
21555 2004-12-09  Martin Baulig  <martin@ximian.com>
21557         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
21558         names to get rid of compiler warnings.
21560 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21562         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
21563         mono_marshal_load_type_info (). Fixes #69625.
21564         (mono_marshal_get_ptr_to_struct): Likewise.
21566 2004-12-08  Martin Baulig  <martin@ximian.com>
21568         * mono-debug.h: Bumped version number to 47.
21570         * mono-debug-debugger.c
21571         (mono_debugger_event_handler, mono_debugger_event): Take two
21572         guint64 arguments insteed of a gpointer and a guint32.  
21574 2004-12-08  Martin Baulig  <martin@ximian.com>
21576         * debug-mono-symfile.h
21577         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
21578         `address' to `native_offset'.
21580 2004-12-08  Martin Baulig  <martin@ximian.com>
21582         * class.c (mono_class_create_from_typespec): Only inflate if we
21583         either have `context->gclass' or `context->gmethod'.
21585 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21587         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
21589         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
21591         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
21593         * reflection.c (mono_assembly_get_object): Remove the workaround put
21594         in for the release.
21595         
21596         * appdomain.c: Use the corlib_internal field from MonoAssembly.
21598         * appdomain.c: Bump corlib version.
21600         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
21601         be visible in other appdomains.
21603 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
21605         * threads.c: Interlocked inc and dec for longs were messed up,
21606         use a KISS based impl for this. Fixes 70234
21608 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21610         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
21612 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
21614         * icall.c: fix to follow policy not to allow struct
21615         arguments in icalls.
21617 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21619         * process.c: make the patch that handles spaces in file paths work
21620         on mono/windows too.
21622 2004-12-06  Martin Baulig  <martin@ximian.com>
21624         * class.c (mono_class_create_generic): Call
21625         mono_class_setup_supertypes() if we're dynamic.
21626         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
21628 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21630         * object-internals.h: Add new fields to MonoThread.
21632         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21634         * icall.c threads-types.h threads.c: Add new icalls.
21636         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
21638         * object-internals.h (MonoReflectionAssembly): Sync object layout with
21639         managed side.
21641         * appdomain.c: Bump corlib version.
21643         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
21644         internal assemblies. Fixes #69181.
21646 2004-12-05  Martin Baulig  <martin@ximian.com>
21648         * class.c (mono_class_inflate_generic_signature): Make this a
21649         no-op if `context' is NULL or we don't have any type parameters;
21650         also copy `sentinelpos'.        
21652 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
21654         * image.c: Add unbox_wrapper_cache.
21656         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
21658         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
21659         function generator.
21660         
21661         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
21662         Fixes #70173.
21664         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
21665         
21666 2004-12-04  Martin Baulig  <martin@ximian.com>
21668         * loader.c (mono_method_get_signature_full): New public function;
21669         like mono_method_get_signature(), but with an additional
21670         `MonoGenericContext *' argument.
21672         * class.c (mono_class_inflate_generic_signature): Formerly known
21673         as inflate_generic_signature(); make this public.
21675 2004-12-04  Martin Baulig  <martin@ximian.com>
21677         * metadata.c
21678         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
21679         instead of a `MonoGenericContainer *'.  
21680         (mono_metadata_parse_array_full): Likewise.
21681         (mono_metadata_parse_signature_full): Likewise.
21682         (mono_metadata_parse_method_signature_full): Likewise.
21683         (mono_metadata_parse_generic_inst): Likewise.
21684         (mono_metadata_parse_generic_param): Likewise.
21685         (mono_metadata_parse_mh_full): Likewise.
21686         (mono_type_create_from_typespec_full): Likewise.
21688 2004-12-03  Martin Baulig  <martin@ximian.com>
21690         * class-internals.h (MonoGenericContainer): Replaced the
21691         `MonoGenericContext * pointer with a `MonoGenericContext'
21692         structure and made it the first element.
21694 2004-12-03  Martin Baulig  <martin@ximian.com>
21696         * class.c
21697         (inflate_generic_type): Set the `context->container' when creating
21698         a new MonoGenericContext.
21699         (mono_class_inflate_generic_method): Likewise.
21700         (mono_class_create_from_typespec): Just use `context->container'
21701         to get the container.
21703         * loader.c (method_from_methodspec): Set `context->parent' from
21704         `context->container' - and if that's a method container, use its
21705         parent.  Also set the `context->container' when creating a new
21706         MonoGenericContext.
21707         (mono_get_method_from_token): Use just `context->container' to get
21708         the container.
21710         * metadata.c (do_mono_metadata_parse_generic_class): Also set
21711         `gclass->context->container'.
21713         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
21714         the `context->container' when creating a new MonoGenericContext.
21716 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
21718         * reflection.c (compare_genericparam): Sort params with identical
21719         owner by their number. Fixes gen-111 on sparc.
21721 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21723         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
21724         around the domain changes.
21726         * appdomain.c (mono_domain_unload): Handle the case when the thread
21727         calling Unload is itself being aborted during unloading. Fixes #70022.
21729         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
21731         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
21732         checkpoint_func as an icall so it gets a wrapper.
21733         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
21734         in the cross-appdomain wrappers too.
21736         * threads.c (mono_thread_has_appdomain_ref): Make this public.
21738         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
21740         * reflection.c: Fix some memory leaks.
21741         
21742 2004-12-02  Martin Baulig  <martin@ximian.com>
21744         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
21746         * metadata.c (generic_class_cache): New static hashtable.
21747         (mono_metadata_lookup_generic_class): New public method.
21749 2004-12-02  Martin Baulig  <martin@ximian.com>
21751         * class.c (mono_class_create_from_typedef): Call
21752         mono_class_setup_parent() and mono_class_create_mono_type() before
21753         parsing the interfaces.
21755 2004-12-02  Martin Baulig  <martin@ximian.com>
21757         * metadata.c (generic_inst_cache): New static hashtable.
21758         (mono_metadata_lookup_generic_inst): New public function.
21759         (mono_metadata_inflate_generic_inst): New public function.
21760         (mono_metadata_parse_generic_inst): New public function.
21761         (do_mono_metadata_parse_generic_class): Use the new
21762         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
21763         since this'll also use the cache.
21765         * reflection.c (mono_reflection_bind_generic_method_parameters):
21766         Use mono_metadata_lookup_generic_inst() to use the new cache.
21768         * class.c (inflate_mono_type): Use
21769         mono_metadata_inflate_generic_inst() to inflate a generic
21770         instance; this'll also use the new cache.
21772         * loader.c (method_from_methodspec): Use
21773         mono_metadata_parse_generic_inst() and
21774         mono_metadata_inflate_generic_inst() rather than parsing it
21775         manually, so we can use the new cache.
21777 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21779         * threads.c (wait_for_tids): Do not incorrectly free threads when 
21780         the wait times out.
21782 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21784         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
21785         iter->args based on whether parameters are passed in registers (i.e.
21786         MONO_ARCH_REGPARMS is defined)
21788 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
21790         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
21791         the exception message. Fixes #70070.
21792         (method_from_methodspec): Fix warnings.
21794 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21796         * process.c: (complete_path) return the path quoted
21798 2004-12-01  Martin Baulig  <martin@ximian.com>
21800         * class-internals.h (MonoGenericInst): New structure.
21801         (MonoGenericClass): Replaced `type_argc', `type_argv' and
21802         `is_open' with `MonoGenericInst *inst'.
21803         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
21804         `is_open' with `MonoGenericInst *inst'.
21806 2004-11-30  Martin Baulig  <martin@ximian.com>
21808         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
21810         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
21811         to `generic_class_cache'.
21813         * metadata.c
21814         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
21815         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
21816         (mono_generic_inst_is_valuetype): Renamed to
21817         mono_generic_class_is_valuetype().
21819         * class-internals.h
21820         (MonoGenericInst): Renamed to MonoGenericClass.
21821         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
21822         (MonoClass): Renamed `generic_inst' to `generic_class'.
21823         (MonoGenericContext): Renamed `ginst' to `gclass'.
21825         * object-internals.h
21826         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
21828         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
21829         mono_reflection_generic_class_initialize().
21831         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
21832         now known as "System.Reflection.MonoGenericClass".
21833         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
21835 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
21837         * class-internals.h: Added a flag field to MonoClass to cache the
21838         declarative security attributes actions associated with the class.
21839         * domain-internals.h: Added booleans to MonoJitInfo to cache the
21840         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
21841         applicable to the JITted method.
21842         * reflection.c|h: Added functions to extract (as flags) which security
21843         actions are available (declaratively) for a method, class or assembly.
21844         * metadata.c|h: Added functions to search the declarative security
21845         table in the metadata.
21846         
21847 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
21849         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
21850         EXPORTEDTYPES are already in the class name cache, so there is no
21851         need to add extra code here to look at them. Just removes a bit of
21852         cruft.
21854         (ves_icall_System_Environment_get_TickCount): No need for #if
21855         WINDOWS. We already have the code in io-layer.
21857 2004-11-28  Martin Baulig  <martin@ximian.com>
21859         * loader.c
21860         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
21861         Fixes gen-112.cs.
21863 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
21865         * assembly.c (do_mono_assembly_open): Instead of having a
21866         conditional WITH_BUNDLE, incorporate support for bundles here, by
21867         having a global `bundles' variable holding a pointer to the actual
21868         bundles. 
21870         (mono_register_bundled_assemblies): New API call used by the
21871         bundle code. 
21873         See mkbundle.1 for details.
21874         
21875 2004-11-27  Martin Baulig  <martin@ximian.com>
21877         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
21878         the vtable for generic methods.
21880 2004-11-26  Martin Baulig  <martin@ximian.com>
21882         * metadata.c
21883         (mono_metadata_generic_method_hash): New public function.
21884         (mono_metadata_generic_method_equal): Likewise.
21886         * class-internals.h
21887         (MonoGenericContainer): Added `GHashTable *method_hash'.
21889         * reflection.c (ReflectionMethodBuilder): Added
21890         `MonoGenericContainer *generic_container'.
21891         (reflection_methodbuilder_to_mono_method): Don't create a new
21892         MonoGenericContainer each time we're called.
21893         (mono_reflection_bind_generic_method_parameters): Use
21894         `container->method_hash' to cache the results so we don't create a
21895         different method if we're called several times with the same
21896         arguments.
21898         * loader.c (method_from_methodspec): Use the new
21899         `container->method_hash' here, too.
21901 2004-11-26  Martin Baulig  <martin@ximian.com>
21903         * class.c (inflate_generic_signature): Correctly compute
21904         `res->has_type_parameters'.
21905         (mono_class_vtable): Use the `has_type_parameters' flag to
21906         determine whether we're a generic method.
21908         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
21910 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21912         * object.c (mono_runtime_run_main): Fix a small memory leak.
21914 2004-11-25  Martin Baulig  <martin@ximian.com>
21916         * class.c (set_generic_param_owner): Fixed the loop.
21918 2004-11-25  Martin Baulig  <martin@ximian.com>
21920         * object.c (mono_class_vtable): Don't create any JIT wrappers for
21921         generic methods.
21923 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21925         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
21926         names. Fixes #69787.
21928 2004-11-24  Martin Baulig  <martin@ximian.com>
21930         * class.c (mono_class_create_generic_2): If we don't have a
21931         `ginst->parent', inflate `gklass->parent' to get our parent.
21933 2004-11-24  Martin Baulig  <martin@ximian.com>
21935         * reflection.c (compare_genericparam): Correctly sort the
21936         GenericParam table; fixes #69779.
21938 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
21940         * reflection.c: When writing a PE file, don't create a huge
21941         buffer in memory. Just write the arrays we have to the file.
21942         This reduces memory usage.
21944         * metadata-internals.h: MonoDynamicStream pefile is no longer used
21945         globally.
21947 2004-11-17  Martin Baulig  <martin@ximian.com>
21949         * class.c (mono_class_init): Don't setup `class->parent' for
21950         dynamic instances; moved this to mono_class_generic_2().
21951         (mono_class_create_generic): Also set `klass->inited' for dynamic
21952         generic instances.
21953         (mono_class_create_generic_2): Don't do anything for dynamic
21954         generic instances.  Set `klass->parent' here and also call
21955         mono_class_setup_parent() here. 
21957         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
21958         `MonoType *parent' argument; set `ginst->parent' before calling
21959         mono_class_create_generic_2(), so we set the correct parent.
21961 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
21963         * reflection.c: allow getting attributes from ModuleBuilder
21964         (used by ikvm).
21966 2004-11-17  Martin Baulig  <martin@ximian.com>
21968         * class.c (mono_class_create_from_typedef): If a type parameter is
21969         inherited from an outer class, set its owner to that class.
21971 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
21973         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
21974           for (int*) written size. This fixes bug #69592.
21976 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
21978         * icall.c: Added IsAuthenticodePresnet internal call.
21979         * image.c|h: New function that check a MonoImage for an Authenticode
21980         signature in the certificate PE data directory.
21981         * security.c|h: New internal call to ask the runtime if an 
21982         Authenticode signature seems referenced in the PE header.
21984 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
21986         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
21988         * reflection.c (mono_image_create_pefile): Free the assembly streams
21989         after writing out the assembly file.
21991         * object.c (mono_runtime_run_main): Fix small memory leak.
21993         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
21994         property access modifiers. Fixes #69389.
21996 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
21998         * domain.c, object.c, object-internals.h, domain-internals.h,
21999         object.h, marshal.c: keep dynamic code info per domain.
22001 2004-11-15  Martin Baulig  <martin@ximian.com>
22003         * class.c (mono_type_get_name_recurse): Put type arguments in
22004         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22005         see bug #68387.
22007 2004-11-15  Martin Baulig  <martin@ximian.com>
22009         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22010         (mono_class_setup_vtable): When computing `the_cname' for a
22011         generic instance, don't include the namespace since we'd otherwise
22012         add it twice.
22014 2004-11-15  Martin Baulig  <martin@ximian.com>
22016         * class.c (mono_class_create_generic): Changed return type to void.
22017         (mono_class_create_generic_2): New public function; setup
22018         `class->method', `class->field' and `class->interfaces' here
22019         instead of in mono_class_init().
22021         * class.h (mono_class_create_generic): Moved to class-internals.h.
22023 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22025         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22026         rather than writing to memory, write to this file. Right now,
22027         we are just writting into a buffer, and copying that. However
22028         we can avoid the buffer later.
22030         (mono_dynamic_stream_reset): new function
22032         * icall.c, object-internals.h: update for the above.
22034 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22036         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22037         have been using gc'd memory. First it is slower, unlikely
22038         the comment in the source code said, secondly, it increases
22039         our footprint to do it in the gc.
22041         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22042         the method so that it does not have to copy to managed code.
22044 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22046         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22048 2004-11-12  Martin Baulig  <martin@localhost>
22050         * reflection.c (mono_image_create_token): Allow generic method
22051         definitions here, since they may appear in an `.override'; see
22052         gen-98/gen-99 for an example.
22054 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22056         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22057         #69365.
22059         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22060         descriptive.
22062 2004-11-11  Martin Baulig  <martin@ximian.com>
22064         * class.c (mono_class_setup_vtable): In an explicit interface
22065         implementation, the method name now includes the arity.
22067 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22069         * object.c (mono_array_full_copy): Fix warning.
22071 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22073         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22074         mono_class_get_method_from_name() instead.
22075         
22076         * class-internals.h: Added two new types of wrappers. 
22077         Added MonoRemotingTarget enum. Added new trampoline function type, which
22078         takes an additional MonoRemotingTarget value as parameter, so it is
22079         possible to request a trampoline for a specific target.
22080         
22081         * class.c: Added new mono_class_get_method_from_name() method.
22082         
22083         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22084         general remoting sinks and one specific for cross domain calls.
22085         
22086         * debug-helpers.c: Added new wrapper names.
22087         
22088         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22089         of a remote class.
22090         
22091         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22092         
22093         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22094         with several other methods (mono_marshal_get_xappdomain_dispatch,
22095         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22096         and others) can generate a fast remoting wrapper for cross domain calls.
22097         More information can be found in docs/remoting.
22098         Other changes: Removed mono_find_method_by_name, and used
22099         mono_class_get_method_from_name instead.
22100         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22101         is stored in the remoting invoke hashtable.
22102         
22103         * marshal.h: published the new method for getting the xdomain wrapper,
22104         and also added a method for getting the adequate wrapper for a given
22105         method and target.
22106         
22107         * object-internals.h, object.c: Added a couple of methods for capying and
22108         cloning arrays.
22109         Modified mono_install_remoting_trampoline, which takes the new remoting
22110         trampoline that has a remoting target as parameter.
22111         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22112         will return the most suitable vtable for the target.
22113         Added mono_remote_class_vtable, which returns the vtable of a remote class
22114         (which can be the normal remoting vtable or the xdomain vtable).
22115         
22116         * threads.c: the xdomain invoke and dispatch wrappers must also be
22117         protected against interruptions.
22119 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22121         * icall.c: use memmove in BlockCopyInternal when the source and
22122         destination arrays are the same.
22124 2004-11-09  Martin Baulig  <martin@ximian.com>
22126         * class-internals.h (MonoGenericContainer): Removed `method' and
22127         `signature', replaced them with `is_method' and `is_signature'
22128         flags.  Added `context'.
22130         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22131         instead of a `MonoGenericContainer *'.
22133         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22134         for dynamic type parameters.
22135         (mono_metadata_load_generic_params): Setup `container->context'.
22137         * reflection.c (mono_reflection_setup_generic_class): Setup
22138         `tb->generic_container->context'.
22139         (do_mono_reflection_bind_generic_parameters): Use
22140         mono_class_inflate_generic_type() to correctly inflate types,
22141         rather than using our own hack just for MONO_TYPE_VAR.
22143 2004-11-09  Martin Baulig  <martin@ximian.com>
22145         * class.c (mono_class_inflate_generic_method): Small fix; don't
22146         crash here.
22148         * icall.c
22149         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22150         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22151         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22152         (ves_icall_Type_BindGenericParameters): Likewise.
22153         (ves_icall_Type_get_IsGenericInstance): Likewise.
22154         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22155         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22156         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22157         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22159 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22161         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22162         assembly versions and public key tokens. Fixes #69113.
22164 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22166         * metadata.c: fix bug introduced with the type cache changes
22167         on 2004-11-06.
22169 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22171         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22172         the MonoClass pointer instead of the token in exception clauses.
22173         * reflection.c: updates for the above and make the code not depend
22174         on the structure of MonoExceptionClause.
22176 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22178         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22179         Add support for dynamic assemblies. Fixes #69114.
22181         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22183 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22185         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22186         since most only those methods use it. the code member of
22187         MonoMethodPInvoke was dead, so that can be removed too. Also,
22188         remove inline_count (again, not used), and move slot so that it
22189         can share bits with some other flags. This saves 8 bytes in the
22190         structure and gives us about 50 kb back for mcs helloworld.cs
22192         * *.[ch]: Do naming changes for the above.
22194         * loader.c (mono_method_get_header): Lazily init the header
22195         on first access.
22196         (mono_get_method_from_token): don't init the header here
22197         (mono_free_method): the header may never be allocated
22199         Overall, this saves 150 kb of unmanaged allocations
22200         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22201         memory at runtime.
22202         
22203         * loader.c, loader.h (mono_method_get_header): new accessor.
22205         * *.[ch]: use the above method. Prepares us to lazily load
22206         the header.
22208         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22209         three warnings, which are actual bugs (see 69206).
22211         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22212         unused. Saves a cool 4 bytes / method.
22214 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22216         * metadata.c (builtin_types): Add types for System.Object here.
22217         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22218         for a class or valuetype from klass->this_arg or klass->byval_arg.
22220         On mcs for a hello world, this gets us down from 21836 MonoType's
22221         to 14560.
22223         (mono_metadata_free_type): Account for the above change.
22225 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22227         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22228         exception instead of asserting if name is null.
22229         (ves_icall_System_AppDomain_GetData): Ditto.
22231 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22233         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22234         EnumBuilder.
22236         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22237         Return NULL when the domain does not have entry_assembly set.
22239         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22240         Add a 'resource_modules' argument.
22241         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22243         * reflection.c (mono_reflection_create_runtime_class): Move setting
22244         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22245         for enums too.
22247         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22248         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22249         Throw an ArgumentNullException if 'ptr' is null.
22251         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22252         assemblies here. Fixes #69020.
22254 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22256         * reflection.c (build_compressed_metadata): Fix the previous patch for
22257         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22258         the stack.
22260 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22262         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22263         the cultures is false. Fixes #69090.
22265         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22266         detected by valgrind.
22267         
22268         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22269         TypeResolve multiple times for the same type. Fixes #65577.
22271 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22273         * marshal.c: Avoid using ldftn to call managed functions. It is
22274         much slower than just a call.
22276         * reflection.c (mono_module_get_object): free the basename we
22277         allocate here from glib.
22278         
22279         * reflection.c (ensure_runtime_vtable): make sure to free
22280         overrides.  Also, we were allocating an array of MonoMethod not an
22281         array of MonoMethod*.
22283         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22285         * image.c (mono_image_close): free image->guid here.
22287 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22289         * reflection.c: Fix some spec conformance issues with the PE file
22290         structures so mcs compiled apps run on the Net 2.0 beta.
22292 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22294         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22295         Implement this. Fixes #67264.
22297         * debug-helpers.h debug-helpers.c marshal.c: Move 
22298         mono_find_method_by_name to debug-helpers.c.
22300 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22302         * object.c (mono_release_type_locks): type_initialization_hash is
22303         a GHashTable.
22305         * reflection.c object.c object-internals.h: Fix warnings.
22307         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22308         without accessors. Fixes #61561.
22310         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22311         application base from the root domain if not set. Fixes #65641.
22312         (mono_runtime_init): Fix warning.
22314 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22316         * appdomain.c: call mono_thread_pool_init.
22317         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22318         of worker threads based on the number of CPUs and the environment
22319         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22320         for non-windows (windows) systems.
22322 2004-10-27  Chris Toshok  <toshok@ximian.com>
22324         * mono-debug-debugger.c (write_class): don't call mono_class_init
22325         here, as even with the check for (!klass->init_pending), we get
22326         into a situation where we're hitting cycles in class
22327         initialization.  Fixes #68816.
22329 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22331         * image.c: Avoid overwriting values in the loaded_images_hash when an
22332         assembly is loaded multiple times. Fixes #61152.
22334         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22335         so multiple satellite assemblies for the same name can be loaded.
22336         Fixes #68259.
22338         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22339         not NULL.
22341         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22342         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22344         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22345         pending finalizers are not invoked after the appdomain has been 
22346         unloaded. Fixes #67862.
22348 2004-10-22  Martin Baulig  <martin@ximian.com>
22350         * mono-debug-debugger.c
22351         (mono_debugger_runtime_invoke): Don't box valuetypes.
22353 2004-10-22  Chris Toshok  <toshok@ximian.com>
22355         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
22356         don't hide private methods.
22358 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
22360         * icall.c: Allows the runtime to "share" (when known) the public key
22361         token of an assembly. This avoid the need to recalculate the token 
22362         (from the public key) in managed code.
22364 2004-10-21  Chris Toshok  <toshok@ximian.com>
22366         * debug-helpers.c (append_class_name): argh, revert last patch.
22367         
22368 2004-10-21  Chris Toshok  <toshok@ximian.com>
22370         * debug-helpers.c (append_class_name): use '+' as the delimiter,
22371         not '/', so that it matches what the debugger uses to look up
22372         methods.
22374 2004-10-21  Martin Baulig  <martin@ximian.com>
22376         * mono-debug-debugger.c (mono_debugger_throw_exception): New
22377         public method; this is called each time an exception is thrown and
22378         allows the debugger to use exception catch points.
22380 2004-10-21  Martin Baulig  <martin@ximian.com>
22382         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
22383         the stack pointer and the exception object in some struct and pass
22384         that to the debugger.
22386 2004-10-21  Chris Toshok  <toshok@ximian.com>
22388         * mono-debug-debugger.c (do_write_class): add instance/static
22389         event support.  We don't expose "raise" or "other" yet.
22390         (event_is_static): new method.
22392 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
22394         * mono-debug-debugger.c
22395         (mono_debugger_handle_exception): Remove
22396         bogus return value for fussy compilers.
22398 2004-10-20  Martin Baulig  <martin@ximian.com>
22400         * mono-debug-debugger.c
22401         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
22402         (mono_debugger_handled_exception): Likewise.
22404 2004-10-20  Martin Baulig  <martin@ximian.com>
22406         * mono-debug-debugger.h (MonoDebuggerEvent): Added
22407         MONO_DEBUGGER_EVENT_EXCEPTION.
22409         * mono-debug-debugger.c (mono_debugger_handle_exception): New
22410         public function to send the debugger a notification for an
22411         exception and inform it about a catch/finally clause.
22413 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
22415         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
22416         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
22417         fix 2.95 build. 
22419         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
22421 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
22423         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
22424         marshalled as [In,Out]. Fixes #58325.
22426 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
22428         * reflection.c (mono_method_body_get_object): Implement some fields.
22430 2004-10-12  Martin Baulig  <martin@ximian.com>
22432         * reflection.c (mono_reflection_bind_generic_parameters): Small
22433         fix, correctly retrieve our parent from a generic instance.
22435 2004-10-12  Martin Baulig  <martin@ximian.com>
22437         * metadata.c (mono_metadata_generic_param_equal): We always have
22438         an owner.
22440         * class.c
22441         (mono_class_from_generic_parameter): We need to have an owner.
22442         (my_mono_class_from_generic_parameter): Likewise.
22444         * reflection.c (mono_reflection_setup_generic_class): Renamed to
22445         mono_reflection_create_generic_class() and added a new
22446         mono_reflection_setup_generic_class().  
22447         (mono_reflection_initialize_generic_param): If we're a nested
22448         generic type and inherited from the containing class, set our
22449         owner to the outer class.
22451 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
22453         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
22455         * reflection.c (mono_method_body_get_object): New function to create
22456         a MethodBody object.
22458         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
22460 2004-10-11  Martin Baulig  <martin@ximian.com>
22462         * metadata.c (_mono_metadata_type_equal): Renamed to
22463         do_mono_metadata_type_equal() and made static.
22465 2004-10-11  Martin Baulig  <martin@ximian.com>
22467         * appdomain.c: Bump corlib version number to 28.
22469 2004-10-10  Martin Baulig  <martin@ximian.com>
22471         * class-internals.h
22472         (MonoGenericInst): Added `MonoGenericContainer *container'.
22473         (MonoGenericMethod): Likewise.
22474         (MonoGenericContext): Likewise.
22475         (MonoGenericParam): Added `MonoGenericContainer *owner'.
22477         * metadata.c
22478         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
22479         (do_mono_metadata_parse_generic_inst): Likewise.
22480         (mono_metadata_parse_type_full): New public method.  This is the actual
22481         mono_metadata_parse_type() implementation - with an additional
22482         `MonoGenericContainer *' argument.
22483         (mono_metadata_parse_array_full): Likewise.
22484         (mono_metadata_parse_signature_full): Likewise.
22485         (mono_metadata_parse_method_signature_full): Likewise.
22486         (mono_metadata_parse_mh_full): Likewise.
22487         (mono_type_create_from_typespec): Likewise.
22488         (mono_metadata_interfaces_from_typedef_full): New public method;
22489         this is similar to the other _full() methods, but we take a
22490         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
22491         (mono_metadata_parse_generic_param): Take an additional
22492         `MonoGenericContainer *' argument and lookup the MonoGenericParam
22493         from that container.
22494         (mono_metadata_generic_param_equal): New static method to compare
22495         two type parameters.
22496         (_mono_metadata_type_equal): New static method; takes an
22497         additional `gboolean signature_only' argument - if true, we don't
22498         compare the owners of generic parameters.
22499         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
22500         with a TRUE argument - do a signature-only comparision.
22502         * loader.c: Use the new _full() methods and pass the
22503         MonoGenericContainer to them.
22505         * object-internals.h (MonoReflectionTypeBuilder): Added
22506         `MonoGenericContainer *generic_container' field.
22507         (MonoReflectionMethodBuilder): Likewise.
22509 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
22511         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
22512         case initial images of dynamic assemblies.
22514         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
22516         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
22518         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
22519         length of event->other array.
22520         (typebuilder_setup_events): Ditto.
22522         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
22523         'assembly_by_name' and add an 'assemblies' list.
22525         * assembly.h assembly.c: Add a new search hook for determining whenever
22526         an assembly is already loaded. Use this instead of searching in the
22527         loaded_assemblies list.
22529         * domain.c appdomain.c: Implement the new search hook so loaded 
22530         assemblies are now scoped by appdomain. Fixes #67727.
22532 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
22534         * threads.c (mono_thread_attach): Initialize synch_lock field so
22535         mono_thread_detach works again.
22537         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
22538         'lib' too. Fixes #63130.
22540 2004-10-06  Jackson Harper  <jackson@ximian.com>
22542         * culture-info-tables.h: regenerated.
22544 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
22546         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
22547         implemented by other interfaces in the result. Fixes #65764.
22548         
22549         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22550         Handle unloadable modules without crashing.
22552         * image.c (load_modules): Revert the previous patch since modules must
22553         have a fixed index inside the array.
22554         
22555         * image.c (load_modules): Don't include native modules in the modules
22556         array.
22558 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
22560         * reflection.h: Add param_defaults field.
22562         * reflection.c: Add support for parameter defaults in dynamic methods.
22563         Fixes #64595.
22565         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
22566         an empty string when a type has no namespace. Fixes #64230.
22568 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
22570         * tabledefs.h: Added "internal" security actions to support non-CAS
22571         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
22572         Note: they do not seems to be used anymore in 2.0 (new metadata format)
22574 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
22576         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
22577         constructor of abstract class. Fixes #61689.
22579 2004-10-04  Martin Baulig  <martin@ximian.com>
22581         * class-internals.h (MonoGenericContainer): New type.
22582         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
22583         `MonoGenericContainer *generic_container'.
22584         (MonoClass): Replaced `gen_params' and `num_gen_params' with
22585         `MonoGenericContainer *generic_container'.
22587         * metadata.c (mono_metadata_load_generic_params): Return a
22588         `MonoGenericContainer *' instead of a `MonoGenericParam *';
22589         removed the `num' argument.
22591 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
22593         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
22594         for dynamic images.
22596         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
22597         machine fields.
22599         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
22601         * reflection.c: Save pe_kind and machine values into the generated
22602         image file.
22604         * appdomain.c: Bump corlib version number.
22606         * object-internals.h: Reorganize layout of LocalBuilder.
22608         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
22609         New helper function.
22611         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
22612         created MonoType for dynamic types. Fixes #66180.
22614 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
22616         * threadpool.c: the ares hashtable needs a critical section around it.
22617         this prevents some nasty segfaults
22619 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
22621         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
22622         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
22623         bug 67324).
22624         
22625 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22627         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
22628         
22629 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
22631         * image.c: Always canonicalize image file names, to avoid loading
22632         the same assembly twice when referenced using a relative path.
22634 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22636         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
22638         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
22640         * marshal.c: Fix warnings.
22642 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
22644         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
22645         attempting to marshal the delegate_trampoline as the method_addr.
22646         This patch has a static hashtable of marshalled delegates so that 
22647         we can map delegate_trampoline addresses back to delegates.  This
22648         allows a delegate passed to managed code to be passed back into native
22649         code.  Fixes #67039
22651 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22653         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
22655         * reflection.c (method_encode_code): Align method headers properly.
22656         Fixes #66025.
22658 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22660         * marshal.c: In the runtime invoke wrapper, reset the abort
22661         exception if it is cached. This avoids the automatic rethrowal of 
22662         the exception after the catch of the wrapper. Also check for pending
22663         interruptions before calling the managed method. This is done using
22664         the new method emit_thread_force_interrupt_checkpoint, since the
22665         normal checkpoint method is ignored when running the invoke wrapper.
22666         * object.c: If the abort exception is rethrown, set the abort_exc
22667         field of the thread, so it will be rethrown aftere every catch.
22668         * threadpool.c: Only run an interruption checkpoint if what has been
22669         requested is a stop of the thread (aborts will be ignored).
22670         * threads.c: By default, a thread will now never be interrumped while
22671         running the runtime invoke wrapper (this ensures that runtime_invoke
22672         will always return to the caller if an exception pointer is provided).
22673         There is a new special method mono_thread_force_interruption_checkpoint()
22674         to force an interruption checkpoint even if running a protected
22675         wrapper, which is used by the same runtime invoke wrapper to do a check
22676         at a safe point.
22678 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22680         * object.c, object-internals.h: Implemented mono_release_type_locks,
22681         which releases the cctor locks held by a thread.
22682         * threads.c, threads.h: In thread_cleanup, release cctor locks held
22683         by a thread. Added mono_thread_exit() method to be used to safely stop
22684         a thread.
22686 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22688         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22689         Move null check before dereference.  Avoid indexing beyond the end
22690         of the 'modules' array.
22692 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22694         * metadata-internals.h (MonoImage): Add module_count field.
22695         * image.c (load_modules): Set image->module_count.
22696         (mono_image_load_file_for_image): Use image->module_count.
22697         * reflection.c (mono_image_load_module): Append to image->modules array 
22698         of dynamic assembly.
22699         (mono_module_get_object): Fix loop to actually increment index.
22700         Use image->module_count.
22701         * assembly.c (mono_assembly_load_references): Use image->module_count.
22702         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
22703         Likewise.
22705 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22707         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
22708         Avoid assert on generic types.
22710 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
22712         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
22714         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
22716         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
22717         function to convert a MarshalSpec structure to its managed counterpart.
22719         * reflection.c: Fix warnings.
22720         
22721         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
22722         field.
22724         * icall.c (mono_create_icall_signature): Fix build.
22726 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
22728         * icall.c: Add MakePointType icall.
22730         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
22731         warnings.
22733 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22735         * threadpool.c: reuse allocated slots in the queue.
22737 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
22739         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
22741         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
22743         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
22744         previous change.
22746         * tabledefs.h: Add constants for pinvoke attributes BestFit and
22747         ThrowOnUnmappableChar.
22749         * icall.c (ves_icall_Type_GetPacking): New icall.
22751 2004-09-24  Martin Baulig  <martin@ximian.com>
22753         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
22755 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22757         * appdomain.c:
22758         (mono_domain_set): allow setting a domain that is being unloaded.
22759         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
22760         being unloaded.
22762 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22764         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
22765         the GetCustomAttributes icall.
22767 2004-09-23  Martin Baulig  <martin@ximian.com>
22769         * object-internals.h (MonoReflectionGenericParam): Replaced
22770         'has_ctor_constraint', `has_reference_type' and `has_value_type'
22771         with `guint32 attrs'.
22773 2004-09-23  Martin Baulig  <martin@ximian.com>
22775         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
22777 2004-09-23  Martin Baulig  <martin@ximian.com>
22779         * object-internals.h (GenericParameterAttributes): New enum.
22781 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22783         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
22784         
22785         * class.c (init_events): Fill out event->other field.
22787         * class.c: Fix warnings.
22789         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
22791 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
22793         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
22794         walk which doesn't supply the IL offset.
22796 2004-09-22  Martin Baulig  <martin@ximian.com>
22798         * reflection.c (mono_reflection_setup_internal_class): If we're
22799         System.ValueType, System.Object or System.Enum, set
22800         `klass->instance_size' and create the vtable.
22801         (mono_reflection_create_internal_class): If we're an enum type,
22802         get the base class from our current corlib.
22804 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
22806         * reflection.h (MonoResolveTokenError): New type.
22808         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
22809         icall.
22811         * icall.c: Add an 'error' argument to the ResolveToken icalls.
22813 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
22815         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
22816         Support also calling constructors, but only for already allocated objects.
22818 2004-09-17  Geoff Norton <gnorton@customerdna.com>
22820         * reflection.c (type_get_qualified_name): If the klass is null
22821         return the typename to avoid a NullRefEx.
22822         (encode_cattr_value): Get the qualified name of the boxed type,
22823         not the underlying enumtype.  Fixes #62984.
22825 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
22827         * marshal.c: Fix problems with previous checkin.
22829 2004-09-21    <vargaz@freemail.hu>
22831         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
22832         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
22834         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
22836 2004-09-21  Geoff Norton <gnorton@customerdna.com>
22838         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
22839         should only return a type for pointers, arrays, and passbyref types.
22840         Fixes bug #63841.
22842 2004-09-21  Martin Baulig  <martin@ximian.com>
22844         * domain.c (mono_debugger_check_runtime_version): New public
22845         function.
22847         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
22849 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
22851         * reflection.c: Added missing sort to the declarative security 
22852         attributes table. MS implementation stops seeing the attributes if the
22853         token number regress in the table (as shown by ildasm and permview).
22855 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
22857         * object-internals.h (MonoReflectionModule): Add 'token' field.
22858         
22859         * reflection.c (mono_reflection_get_token): Add support for Module
22860         and Assembly.
22861         (mono_module_get_object): Set 'token' field.
22862         (mono_module_file_get_object): Set 'token' field.
22864         * icall.c: Add new Assembly and Module icalls.
22866         * appdomain.c: Bump corlib version.
22868 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
22870         * loader.h loader.c class.h class.c: Add helper functions for obtaining
22871         tokens of metadata objects.
22873         * reflection.h reflection.c (mono_reflection_get_token): New function
22874         to obtain the token of a metadata object.
22876         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
22878 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
22880         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
22881         
22882         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
22884 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
22886         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
22887         * object-internals.h: Added 3 MonoArray* members to MonoReflection
22888         AssemblyBuilder to access the permissions set in the class lib.
22889         * reflection.c: Added security attributes encoding step in 
22890         mono_image_build_metadata.
22891         * tabledefs.h: Added new security actions defined in 2.0:
22892         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
22894 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22896         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
22897         macro parameter.
22899 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22901         * locales.c: nullify the ICU_collator member of CompareInfo when it is
22902           finalized. There where random SIGSEVs at program termination, when
22903           an object being finalized was trying to do a string comparison and
22904           the current culture was already finalized.
22906 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22908         * threads.c: call thread_cleanup before finishing the thread if we get
22909         there.
22911 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
22913         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
22914         assemblies from the parent. Fixes #65665.
22916 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
22918         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
22919         modifiers.
22921 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
22923         * reflection.h: add prototype for mono_get_dbnull_object
22924         * reflection.c: add prototypes for get_default_param_value_blobs 
22925         and mono_get_object_from_blob for fussier compilers
22927 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
22929         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
22930         false deadlock checks in class initialization.
22932 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
22934         * image.c (mono_image_addref): Fix comment.
22936         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
22937         possible.
22939 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
22941         * reflection.c (mono_param_get_objects): Modified to return
22942         ParameterInfo.DefaultValue object.
22944         (get_default_param_value_blobs):
22945         (mono_get_object_from_blob):
22946         (mono_get_dbnull_object): New helper routines. 
22948         * object.c (mono_get_constant_value_from_blob): New helper routine
22949         carved out from get_default_field_value ()
22951         * object-internals.h (mono_get_constant_value_from_blob): Added
22952         function declaration.
22954 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
22956         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
22957         referenced assemblies. Fixes #62135.
22959         * exception.h exception.c (mono_get_exception_file_not_found2): New
22960         helper function.
22962 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
22964         * class.h class.c: Add mono_type_get_underlying_type ().
22966 2004-09-09  Geoff Norton <gnorton@customerndna.com>
22968         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
22969         Fix GetTypes() to support dynamically created assemblies.
22971 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
22973         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
22974         
22975         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
22976         previous patch.
22978         * reflection.h reflection.c loader.c: Allow dynamic construction of
22979         pinvoke methods. Fixes #65571.
22980         
22981         * reflection.c (mono_reflection_get_type): Revert previous change since
22982         it causes regressions.
22984 2004-09-08  Martin Baulig  <martin@ximian.com>
22986         * class.c (class_compute_field_layout): Don't call
22987         mono_class_layout_fields() for open generic instances.
22989 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
22990         * threads.c appdomain.c: fix typo in GC macro
22992 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22994         * threads.c: don't call mono_thread_detach() in start_wrapper(),
22995         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
22997 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
22999         * image.c (mono_image_close): Applied patch from 
23000         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23001         assembly is loaded multiple times from data.
23002         
23003         * image.c (mono_image_open): Fix warning.
23005 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23007         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23008         once. Fixes #58334.
23009         
23010         * reflection.c (mono_reflection_create_runtime_class): Initialize
23011         klass->nested_classes. Fixes #61224.
23013 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23015         * threads.c: sched_yield() on exit, to allow threads to quit.
23017 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23019         * object.c (mono_unhandled_exception): Remove leftover debug code.
23021 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23023         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23025 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23027         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23028         
23029         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23031 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23033         * marshal.c (emit_marshal_array): Null terminate string arrays.
23034         
23035         * marshal.c (raise_auto_layout_exception): Fix warning.
23037         * reflection.c (mono_param_get_objects): Initialize the default value
23038         with DBNull.Value, not null. Fixes #62123.
23040 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23042         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23043         throw an exception with a cute explanation.
23045 2004-09-06  Dick Porter  <dick@ximian.com>
23047         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23048         Close the new process's thread handle, as we don't use it.  The
23049         handle stays around forever otherwise.
23051 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23053         * object.c (arith_overflow): Fix warning.
23055         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23056         calling conventions in method refs. Fixes #65352.
23058         * reflection.c: Fix warnings.
23060 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23062         * icall.c: Add a new icall for Array.Clear
23064 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23066         * object.c: When allocating an array, we have to throw
23067         an overflow exception if any of the lengths are < 0.
23069 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23071         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23072         properly. Also move implementation of string array marshalling to 
23073         managed code. Fixes #42316.
23075 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23077         * assembly.c: provide more information when loading an assembly fails.
23079 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23081         * filewatcher.c: don't expect the development fam package to be
23082         installed.
23084 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23086         * marshal.c: Make a copy of the signature cookie since it will be
23087         freed by the caller.
23088         
23089         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23091         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23093         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23094         marshal specs.
23096         * marshal.c: More refactoring.
23097         
23098         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23099         smaller functions.
23101 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23103         * object.c: In mono_message_invoke, fill the output parameter array after
23104           calling the managed method (it was done before the call). This fixes
23105           bug #59299.
23107 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23109         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23110         as well.
23112 2004-09-02  Martin Baulig  <martin@ximian.com>
23114         * class.c (mono_class_instance_size): Don't allow generic type
23115         definitions or open generic instances.
23116         (mono_class_array_element_size): If we're a value type, call
23117         mono_class_instance_size() on the original class.
23119         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23120         handle generic instances.
23122         * mono-debug-debugger.c (write_type): Handle generic instances
23123         like classes.
23125 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23127         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23128         the allocation request fails. Fixes #65089.
23130         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23131         
23132         * object.c (mono_runtime_free_method): New function to free a dynamic
23133         method.
23135         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23136         delegate trampoline.
23138         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23139         with hasthis as dynamic,
23141         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23143         * domain.c (mono_jit_info_table_remove): New function to remove an
23144         entry from the jit info table.
23146         * class-internals.h (MonoMethod): Add 'dynamic' field.
23148         * loader.c: Fix warnings.
23150 2004-09-01  Martin Baulig  <martin@ximian.com>
23152         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23153         instead of mono_debugger_lock() because the latter one is a no-op
23154         unless running in the debugger.
23156 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23158         * class.c (class_compute_field_layout): Classes with auto-layout or
23159         reference fields are not blittable.
23160         
23161 2004-09-01  Dick Porter  <dick@ximian.com>
23163         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23164         mono_image_get_filename() to get the assembly location.
23166         * icall.c:
23167         * metadata.h: Fix compile warnings
23169 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23171         * class.c (class_compute_field_layout): System.Object is blittable.
23173         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23174         as in/out. Fixes #59909.
23176 2004-09-01  Martin Baulig  <martin@ximian.com>
23178         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23179         mono_metadata_generic_inst_is_valuetype() if we're a generic
23180         instance to check whether our underlying type is a reference type.
23182 2004-09-01  Martin Baulig  <martin@ximian.com>
23184         * metadata.c (mono_type_size): If we're a generic instance, call
23185         mono_class_value_size() for value types.
23187 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23189         * marshal.c: Implement more custom marshalling functionality. Fixes
23190         #64915.
23192 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23194         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23196 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23198         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23200         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23202         * icall.c: Fix some warnings.
23204         * threads.c (abort_appdomain_thread): Fix unref errors.
23205         (mono_thread_current): Fix THREAD_DEBUG define.
23207 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23209         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23211         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23213 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23215         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23216         string arrays.
23218 2004-08-28  Martin Baulig  <martin@ximian.com>
23220         * metadata.c
23221         (mono_metadata_generic_inst_is_valuetype): New public function.
23223         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23224         mono_metadata_generic_inst_is_valuetype() if we're a generic
23225         instance to check whether our underlying type is a valuetype.
23227 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23229         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23230         #63768.
23232 2004-08-25  Martin Baulig  <martin@ximian.com>
23234         * loader.c (mono_get_method_from_token): Abstract methods can also
23235         be generic and thus have type parameters.
23237         * metadata-internals.h
23238         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23240         * reflection.c (mono_image_get_generic_param_info): Don't create a
23241         metadata row, just add an entry to the `gen_params' array.
23242         (build_compressed_metadata): Sort the `gen_params' array and then
23243         actually create the metadata.
23245 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23247         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23249 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23251         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23253 2004-08-24  Martin Baulig  <martin@ximian.com>
23255         * class.cs (mono_class_is_subclass_of): Like an interface, a
23256         generic instance also derives from System.Object.
23258 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23260         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23261         custom modifiers to be in any order. Fixes #61990.
23263 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23265         * object.c: Register mono_object_new_fast icall.
23266         
23267         * object.c (mono_class_get_allocation_ftn): Return to calling
23268         mono_object_new_fast, since it seems faster to compute the object 
23269         size in unmanaged code than passing it as a parameter.
23271         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23273         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23274         this function with Boehm as the oom handler, so we don't have to check
23275         the result of GC_malloc.
23277         * object.c: Remove checks for oom.
23279         * object.h object.c (mono_class_get_allocation_ftn): New function to
23280         return the icall which can be used to allocate an instance of a given
23281         class. 
23283         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23285         * class-internals.h: Add 'enabled' field.
23287 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23289         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23291 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23292         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23293         value 0x0010.
23295 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23297         * appdomain.c: use the Tls function for appdomain too,
23298         at Zoltan's request. Actually return in mono_context_get
23300         * appdomain.c, profiler.c, threads.c: use __thread
23302 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23304         * appdomain.c threads.c: Call GC_CreateThread on windows.
23306         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23307         multiple libraries since this don't work on windows.
23309 2004-08-18  Martin Baulig  <martin@ximian.com>
23311         * class-internals.h
23312         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23313         MonoMethodHeader.
23315         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23316         MonoMethodNormal since we also need it for abstract and interface
23317         methods.
23319         * reflection.c
23320         (build_compressed_metadata): Sort the GenericParam table.
23321         (mono_image_create_token): Added `gboolean create_methodspec'
23322         argument; this is false when generating a MethodImpl token.
23323         (reflection_methodbuilder_to_mono_method): Abstract and interface
23324         methods may also have generic parameters.
23326 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23328         * appdomain.c: thread local alloc
23330 2004-08-17  Martin Baulig  <martin@ximian.com>
23332         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23334         * icall.c
23335         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23336         argument.
23338         * class.c (mono_type_get_full_name): New public function.
23339         (mono_type_get_name): Don't include the type arguments.
23341 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23343         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23344         for inclusion into the mono executable.
23346 2004-08-16  Martin Baulig  <martin@ximian.com>
23348         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
23349         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
23351 2004-08-14  Martin Baulig  <martin@ximian.com>
23353         * class.c (dup_type): Also copy the `byref' field.
23355 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
23357         * reflection.c (create_dynamic_mono_image): Revert the last change 
23358         since it breaks bootstrap.
23360 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
23362         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
23364         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
23365         not free them with g_free.
23367 2004-08-11  Martin Baulig  <martin@ximian.com>
23369         * reflection.c (mono_reflection_setup_internal_class): Also call
23370         mono_class_setup_mono_type() if we already have a `tb->type.type'.
23372 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
23374         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
23375         called during default (first) AppDomain creation. Keep track of
23376         Evidence when loading assemblies.
23378 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23380         * opcodes.c, opcodes.h: reduce runtime relocations.
23382 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23384         * culture-info.h, locales.c: fixes and chages to sue the new
23385         optimized format of the locale data.
23386         * culture-info-tables.h: regenerated.
23388 2004-08-06  Geoff Norton <gnorton@customerdna.com>
23389         
23390         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
23392 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
23394         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
23395         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
23396         * domain-internals.h: icall declaration.
23397         * icall.c: icall registration.
23398         * object-internals.h: New fields in MonoAssembly for CAS.
23400 2004-08-05  Duncan Mak  <duncan@ximian.com>
23402         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
23403         CEE_LDELEM_ANY.
23405 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23407         * reflection.c: fix to deal with object[] arrays in custom ctors
23408         (bug #62550).
23410 2004-08-05  Martin Baulig  <martin@ximian.com>
23412         * class.c (mono_class_array_element_size): Added support for
23413         generic instances and correctly handle "recursive" types.
23415 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
23417         * assembly.c: Fix warnings.
23419 2004-08-04  Martin Baulig  <martin@ximian.com>
23421         * class.c
23422         (mono_type_get_name_recurse): Added `gboolean include_arity'
23423         argument specifying whether or not we should include the generic
23424         arity in the type name.
23425         (_mono_type_get_name): New static function.
23426         (mono_class_setup_vtable): If we're a generic instance, don't
23427         include the generic arity in the names of explicit method
23428         implementations.        
23430 2004-08-03  Martin Baulig  <martin@ximian.com>
23432         * class.c (mono_type_get_name_recurse): Enclose the generic type
23433         arguments in `<', '>'.
23435 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23437         * gc.c: make GC warning messages use the trace API, they are just
23438         noise to most of the users.
23440 2004-08-03  Martin Baulig  <martin@ximian.com>
23442         * debug-mono-symfile.c (read_string): Correctly read the string.
23444 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
23446         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
23447         
23448         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
23449         icalls.
23450         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
23452 2004-07-30  Martin Baulig  <martin@ximian.com>
23454         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
23455         Reflect latest symbol writer changes.   
23457 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23459         * object.c: always create an object if null is passed
23460         to Invoke() where a valuetype is expected.
23462 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
23464         * marshal.c (mono_marshal_init): make managed
23465         signatures match native ones better for 64bits.
23467 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23469         * appdomain.c: hack to build correctly the private bin path on windows.
23470         Fixes bug #61991.
23472 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
23474         * assembly.c: Load mscorlib from the correct framework directory
23475           (mono/<version>/mscorlib.dll).
23476         * appdomain.h: Added prototypes for new functions.
23477         * internals.h: Added some prototypes.
23478         * domain.c: When initializing the runtime, get from the executable and
23479           the configuration files the runtime version that the app supports.
23480           Added support methods for reading app.exe.config. Added list of versions
23481           supported by the JIT. Added two new methods: mono_init_from_assembly,
23482           which initializes the runtime and determines the required version from
23483           the provided exe file, and mono_init_version, which initializes
23484           the runtime using the provided version.
23485         * icall.c: Get machine.config from version-specific directory.
23486         * reflection.c: When generating an image, embed the version number
23487           of the current runtime.
23489 2004-07-28  Dick Porter  <dick@ximian.com>
23491         * socket-io.c
23492         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
23493         returned sockaddr size before creating the remote address object.
23494         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
23495         61608.
23497 2004-07-28  Dick Porter  <dick@ximian.com>
23499         * locales.c (string_invariant_compare_char): Fix invariant char
23500         compares between upper and lower cases.  Fixes bug 61458.
23502 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
23503         
23504         * marshal.c: actually cache stelem.ref wrappers.
23505         
23506 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23508         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
23509         sections and remove the mono_cli_rva_map () function.
23511 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23513         * debug-mono-symfile.c: fix one more endianess issue, from a patch
23514         by Geoff Norton (<gnorton@customerdna.com>).
23516 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23518         * class.c: fix class loads for pointer types (typeof(int) !=
23519         typeof(int*)).
23521 2004-07-27  Martin Baulig  <martin@ximian.com>
23523         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
23524         reading the debugging information from an external ".mdb" file.
23526 2004-07-24  Martin Baulig  <martin@ximian.com>
23528         * reflection.c (mono_image_get_type_info): Only write a class
23529         layout entry if we actually have a size or a packing size.
23531 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23533         * reflection.c (type_get_fully_qualified_name): 
23534         insert cast to get type checking of ?: with non-gcc compilers
23536 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23538         * rand.c: use g_getenv for both lookups of
23539         MONO_EGD_SOCKET
23541 2004-07-17  Martin Baulig  <martin@ximian.com>
23543         * reflection.c (mono_reflection_bind_generic_method_parameters):
23544         Set `gmethod->reflection_info'.
23546 2004-07-17  Martin Baulig  <martin@ximian.com>
23548         * class.c (mono_class_create_from_typedef): Insert the newly
23549         created class into the hash table before computing the interfaces
23550         since we could be called recursively.
23552 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
23554         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
23555         function to implement stelem.ref in managed code
23556         * class-internals.h, debug-helpers.c: a new wrapper type
23557         for the above.
23559 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23561         * gc.c: allow GC handles to work even when no GC is compiled in.
23562         Fix part of bug #61134 (GetAddrOfPinnedObject).
23564 2004-07-13  Peter Williams  <peter@newton.cx>
23566         * process.c (complete_path): Make sure we don't attempt to execute
23567         directories.
23569 2004-07-12  Geoff Norton <gnorton@customerdna.com>
23571         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
23572           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
23573           and will add/subtract the hour if needed
23575 2004-07-12  Martin Baulig  <martin@ximian.com>
23577         * reflection.c (mono_field_get_object): If we have
23578         `field->generic_info', take the attributes from
23579         `field->generic_info->generic_type'.    
23581 2004-07-12  Martin Baulig  <martin@ximian.com>
23583         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
23584         This function must be called before initializing the runtime.
23585         (mono_debug_init_1): New function; call this after initializing
23586         the runtime, but before loading the assembly.  It tells the
23587         debugger to load corlib and the builtin types.
23589         * mono-debug-debugger.c: Did some larger changes in the debugging
23590         code; support recursive class declarations, make sure we actually
23591         add all classes.
23593 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23595         * debug-helpers.c: undo my previous patch and fixed the real issue in
23596         ../mini/exceptions-x86.c
23598 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23600         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
23601         when no HOME env. variable was set and a NullRef was thrown in a .cctor
23602         called from other .cctors.
23604 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23606         * loader.c: Removed the mono_loader_wine_init hack now that we are
23607         doing a managed version of Windows.Forms.
23609 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
23611         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
23612         threadpool.c, threads.c: remove static data from rootset.
23614 2004-07-09  Dick Porter  <dick@ximian.com>
23616         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
23617         Don't do any more processing if the matched length was 0.  It was
23618         increasing the size of the string before.  Fixes bug 61167.
23620 2004-07-09  Dick Porter  <dick@ximian.com>
23622         * socket-io.h:
23623         * socket-io.c
23624         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
23625         Add support for SO_PEERCRED if its available.
23627 2004-07-09  Peter Bartok <pbartok@novell.com>
23628         * loader.c: winelib.exe.so error message is now only displayed if
23629         MONO_DEBUG is set. To help us avoid questions when people are trying
23630         out the new Managed.Windows.Forms.
23632 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
23634         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
23635         for isinst and castclass wrappers.
23637         * class-internals.h icall.c: Move registration and lookup of JIT icalls
23638         to libmetadata from the JIT, so they could be used by the marshalling
23639         code and the interpreter.
23641         * marshal.c: Register marshalling related JIT icalls here instead of
23642         in mini.c. Use CEE_MONO_ICALL instead of the family of 
23643         CEE_MONO_PROC<x> opcodes to call marshalling functions.
23645         * metadata.h: Remove unneeded marshalling conversions.
23647         * opcodes.c: Update for new opcodes.
23648         
23649 2004-07-08  Martin Baulig  <martin@ximian.com>
23651         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
23652         (mono_debug_get_domain_data): Make this function static.
23654 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23656         * gc.c, object.h: add nice GC handle API for embedders.
23658 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
23660         * reflection.c: more changes for the new api
23662         * object.c: When we reflect on a field w/ a constant value, it
23663         will not have a memory location, so we must access metadata. Also,
23664         allow easier reading of strings so that we can read them from
23665         the constant data.
23667         * class.c (mono_class_layout_fields): no need for literal fields here.
23669         * class-internals.h: api changes for const fields
23671         * icall.c (ves_icall_get_enum_info): use new apis for const fields
23673 2004-07-06  Martin Baulig  <martin@ximian.com>
23675         * mono-debug.h: Increment version number to 44.
23677         * mono-debug.c (mono_debug_add_wrapper): The second argument is
23678         now a gpointer, rewrote this whole method.
23680         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
23681         function.  Add information about the wrapper in a new "misc table".
23683         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
23684         for the new misc table.
23686 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
23688         * metadata-internals.h image.c: Add a cache for helper signatures.
23690         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
23692 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
23694         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
23695         delegates from a delegate. Fixes #61033.
23696         
23697         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
23698         marshalling of stringbuilder arrays. Fixes #59900.
23700 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
23702         * icall.c: Add EnumBuilder:setup_enum_type icall.
23704 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
23706         * icall.c: Added a new icall for the property version of
23707         OffsetOfStringData.
23709 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
23711         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
23712         it has a constant size across platforms.
23714         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
23715         stack trace.
23717 2004-06-29  Martin Baulig  <martin@ximian.com>
23719         * mono-debug.c (mono_debug_add_method): Protect the whole function
23720         in mono_debugger_lock(), not just parts of it.
23722 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23724         * reflection.c: make sure padding bytes in heaps are zeroed.
23726 2004-06-24  David Waite  <mass@akuma.org>
23728         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
23729         image.c, loader.c, locales.c, marshal.c, metadata.c,
23730         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
23731         string-icalls.c, threads.c: change to C90-style comments from C99 /
23732         C++ -style
23734 2004-06-24  Dick Porter  <dick@ximian.com>
23736         * threads.c
23737         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
23738         return createdNew.  Fixes bug 60412.
23740         * threads-types.h: 
23741         * icall.c: Add createdNew parameter to CreateMutex icall
23743 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23745         * reflection.c, object-internals.h: save default value in params.
23747 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23749         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
23750         no need to build a new path combining that with the application base.
23751         Fixes bug #60442.
23753 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
23755         * reflection.c: fixed minor standard compliance issues.
23757 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23759         * reflection.c: fixed issue with encoding some custom attributes
23760         (arrays in properties and fields, bug #60411).
23762 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23764         * reflection.c: fix start address when copying the public key token.
23766 2004-06-23  Martin Baulig  <martin@ximian.com>
23768         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
23769         the `exc' object in a static object to put it into the GC's root set.
23771 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23773         * reflection.c: make mono_reflection_setup_internal_class ()
23774         callable a second time to setup a new parent class.
23776 2004-06-23  Dick Porter  <dick@ximian.com>
23778         * threads.c: Check for WAIT_IO_COMPLETION return values.
23780 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
23782         * appdomain.c: Removed the g_free on the public key token. Now copy 
23783         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
23784         * assembly.c: Added public key token string value when loading 
23785         assemblies. Fix bug #60439.
23786         * icall.c: Added missing informations (like public key) in 
23787         GetReferencedAssemblies. Fix #60519.
23788         * image.h: Changed definition for public key token from const char*
23789         public_tok_value to guchar public_key_token [17];
23790         * reflection.c: Updated for changes to public key token.
23792 2004-06-22  Lluis Sanchez Gual
23794         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
23795         for the field in base classes.
23797 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23799         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
23800         mark headers as not supported, they are installed only for use by the
23801         debugger.
23803 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
23805         * *.c, *.h: avoid namespace pollution in public headers.
23807 2004-06-21  Martin Baulig  <martin@ximian.com>
23809         * exception.c (mono_get_exception_security): It's in
23810         "System.Security", not in "System".
23812         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
23813         the exception classes.
23815 2004-06-21  Martin Baulig  <martin@ximian.com>
23817         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
23818         Protect the exception object from being finalized.
23820 2004-06-21  Martin Baulig  <martin@ximian.com>
23822         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
23823         public function.
23825 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
23827         * reflection.c: Load the assembly in mono_reflection_type_from_name,
23828         if it was not loaded before. Fix parts of #60439.
23830 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
23832         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
23833         code that was broken since Ben's change: wrappers are now
23834         dependent on the method signature only again.
23836 2004-06-21  Martin Baulig  <martin@ximian.com>
23838         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
23839         added interface support.
23841 2004-06-21  Martin Baulig  <martin@ximian.com>
23843         * class.c (mono_vtable_get_static_field_data): New public method.
23845 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
23847         * filewatcher.c : Windows build fix to be compliant with API changes.
23849 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23851         * class.h, class.c: more accessors.
23852         * metadata.h, metadata.c: prepare for hiding MonoType and
23853         MonoMethodSignature: people should use the accessors from now on
23854         outside of the tree.
23856 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23858         * *.c, *.h: more API cleanups.
23860 2004-06-18  Jackson Harper  <jackson@ximian.com>
23862         * assembly.c: Trace loading assemblies.
23863         * loader.c: Trace loading native libraries.
23864         * mono-config.c: Trace loading config files.
23865         
23866 2004-06-18  Dick Porter  <dick@ximian.com>
23868         * locales.c: Tell ICU the lengths of strings, it can cope with
23869         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
23871 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
23873         * image.c: swapped name/filename;
23875 2004-06-18  Martin Baulig  <martin@ximian.com>
23877         * mono-debug-debugger.c (write_class): Write the parent class at
23878         the end of the header.
23880 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23882         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
23884 2004-06-17  Raja R Harinath  <rharinath@novell.com>
23886         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
23887         (bundle_obj): New conditional define.
23888         (BUILT_SOURCES): Remove.
23889         ($(bundle_srcs)): Make parallel-make safe.
23890         (libmonoruntime_la_LIBADD): Make unconditional.
23891         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
23892         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
23894 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
23896         * culture-info-tables.h: It was inconsistent with the latest
23897           supp info files.
23899 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
23901         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
23902         be loaded.
23904         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
23905         with gcc 2.95.
23907 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23909         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
23910         cleaned up public header threads.h.
23912 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23914         * Makefile.am, *.c, *.h: more API cleanups.
23916 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23918         * Makefile.am: removed monosn from compilation.
23919         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
23920         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
23921         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
23922         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
23923         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
23924         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
23926 2004-06-15  Jackson Harper  <jackson@ximian.com>
23928         * assembly.c: Make locales lower case when searching the GAC for
23929         assemblies. gacutil will always make locales lowercase when
23930         installing so this effectively makes them case insensitive.
23931         
23932 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
23934         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
23935         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
23936           parameter which allows to choose whether the wait can be interrupted or 
23937           not. Also added the method mono_monitor_enter(), which locks the monitor
23938           using an infinite wait and without allowing interruption.
23939           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
23940           interrupted.
23941         * object.h: Added new fields in MonoThread. suspend_event holds the event
23942           used to susped/resume the thread. synch_lock is the lock object to use for
23943           modifying the thread state.
23944         * threads.c: Use the new synch_lock object for locking, instead of "this",
23945           which can generate deadlocks.
23946           Moved thread state change in Thread.Sleep and Thread.Join from managed
23947           to unmanaged code. This avoids a deadlock when the thread was suspended
23948           just after acquiring the thread lock.
23949           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
23950           Implemented Thread.Suspend using an event instead of ThreadSuspend,
23951           which is not fully implemented in the io-layer.
23952         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
23954 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
23956         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
23957         threads-types.h: more API cleanups.
23959 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23961         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
23962         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
23963         threadpool.c, threads.c: first pass at the exported API cleanup.
23965 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
23967         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
23969 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23971         * icall.c: added internalGetHome.
23973 2004-06-14  Dick Porter  <dick@ximian.com>
23975         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
23976         possible to return successfully when '.' or '..' were the only
23977         entries in a directory, but were skipped.  The MonoIOStat was not
23978         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
23979         Fixes bug 59574.
23981 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23983         * reflection.c: make binaries run on .Net 1.1 by default.
23985 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
23987         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
23989 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
23991         * marshal.c: keep track of struct size with explicit layout
23992         (bug #59979).
23994 2004-06-12  Martin Baulig  <martin@ximian.com>
23996         * mono-debug-debugger.c: Comment out a debugging g_message().
23998 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24000         * reflection.c, reflection.h: do not free custom attrs that are cached.
24001         * icall.c: use braces to make code clearer.
24003 2004-06-11  Martin Baulig  <martin@ximian.com>
24005         * class.h (MonoInflatedField): New type.
24006         (MonoClassField): Replaced `MonoType *generic_type' with
24007         `MonoInflatedField *generic_info'.
24009         * icall.c
24010         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24012 2004-06-11  Martin Baulig  <martin@ximian.com>
24014         * reflection.c (mono_image_create_method_token): Correctly encode
24015         varargs methods.
24017 2004-06-11  Martin Baulig  <martin@ximian.com>
24019         * metadata.c (mono_metadata_parse_method_signature): When parsing
24020         a MethodDef which has VarArgs, also set sentinelpos if we don't
24021         have any parameters.
24023 2004-06-11  Martin Baulig  <martin@ximian.com>
24025         * verify.c (mono_method_verify): In CEE_CALL, use
24026         mono_method_get_signature() to get the method's signature, unless
24027         we're a PInvoke method.
24029 2004-06-10  Jackson Harper  <jackson@ximian.com>
24031         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24032         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24033         logical name as the supplied path is just a prefix to the gac not
24034         the direct path to it.
24035         
24036 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24038         * reflection.c: make the token for a created method match
24039         the token of the MethodBuilder it was created from
24040         (IKVM requires this behaviour now).
24042 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24044         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24045         reflection.c, socket-io.c: leak fixes.
24047 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24049         * icall.c: handle sentinel pos in vararg methods in position different
24050         from 0.
24052 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24054         * culture-info-tables.h: freshly generated.
24056 2004-06-09  Martin Baulig  <martin@ximian.com>
24058         * loader.c (mono_get_method_constrained): Call `mono_class_init
24059         (constrained_class)'.   
24061 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24063         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24064         any methods. Fixes #59629.
24066 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24068         * culture-info-tables.h: reflecting locale-builder updates.
24070 2004-06-08  Dick Porter  <dick@ximian.com>
24072         * object.h:
24073         * locales.c: Fixed compile warnings, including a real bug in
24074         CompareInfo_internal_compare.
24075         
24076 2004-06-08  Dick Porter  <dick@ximian.com>
24078         * locales.c
24079         (ves_icall_System_Globalization_CompareInfo_internal_index):
24080         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24081         Double-check the resuls of usearches, because ICU currently
24082         ignores most of the collator settings here.  Fixes bug 59720.
24083         
24084 2004-06-08  Dick Porter  <dick@ximian.com>
24086         * locales.c
24087         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24088         Fix memory leak and segfault-causing typo.  No idea how this one
24089         lasted so long without being noticed.
24091 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24093         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24094         any methods. Fixes #59629.
24096 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24098         * assembly.c:
24099         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24100         own the critical section before). Removed dead code (that's done
24101         in the preload hook).
24103         (mono_assembly_load_with_partial_name): call the preload hook.
24105 2004-06-08  Martin Baulig  <martin@ximian.com>
24107         * metadata.c (mono_metadata_signature_alloc): Default
24108         `sentinelpos' to -1.
24110         * reflection.c (mono_image_get_array_token): Likewise.
24112 2004-06-08  Martin Baulig  <martin@ximian.com>
24114         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24116         * metadata.c (mono_metadata_parse_method_signature): When parsing
24117         a MethodDef which has VarArgs, set sentinelpos.
24119         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24120         `gint16' since we're using -1 for non-varargs methods.
24122         * reflection.c
24123         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24124         (method_encode_signature): Added varargs support.
24125         (method_builder_encode_signature): Likewise.
24126         (mono_image_get_varargs_method_token): New static method.
24127         (mono_image_create_method_token): New public method; this is
24128         called via an icall instead of mono_image_create_token() when
24129         calling a varargs method.       
24131 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24133         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24135 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24137         * culture-info-tables.h : Reflecting the latest locale-builder that
24138           fixed empty array representation ({} to {0}).
24140 2004-06-07  Jackson Harper  <jackson@ximian.com>
24142         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24143         looking up extra gac paths. This allows MONO_GAC_PATH to act
24144         exactly like a prefix.
24145         
24146 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24148         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24149         type name before modifying it. Fixes #59405.
24151 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24153         * culture-info.h: added fields for "all datetime patterns".
24154         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24155           _construct_datetime_format ()): fill xxx_patterns fields.
24156         * object.h: added fields for "all datetime patterns" to
24157           MonoDateTimeFormatInfo.
24158         * culture-info-tables.h: reflecting locale-builder updates.
24160 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24162         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24163         the event has no add and remove methods. Fixes #59629.
24165 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24167         * object.c: Fixed possible integer overflow when allocating large
24168         strings.
24170 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24172         * culture-info-tables.h: reflecting locale-builder updates.
24174 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24176         * culture-info-tables.h: reflecting locale-builder updates.
24178 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24180         * culture-info-tables.h: reflecting locale-builder updates.
24182 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24184         * threads.c: Made Thread.Sleep abortable.
24186 2004-06-02  Martin Baulig  <martin@ximian.com>
24188         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24190         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24192 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24194         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24196 2004-05-30  Jackson Harper  <jackson@ximian.com>
24198         * reflection.c: Do not hardcode assembly versions or public key
24199         tokens anymore. All of this except the corlib section was dead
24200         code anyways.
24201         
24202 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24204         * object.c (mono_runtime_invoke_array): Automatically create boxed
24205         objects for byref valuetypes if needed. Fixes #59300.
24206         
24207         * object.c (mono_method_return_message_restore): Handle 
24208         MONO_TYPE_OBJECT as well.
24210 2004-05-28  Jackson Harper  <jackson@ximian.com>
24212         * reflection.c: The modified type encoding was causing build
24213         problems. Reverted for now.
24214         
24215 2004-05-28  Jackson Harper  <jackson@ximian.com>
24217         * reflection.c/h: Take an assembly ref so that we dont create
24218         fully qualified names when encoding types in the same assembly as
24219         the custom attribute being emitted.
24220         * appdomain.c: Increment version number.
24221         
24222 2004-05-26  Duncan Mak  <duncan@ximian.com>
24224         * icall.c
24225         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24226         Set the full version number (major, minor, build, revision).
24228 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24230         * marshal.c (emit_struct_conv): increment src/dst after blit
24231         (mono_marshal_get_managed_wrapper,
24232         mono_marshal_get_native_wrapper): make sure we have marshalling
24233         info before marshalling params (info computation affects
24234         blittable)
24236         * class.c (class_compute_field_layout): correctly deal with
24237         blittable
24238         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24239         value types (as per what windows dows by default)
24240         (mono_class_setup_mono_type): System.ValueType is blittable
24241         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24242         blittable
24244         * marshal.c (mono_marshal_load_type_info): flag types  as
24245         non-blittable if the native layout doesn't match the managed
24246         layout
24248 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24250         * appdomain.c: don't add stuff in the private search path that is
24251         above the application base. If application base is not set, there's
24252         no private search path.
24254 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24256         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24257         byref struct arguments in native->managed marshalling.
24259 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24261         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24262         cache methods using signature (special case for methods
24263         that are value type or string class)
24264         
24265         * image.c (mono_image_close): clean up allocated GSList's
24266         in runtime_invoke_cache.
24268 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24270         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24271         there's no MONO_CFG_DIR environment variable defined.
24273 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24275         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24277 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24279         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24280           is interrumped.
24281         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24282           before waiting for it, and call CloseHandle after the wait to unref it.
24283           This will make sure that handles are not disposed too early.
24285 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24287         * appdomain.c:
24288         * appdomain.h:
24289         * icall.c: removed
24290         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24291         needed now.
24293         * object.c: se the application_base only for the domain that runs
24294         Main. Fixes bug #59216,
24296 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24298         * appdomain.c:
24299         * object.c: only the domain in which Main is run have
24300         SetupInformation.ConfigurationFile set, so moved a few lines from
24301         appdomain.c to object.c.
24303 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24305         * appdomain.c: we tried to load [name].(dll|exe), but according
24306         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24307         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24308         There's a test case attached to bug #58922.
24310 2004-05-27  Dick Porter  <dick@ximian.com>
24312         * icall.c:
24313         * file-io.c: Implemented icalls for locking and unlocking regions
24314         in a file.
24315         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24316         FALSE on error (fixes both compiler warning and real bug.)
24318 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24320         * culture-info-tables.h: reflecting locale-builder updates.
24322           (Added missing ChangeLog entry for 05/26)
24324 2004-05-27  Jackson Harper  <jackson@ximian.com>
24326         * locales.c: Fix some cut and paste errors.
24327         
24328 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24330         * mono-config.c: set the correct path for config. directory on windows.
24332 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24334         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24335           on win32.
24337 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24339         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24340         from pinvoke functions.
24341         
24342         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24344 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24346         * culture-info-tables.h: reflecting locale-builder updates.
24348 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24350         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
24351         #59086.
24353 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
24355         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
24356         * icall.c: Modified icalls for RNG.
24357         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
24358         Windows (CryptoAPI).
24360 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24362         * locales.c: Fix build.
24364 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
24366         * culture-info-tables.h: reflecting locale-builder updates.
24368 2004-05-25  Jackson Harper  <jackson@ximian.com>
24370         * locales.c: When creating the current culture use the $LANGs
24371         specific culture. So DateTimeFormat and NumberFormat entries are created.
24372         
24373 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24375         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
24376         a char array as parameter.
24378 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
24380         * image.c: In mono_image_open(), always use an absolute path name to
24381           look for already loaded images.
24383 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
24385         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
24386         missing in the windows build (like older cygwin include files).
24388 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
24390         * icall.c: Fixed check for possible integer overflow in Buffer_
24391         BlockCopy icall. Replaced comments style // by /* */.
24393 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
24395         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
24396         
24397         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
24398         check after MONO_VTADDR. Fixes pinvoke2.exe.
24400         * marshal.h marshal.c metadata.h: Add beginnings of support for
24401         ftnptr -> delegate marshalling.
24403 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
24405         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
24406         * threads.c: Fix warnings.
24408 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
24410         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
24411         * icall.c: Registered icalls for Suspend and Resume.
24412         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
24413           Thread.Abort.
24414         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
24415         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
24416         * process.c: Use WaitForSingleObjectEx.
24417         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
24418           checkpoints.
24419         * threads.c, threads.h: Make use of new Ex wait methods. Improved
24420           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
24421           for Suspend and Resume. Added new mono_thread_stop, used for stoping
24422           background threads. Added basic support for Abort in Windows.
24423           Start new threads using a managed delegate invoke wrapper. This wrapper
24424           has an interruption checkpoint that is needed since an interruption
24425           can be requested before the thread leaves the unmanaged code that starts 
24426           the thread.
24427         * marshal.c: Added interruption checkpoint after every native call, and
24428           also before managed calls for wrappers called from unmanaged code to
24429           go into managed code.
24430         * object.h: Added new field in MonoThread to keep track of interruption
24431           requests.
24433 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
24435         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
24436         calls.
24438 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24440         * appdomain.c:
24441         * assembly.c:
24442         * gc.c:
24443         * locales.c:
24444         * mono-config.c:
24445         * rand.c: getenv -> g_getenv (windows!)
24447         * process.c: complete_path is also used on non-windows platforms.
24449 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24451         * icall.c: new signature for Process_Start.
24453         * process.[ch]: new signature for Process_Start. If we're on windows
24454         and UseShellExecute is false, we have to search for the program by
24455         ourselves if we don't get a full path.
24457 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
24459         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
24460         marshalling and call CleanUpNativeData if needed. Fixes #58646.
24462 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24464         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
24465         Fixes bug #58373.
24467 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24469         * process.c: use double quotes to quote program name and arguments on
24470         windows. Fixes bug #58575.
24472 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24474         * file-io.c: don't return "." and ".." when using windows Find*File.
24476 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
24478         * marshal.c: Don't pass wrappers to message init because method 
24479         addressed used to lookup metadata. part of remoting[2|3] fix.
24481 2004-05-15  Jackson Harper  <jackson@ximian.com>
24483         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
24484         path is essentially the same as MONO_PATH except that it points to
24485         GACs instead of lib directories.
24486         * loader.h: The user gac is gone so we dont need function to
24487         enable/disable it.
24488         * mono-config.c: user gac option is now gone.
24489         
24490 2004-05-15  Jackson Harper  <jackson@ximian.com>
24492         * culture-info.h: Make defines more consistent, add calendar data
24493         to the culture info table.
24494         * culture-info-tables.h: Add basic calendar data. Basically
24495         everyone gets default gregorian until all the data is
24496         updated.
24497         * locales.c: Use the new consistent defines. Set calendar data for
24498         culture info objects.
24499         * object.h: add a field for calendar data to CultureInfo
24500         
24501 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
24503         * image.c: image->runtime_invoke_cache is keyed on signatures now.
24504         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
24505         a signature.
24506         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
24507         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
24508         an extra param that is the pointer of the method to invoke. The IL for
24509         the invoke method is no longer specific to the method, but to the
24510         signature of the method. Thus, we can share the same code for multiple
24511         methods. This reduces the number of methods that have to be compiled.
24513 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
24515         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
24517         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24519         * icall.c: Optimize Buffer.BlockCopy.
24521 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24523         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
24524         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
24525         quote). Changed them to "MMMM yyyy".
24527 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
24529         * rand.c
24530         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
24532 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
24534         * reflection.h: Updated after changes to managed structures.
24536         * appdomain.c: Bump corlib version.
24538 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24540         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
24541         windows.
24543 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24545         * Makefile.am: link to ../os/libmonoos.la on windows.
24547         * assembly.c:
24548                 -If MONO_DEBUG, warn about non-existing directories in
24549                 MONO_PATH.
24550                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
24551                 compile time variable.
24552                 -Removed init_default_path and call mono_set_rootdir from
24553                 libmonoos.a instead (windows only).
24555         * assembly.h: declare mono_assembly_getrootdir().
24557         * domain.c:
24558         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
24560         * loader.c: s/getenv/g_getenv/
24562 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
24564         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
24566         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
24568         * metadata.h: Add new marshalling conversions.
24570         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
24571         function.
24573         * reflection.c (mono_reflection_get_type): Lookup the type in all
24574         modules of a multi-module assembly. Fixes #58291.
24576 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
24578         * threads.c: Before aborting a background, set the StopRequested
24579         state.  This avoids throwing the Abort exception.
24580         In mono_thread_manage, don't continue with the shutdown until all
24581         aborted threads have actually stopped.
24583 2004-05-10  Jackson Harper  <jackson@ximian.com>
24585         * locales.c: Remove the modifier from culture names.
24586         
24587 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24589         * Makefile.am: monosn is not installed any more. It has been deprecated
24590         in favor of sn.
24592 2004-05-07  Jackson Harper  <jackson@ximian.com>
24594         * locales.c
24595         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
24596         Fix array construction, add bailout if the length is 0.
24598 2004-05-07  Dick Porter  <dick@ximian.com>
24600         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
24601         machine doesn't have a DNS entry.  Patch by Urs Muff
24602         (umuff@quark.com), fixes bug 57928.
24604 2004-05-06  Jackson Harper  <jackson@ximian.com>
24606         * reflection.c: Handle null PublicTokens properly. alloc mem for
24607         assembly names culture so we dont crash when freeing it.
24608         
24609 2004-05-06  Jackson Harper  <jackson@ximian.com>
24611         * assembly.c: Check the usergac when loading with partial names.
24612         
24613 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24615         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
24616         does nothing for now (not required for Linux/Windows) but the class
24617         library can call it (and a newer or modified runtime could need it).
24618         * icall.c: Registred icall.
24620 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24622         * loader.c: prints a message on module loading error we set MONO_DEBUG
24623         environment variable.
24625 2004-05-05  Jackson Harper  <jackson@ximian.com>
24627         * appdomain.c: Handle PublicKeyToken=null properly.
24628         
24629 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24631         * environment.c|h: Added icall ves_icall_System_Environment_
24632         GetOSVersionString to get the current OS version as a string.
24633         * icall.c: Registred icall.
24635 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
24637         * object.c: in mono_object_get_virtual_method(), take into account that
24638         non-virtual methods don't have a slot in the vtable. Check needed when
24639         the object is a proxy.
24641 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
24643         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
24644         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
24646         * object.c (mono_class_compute_gc_descriptor): Fix warning.
24648         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
24649         passed when a valuetype is expected.
24651         * object.c (mono_unhandled_exception): Only set the exit code if the
24652         exception happens in the main thread. Fixes thread5.exe.
24654         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
24655         invalid names. Fixes #58047.
24657 2004-05-03  Jackson Harper  <jackson@ximian.com>
24659         * assembly.c: This line was committed accidently and is unneeded.
24660         
24661 2004-05-03  Jackson Harper  <jackson@ximian.com>
24663         * icall.c: Add new icall for Assembly::LoadWithPartialName
24664         * assembly.c/.h: new function that probes the GAC to load partial
24665         assembly names by Paolo Molaro.
24666         
24667 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24669         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
24670         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
24671         (type_get_fully_qualified_name): Added PublicKeyToken when building a
24672         full type name.
24674 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24676         * appdomain.c: fixed check for 'neutral' culture and removed warning.
24677         * reflection.c: fix bug when parsing a full type name and Version is not
24678         the last thing in the string.
24680 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
24682         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
24683         crashes when it is freed.
24685 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24687         * assembly.c: print the compat warning to stderr.
24689 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
24691         * assembly.c (mono_assembly_load_references): Add a compatibility
24692         hack to run old applications that might be still referencing the
24693         3300-based assemblies, only do this for System.xxx.
24695 2004-05-01  Jackson Harper  <jackson@ximian.com>
24697         * appdomain.c: If the culture is neutral we set it to "".
24698         
24699 2004-04-29  Jackson Harper  <jackson@ximian.com>
24701         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
24703 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
24705         * string-icalls.c: added low overhead function for copying chars
24706         * icall.c: added needed icall for the above function
24708 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24710         * icall.c: fix return value of get_global_assembly_cache.  Implemented
24711         Environment.GetLogicalDrives.
24713 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
24715         * rand.c: try and talk to egd or prngd
24716         for random bytes if opening devices fail.
24718 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
24720         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
24721         alignment for the type using the native alignment of its members 
24722         instead of using klass->min_align.
24724         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
24726 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24728         * file-io.c:
24729         * socket-io.c: added check for sys/aio.h.
24731 2004-04-28  Dick Porter  <dick@ximian.com>
24733         * threads.c: Don't abort a thread thats already aborting, when
24734         terminating everything.
24736 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24738         * icall.c: added 2 new async calls for Socket.
24740         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
24741         IO on *nix systems.
24743         * threadpool.c: removed unused variable.
24745 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
24747         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
24749 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24751         * locales.c: put back string_invariant_tolower () and
24752         string_invariant_toupper ().
24754 2004-04-26 David Waite <mass@akuma.org>
24756         * file-io.h:
24757         * socket-io.h:
24758         * threads.h:
24759         * unicode.h: remove comma from end of enumeration declarations
24761 2004-04-26 David Waite <mass@akuma.org>
24763         * debug-mono-symfile.h:
24764         * decimal.c:
24765         * mono_debug.h:
24766         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
24769 2004-04-26  Jackson Harper  <jackson@ximian.com>
24771         * appdomain.c: Increment version number.
24772         
24773 2004-04-26  Jackson Harper  <jackson@ximian.com>
24775         * appdomain.c: Set assembly references public token value when
24776         PublicKeyToken is specified, not the hash_value. Free public token
24777         values when free assembly name data. Previously the public key
24778         token was hex decoded, however we are using hex encoded public key
24779         tokens, so this is not neccasary.
24780         * assembly.c: Lookup assemblies in the gac if their public token
24781         value is set. Add function to allow enabling user gac
24782         lookups. Specify whether or not the assembly was loaded from the
24783         GAC. Compare full assembly names when checking the cache for
24784         assemblies (Temporarily disabled see comment in code). Remove
24785         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
24786         specifies trace-loader they get extra info to stdout on the
24787         loading of assemblies.
24788         * image.h: Add a field for an assembly references public token
24789         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
24790         whether an assembly has been loaded from the GAC.
24791         * image.c: Remove a corlib -> mscorlib name mapping.
24792         * loader.h: Add function to enable/disable the user gac.
24793         * mono-config.c: Check if the usergac is enabled in the config
24794         file.
24795         * icall.c: New icall to determine whether or not an assembly has
24796         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
24797         * tabldefs.h: Add constant for assemblyref flag that specifies a
24798         full public key is used instead of a public token.
24799         * reflection.c: Remove mscorlib -> corlib mappings. Set
24800         PublicTokenValue instead of hash value. This value is a hex
24801         string so it does not need to be expanded.
24803 2004-04-26  Martin Baulig  <martin@ximian.com>
24805         * mono-debug-debugger.c (mono_debugger_initialize): Set
24806         `mono_debugger_initialized' before calling mono_debug_lock().
24808 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
24810         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
24811           InternalToUpper/InternalToLower.
24812         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
24813           removed invariant culture shortcut.  This is now done in managed code.
24814         * locales.c: (string_invariant_toupper/tolower) removed.
24816 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24818         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
24819         Added Poll internal call.
24821         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
24822         call for Poll. Select was too heavy for polling a single socket.
24824         * threadpool.[ch]: added mono_threadpool_cleanup.
24825         * threads.c: use it. Don't use Thread_Abort on windows.
24827 2004-04-23  Martin Baulig  <martin@ximian.com>
24829         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
24831 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
24833         * icall.c: Registred new icalls for key pair protection and added an
24834         icall for Environment.GetFolderPath on Windows.
24835         * security.c|h: Added new icalls for key pair protection.
24837 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24839         * socket-io.c: don't display the non-supported family warning for known
24840         families. Now this is not displayed on windows when checking support
24841         for IPv4/IPv6.
24843 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24845         * class.c: don't display the layout warning for static fields.
24847 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
24849         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
24850         * locales.c, locales.h: Added new icalls for culture-specific
24851         Char.ToLower and Char.ToUpper.
24853 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24855         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
24856         by David Waite.
24858 2004-04-20  Martin Baulig  <martin@ximian.com>
24860         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
24861         of the type name before passing it to mono_reflection_type_from_name().
24863 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
24865         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
24866         encodings here. Fixes #56965.
24868 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
24870         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24871         fix test on strstr result not that I can see anything that
24872         relies on the result.
24874 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
24876         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
24877         Fixes #57081.
24879         * marshal.c (mono_marshal_get_string_encoding): New helper function.
24881         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
24882         function to determine which marshalling to use for strings. Fixes
24883         #56965.
24885         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
24887         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
24889 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
24891         * icall.c: #include mono-config.h
24893 2004-04-15  Jackson Harper  <jackson@ximian.com>
24895         * culture-info-tables.h: Fix date formats for en-US culture.
24896         
24897 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
24899         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
24900         ThreadPool.SetMinThreads.
24901         * threadpool.c: Implemented ThreadPool.GetMinThreads and
24902         ThreadPool.SetMinThreads.
24904 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24906         * mono-config.c: also load the .config file in the directory
24907         where the assembly was found.
24909 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
24911         * assembly.c: load per-assembly config files.
24912         * icall.c: decrapified code to get the config dir and moved to
24913         mono-config.c.
24914         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
24915         per-assembly config files. When doing a dll map lookup give precedence
24916         to the per-assembly data.
24918 2004-04-14  Martin Baulig  <martin@ximian.com>
24920         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
24921         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
24922         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
24924         * mono-debugger-debugger.c: While the debugger is locked, remember
24925         whether the symbol tables have changes and send one single
24926         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
24928 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
24930         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
24932         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
24933         function.
24935         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
24936         account when marshalling string arrays. Fixes #56965.
24938 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
24940         * icall.c: Add new icalls mapping for security.
24941         * security.c|h: Add internal calls for WindowsIdentity,
24942         WindowsImpersonationContext and WindowsPrincipal.
24944 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
24946         * class.c: Added comment to ensure the System.MonoDummy class
24947         is removed when no longer necessary
24949 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
24951         * appdomain.c: Pass arguments to the bootstraping exceptions to
24952         minimize JITed methods at boot
24954         * metadata.c (mono_exception_from_name_two_strings): Allow for the
24955         second string to be null.
24957         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24958         Change the protocol to minimize the JIT methods at startup.  Now
24959         it Returns the internal codepage, if the value of "int_code_page"
24960         is 1 at entry, and we can not compute a suitable code page
24961         number, returns the code page as a string.
24963 2004-04-13  Jackson Harper  <jackson@ximian.com>
24965         * culture-info-tables.h: Fix number of decimal digits for all
24966         english locales.
24968 2004-04-13  Jackson Harper  <jackson@ximian.com>
24970         * icall.c: Clairfy out of sync error message. It is not always
24971         your corlib that is out of sync.
24973 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
24975         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
24976         properties when only the set accessor is overriden. Fixes #55874.
24978 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
24980         * assembly.c (mono_assembly_load_references): Make this thread safe.
24981         Fixes #56327.
24983 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
24985         * monosn.c: Add missing initialization calls.
24987 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
24989         * locales.c:
24990         ves_icall_System_Globalization_CultureInfo_construct_number_format
24991         Fix g_assert so it compiles on fussier compilers re int/ptr
24992         mismatch
24994 2004-04-08  Dick Porter  <dick@ximian.com>
24996         * socket-io.h:
24997         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
24998         53992.  Also rearrange the code so that the internal calls return
24999         an error value and exceptions are thrown from managed code.
25001         * icall.c: Add type info to the socket icalls.
25003 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25005         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25006         owes me a beer.
25008 2004-04-07  Martin Baulig  <martin@ximian.com>
25010         * class.c (mono_class_from_generic_parameter): Don't default
25011         `klass->parent' to `mono_defaults.object_type'.
25013 2004-04-07  Martin Baulig  <martin@ximian.com>
25015         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25016         `param->pklass->reflection_info'.       
25018 2004-04-07  Jackson Harper  <jackson@ximian.com>
25020         * culture-info-tables.h: Fix date separator symbol.
25021         
25022 2004-04-07  Martin Baulig  <martin@ximian.com>
25024         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25025         from System.Type to System.MonoType.
25027 2004-04-07  Martin Baulig  <martin@ximian.com>
25029         * reflection.h
25030         (MonoReflectionGenericParam): Added `has_reference_type' and
25031         `has_value_type' fields.
25033         * reflection.c (mono_image_get_generic_param_info): Encode the
25034         correct flags if we have the `class' or `struct' constraint.
25036 2004-04-07  Martin Baulig  <martin@ximian.com>
25038         * reflection.h
25039         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25041 2004-04-07  Jackson Harper  <jackson@ximian.com>
25043         * appdomain.c: Revert extra patches, just wanted to bump the
25044         version number.
25045         
25046 2004-04-07  Jackson Harper  <jackson@ximian.com>
25048         * Makefile.am: Add culture-info private headers.
25049         * icall.c: Add new icalls for contructing locales.
25050         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25051         * locales.h: Declare new culture info construction methods.
25052         * object.h: Add new fields used to avoid the CultureMap to
25053         MonoCultureInfo.
25054         * culture-info.h: Definition of structs used in the culture info
25055         tables.
25056         * culture-info-tables.h: Autogenerated tables that contain culture
25057         info data. This file was generated with the locale-builder tool.
25058         * appdomain.c: Incement corlib version number.
25059         
25060 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25062         * appdomain.c: (mono_runtime_init) move mono_thread_init
25063         to before mono_object_new calls so critical sections
25064         are initialized before use.
25066 2004-04-07  Martin Baulig  <martin@ximian.com>
25068         * icall.c
25069         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25070         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25071         (ves_icall_MonoGenericParam_initialize): Removed.
25072         (monogenericparam_icalls): Removed.
25073         (generictypeparambuilder_icalls): Added new table for
25074         System.Reflection.Emit.GenericTypeParameterBuilder.
25076         * reflection.c
25077         (mono_reflection_define_generic_parameter): Removed.
25078         (mono_reflection_initialize_generic_parameter): This is now called
25079         from GenericTypeParameterBuilder's .ctor.
25081 2004-04-06  Martin Baulig  <martin@ximian.com>
25083         * class.c (mono_class_init): Don't inflate nested classes in a
25084         generic instance.
25085         (mono_type_get_name_recurse): Include the generic arguments for
25086         generic instances and generic type declarations.
25087         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25088         (_mono_class_get_instantiation_name): Removed.
25089         (mono_class_create_generic): Always use `gklass->name' as our name.
25091         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25093         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25094         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25095         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25096         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25097         closed generic methods here.
25099         * reflection.c
25100         (mono_reflection_generic_inst_get_nested_types): Removed.
25101         (inflate_mono_method): Copy the generic parameters from the
25102         MonoMethodHeader into out MonoGenericMethod.
25104 2004-04-06  Martin Baulig  <martin@ximian.com>
25106         * row-indexes.h
25107         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25109         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25111         * reflection.c (build_compressed_metadata): If we have any entries
25112         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25113         set the header version to 1.1.
25115 2004-04-06  Martin Baulig  <martin@ximian.com>
25117         * class.c (mono_class_init): If we're a generic instance,
25118         initialize our nested classes, too.
25119         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25120         suffix. 
25122 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25124         * process.c: quote the argument passed to the shell on windows.
25126 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25128         * threads.c (mono_alloc_special_static_data): Allow this to be
25129         called during startup.
25131 2004-04-02  Martin Baulig  <martin@ximian.com>
25133         * icall.c
25134         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25136 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25138         * icall.c: Fix build.
25140 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25142         * Makefile.am: Added security.c|h.
25143         * icall.c: Added icall for get_UserName;
25144         * security.c: New file for security related icalls. Added function
25145         get_UserName for System.Environment (fix #56144).
25146         * security.h: New. Header file for security.c
25148 2004-04-02  Dick Porter  <dick@ximian.com>
25150         * icall.c: Deleted the icalls that were obsoleted some time ago
25151         by the ICU string code, and which were mixed into the icall
25152         rearranging.  Fixes bug 55969.
25154         * string-icalls.h: 
25155         * string-icalls.c: Deleted the code that those icalls reference.
25157 2004-04-01  Martin Baulig  <martin@ximian.com>
25159         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25161         * class.c (mono_class_from_generic_parameter): Don't set 
25162         TYPE_ATTRIBUTE_INTERFACE.
25163         (my_mono_class_from_generic_parameter): Likewise.
25165 2004-04-01  Martin Baulig  <martin@ximian.com>
25167         * loader.c (find_method): Added an optional `MonoClass *ic'
25168         argument to search in a specific interface.
25169         (mono_get_method_constrained): New public function.
25171 2004-04-01  Martin Baulig  <martin@ximian.com>
25173         * reflection.c (mono_image_get_generic_field_token): Use the
25174         `handleref' cache here.
25176 2004-04-01  Martin Baulig  <martin@ximian.com>
25178         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25180         * reflection.c (create_generic_typespec): Use the `typespec' hash
25181         here, not the `typeref' one.    
25183 2004-04-01  Martin Baulig  <martin@ximian.com>
25185         * class.c (mono_class_inflate_generic_type): Moved the
25186         functionality into a new static inflate_generic_type() which
25187         returns NULL if it didn't do anything.  Only increment the
25188         `mono_stats.inflated_type_count' if we actually inflated
25189         something.
25190         (mono_class_get_full): Check the classes type to see whether we
25191         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25193 2004-04-01  Jackson Harper  <jackson@ximian.com>
25195         * reflection.c: Set culture for assembly references.
25196         
25197 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25199         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25201 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25203         * assembly.c:
25204         (do_mono_assembly_open): the critical section also covers
25205         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25207 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25209         * threads.c:
25210         (mono_manage_threads): abort the background threads when finishing.
25211         Fixes bug #47232.
25213 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25215         * gc.c: only close the done_event handle if there was no timeout.
25216         C-ified comments.
25218 2004-03-30  Martin Baulig  <martin@ximian.com>
25220         * icall.c (icall_entries): It's called "System.Activator", not
25221         "System.Activation".    
25223 2004-03-30  Martin Baulig  <martin@ximian.com>
25225         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25226         (mono_class_create_from_typespec): Likewise.
25228 2004-03-30  Martin Baulig  <martin@ximian.com>
25230         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25231         `has_ctor_constraint' and `initialized'.
25233 2004-03-30  Martin Baulig  <martin@ximian.com>
25235         * reflection.c (encode_new_constraint): New static function to add
25236         the constructor constraint attribute to a type parameter.
25237         (encode_constraints): Call encode_new_constraint() if necessary.
25239         * reflection.h
25240         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25242         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25243         
25244 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25246         * reflection.c, icall.c: add support for pinning variables. 
25248 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25250         * marshal.c (mono_marshal_get_managed_wrapper):
25251         init bool local with zero rather than null.
25253 2004-03-29  Martin Baulig  <martin@ximian.com>
25255         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25256         the "official" behavior here.
25257         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25259 2004-03-29  Martin Baulig  <martin@ximian.com>
25261         * icall.c: Reflect latest API changes.
25263 2004-03-29  Martin Baulig  <martin@ximian.com>
25265         * loader.c (mono_get_method_from_token): Also call
25266         mono_metadata_load_generic_params () for abstract and interface
25267         methods; replace the type arguments in the method signature with
25268         the ones which are loaded from the metadata.
25270 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25272         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25273         of the lock is not the current thread. MS.NET don't do it, in spite of
25274         what the documentation says. See bug #56157.
25276 2004-03-28  Martin Baulig  <martin@ximian.com>
25278         * class.c (mono_class_init): Don't call init_properties() and
25279         init_events() for generic instances; set `prop->parent' when
25280         inflating properties.
25282         * reflection.c (mono_generic_inst_get_object): Call
25283         `mono_class_init (ginst->klass)'.
25284         (mono_type_get_object): Only create a MonoGenericInst if your
25285         generic type is a TypeBuilder.
25286         (do_mono_reflection_bind_generic_parameters): Only set
25287         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25289 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25291         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25292         Fixes #56091.
25294 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25296         * icall.c: added Kill_internal icall.
25297         * process.[ch]: added Kill_internal icall.
25299 2004-03-25  Martin Baulig  <martin@ximian.com>
25301         * class.h (MonoStats): Added `generic_instance_count',
25302         `inflated_method_count', `inflated_type_count' and
25303         `generics_metadata_size'.       
25305 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25307         * reflection.c: no warnings now.
25309 2004-03-25  Martin Baulig  <martin@ximian.com>
25311         * class.c (mono_class_get_full): New public function; does a
25312         mono_class_get(), but also takes a `MonoGenericContext *'.
25314         * loader.c (mono_field_from_memberref): Renamed to
25315         `field_from_memberref', made static and added `MonoGenericContext *'
25316         argument.
25317         (mono_field_from_token): Added `MonoGenericInst *' argument.
25318         (method_from_memberef): Likewise.
25319         (mono_get_method_from_token): Likewise.
25320         (mono_get_method_full): New public function; does a
25321         mono_get_method(), but also takes a `MonoGenericContext *'.
25323         * verify.c (mono_method_verify): Get the method's generic context
25324         and pass it to mono_field_from_token(), mono_get_method_full() and
25325         mono_class_get_full().
25327 2004-03-25  Martin Baulig  <martin@ximian.com>
25329         * class.c (mono_class_inflate_generic_type): Take a
25330         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25331         `MonoGenericMethod *'.
25333 2004-03-25  Martin Baulig  <martin@ximian.com>
25335         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25336         instead of the MonoGenericMethod here.
25338 2004-03-25  Martin Baulig  <martin@ximian.com>
25340         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25341         each time we create a new MonoGenericInst, we also create a new
25342         context which points back to us.
25344         * class.c (inflate_method): Use `ginst->context' instead of
25345         creating a new context.
25347         * loader.c (method_from_memberref): Use
25348         `klass->generic_inst->context' instead of creating a new context.
25350 2004-03-25  Martin Baulig  <martin@ximian.com>
25352         * class.h (MonoGenericContext): New struct.
25353         (MonoGenericMethod): Removed `generic_inst'.
25355         * class.c (mono_class_inflate_generic_method): Take a
25356         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
25358 2004-03-25  Martin Baulig  <martin@ximian.com>
25360         * loader.h (MonoMethodInflated): New typedef.
25362         * metadata.h (MonoMethodSignature): Removed `gen_method', make
25363         `generic_param_count' consume just 30 bits, added `is_inflated'
25364         and `has_type_parameters' flags (one bit each).
25366         * class.c (mono_class_inflate_generic_method): Create a
25367         MonoMethodInflated instead of a MonoMethodNormal and set
25368         `is_inflated' in the method signature.
25370         * class.h (MonoGenericMethod): Removed `generic_method'.
25372 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
25374         * image.c: Make sure the name of a MonoImage is always an absolute path.
25375           This fixes bug #54415.
25377 2004-03-24  Martin Baulig  <martin@ximian.com>
25379         * class.c (mono_class_setup_vtable): If we're a generic instance,
25380         use our generic type's vtable size.
25382 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
25384         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
25385         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
25386         problems.
25388 2004-03-23  Martin Baulig  <martin@ximian.com>
25390         * class.h (MonoDynamicGenericInst): Added `int count_events' and
25391         `MonoEvent *events'.
25393         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
25394         (typebuilder_icalls): Added "get_event_info"; calls
25395         mono_reflection_event_builder_get_event_info(). 
25397         * reflection.c (mono_reflection_generic_inst_initialize): Added
25398         `MonoArray *events'.
25399         (mono_reflection_event_builder_get_event_info): New function.
25401 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
25403         * object.h: add mono_type_initialization_init
25405         * object.c (mono_runtime_class_init): 
25406         implement class constructor synchronization rules
25407         to cope with threading issues.  
25408         add mono_type_initialization_init
25410         * appdomain.c (mono_runtime_init): call 
25411         mono_type_initialization_init
25413         * class.h: removing initializing field from MonoVTable
25415 2004-03-23  Martin Baulig  <martin@ximian.com>
25417         * class.c (my_mono_class_from_generic_parameter): Use
25418         `param->name' if it's not NULL. 
25420 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
25422         * class.c: do not insert non-virtual methods in the vtable.
25423         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
25424         that means the method is non-virtual. This never would have
25425         happened before.
25427 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
25429         * profiler.c: Added lock for accessing coverage_hash.
25431 2004-03-22  Martin Baulig  <martin@ximian.com>
25433         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
25434         `method->method->signature->generic_param_count != 0' to make it
25435         work for interface methods.
25437 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25439         * process.c: quote the string passed to the shell using g_shell_quote.
25441 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25443         * threads.c:
25444         (mono_threads_manage): don't remove the finalizer thread and self
25445         from the threads hash table so that mono_thread_manage can be called
25446         more than once.
25448 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25450         * process.c: quote the arguments when UseShellExecute is true. Fixes
25451         bug #55790.
25453 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25455         * threads.c: set mono_thread_detach as a cleanup routine for every
25456         thread. This way it's always executed upon thread termination, either
25457         aborted or finished normally. No more xsp hangs!
25459 2004-03-17  Martin Baulig  <martin@ximian.com>
25461         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
25462         `int count_nested' and a `MonoType **nested'.
25464         * reflection.c (mono_reflection_bind_generic_parameters): Moved
25465         most of the functionality into a new static
25466         do_mono_reflection_bind_generic_parameters() and don't take a
25467         `MonoType *nested_in' argument any more.  Don't compute nested
25468         types here.
25469         (mono_reflection_generic_inst_get_nested_types): New public method
25470         to get nested types.
25472         * class.c (mono_class_create_generic): Set `klass->nested_in' if
25473         we're a nested class.
25475         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
25476         mono_reflection_generic_inst_get_nested_types() to compute the
25477         nested types.
25479 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25481         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
25482         descriptive error message under windows.
25483         
25484 2004-03-17  Martin Baulig  <martin@ximian.com>
25486         * class.c (dup_type): Added `const MonoType *original' argument;
25487         copy the attrs from the original type.
25489 2004-03-17  Martin Baulig  <martin@ximian.com>
25491         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
25492         `m->generic_inst_cache' here.
25494 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25496         * exception.h exception.c: Add stack_overflow_exception.
25498 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25500         * threadpool.c:
25501         (overlapped_callback): call SetEvent *after* invoking the callback.
25502         No need to call CloseHandle.
25504 2004-03-16  Martin Baulig  <martin@ximian.com>
25506         * reflection.c (mono_image_get_fieldref_token): Take a
25507         `MonoReflectionField *' instead of a `MonoClassField *' and a
25508         `MonoClass *'; store the `MonoReflectionField *' in the hash.
25510 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25512         * appdomain.c: don't add the culture to the filename we're looking for
25513         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
25515 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25517         * locales.c: don't ignore symbols when doing case insensitive compares.
25518         Thanks Dick! Fixes bug #54046.
25520         * threads.c: surround 'threads' usage with enter/leave in
25521         mono_thread_manage.
25523 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
25525         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
25526         implicitly marshalled as [Out]. Fixes #55450.
25528         (mono_marshal_get_runtime_invoke): Zero out the result if there is
25529         an exception.
25531 2004-03-16  Martin Baulig  <martin@ximian.com>
25533         * class.c (mono_class_from_generic_parameter): Use the actual
25534         parameter name. 
25536 2004-03-16  Martin Baulig  <martin@ximian.com>
25538         * reflection.c (type_get_signature_size): New static function.
25539         Compues the size of the type in a method signature.
25540         (method_get_signature_size): New static function; calls
25541         type_get_signature_size() to compute the actual size of the
25542         method's signature.
25543         (method_encode_signature): Use method_get_signature_size() to get
25544         the signature's size rather than using `nparams * 10'.
25546 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25548         * file-io.h: define here WapiOverlapped on windows. I don't want the
25549         regular OVERLAPPED one.
25551         * file-io.c:
25552         * threadpool.c: somehow, BindIoCompletionCallback is not found.
25553         Disabling AIO on windows.
25555 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25557         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
25558         bug #55385.
25560 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25562         * appdomain.c: upgraded corlib version.
25564         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
25565         and BeginWrite. Allow opening files for asynchrnous operations.
25567         * file-io.h: new struct that maps FileStreamAsyncResult.
25568         * icall.c: added new icalls.
25569         * process.[ch]: support setting child process environment variables
25570         and use the SHELL or COMSPEC when UseShellExecute is true.
25572         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
25573         callback for async. IO is here and also BindHandle.
25575         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
25576         from here.
25578 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
25580         * reflection.c (create_custom_attr): Allow len == 0.
25582         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
25583         computation on big-endian machines.
25585 2004-03-13  Martin Baulig  <martin@ximian.com>
25587         * class.h (MonoGenericInst): Added `int count_ifaces'.
25589         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
25590         `ginst->count_ifaces' instead `klass->interface_count' since we
25591         may get called before the vtable is created.
25593         * loader.c (mono_method_get_param_names): If we're a generic
25594         instance, return and don't initialize the class.
25596         * reflection.c (mono_reflection_setup_generic_class): Don't call
25597         ensure_runtime_vtable().
25598         (mono_reflection_bind_generic_parameters): Set
25599         `ginst->count_ifaces'.
25601 2004-03-11  Jackson Harper <jackson@ximian.com>
25603         * icall.c:
25604         * unicode.c:
25605         * unicode.h: Remove unused System.Char icalls.
25606         
25607 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
25609         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
25610         code when we P/Invoke the first library in Windows.Forms, instead
25611         of when we first open the assembly.
25613         * assembly.c: Drop the lookup from here.
25615 2004-03-10  Martin Baulig  <martin@ximian.com>
25617         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
25618         class for properties, fields and events.  Finally fixes #54945.
25620 2004-03-10  Martin Baulig  <martin@ximian.com>
25622         * metadata.c (mono_metadata_class_equal): New static function;
25623         checks whether two generic instances or two generic parameters are
25624         equal.
25625         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
25626         compare classes.        
25628 2004-03-10  Martin Baulig  <martin@ximian.com>
25630         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
25632         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
25633         argument and write it into the `reflection_info' field.
25635         * icall.c
25636         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
25637         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
25639 2004-03-09  Jackson Harper  <jackson@ximian.com>
25641         * char-conversions.h: use 8 bits for numeric data its all we need
25642         * icall.c: numeric data is only 8 bits now.
25644 2004-03-09  Martin Baulig  <martin@ximian.com>
25646         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
25648         * class.c (init_properties, init_events): Initialize the new
25649         `parent' field.
25651         * reflection.c (typebuilder_setup_properties): Likewise.
25652         (typebuilder_setup_events): Likewise.
25654         * reflection.h (MonoEventInfo): Replaced `parent with
25655         `declaring_type' and `reflected_type'.
25657         * icall.c (ves_icall_get_property_info): Distinguish between
25658         declaring and reflected type.
25659         (ves_icall_get_event_info): Likewise.
25661 2004-03-09  Martin Baulig  <martin@ximian.com>
25663         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
25664         (ves_icall_Type_GetField): Correctly set field->klass.
25666 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
25668         * loader.h: Fix warning.
25670 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
25672         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
25673         library routine if present.  Notice that it will still continue
25674         executing even if its missing, for those working on the Gtk#
25675         edition of Windows.Forms.
25677         * assembly.c (do_mono_assembly_open): If loading the
25678         System.Windows.Forms call mono_loader_wini_init.
25680 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
25682         * class.h: Added MonoRemoteClass struct.
25683         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
25684         function for MonoStrings.
25685         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
25686         Added internal call for getting the proxy type.
25687         * marshal.c: Get the type of transparent proxies from its remote_class.
25688         Added methods that generate the IL for type checks and casts:
25689         mono_marshal_get_isinst, mono_marshal_get_castclass, 
25690         mono_marshal_get_proxy_cancast.
25691         * marshal.h: Declaration of the previous new methods.
25692         * object.c: Added new moethods for creating and updating MonoRemoteClass
25693         instances: mono_remote_class, mono_upgrade_remote_class, 
25694         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
25695         * verify.c: FIx transparent_proxy_fields layout.
25696         * appdomain.c: Bump corlib version.
25698 2004-03-04  Jackson Harper  <jackson@ximian.com>
25700         * icall.c: Add icall to access char conversion tables.
25701         * char-conversions.h: Character conversion tables.
25702         * Makefile.am: Add char-conversions.h private header file.
25703         
25704 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
25706         * appdomain.c (unload_thread_main): Increase unloading timeout to
25707         10 sec as a temporary workaround for Nant problems.
25709 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
25711         * gc.c: Add checks for GC_enable and GC_disable.
25713         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
25714         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
25715         (bug #54988).
25716         
25717 2004-02-27  Martin Baulig  <martin@ximian.com>
25719         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25720         `MonoReflectionType *' instead of a `MonoType *'.
25722 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
25724         * gc.c (run_finalize): Avoid finalizing the object representing the
25725         finalizer thread.
25726         (finalizer_thread): Fix warning.
25728 2004-02-25  Martin Baulig  <martin@ximian.com>
25730         * class.c (_mono_class_get_instantiation_name): Added `int offset'
25731         argument for nested types.
25732         (mono_class_create_generic): Added support for nested generictypes.
25734         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
25735         `GList *nested'.
25737         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
25739         * reflection.c (method_encode_signature): Increase the minimum
25740         value of `size' from 10 to 11.
25741         (mono_reflection_bind_generic_parameters): Take `int type_argc'
25742         and `MonoType **types' arguments instead of the `MonoArray
25743         *types'; added `MonoType *nested_in'.  Recursively instantiate
25744         nested classes. 
25746 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
25748         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
25749         stack_overflow_ex members which are used by exception handling.
25751         * appdomain.c (mono_runtime_init): Initialize the new members.
25753         * gc.c (mono_gc_enable): New helper function.
25754         * gc.c (mono_gc_disable): New helper function.
25756 2004-02-23  Martin Baulig  <martin@ximian.com>
25758         * icall.c: I must have been really stupid - make it actually work
25759         this time ;-)
25761 2004-02-23  Martin Baulig  <martin@ximian.com>
25763         * loader.c (method_from_memberref): Only inflate the method if
25764         it's in another klass.
25766 2004-02-23  Martin Baulig  <martin@ximian.com>
25768         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
25769         (mono_class_init): If we're a generic instance and an interface,
25770         compute `class->interface_id'; also create `class->interfaces'
25771         here and inflate them.
25773         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
25774         `ginst->is_open'.
25775         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
25777         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
25779 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
25781         * reflection.c (method_encode_code): Improved the error message
25782         generated by the exception.
25784 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25786         * icall.c: Martin did not do what he said in the ChangeLog for
25787         2004-02-18, but put back the changes for properties and events.
25788         Commenting those changes out again and adding comment to bug #54518.
25789         
25790         * process.c: removed warning.
25792 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
25794         * marshal.c (emit_struct_conv): Print an error message instead of
25795         asserting when a type does not have the StructLayout attribute.
25797 2004-02-20  Martin Baulig  <martin@ximian.com>
25799         * reflection.c (mono_type_get_object): Also use the cache for
25800         generic instances.
25801         (mono_reflection_bind_generic_parameters): Always compute
25802         `ginst->ifaces'.        
25804 2004-02-20  Martin Baulig  <martin@ximian.com>
25806         * class.h (MonoGenericMethod): Removed `klass'.
25808         * class.c (mono_class_inflate_generic_method): Added `MonoClass
25809         *klass' argument.
25811 2004-02-20  Martin Baulig  <martin@ximian.com>
25813         * reflection.c (method_encode_methodspec): Actually use the
25814         uninflated signature for the memberref.
25816 2004-02-20  Martin Baulig  <martin@ximian.com>
25818         * class.h (MonoGenericMethod): Removed `declaring'.
25820         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
25821         is NULL, compute it here.
25823 2004-02-20  Martin Baulig  <martin@ximian.com>
25825         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
25827         * metadata.c (mono_metadata_generic_inst_hash): New method.
25828         (mono_metadata_generic_inst_equal): New method.
25830         * reflection.c (mono_reflection_bind_generic_parameters): Use the
25831         `klass->image->generic_inst_cache' cache to avoid creating
25832         duplicate MonoGenericInst's.
25834         * class.c (mono_class_inflate_generic_type): Use the cache.
25836 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25838         * object.c: fixed gc descriptor calculation for embedded valuetypes.
25840 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25842         * icall.c: added Socket.WSAIoctl icall.
25844         * socket-io.[ch]: implemented
25845         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
25847 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
25849         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
25851 2004-02-18  Urs C Muff  <umuff@quark.com>
25853         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
25854         this work on PPC and other big-endian architectures.
25856         * debug-mono-symfile.h: Prepended the names of all the `guint32'
25857         fields with an underscore to make sure they're only accessed by
25858         the read32() macro.
25860 2004-02-18  Martin Baulig  <martin@ximian.com>
25862         * icall.c: Put the klass->refclass changes back for methods and
25863         fields, but not for properties and events.  We're currently not
25864         distinguishing between DeclaringType and ReflectedType for
25865         properties and events, that's what caused the regressions.
25867 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25869         * object.c:
25870         (mono_async_result_new): the handle can be NULL.
25872         * threadpool.c: Use an event instead of a semaphore, don't initialize
25873         it until needed. This saves quite a few semaphores from being created
25874         when using the threadpool.
25876 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
25878         * object.c (mono_string_is_interned_lookup): Fix interning of long
25879         strings. Fixes #54473.
25881         * domain.c (ldstr_equal): Optimize if the two strings are equal.
25883         * icall.c: Revert the klass->refclass changes since they introduce
25884         regressions (bug #54518).
25886 2004-02-18  Martin Baulig  <martin@ximian.com>
25888         * class.c (mono_class_init): If we're a generic instance and don't
25889         come from a TypeBuilder, inflate our members here.
25890         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
25891         (mono_class_create_generic): New public method.
25892         (mono_class_initialize_generic): Removed.
25893         (get_instantiation_name): Renamed to
25894         _mono_class_get_instantiation_name() and made it public.
25896 2004-02-18  Martin Baulig  <martin@ximian.com>
25898         * class.c (mono_class_inflate_generic_type): Clear the new
25899         instance's `nginst->klass' when inflating a generic instance.
25900         (mono_class_is_subclass_of): Added (basic) support for generic
25901         instances.
25903 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
25905         * appdomain.h, domain.c: use a MonoCodeManager instead of a
25906         MonoMempool to hold compiled native code.
25908 2004-02-17  Martin Baulig  <martin@ximian.com>
25910         * class.h (MonoDynamicGenericInst): Added `count_properties' and
25911         `properties'.
25913         * reflection.c (mono_reflection_generic_inst_initialize): Added
25914         `MonoArray *properties' argument.
25916         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
25918 2004-02-17  Martin Baulig  <martin@ximian.com>
25920         * icall.c (ves_icall_Type_GetFields): Renamed to
25921         ves_icall_Type_GetFields_internal() and added a
25922         `MonoReflectionType *rtype' argument; pass it to
25923         mono_field_get_object() to set the field's "reflected" type.
25924         (ves_icall_Type_GetConstructors): Likewise.
25925         (ves_icall_Type_GetEvents): Likewise.
25926         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
25927         argument; pass it to mono_method_get_object() to set the method's
25928         "reflected" type.       
25930 2004-02-17  Martin Baulig  <martin@ximian.com>
25932         * class.h (MonoDynamicGenericInst): New type.
25933         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
25935         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
25936         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
25937         (ves_icall_MonoGenericInst_GetFields): New interncall.
25939         * class.c (mono_class_from_generic): Don't call
25940         mono_class_initialize_generic() if this is a dynamic instance;
25941         ie. it's being created from a TypeBuilder.
25942         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
25943         `class->byval_arg.type'.
25945         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
25946         to `inflate_method' and made static.
25947         (mono_reflection_inflate_field): Removed.
25948         (mono_reflection_generic_inst_initialize): New public method.
25950         * reflection.h (MonoReflectionGenericInst): Removed `methods',
25951         `ctors' and `fields'; added `initialized'.
25953 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
25955         * debug-helpers.c (mono_method_full_name): Fix output for empty
25956         namespaces.
25958 2004-02-12  Martin Baulig  <martin@ximian.com>
25960         * class.h (MonoClassField): Added `MonoType *generic_type'.
25962         * reflection.c (mono_image_get_fieldref_token): Added support for
25963         instantiated generic types.
25964         (field_encode_inflated_field): Removed.
25965         (mono_image_get_inflated_field_token): Removed.
25966         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
25968         * reflection.h (MonoReflectionInflatedField): Removed.
25970 2004-02-12  Martin Baulig  <martin@ximian.com>
25972         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
25973         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
25975         * reflection.c (mono_image_get_methodspec_token): Take a
25976         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
25977         (mono_image_create_token): Check whether we have a
25978         `method->signature->gen_method' and call
25979         mono_image_get_methodspec_token() if appropriate.
25980         (inflated_method_get_object): Removed.
25981         (mono_reflection_bind_generic_method_parameters): Return a
25982         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
25983         (mono_reflection_inflate_method_or_ctor): Likewise.
25985         * reflection.h (MonoReflectionInflatedMethod): Removed.
25987 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
25989         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
25990         for custom valuetype marshalling.
25992         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
25994 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25996         * icall.c: fixed WSAGetLastError_internal name.
25998 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26000         * threads.c (mono_thread_attach): Allow this to be called multiple
26001         times for a thread.
26002         
26003         * threads.c (build_wait_tids): Do not wait for ourselves.
26005         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26006         appdomain list is empty.
26008         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26009         memory returned by mono_string_builder_to_utf16, since it points into
26010         managed memory. Thanks to Bernie Solomon for noticing this.
26012         * icall.c: Add AppDomainSetup icalls.
26014         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26016         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26017         types.
26019         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26020         custom attributes to the method_aux struct. Also fix array indexes etc.
26022         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26023         
26024 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26026         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26027         (both static and runtime) and reduce startup time.
26029 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26031         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26032         AsAny marshalling conversion instead of crashing.
26034         * marshal.c: Fix warnings.
26036 2004-02-09  Martin Baulig  <martin@ximian.com>
26038         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26040         * reflection.h (MonoReflectionInflatedMethod): Removed the
26041         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26043         * reflection.c (method_encode_methodspec): Removed the `method'
26044         argument; we get it from `gmethod->declaring'.
26045         (inflated_method_get_object): Removed the `declaring' argument.
26047 2004-02-09  Martin Baulig  <martin@ximian.com>
26049         * class.h (MonoGenericMethod): New type.
26050         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26051         `generic_method'.
26053         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26054         a `MonoGenericMethod *gen_method' one.
26056         * class.c (mono_class_inflate_generic_type): Take an additional
26057         `MonoGenericMethod * argument.  This is only non-NULL if we're
26058         inflating types for a generic method.   
26059         (mono_class_inflate_generic_signature): Renamed to
26060         inflate_generic_signature() and made static; take a
26061         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26062         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26063         instead of a `MonoGenericInst *' one.
26064         (mono_class_inflate_generic_method): Likewise.
26066         * reflection.c (encode_generic_method_sig): Take a
26067         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26068         (method_encode_methodspec): Likewise.
26069         (inflated_method_get_object): Likewise. 
26071         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26072         field with a `MonoGenericMethod *gmethod' one.  
26074 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26076         * class.h (mono_class_has_parent): add parens to expansion
26077         so you can ! this.
26079 2004-02-08  Martin Baulig  <martin@ximian.com>
26081         * image.h (MonoImage): Removed `generics_cache'.
26083         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26084         instead of a `MonoType *' argument; removed the `inflate_methods'
26085         argument.  Don't inflate methods here.
26087         * loader.c (find_method): If it's a generic instance, call
26088         mono_class_init() on the `sclass->generic_inst->generic_type'.
26090         * metadata.c (mono_type_size): Make this work on uninitialized
26091         generic instances; call it on the `ginst->generic_type's class.
26093         * reflection.c (mono_reflection_bind_generic_parameters): Call
26094         mono_class_from_generic() to create the `ginst->klass'.
26096 2004-02-08  Martin Baulig  <martin@ximian.com>
26098         * class.h (MonoClass): Changed type of `generic_inst' from
26099         `MonoType *' to `MonoGenericInst *'.
26101 2004-02-08  Martin Baulig  <martin@ximian.com>
26103         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26104         mono_type_get_object(), this is now creating a `MonoGenericInst'
26105         for MONO_TYPE_GENERICINST.
26106         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26107         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26109         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26110         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26111         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26112         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26113         and reflected type.
26115         * reflection.h (MonoReflectionInflatedMethod): Removed
26116         `declaring_type' and `reflected_type'.
26118 2004-02-08  Martin Baulig  <martin@ximian.com>
26120         * class.h (MonoGenericInst): Added `MonoType *parent' and
26121         `MonoType **ifaces'.
26123         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26124         `parent' and `interfaces'.
26126         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26127         `MonoType *' argument and return a `MonoType *'.
26129         * icall.c
26130         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26131         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26133 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26135         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26136         valuetype marshalling.
26138 2004-02-06  Martin Baulig  <martin@ximian.com>
26140         * class.c
26141         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26142         (my_mono_class_from_generic_parameter): Likewise.
26144 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26146         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26147         contents of the symbol files lazily.
26149         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26151         * threads.h threads.c icall.c: New icalls for getting and setting the
26152         threads name.
26154 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26156         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26157         Raise an exception when the domain is not found.
26159 2004-02-03  Martin Baulig  <martin@ximian.com>
26161         * reflection.c (mono_image_get_methodspec_token): Use the
26162         uninflated signature; fixes gen-33.
26164 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26166         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26167         the finalizer code can use thread functionality.
26169         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26170         the finalizer thread.
26172         * threads.c: Make some functions more robust.
26174         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26176         * metadata.h: Add new marshalling conventions.
26178         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26179         stringbuilder marshalling. Fixes #53700.
26181         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26183         * reflection.c (mono_image_get_type_info): Save declarative security
26184         info.
26186         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26187         unmanaged fields as well.
26189         * appdomain.c: Bump corlib version.
26191 2004-02-01  Martin Baulig  <martin@ximian.com>
26193         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26194         method type arguments.  
26196 2004-01-30  Duncan Mak  <duncan@ximian.com>
26198         * marshal.h: Add prototype for
26199         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26200         and
26201         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26202         fix the build.
26204 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26206         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26207         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26209 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26211         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26212         custom marshalling of valuetypes.
26214         * marshal.c: Fix some warnings.
26216 2004-01-29  Martin Baulig  <martin@ximian.com>
26218         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26219         for generic method parameters.
26221         * reflection.c (method_encode_methodspec): Write the uninflated
26222         signature into the methodspec table.
26223         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26224         is always the uninflated method.
26225         (reflection_methodbuilder_to_mono_method): Copy the generic
26226         parameters from the MethodBuilder into `header->gen_params'.
26228 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26230         * class.c (mono_class_from_generic_parameter): Fix warning.
26232 2004-01-27  Martin Baulig  <martin@ximian.com>
26234         * class.c (mono_class_from_generic_parameter): Don't create
26235         `klass->methods' here.  
26237 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26239         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26240         extension since it does not work with libraries named lib<FOO>.dll.so.
26242 2004-01-25  Martin Baulig  <martin@ximian.com>
26244         * class.c (mono_class_inflate_generic_type): Added support for
26245         MONO_TYPE_GENERICINST.
26247         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26248         inflate methods on open constructed types.      
26250 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26252         * object.c: fire ProcessExit event in the root AppDomain after running
26253         Main. Fixes bug #53299.
26255 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26257         * socket-io.c: include the new socket-wrappers.h header.
26258         Use the wrappers instead of the unix socket functions to make the code
26259         more clear.
26261 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26263         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26265         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26266         Fixes #22532.
26268 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26270         * reflection.c (mono_image_create_pefile): Handle the case when the
26271         entry point is not a MethodBuilder.
26273         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26274         field to ReflectionMethod since it is not allways a builder.
26276         * reflection.c (type_get_fully_qualified_name): New helper function to
26277         return the fully qualified name of a type.
26279         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26280         type name for custom marshallers.
26282         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26284         * class.c (mono_class_setup_vtable): If a parent class already 
26285         implements an interface, use the implementing methods from that class.
26286         Fixes #53148.
26288 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26290         * threadpool.c: just return instead of ExitThread to allow for thread
26291         clean up earlier.
26293 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26295         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26296         when closing resource modules.
26298         * reflection.c (mono_image_create_pefile): Handle the case when the
26299         entry point is not a MethodBuilder.
26301         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26302         field to ReflectionMethod since it is not allways a builder.
26304 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26306         * marshal.c (mono_marshal_get_managed_wrapper): 
26307         mono_marshal_alloc takes native int so CONV_I
26308         the arg for 64bits.
26310 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26312         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26313         tokens in the cattr table. Fixes #53108.
26315 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26317         * loader.c: don't trim ".dll" before looking up in the config file.
26318         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26320 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26322         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26323         Return the module which contains the resource as well.
26324         (ves_icall_System_Reflection_Module_Close): New icall.
26326         * appdomain.c: Bump corlib version number.
26328         * image.c (mono_image_addref): New public function.
26330         * assembly.c: Call mono_image_addref.
26332         * reflection.c (mono_module_get_object): Increase reference count of 
26333         the image.
26335         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26336         Fixes #22532.
26338         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26339         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26340         proper exceptions on DllImport problems.
26342 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26344         * class.c, metadata.c: eliminate CSIZE macro.
26346 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
26348         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
26349         * object.h: Added async_callback field in MonoAsyncResult.
26350         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
26351         * verify.c: Added async_callback in MonoAsyncResult layout.
26353 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
26355         * reflection.c (mono_reflection_get_custom_attrs): Add support
26356         for Modules.
26358 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26360         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
26361         marshalling.
26362         (mono_marshal_method_from_wrapper): Add null pointer check.
26364 2004-01-16  Martin Baulig  <martin@ximian.com>
26366         * debug-mono-symfile.h: Set version number to 36 and reflect
26367         latest symbol writer changes.
26369 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26371         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
26372         multi-dimensional arrays.
26373         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
26374         (mono_class_from_mono_type): Use bounded_array_class_get.
26375         
26376         * class.c (mono_bounded_array_class_get): New function which takes
26377         a 'bounded' bool argument to distinguish vectors from one dimensional
26378         arrays.
26380         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
26381         bounded_array_class_get if the array has bounds.
26383         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26384         Search modules loaded using AssemblyBuilder:AddModule as well.
26386 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26388         * appdomain.c: increased corlib version.
26389         * filewatcher.c: removed g_print.
26390         * icall.c:
26391         (get_property_info): only allocate what is actually requested.
26392         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
26394 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26396         * Makefile.am: added filewatcher.[ch]
26397         * filewatcher.[ch]: FileSystemWatcher runtime support.
26398         * icall.c: added new FSW icalls.
26400 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
26402         * string-icalls.c: fix stringbuilder regression as suggested by
26403         Iain McCoy <iain@mccoy.id.au>.
26405 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
26407         * process.c (process_read_stringtable_block): Recognize '007f' as
26408         a language neutral stringtable block.
26410 2004-01-12  Patrik Torstensson
26412         * object.h (MonoStringBuilder) : Changed layout to support our
26413         new stringbuilder class.
26414         * marshal.c: Change marshalling to support the new layout of 
26415         string builder.
26416         * appdomain.c: increased version number because new layout of
26417         string builder.
26419 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
26421         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
26422         assembly name as an string instead of an AssemblyName, since it is
26423         easier to extract info from it.
26425         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
26426         the culture subdirectories too. Fixes #52231.
26428 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26430         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
26431         It takes 2 new parameters with an optional name for the method to look
26432         for and case ignoring info.
26434         * threadpool.c: removed unused variable.
26436 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26438         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
26439         It takes 2 new parameters with an optional name for the property to look
26440         for and case ignoring info.
26441         Fixes bug #52753.
26443 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
26445         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
26446         Fix #52451.
26448 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26450         * appdomain.c:
26451         * assembly.c: escape the uri before passing it to g_filename_from_uri.
26452         Fixes bug #52630.
26454 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
26456         * reflection.c: Add support for more than one unmanaged resource.
26458         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
26459         in field->def_value, as done in all other cases.
26461         * reflection.c (mono_reflection_get_custom_attrs): Add support for
26462         TypeBuilders.
26464         * reflection.c (mono_reflection_create_runtime_class): Remove 
26465         errorneous assignment to klass->element_class, since it is already
26466         done in mono_reflection_setup_internal_class.
26468 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26470         * gc.c: added missing LeaveCriticalSection.
26471         * icall.c: indented a couple of lines.
26472         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
26473         if we call EndInvoke inside a callback. Fixes bug #52601.
26475 2004-01-07  Martin Baulig  <martin@ximian.com>
26477         * mono-debug-debugger.h
26478         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
26480 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
26482         * appdomain.c: Use messages in NotImplementedException.
26484         * exception.c (mono_get_exception_not_implemented): Now this takes
26485         a message argument.
26487         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
26488         exception instead of g_asserting an aborting when something is not
26489         implemented.
26491         Add some inline docs.
26493 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
26495         * reflection.h: Update after changes to object layout.
26497         * reflection.c: Implement saving of unmanaged aka win32 resources.
26499         * appdomain.c: Bump version number.
26501         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
26502         Handle missing domains gracefully.
26504 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
26506         * file-io.c : On Windows, there are much more invalid_path_chars.
26508 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
26510         * class.h, object.c: prepare for GetType () speedup.
26512 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
26514         * profiler.c: workaround for --profile null reference exception on
26515           cygwin. Patch by Patrik Torstensson.
26517 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
26519         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
26520         make work for unaligned access.
26522 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
26524         * class.c: small cleanup (class->fields [i] -> field).
26525         * image.c: check address of metadata is valid.
26527 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
26529         * assembly.h assembly.c (mono_assembly_loaded): New public function to
26530         search the list of loaded assemblies.
26532         * reflection.c (mono_reflection_type_from_name): Use 
26533         mono_assembly_loaded instead of mono_image_loaded.
26535         * reflection.c: Fix warnings.
26537 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
26539         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
26540         is dynamic. This is needed since an assembly can contain both dynamic and
26541         non-dynamic images.
26543         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
26544         assembly->dynamic.
26546         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
26548         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
26549         to store modules loaded using AddModule.
26551         * reflection.c (mono_image_fill_file_table): Generalize this so it works
26552         on Modules.
26554         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
26556         * reflection.c (mono_image_fill_export_table_from_module): New function to
26557         fill out the EXPORTEDTYPES table from a module.
26559         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
26560         into a separate function. Also handle loaded non-dynamic modules.
26562         * reflection.c (mono_image_basic_init): Fix memory allocation.
26564         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26566         * assembly.c (mono_assembly_load_references): Make this public.
26568 2003-12-19  Martin Baulig  <martin@ximian.com>
26570         * class.c (mono_class_initialize_generic): Made this static, take
26571         a `MonoGenericInst *' instead of a `MonoClass *'.
26572         (mono_class_from_generic): Call mono_class_initialize_generic()
26573         unless we're already initialized or being called from
26574         do_mono_metadata_parse_generic_inst().
26576         * class.h (MonoGenericInst): Added `initialized' and
26577         `init_pending' flags.
26579         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
26580         `mono_class_init (gklass)' or mono_class_initialize_generic()
26581         here; set `generic_inst->init_pending' while parsing the
26582         `type_argv'.
26584 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
26586         * locales.c: include string.h for memxxx prototypes
26588 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
26590         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
26591         constructor when accessing literal fields.
26593 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
26595         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26597         * reflection.c (assembly_add_resource_manifest): New function to fill
26598         the MANIFESTRESOURCE table.
26600         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
26602         * reflection.h: Update to changes in class layout.
26604         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
26605         Reenable call to mono_runtime_is_shutting_down ().
26607         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
26608         determine if the runtime is shutting down.
26610 2003-12-16  Jackson Harper <jackson@ximian.com>
26612         * icall.c: comment out call to mono_runtime_is_shutting_down to
26613         fix build.
26614         
26615 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
26617         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
26618         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
26620 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
26622         * reflection.c: move definition of swap_with_size
26623         to before its first call
26625 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
26627         * appdomain.c (mono_runtime_is_shutting_down): New public function.
26629         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
26630         icall.
26632         * object.c: Fix warnings.
26634         * icall.c (ves_icall_Type_Get...): Only consider inherited static
26635         members if FlattenHierarchy is set.
26637         * reflection.c (mono_image_add_decl_security): New function to emit
26638         declarative security.
26640         * reflection.h reflection.c: Add support for declarative security.
26642         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26643         
26644 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
26646         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26647         
26648         * appdomain.c verify.c: Moved corlib version checking into its own
26649         function in appdomain.c since it needs to create vtables etc.
26651 2003-12-13  Patrik Torstensson <p@rxc.se>
26653         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
26654         instead of unwrapped server.
26656 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
26658         * verify.c (check_corlib): Fix field index.
26660 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
26662         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
26663         GetGacPath icall.
26665 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
26667         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
26668         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
26669         cope with sizeof(size_t) != sizeof(guint32).
26671 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26673         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
26674         in case of failure.
26676 2003-12-10  Mark Crichton <crichton@gimp.org>
26678         * icall.c: removed the GetNonZeroBytes.  We now handle this case
26679         in managed code.
26681         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
26683 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
26685         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
26686         marked as deleted.
26688 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
26690         * verify.c (check_corlib): Handle the case when the version field is 
26691         initialized by a static constructor.
26693 2003-12-08  Patrik Torstensson  <p@rxc.se>
26695     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
26697 2003-12-08  Martin Baulig  <martin@ximian.com>
26699         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
26700         a MonoReflectionGenericParameter, also take the parameter index
26701         and name as arguments.
26702         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
26703         (ves_icall_MonoGenericParam_initialize): New interncall.
26704         (ves_icall_Type_make_byref_type): New interncall.
26706         * reflection.h (MonoReflectionGenericParam): Derive from
26707         MonoReflectionType, not just from MonoObject.  Added `refobj' and
26708         `index' fields.
26710         * reflection.c (mono_reflection_define_generic_parameter): Create
26711         and return a new MonoReflectionGenericParam; don't initialize the
26712         constraints here.
26713         (mono_reflection_initialize_generic_parameter): New public method;
26714         initializes the constraints and creates the `param->pklass'.
26716 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
26718         * reflection.h reflection.c: Use the new fields 'num_types', 
26719         'num_fields' and 'num_methods' to track the number of types etc.
26721         * verify.c (check_corlib): Check corlib version number.
26723 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
26725         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
26726         function works on all methods.
26728 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
26730         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
26731         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
26732         the custom_type_info flag of the transparent proxy.
26733         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
26734         objects that supports IRemotingTypeInfo.
26735         * object.h: Added custom_type_info field in transparent proxy.
26737 2003-12-06  Martin Baulig  <martin@ximian.com>
26739         * class.c (mono_class_create_from_generic): Removed.
26740         (mono_class_from_generic): Check `ginst->klass' before doing
26741         anything else.  This is important to fully support "recursive"
26742         generic types.
26744         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
26745         empty `generic_inst->klass' before doing anything else.
26747 2003-12-06  Dick Porter  <dick@ximian.com>
26749         * verify.c: 
26750         * object.h:
26751         * icall.c:
26752         * locales.c: Use C structs to access class fields.  Don't do a
26753         conversion between MonoString and UChar because both are
26754         platform-endian UTF-16.  Compare now takes startindex and count
26755         parameters.  Add a char overload for IndexOf.  Speed up the
26756         invariant string IndexOf.
26758 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
26760         * Makefile.am (monosn_LDADD): Fix parallel build.
26762 2003-12-04  Martin Baulig  <martin@ximian.com>
26764         * icall.c
26765         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
26766         (ves_icall_Type_make_array_type): New interncall.       
26768 2003-12-04  Martin Baulig  <martin@ximian.com>
26770         * locales.c: also change it in the !HAVE_ICU case.
26772 2003-12-04  Dick Porter  <dick@ximian.com>
26774         * icall.c:
26775         * locales.c: construct_compareinfo is now in CompareInfo, not
26776         CultureInfo.
26778 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
26780         * image.c (mono_image_load_file_for_image): Cache loaded images in the
26781         image->files array.
26783         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
26784         table as well.
26786         * assembly.c (mono_assembly_load_references): Only load references
26787         once.
26789         * class.c (mono_class_from_name): Avoid linear search of the 
26790         EXPORTEDTYPE table.
26792         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
26794 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
26796         * image.h (MonoImage): Add 'field_cache' field.
26798         * loader.c (mono_field_from_token): Cache field lookups.
26799         
26800         * reflection.c (mono_module_get_object): Fix name property.
26802         * icall.c (ves_icall_get_enum_info): Update after changes to 
26803         mono_metadata_get_constant_index ().
26805         * icall.c: Get rid of get_type_info icall, use a separate icall for
26806         each type property to avoid needless memory allocations. Fixes #51514.
26808         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
26809         to avoid needless binary searches.
26811         * class.c (class_compute_field_layout): Move the initialization of
26812         field->def_value to mono_class_vtable ().
26814         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
26815         non-corlib types.
26817         * object.c (mono_object_allocate): Make it inline.
26819         * object.c (mono_object_allocate_spec): Make it inline.
26820         
26821 2003-12-02  Dick Porter  <dick@ximian.com>
26823         * locales.c (create_NumberFormat): NumberFormatInfo construction.
26824         Patch by Mohammad DAMT (mdamt@cdl2000.com).
26826 2003-12-01  Dick Porter  <dick@ximian.com>
26828         * threads.c: Fix signature and call in CreateMutex and
26829         CreateEvent.
26831 2003-12-01  Dick Porter  <dick@ximian.com>
26833         * icall.c: 
26834         * locales.c: Implement string compares and searching
26836         * object.h: Add extra Thread field
26838 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
26840         * reflection.c (fixup_method): Add support for MonoCMethod.
26842 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
26844         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
26846         * reflection.c (assembly_name_to_aname): Allow extra characters in
26847         assembly names. Fixes #51468.
26849 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
26851         * exception.c (mono_exception_from_name_domain): New helper function.
26853         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
26854         exception object in the correct domain.
26856         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
26857         formatting + make a copy a the input data.
26859         * loader.c (mono_get_method_from_token): Methods which contain
26860         native code do not have entries in the ImplMap.
26862         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
26863         Thanks to Gonzalo for spotting this.
26864         
26865         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
26866         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
26868         * assembly.h (mono_assembly_load_from): Split the second part of 
26869         assembly loading into a new public function.
26871         * exception.h (mono_get_exception_bad_image_format): New function.
26873 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
26875         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26876         Enumerate all modules inside a dynamic assembly. Fixes #51293.
26877         
26878         * icall.c: Add new icall for creating dynamic methods.
26880         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
26882         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
26884         * reflection.c (mono_reflection_create_dynamic_method): New icall to
26885         create a dynamic method.
26887         * reflection.c (resolve_object): New helper function.
26889         * reflection.c: Generalize ReflectionMethodBuilder and the functions
26890         which manipulate it so they can also work on dynamic methods.
26892         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
26893         creating the MonoReflectionMethodAux structure if it is not needed.
26894         
26895         * reflection.h verify.c: Update after changes to object layout.
26897         * reflection.c (method_builder_encode_signature): Fix compilation on
26898         gcc 2.95.x.
26900 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
26902         * appdomain.h: Added support for context static fields. Added static_data
26903           field to MonoAppContext and renamed thread_static_fields to a more
26904           generic special_static_fields in MonoAppDomain, since it can now contain
26905           context static fields.
26906         * domain.c: Updated hashtable name.
26907         * object.c: Replaced field_is_thread_static() for a more generic
26908           field_is_special_static() which also checks for context static attribute.
26909           In mono_class_vtable(), added support for static context fields.
26910         * threads.c: Changed methods that manage thread static fields to more
26911           generic methods so they can be reused both for thread and context static
26912           data.
26913         * threads.h: Declared some new methods.
26915 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
26917         * reflection.h: Update after changes to the managed types.
26919         * reflection.c (encode_custom_modifiers): New helper function.
26921         * reflection.c (method_encode_signature): Emit custom modifiers.
26923         * reflection.c (field_encode_signature): Emit custom modifiers.
26925 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
26927         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
26929         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
26930         implementation.
26932         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
26933         icall.
26935         * object.c (mono_field_get_value_object): New function.
26937         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
26938         specific.
26940 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
26942         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
26943         return a preallocated out-of-memory exception instance.
26945         * object.c (out_of_memory): Use the new function.
26947         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
26948         flag is before the custom modifiers. Fixes #49802.
26950 2003-11-16  Martin Baulig  <martin@ximian.com>
26952         * class.c (mono_class_is_open_constructed_type): Implemented the
26953         MONO_TYPE_GENERICINST case.
26955 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
26957         * assembly.c (mono_assembly_fill_assembly_name): New function to
26958         fill out the MonoAssemblyName structure.
26959         (mono_assembly_open): Use the new function.
26961         * icall.c (fill_reflection_assembly_name): New helper function.
26963         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
26964         new function.
26966         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
26968 2003-11-15  Martin Baulig  <martin@ximian.com>
26970         * class.c (mono_class_is_open_constructed_type): New public
26971         function; checks whether a type is an open constructed type,
26972         ie. whether it still contains type parameters.
26973         (mono_class_inflate_generic_type): If we're a type parameter and
26974         the inflated type is also a MONO_TYPE_(M)VAR, return the original
26975         type.
26977         * class.h (MonoGenericInst): Added `guint32 is_open'.
26979         * loader.c (method_from_methodspec): Check whether we're an open
26980         or closed constructed type and set `ginst->is_open'.
26982         * reflection.c (mono_reflection_bind_generic_parameters): Check
26983         whether we're an open or closed constructed type and set
26984         `ginst->is_open'.
26985         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
26986         from open constructed types.
26988 2003-11-15  Martin Baulig  <martin@ximian.com>
26990         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26991         a generic instance (instead of a generic type declaration) with
26992         unbound generic parameters, bind them to our actual types.
26994 2003-11-14  Martin Baulig  <martin@ximian.com>
26996         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
26998         * reflection.c (mono_reflection_bind_generic_parameters): If we're
26999         an interface type, populate `res->interfaces' with instantiated
27000         versions of all the interfaces we inherit.
27002 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27004         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27005         when MONO_PATH is set but doesn't contain the install dir.
27007 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27009         * icall.c:
27010         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27011         it's also implemented in base classes. Fixes bug #50927.
27013 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27015         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27016         if this method is called from a finalizer. Fixes #50913.
27018 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27020         * threads.c: Implement VolatileRead/VolatileWrite
27022         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27024 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27026         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27027         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27028         2.95.3.
27030         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27031         from Peter Ross (pro@missioncriticalit.com).
27032         
27033 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27035         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27037 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27039         * assembly.c (mono_assembly_load_references): Disable check because it
27040         triggers on older corlibs which lots of people have.
27042 2003-11-12  Jackson Harper  <jackson@ximian.com>
27044         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27045         load corlib.dll if mscorlib.dll is not found.
27046         * assembly.h: Remove corlib name define.
27047         * class.c:
27048         * domain.c:
27049         * image.c: Change corlib name to mscorlib.
27050         
27051 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27053         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27055 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27057         * appdomain.h: Added loader_optimization here to sync with the C#
27058         code, and add disallow_binding_redirects field.
27060 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27062         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27064         * reflection.c (mono_image_build_metadata): Fix crash on modules
27065         with no types.
27067         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27069         * icall.c (ves_icall_get_method_info): Return callingConvention as
27070         well.
27072         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27073         namespaces from the EXPORTEDTYPE table as well.
27075         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27076         from all modules inside the assembly.
27077         
27078 2003-11-11  Martin Baulig  <martin@ximian.com>
27080         * reflection.c (mono_reflection_bind_generic_parameters): Make
27081         this work for interfaces.
27083 2003-11-11  Martin Baulig  <martin@ximian.com>
27085         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27087 2003-11-11  Martin Baulig  <martin@ximian.com>
27089         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27090         "MonoInflatedMethod" and "MonoInflatedCtor".
27092 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27094         * reflection.c (resolution_scope_from_image): Use the assembly table
27095         from the manifest module, since other modules don't have it.
27097         * debug-helpers.c (mono_type_full_name): New helper function.
27099         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27101         * image.c (mono_image_load_file_for_image): New public function which
27102         is a replacement for the load_file_for_image in class.c.
27104         * assembly.c (mono_assembly_load_module): A wrapper for the function
27105         above which does assembly association and reference loading too.
27107         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27109 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27111         * appdomain.c: not all of the attributes for the full assembly name
27112         are required and the order doesn't matter. Fixes bug #50787.
27114 2003-11-10  Dick Porter  <dick@ximian.com>
27116         * locales.c: Use platform-endian UTF16
27118 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27120         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27121         
27122 2003-11-10  Martin Baulig  <martin@ximian.com>
27124         * metadata.c
27125         (mono_metadata_load_generic_params): Make this actually work.
27127         * reflection.c (mono_reflection_bind_generic_parameters): If our
27128         parent is a generic instance, pass all the `types' to it, no
27129         matter whether it has the same number of type parameters or not.
27131 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27133         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27135         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27136         assignment code to this function so it gets called recursively for all
27137         modules.
27139         * image.c (load_modules): Remove the assembly assignment since it is
27140         now done by mono_assembly_load_references.
27141         
27142         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27143         Add 'module' argument.
27144         (mono_module_get_types): New helper function.
27145         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27147 2003-11-08  Martin Baulig  <martin@ximian.com>
27149         * class.c (mono_class_inflate_generic_method): Interface method
27150         don't have a header.
27152         * reflection.c (mono_image_get_methodspec_token): Take an
27153         additional `MonoGenericInst *' argument instead of reading it from
27154         the header; this is necessary to support interfaces.
27155         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27156         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27157         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27158         argument.
27160         * reflection.h (MonoReflectionInflatedMethod): Added
27161         `MonoGenericInst *ginst'.
27163 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27165         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27167 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27169         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27171 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27173         * reflection.c 
27174         (reflection_methodbuilder_from_method_builder):
27175         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27176         initialize a ReflectionMethodBuilder structure.
27177         (mono_image_get_methodbuilder_token):
27178         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27179         tokens which point to types in another module inside the same assembly.
27181         * reflection.c: Use the new helper functions.
27182         
27183         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27185         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27186         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27188         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27189         neccesary.
27191         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27192         current module. Emit the manifest only for the main module.
27194         * reflection.c (mono_image_create_token): Add assertion when a 
27195         memberref needs to be created.
27197         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27199         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27200         larger buffer for the custom attribute blob. Fixes #50637.
27201         
27202 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27204         * threadpool.c: notify listener on async processing handles after
27205         invoking the async callback. Thanks to Zoltan.
27207 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27209         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27210         avoid code duplication.
27212         * reflection.h (MonoDynamicImage): New type which is currently unused,
27213         but will be used through the ref.emit code in place of 
27214         MonoDynamicAssembly.
27216         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27217         object layout.
27219         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27220         a MonoDynamicImage instead of just a MonoImage.
27221         
27222         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27223         icalls to ModuleBuilder but keep their semantics, so they will work
27224         with moduleb->assemblyb. This will change later.
27225         
27226 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27228         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27229         object layout.
27231         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27232         main module, since it is now done by the managed code.
27234 2003-11-03  Martin Baulig  <martin@ximian.com>
27236         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27237         `ginst->klass' here.
27238         (method_encode_methodspec): Don't use the `ginst->generic_method's
27239         klass if it's a generic instance, use `ginst->klass' in this case.
27241 2003-11-03  Martin Baulig  <martin@ximian.com>
27243         * reflection.c (mono_image_get_generic_method_param_info):
27244         Removed, use mono_image_get_generic_param_info() instead.
27245         (mono_image_get_type_info): Write the GenericParam table before
27246         the Method table.  This is neccessary because in the GenericParam
27247         table, type parameters of the class (ie. '!0' etc.) must come
27248         before the ones from its generic methods (ie. '!!0' etc).
27250 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27252         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27254 2003-11-02  Martin Baulig  <martin@ximian.com>
27256         * reflection.c (create_generic_typespec): Take a
27257         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27258         the generic parameters from it.
27260 2003-11-02  Martin Baulig  <martin@ximian.com>
27262         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27263         instead of a `MonoClassField *' since we just need the type.
27264         (create_generic_typespec): New static function.  Creates a
27265         TypeSpec token for a generic type declaration.
27266         (mono_image_get_generic_field_token): New static function.
27267         (mono_image_create_token): If we're a FieldBuilder in a generic
27268         type declaration, call mono_image_get_generic_field_token() to get
27269         the token.
27271 2003-11-02  Martin Baulig  <martin@ximian.com>
27273         * reflection.h
27274         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27275         `MonoReflectionGenericInst *declaring_type' and
27276         `MonoReflectionGenericInst *reflected_type' fields.
27278         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27279         `MonoReflectionGenericInst *declaring_type' and a
27280         `MonoReflectionGenericInst *reflected_type' argument instead of a
27281         single `MonoReflectionGenericInst *type' one.  Set
27282         `res->declaring_type' and `res->reflected_type' from them.
27283         (mono_reflection_inflate_field): Likewise.      
27285 2003-11-02  Martin Baulig  <martin@ximian.com>
27287         * class.c (mono_class_setup_vtable): Don't store generic methods
27288         in the vtable.  
27290 2003-11-02  Martin Baulig  <martin@ximian.com>
27292         * reflection.h (MonoReflectionGenericInst): Added
27293         `MonoReflectionType *declaring_type'.
27295         * reflection.c (mono_reflection_bind_generic_parameters): Use
27296         `if (tb->parent)' instead of `klass->parent'.
27298 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27300         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27301         with an empty ASSEMBLY table.
27303         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27304         variable in the inner and outer loops.
27306 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27308         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27309         argument.
27311         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27312         
27313         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27314         icalls. Instead, do everything in managed code. This is needed since
27315         it is hard to restore the original domain etc. in unmanaged code in the
27316         presence of undeniable exceptions.
27318         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27319         New icalls to push and pop appdomain refs.
27321 2003-10-31  Martin Baulig  <martin@ximian.com>
27323         * class.c (inflate_generic_type): Renamed to
27324         mono_class_inflate_generic_type() and made it public.
27326         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27327         New interncall.
27329         * loader.c (mono_field_from_memberref): Also set the retklass for
27330         typespecs.
27332         * fielder.c (mono_image_get_inflated_field_token): New static
27333         method; creates a metadata token for an inflated field.
27334         (mono_image_create_token, fixup_method): Added support for
27335         "MonoInflatedField".
27336         (fieldbuilder_to_mono_class_field): New static function.
27337         (mono_reflection_inflate_field): New public function.
27339         * reflection.h
27340         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27341         (MonoReflectionInflatedField): New typedef.     
27343 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27345         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27346         for Solaris and other platforms without s6_addr16
27348 2003-10-30  Martin Baulig  <martin@ximian.com>
27350         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
27351         argument instead of two.
27352         (mono_class_inflate_generic_signature): Likewise.
27353         (inflate_generic_header): Likewise.
27354         (mono_class_inflate_generic_method): Likewise.  In addition, if
27355         `ginst->klass' is set, it becomes the new `method->klass'.
27357         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
27358         field.
27360         * reflection.c (encode_generic_method_sig): Write a 0xa as the
27361         first byte. [FIXME]
27362         (method_encode_methodspec): If we have generic parameters, create
27363         a MethodSpec instead of a MethodRef.
27364         (fixup_method): Added support for "MonoInflatedMethod" and
27365         "MonoInflatedCtor".
27366         (mono_image_create_token): Added support for "MonoInflatedMethod"
27367         and "MonoInflatedCtor".
27368         (inflated_method_get_object): New static function; returns a
27369         managed "System.Reflection.MonoInflatedMethod" object.
27370         (mono_reflection_bind_generic_method_parameters): Return a
27371         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
27372         (mono_reflection_inflate_method_or_ctor): Likewise.
27373         (mono_image_get_generic_method_param_info): Initialize unused
27374         fields to zero.
27375         (mono_image_get_generic_param_info): Likewise.
27377         * reflection.h (MonoReflectionInflatedMethod): New public
27378         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
27379         "S.R.MonoInflatedCtor" classes.
27381         * loader.c (method_from_memberref): If we're a TypeSpec and it
27382         resolves to a generic instance, inflate the method.
27384 2003-10-28  Dick Porter  <dick@ximian.com>
27386         * object.c (mono_runtime_run_main): Convert command-line arguments
27387         into utf8, falling back to the user's locale encoding to do so.
27389 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
27391         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
27392         at this time.
27394         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
27396         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
27397         up icalls at method definition time. Partially fixes #33569.
27399 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
27401         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
27402         marshalling of arrays. Fixes #50116.
27404         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
27406         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
27407         points to a vtable in the dying appdomain.
27409         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
27410         listeners into unmanaged code inside the lock.
27412         * object.c (mono_class_vtable): Turn off typed allocation in non-root
27413         domains and add some comments.
27415 2003-10-25  Martin Baulig  <martin@ximian.com>
27417         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
27419         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
27421         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
27422         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
27423         currently parsing.  Create the generic class and store it in
27424         `generic_inst->klass' before parsing the type arguments.  This is
27425         required to support "recursive" definitions; see mcs/tests/gen-23.cs
27426         for an example.
27427         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
27428         to support recursive typespec entries.
27430         * class.c (mono_class_setup_parent): If our parent is a generic
27431         instance, we may get called before it has its name set.
27432         (mono_class_from_generic): Splitted into
27433         mono_class_create_from_generic() and mono_class_initialize_generic().
27435 2003-10-25  Martin Baulig  <martin@ximian.com>
27437         * icall.c (ves_icall_Type_BindGenericParameters): Return a
27438         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
27439         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
27440         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
27442         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
27443         (create_typespec): Likewise.
27444         (mono_reflection_bind_generic_parameters): Return a
27445         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
27446         (mono_reflection_inflate_method_or_ctor): New public function.
27448         * reflection.h (MonoReflectionGenericInst): New typedef.        
27450 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
27452         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
27453         inside the domain lock. Fixes #49993.
27454         
27455         * object.c (mono_class_vtable): When typed allocation is used, 
27456         allocate vtables in the GC heap instead of in the mempool, since the
27457         vtables contain GC descriptors which are used by the collector even
27458         after the domain owning the mempool is unloaded.
27460         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
27462         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
27463         reflect what it does. Also invalidate mempools instead of freeing
27464         them if a define is set.
27466         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
27467         of the appdomain.
27468         
27469         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
27470         hold the finalizable objects in this domain.
27472         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
27473         appdomain.
27475         * appdomain.c (mono_domain_set): New function to set the current
27476         appdomain, but only if it is not being unloaded.
27478         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
27479         appdomain which is being unloaded.
27480         
27481         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
27482         unloading of the root appdomain.
27484         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
27485         icall to execute a method in another appdomain. Intended as a 
27486         replacement for InternalSetDomain, which can confuse the code 
27487         generation in the JIT.
27489         * appdomain.c (mono_domain_is_unloading): New function to determine
27490         whenever an appdomain is unloading.
27492         * appdomain.c (mono_domain_unload): New function to correctly unload
27493         an appdomain.
27495         * assembly.c (mono_assembly_load_references): Check that an assembly
27496         does not references itself.
27498         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
27499         domain manually, it asks the finalizer thread to do it, then waits for
27500         the result. Also added a timeout.
27502         * icall.c: Register the new icalls.
27504         * threads.h threads.c: Export the mono_gc_stop_world and 
27505         mono_gc_start_world functions.
27506         
27507         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
27508         function to fill out the mempool with 0x2a.
27510 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
27512         * reflection.h (MonoReflectionMethodAux): New structure to store
27513         information which is rarely used, thus is not in the MonoMethod
27514         structure.
27516         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
27517         store the aux info.
27519         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
27520         and marshalling info into the aux structure.
27522         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
27523         from the aux structure.
27525         * loader.c (mono_method_get_param_names): Retrieve the param names from
27526         the aux structure.
27527         
27528 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
27530         * exception.h exception.c: Add AppDomainUnloadedException && fix 
27531         warning.
27533 2003-10-21  Dick Porter  <dick@ximian.com>
27535         * socket-io.c
27536         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
27537         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
27539 2003-10-21  Martin Baulig  <martin@ximian.com>
27541         * reflection.c (mono_reflection_bind_generic_parameters):
27542         `klass->parent' is NULL for interfaces.
27544 2003-10-21  Martin Baulig  <martin@ximian.com>
27546         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27548 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
27550         * exception.c (mono_exception_from_name_msg): New helper function for
27551         creating exceptions and initializing their message field.
27553         * exception.c: Simplify functions using the new helper.
27555         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
27556         New function.
27558         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
27559         mono_raise_exception, since otherwise gcc doesn't generate the function
27560         epilog for raise_exception, confusing the stack unwinding in the JIT.
27561         Fixes #45043.
27563         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
27564         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
27565         Fixes #49499.
27567 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27569         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
27570         utf8.
27572 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
27574         * icall.c: Removed GetUninitializedObject method because
27575           AllocateUninitializedClassInstance does the same.
27577 2003-10-18  Martin Baulig  <martin@ximian.com>
27579         * class.c (inflate_generic_signature): Renamed to
27580         mono_class_inflate_generic_signature() and made it public.
27581         (my_mono_class_from_generic_parameter): New static function; if we
27582         don't already have the generic parameter's MonoClass, create a
27583         very simple one which is just used internally in the runtime and
27584         not passed back to managed code.
27586         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
27588         * metadata.h (MonoMethodSignature): Moved the
27589         `MonoGenericParam *gen_params' to the MonoMethodHeader.
27590         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
27592         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
27593         ves_icall_MonoMethod_GetGenericArguments(); this is now an
27594         interncall on the MonoMethod class, not on MethodInfo.
27595         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
27596         calling mono_reflection_bind_generic_method_parameters() directly.
27598         * loader.c (mono_method_get_signature): If this is a MethodSpec;
27599         return the already computed `method->signature'.
27600         (method_from_methodspec): New static function to load a method
27601         from a MethodSpec entry.
27602         (mono_get_method_from_token): Call the new method_from_methodspec()
27603         for MethodSpec tokens.  
27604         (mono_get_method_from_token): If we're a generic method, load the
27605         type parameters.
27607         * reflection.c (mono_image_get_memberref_token): Allow
27608         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
27609         table.
27610         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
27611         (mono_image_create_token): First check whether it's a generic
27612         method (so we'd need to create a MethodSpec), then do the other
27613         two alternatives.
27614         (mono_reflection_bind_generic_method_parameters): Return a
27615         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
27616         called directly from the interncall.
27618 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
27620         * reflection.c (load_public_key): Move loading of the public key
27621         into managed code.
27623         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
27625         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
27626         fields.
27628         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
27629         culture, hash_alg and public_key. Fixes #49555.
27631 2003-10-17  Martin Baulig  <martin@ximian.com>
27633         * class.h (MonoGenericInst): Moved this declaration here and added
27634         `MonoMethod *generic_method'.
27636         * icall.c
27637         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
27638         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
27640         * metadata.c (mono_metadata_type_equal): Two types of
27641         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
27642         index; ie. don't compare the address of the `MonoGenericParam'
27643         structure.
27644         (mono_metadata_load_generic_params): Removed the `MonoMethod
27645         *method' argument.
27647         * metadata.h (MonoGenericInst): Moved declaration to class.h.
27648         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
27650         * reflection.c (method_encode_signature): Encode the number of
27651         generic parameters.
27652         (encode_generic_method_sig): New static function.
27653         (method_encode_methodspec): New static function; creates an entry
27654         in the MethodSpec table for a generic method.
27655         (mono_image_get_methodspec_token): New static function.
27656         (mono_image_create_token): Call mono_image_get_methodspec_token()
27657         for generic methods.
27658         (mono_reflection_bind_generic_method_parameters): New public
27659         function.  Instantiates a generic method.
27661 2003-10-16  Martin Baulig  <martin@ximian.com>
27663         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
27664         *gen_params' here from MonoMethodHeader.
27666         * metadata.c (mono_metadata_parse_method_signature): If we have
27667         generic parameters, initialize `method->gen_params' and then set
27668         the correct `type->data.generic_param' in all the parameters.
27670 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
27672         * threads.c (mono_threads_get_default_stacksize): New function to 
27673         return the default stacksize.
27675         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
27676         termination of the finalizer thread, since the previous method had
27677         race conditions. Fixes #49628.
27679         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
27680         as for the other managed threads.
27682 2003-10-16  Martin Baulig  <martin@ximian.com>
27684         * class.c (inflate_generic_signature): Copy `generic_param_count'
27685         and `gen_params'.
27687         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
27688         New interncall.
27690         * metadata.c (mono_metadata_parse_method_signature): Actually set
27691         the `method->generic_param_count' here.
27692         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
27694 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
27696         * object.h: Add a new field to TypedRef to simplify the implementation
27697         of the REFANY opcodes in the JIT.
27699         * icall.c: Make use of the new field.
27701         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
27702         dynamically.
27704 2003-10-15  Martin Baulig  <martin@ximian.com>
27706         * class.c (mono_class_from_gen_param): Renamed to
27707         mono_class_from_generic_parameter() and moved most of the
27708         functionality from mono_reflection_define_generic_parameter()
27709         here; ie. we create a "real" class here.
27710         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
27711         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
27712         previously been called.
27714         * class.h (MonoGenericParam): Moved the declaration of this struct
27715         here from metadata.h and added `MonoMethod *method'.
27717         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
27718         interncall.
27720         * loader.c (mono_get_method_from_token): If we have any generic
27721         parameters, call mono_metadata_load_generic_params() to read them
27722         from the MONO_TABLE_GENERICPAR.
27724         * metadata.c (mono_metadata_load_generic_params): Added
27725         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
27727         * metadata.h (MonoMethodSignature): Replaced
27728         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
27729         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
27731         * reflection.c (mono_reflection_define_generic_parameter): Moved
27732         most of the functionality into the new
27733         mono_class_from_generic_parameter(); set the `method' field if
27734         we're a method parameter.       
27736 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
27738         * marshal.c (emit_struct_conv): if native size is 0
27739         emit no code.
27741 2003-10-14  Martin Baulig  <martin@ximian.com>
27743         * icall.c: The generics API has changed in the spec since it was
27744         added to System.Type; these modifications make it match the spec
27745         again.
27746         (ves_icall_Type_GetGenericParameters): Renamed to
27747         `ves_icall_Type_GetGenericArguments'.
27748         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
27749         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
27750         `ves_icall_MonoType_get_HasGenericArguments'.
27751         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
27752         `ves_icall_MonoType_get_IsGenericParameter'.
27753         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
27754         this is no interncall anymore.
27755         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
27756         `ves_icall_TypeBuilder_get_IsGenericParameter'.
27758 2003-10-14  Martin Baulig  <martin@ximian.com>
27760         * reflection.c (mono_reflection_bind_generic_parameters): Also
27761         inflate generic methods if we're reading the class from IL.
27763 2003-10-13  Martin Baulig  <martin@ximian.com>
27765         * reflection.c (mono_reflection_define_generic_parameter): This
27766         method isn't called directly from the icall anymore; take a
27767         `MonoReflectionAssemblyBuilder *' so we can use this for type and
27768         method generic parameters.
27769         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
27770         (method_builder_encode_signature): Encode generic parameters.
27771         (mono_image_get_method_info): Write generic params to the
27772         MONO_TABLE_GENERICPARAM table.
27774         * reflection.h (MonoReflectionMethodBuilder): Added
27775         `MonoArray *generic_params'.
27777         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
27779         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
27780         wrapper for mono_reflection_define_generic_parameter().
27781         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
27783 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
27785         * marshal.h: Add missing function to fix build.
27787         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
27788         the SetLastError pinvoke attribute.
27790         * marshal.c (mono_marshal_set_last_error): New helper function called
27791         by the generated code.
27792         
27793         * marshal.c (mono_mb_emit_branch): New helper function.
27795         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
27797         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
27798         classes as parameters and return values of delegates. Fixes #29256. 
27800 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
27802         * locales.c: use gint32 in non HAVE_ICU case
27804 2003-10-11  Martin Baulig  <martin@ximian.com>
27806         * mono-debug.c (mono_debug_add_method): Added a workaround for
27807         bug #48591.
27809 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
27811         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
27812         delegates passed to native code must use the STDCALL calling 
27813         convention. Fixes #35987.
27815 2003-10-10  Martin Baulig  <martin@ximian.com>
27817         * class.c (inflate_generic_type): If we're inflating for a generic
27818         type instance (and not for a generic method), return
27819         MONO_TYPE_MVAR unchanged.
27821 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27823         * string-icalls.c: Join ignores null strings in the source array.
27824         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
27825         * threads.c: GetAvailableTheads is slightly more accurate.
27827 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
27829         * threads.h threads.c : add mono_threads_set_default_stacksize
27830         and pass default to CreateThread calls.
27832 2003-10-09  Dick Porter  <dick@ximian.com>
27834         * icall.c:
27835         * locales.h:
27836         * locales.c: Internal calls for constructing CultureInfo and
27837         related objects from libicu (if its available.)
27839 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
27841         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
27843 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27845         * threadpool.c: added an argument to async_invoke_thread that is the
27846         item to process, pass the MonoAsyncResult to the thread start function
27847         when creating a new thread. This way we don't need to acquire any lock
27848         when we're creating a new thread. Readded a semaphore for faster
27849         response times (instead of that Sleep i added).
27851 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
27853         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27854         get daylight change dates better on Windows, fix handling
27855         of platforms without tm_gmtoff.
27857 2003-10-06  Martin Baulig  <martin@ximian.com>
27859         * class.c (inflate_generic_method): Renamed to
27860         mono_class_inflate_generic_method() and made public.
27861         (mono_class_init): Don't inflate the generic methods here.
27862         (mono_class_from_generic): Added `gboolean inflate_methods'
27863         argument.  Inflate the methods here.
27865         * loader.c (mono_method_get_param_names): Ignore instances of
27866         generic types for the moment.
27868         * reflection.c (fixup_method): Added support for inflated methods.
27869         (mono_image_create_token): Use mono_image_get_methodref_token()
27870         for inflated methods.
27871         (mono_custom_attrs_from_param): Ignore instances of generic types
27872         for the moment.
27873         (mono_reflection_bind_generic_parameters): New public function.
27874         Moved all the functionality from
27875         ves_icall_Type_BindGenericParameters() here and added support for
27876         dynamic types.
27877         (mono_reflection_define_generic_parameter): Initialize
27878         `klass->methods' here.
27880         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
27881         functionality into mono_reflection_define_generic_parameter().
27882         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
27883         TypeBuilder, return that TypeBuilder.
27885 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27887         * appdomain.c: removed mono_delegate_semaphore.
27889         * threadpool.c:
27890         (mono_thread_pool_add): moved hash table creation inside and the thread 
27891         creation outside of the critical region.
27892         (mono_thread_pool_finish): removed obsolete code.
27893         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
27894         continue or exit the thread depending on the queue.
27896 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
27898         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
27899         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
27900         handle more bool marshalling options
27902 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
27904         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
27905         arrays of structs. Also add a more descriptive error message when
27906         a structure member is marshalled as LPArray.
27908 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
27910         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27911         marshalling arrays of complex types. Fixes #29098. Also remove an
27912         usused and incomplete function.
27914 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
27916         * gc.c: report heap_size - free_bytes as total memory allocated
27917         (bug#49362).
27919 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
27921         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
27922         fix timezone handling problems on Windows.
27923         
27924         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
27925         asserts when the year is outside the range handled by ms the functions.
27927         * class.c (setup_interface_offsets): If the class is an interface,
27928         fill out its interface_offsets slot.
27930 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27932         * threadpool.c: mark threadpool threads as background.
27934 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
27936         * decimal.c - define DECINLINE to nothing if not using GCC
27938 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
27940         * assembly.c: More refcount fixes.
27942 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27944         * string-icalls.c: if we're not trimming, return the same string.
27945         When not splitting, don't create a new string.
27947 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27949         * image.c:
27950         (mono_image_open): increment the ref_count inside the critical section.
27952 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
27954         * image.c (mono_image_open): Fix reference counting bug.
27956 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
27958         * marshal.c (mono_marshal_type_size) struct alignment changed for 
27959         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
27960         64bits. Avoid leak in mono_marshal_get_native_wrapper when
27961         mono_lookup_pinvoke_call throws.        
27963 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
27965         * reflection.c (mono_reflection_parse_type): Fix #49114.
27967         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
27968         temporary workaround for cygwin header problem.
27970         * object.c (mono_object_isinst): Synchronize this with the code
27971         generated by the JIT for casts.
27973 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
27975         * reflection.c (encode_type): Fix #38332.
27977 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
27979         * marshal.c (mono_marshal_method_from_wrapper): New function to return
27980         the original method from the wrapper method.
27982 2003-09-25  Martin Baulig  <martin@ximian.com>
27984         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
27985         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
27986         (ves_icall_Type_get_IsGenericInstance): New interncall.
27988 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
27990         * object.c: fix cast warning in big endian code.
27992 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
27994         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
27995         
27996 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27998         * assembly.c: don't call check_env from mono_assembly_load. It's
27999         already done once in mono_assemblies_init and may cause headaches when
28000         multiple threads are loading assemblies.
28002 2003-09-19  Martin Baulig  <martin@ximian.com>
28004         * reflection.c (mono_reflection_define_generic_parameter): Don't
28005         allocate `klass->methods', set `klass->flags' to
28006         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28008 2003-09-18  Martin Baulig  <martin@ximian.com>
28010         * class.c (mono_class_init): Don't create `class->methods' if it's
28011         already initialized.
28013         * metadata.c (mono_metadata_load_generic_params): Make this
28014         actually work.
28016         * reflection.c (mono_reflection_define_generic_parameter): Set
28017         parent class and interfaces from the constraints.
28019         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28020         to keep this struct in sync with the declaration in TypeBuilder.cs.
28022 2003-09-17  Martin Baulig  <martin@ximian.com>
28024         * metadata.h (MonoType): Replaced the data's `int type_param'
28025         field with `MonoGenericParam *generic_param'.
28026         (MonoGenericParam): Added `MonoClass *klass'.
28028         * class.c (mono_class_from_gen_param): Removed the
28029         `MonoImage *image' and `int type_num' arguments.
28031         * metadata.c (mono_metadata_parse_generic_param): New static
28032         method; creates a MonoGenericParam which just contains the index.
28033         (do_mono_metadata_parse_type): Call
28034         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28035         MONO_TYPE_MVAR.
28037         * reflection.c (mono_image_typedef_or_ref): Generic type
28038         parameters may be in the same assembly, but never use a typedef
28039         for them.
28040         (mono_reflection_define_generic_parameter): We're now creating a
28041         "real" class for the type parameter; it's now safe to call
28042         mono_class_from_mono_type() on the class'es type, it'll do the
28043         right thing.
28045 2003-09-16  Martin Baulig  <martin@ximian.com>
28047         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28048         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28049         the `symfile' data structure must be fully initialized before it
28050         gets added to the table.
28052 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28054         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28056         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28057         class init trampolines.
28059 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28061         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28062         to the built-in profiler to turn off time and allocation profiling
28063         respectively.
28065 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28067         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28068         g_direct_equal.
28070         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28071         in human readable form.
28073 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28075         * reflection.c icall.c: Fixed warnings.
28077         * image.c (load_class_names): Use a temporary hash table to hold the
28078         namespaces in order to avoid doing many string comparisons.
28080         * image.h: Fix typo.
28082         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28083         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28084         since the NULL case is short-circuited inside g_hash_table_lookup, 
28085         leading to better performance.  
28087         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28088         obtain the first custom attribute for a given index. Depends on the
28089         CustomAttribute table being sorted by the parent field.
28091         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28092         for better performance.
28094 2003-09-07  Martin Baulig  <martin@ximian.com>
28096         * class.c (mono_class_init): If we're a generic instance, inflate
28097         all our methods instead of loading them from the image.
28098         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28100 2003-09-07  Martin Baulig  <martin@ximian.com>
28102         * mono-debug-debugger.c: Added support for constructors.
28104 2003-09-06  Martin Baulig  <martin@ximian.com>
28106         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28107         New interncall.
28109         * reflection.c (mono_reflection_setup_generic_class): Call
28110         ensure_runtime_vtable() to create the vtable.
28112 2003-09-05  Martin Baulig  <martin@ximian.com>
28114         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28115         MONO_TYPE_MVAR.
28117 2003-09-04  Martin Baulig  <martin@ximian.com>
28119         * reflection.c (mono_reflection_define_generic_parameter): Generic
28120         parameters start with zero.
28122 2003-09-04  Martin Baulig  <martin@ximian.com>
28124         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28126         * reflection.h (MonoReflectionGenericParam): New typedef.
28127         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28128         the generic parameters from the managed TypeBuilder.
28130         * reflection.c (mono_reflection_define_generic_parameter): New function.
28131         (mono_reflection_create_runtime_class): Encode generic parameters.
28132         (mono_reflection_setup_generic_class): New function; this is
28133         called after adding adding all generic params to the TypeBuilder.
28134         (encode_type): Added MONO_TYPE_VAR.
28136 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28138         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28139         here from the JIT.
28141         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28142         load hook.
28144 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28146         * reflection.h reflection.c class.h class.c: Delete duplicate 
28147         definition of mono_type_get_name () from reflection.c and export the
28148         one in class.c.
28150         * class.c: Class loading fixes from Bernie Solomon 
28151         (bernard@ugsolutions.com).
28153         * reflection.c: Endianness fixes from Bernie Solomon 
28154         (bernard@ugsolutions.com).
28155         
28156 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28158         * assembly.h assembly.c: Define a file format version for AOT
28159         libraries.
28160         
28161         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28163         * appdomain.h (MonoJitInfo): New field to determine whenever the
28164         code is domain neutral.
28165         
28166 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28168         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28170 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28172         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28173         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28174         Avoid caching the result since strings must be domain specific. Fixes
28175         #48050.
28177 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28179         * marshal.c (mono_marshal_init): Make this callable multiple times
28180         since it is hard to find a correct place to call it.
28182         * object.c (mono_runtime_class_init): Execute static constructors in
28183         the correct appdomain.
28185         * image.c (build_guid_table): Handle the case when multiple images have
28186         the same GUID.
28188 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28190         * icall.c: added a couple of icalls for System.Web.
28192 2003-08-28  Martin Baulig  <martin@ximian.com>
28194         * icall.c (ves_icall_Type_BindGenericParameters): Use
28195         `klass->generic_inst' instead of `&klass->byval_arg' in the
28196         mono_type_get_object() call.  The returned type must be
28197         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28199 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28201         * NOTES: New file.
28203         * object.c (mono_class_proxy_vtable): Make it thread safe.
28205         * pedump.c: Fix warning.
28207         * object.c appdomain.h: Get rid of metadata_section. 
28208         It is no longer needed and it was causing deadlocks with domain->lock.
28210         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28212 2003-08-26  Martin Baulig  <martin@ximian.com>
28214         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28216 2003-08-26  Martin Baulig  <martin@ximian.com>
28218         * pedump.c (main): Call mono_metadata_init(),
28219         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28220         and mono_loader_init().
28222 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28224         * loader.h: Add missing include to fix build.
28226         * image.h: mono_image_load_references is no more.
28228         * assembly.c: Reworked assembly loading to make it really thread safe.
28229         After these changes, the assembly returned by mono_assembly_open is
28230         fully initialized, i.e. all its references assemblies are loaded.
28232         * assembly.c (mono_image_load_references): Renamed to 
28233         mono_assembly_load_references, and made private, since clients no
28234         longer need to call it.
28236         * class.c: Removed calls to mono_assembly_load_references, since it was
28237         a source of deadlocks.
28239         * loader.h loader.c class.h class.c: Protect data structures using a 
28240         new lock, the loader lock.
28242         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28243         GPtrArrays only when needed.
28245         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28246         into empty structures by mcs. Fixes pinvoke7.cs.
28247         
28248         * domain.c (mono_init): Call a new initialization function.
28250         * appdomain.c (mono_runtime_init): Call the new initializer function
28251         of the marshal module.
28253         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28254         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28256         * marshal.h marshal.c: Added locks around the wrapper caches to make
28257         this module thread safe.
28259         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28260         this argument. Fixes pinvoke1.exe.
28262 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28264         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28265         enumeration of values. Removed fields to store remote call output values in
28266         MonoAsyncResult. Not needed any more.
28267         * object.c: Initialize call_type and async_result fields in mono_message_init.
28268         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28269         dispatching the message.
28270         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28271         async call to finish. To do it use a message with EndInvoke call type.
28273 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28275         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28276         determines whenever a method has marshalling info.
28278 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28280         * assembly.c: fix the build on windows.
28282 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28284         * object.cs: Fixed bug #47785.
28286 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28288         * string-icalls.c (StringReplace): If their are no occurances of
28289         the old string found return a reference to the supplied
28290         string. This saves some memory and matches MS behavoir.
28291         
28292 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28294         * socket-io.c: fixed compilation for systems that define AF_INET6
28295         and don't define SOL_IP/SOL_IPV6.
28297 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28299         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28300         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28302         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28304         * domain.c: Make this module thread safe.
28306         * domain.c (mono_init): Call new initialization function.
28308         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28309         reference types too. Fixes #38812.
28311         * image.c (mono_image_init): Fixed warnings.
28313         * class.c (mono_class_from_typeref): Handle assembly load failure
28314         correctly.
28316         * appdomain.c (add_assemblies_to_domain): Handle the case when
28317         the references of an assembly are not yet loaded.
28319         * metadata.c image.c assembly.c: Moved initialization of global
28320         variables to a separate function called at startup since lazy 
28321         initialization of these variables is not thread safe.
28322         
28323         * image.c assembly.c: Made this module thread safe by adding locks in 
28324         the appropriate places.
28326         * domain.c (mono_init): Call the new initialization functions of the
28327         three modules.
28329 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28331         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28332           make a direct call. It is proxy's work to make the call asynchronous.
28333           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28334           the return values.
28335         * object.cs: mono_method_call_message_new(): read AsyncResult and
28336           state object from parameters list, if this info is requested.
28337         * object.h: Added fields to store remote call output values in
28338           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28340 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28342         * object.h: add needed fields to MonoThread.
28343         * threads.c, threads.h: allow registering a function to cleanup data
28344         allocated per thread by the JIT.
28346 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28348         * loader.h: portability fix by Bernie Solomon
28349         * <bernard@ugsolutions.com>.
28351 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
28353         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
28354         return a MonoArray. This simplifies the code and also ensures that
28355         the cache allways contains an object reference as a value.
28357         * icall.c (ves_icall_get_parameter_info): Simplified using the new
28358         function.
28360 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28362         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
28363         fixes a problem with byte ordering when getting the address family for
28364         a socket.
28366 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
28368         * .cvsignore: Added monosn.
28370         * reflection.h reflection.c loader.c: Added support for parameter
28371         marshalling to dynamically created types. Fixes #47295.
28373 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
28375         * rand.c: remove useless warnings.
28377 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28379         * class.c: implemented ldtoken for methods and fieldrefs.
28381 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28383         * threadpool.c: when mono_async_invoke was called, no one took care of
28384         monitoring the queue. So if the method invoked took some time and we
28385         got new async invoke requests after 500 ms (the thread created waited
28386         that long in WaitForSingleObject), the new async invoke was not called
28387         until the previous one finished.
28389         This is fixed now. Thanks to Totte for helping with it.
28391 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28393         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
28395 2003-08-11  Martin Baulig  <martin@ximian.com>
28397         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
28399 2003-08-06  Martin Baulig  <martin@ximian.com>
28401         * mono-debug-debugger.c: Added support for static fields,
28402         properties and methods.
28404 2003-08-06  Martin Baulig  <martin@ximian.com>
28406         * mono-debug-debugger.c: Don't store the MonoString's vtable to
28407         make this work for applications with multiple application domains.
28409 2003-08-04  Martin Baulig  <martin@ximian.com>
28411         * mono-debug-debugger.c: Completely reworked the type support; the
28412         most important thing is that we're now just using one single
28413         `MonoType' instance per type.
28415 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
28417         * mono-endian.h, mono-endian.c, icall.c: Added icall
28418         ves_icall_System_Double_AssertEndianity to assert double word endianity
28419         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
28421 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28423         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
28424         support, icalls and fixes.
28426 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
28428         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
28429         classes that are a punctuation character in .NET is not the same a
28430         g_unichar_ispunct.
28432 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28434         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
28436 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
28438         * icall.c: Add new MemCopy internalcall.
28439         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
28440         Simplified code; It is not necessary to handle all the cases here,
28441         as the C# code takes care of it.  Only handle the case of the name
28442         resource embedded into the assembly.
28444         Changed signature to return the data pointer and the size of the
28445         data. 
28447 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
28449         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
28450         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
28452 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28454         * socket-io.c: ignore EINTR error in select.
28456 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28458         * class.h, class.c: removed unused subclasses field in MonoClass.
28460 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28462         * icall.c: improve fix of get_base_definition(). If the parent class
28463           doesn't have the mehod, look at the parent of the parent.
28464         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
28465           to check if a parameter is an in or out parameter
28466           (PARAM_ATTRIBUTE_IN is not set by default).
28467           mono_method_return_message_restore(): Use mono_class_value_size to
28468           get the size of a value type. mono_type_stack_size (parameterType)
28469           does not return the correct value if parameterType is byRef.
28470           mono_load_remote_field(), mono_load_remote_field_new(),
28471           mono_store_remote_field(), mono_store_remote_field_new():
28472           raise exception if the remote call returns an exception.
28474 2003-07-28  Martin Baulig  <martin@ximian.com>
28476         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
28477         method.  This is a wrapper around mono_runtime_invoke() which
28478         boxes the instance object if neccessary.
28480 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28482         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
28483         metadata.h, row-indexes.h, verify.c: first cut of generics support.
28485 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28487         * icall.c: disable mcs bug workaround.
28489 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
28491         * object.c (mono_runtime_class_init): Take the metadata_section
28492         mutex before obtaining the domain mutex.
28494         * appdomain.h: Added definition of metadata_section mutex here. 
28496         * object.c: define metadata_mutex here.
28498 2003-07-24  Ravi Pratap  <ravi@ximian.com>
28500         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
28501         fixed.
28503 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
28505         * reflection.c: Fix bug #46669
28507 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28509         * exception.c:
28510         * exception.h:
28511         * icall.c:
28512         * object.h: fill in the type name for TypeLoadException.
28514 2003-07-23  Ravi Pratap  <ravi@ximian.com>
28516         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
28517         relationship between TypeBuilders while compiling corlib) and bug
28518         45993 (Array types returned from the runtime while compiling
28519         corlib were from the loaded corlib).
28521 2003-07-22  Martin Baulig  <martin@ximian.com>
28523         * mono-debug-debugger.c: Reworked the type support a bit more;
28524         distinguish between types and classes.
28526 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
28528         * icall.c: add IsArrayImpl icall.
28530 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
28532         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
28533         initializing real_size only once. Also fix bug #46602.
28535 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
28537         * object.c: Renamed mono_metadata_section to metadata_section.
28539 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
28541         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
28542           empty array if the type is an array. Fixed.
28543           ves_icall_MonoMethod_get_base_definition: if the base method
28544           is abstract, get the MethodInfo from the list of methods of
28545           the class.
28546         * reflection.c: ParameterInfo.PositionImpl should be zero-based
28547           and it was 1-based. Fixed in mono_param_get_objects.
28549 2003-07-20  Martin Baulig  <martin@ximian.com>
28551         * mono-debug.h: Set version number to 31.
28552         (mono_debug_init): Added `MonoDomain *' argument.
28554         * mono-debug-debugger.c: Reworked the type support; explicitly
28555         tell the debugger about builtin types; pass the `klass' address to
28556         the debugger.
28558 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
28560         * image.c: Allow new metadata tables to be loaded without a
28561         warning. Also update the warning message to give the new constant value.
28562                 
28563 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
28565         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
28566         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
28567         array type representation changes.
28569 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28571         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
28572         on Environment.Exit () call.
28574 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28576         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
28577         requires a matching corlib.
28579 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28581         * Changelog: My editor decided to add a CR to each line. Sorry about that.
28582           Committed again without the CRs.
28583         
28584 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28586         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
28587           getting it from the "this" socket instance. Did not work
28588           if the socket is a subclass of Socket.
28589           Also fixed bug #35371.
28591 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28593         * metadata.c: fixed size for TypedByRef.
28594         * loader.c: when searching for a method, consider the vararg amrker.
28595         * unicode.c, decimal.c: constify some arrays.
28597 2003-07-15  Dick Porter  <dick@ximian.com>
28599         * socket-io.c: Fixed compilation for gcc < 3.2.
28601         Fixed compilation for machines that don't have AF_INET6 (thanks to
28602         Bernie Solomon <bernard@ugsolutions.com> for that part.)
28604         Fixed compile warnings.
28605         
28606         Fixed formatting and line endings.
28608 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
28610         * socket-io.h:
28611         * socket-io.c: Added IPv6 support.
28613 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
28615         * class.c (mono_class_is_assignable_from): New function to implement
28616         the is_assignable_from logic. Used by mono_object_isinst, 
28617         Type::IsAssignableFrom () and the interpreter.
28619         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
28620         Object, even interfaces.
28621         
28622         * object.c (mono_object_isinst): Implement in terms of 
28623         is_assignable_from.
28625         * icall.c (ves_icall_type_is_assignable_from): New icall.
28627 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
28629         * domain.c (foreach_domain): fix compiler warning.
28631 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
28633         * image.c (load_metadata_ptrs): use g_strndup because strndup is
28634         not available on all plattforms
28636 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
28638         * image.h image.c: Store the metadata version string in MonoImage.
28639         * icall.c: New icall to retrieve the image version.
28640         * reflection.c (create_dynamic_image): Fill in the image version field
28641         * reflection.c (build_compressed_metadata): Use the image version
28642         from the image structure.
28644 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28646         * appdomain.c: modified comment.
28647         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
28648         That will be its last iteration when mono_gc_cleanup is called from
28649         mono_runtime_cleanup and before the domain is unloaded.
28651         Fixes bug #45962.
28653 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
28655         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
28656         attributes.
28658 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28660         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
28661         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
28662         Bernie Solomon <bernard@ugsolutions.com>.
28664 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28666         * object.c, object.h: provide mono_object_new_fast() for faster
28667         allocation in some special cases.
28669 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
28671         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
28672         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
28674 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
28676         * threadpool.c: fix leaks.
28678 2003-07-01  Dick Porter  <dick@ximian.com>
28680         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
28681         using MonoGHashTables.  Fixes threadpool bug posted to list.
28683 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28685         * image.h, image.c: added support to load an assembly from a byte array.
28686         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
28687         assembly bundle support.
28689 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
28691         * threadpool.c (mono_thread_pool_add): keep a reference to the
28692         AsyncResult to prevent GC
28694 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
28696         * class.c: leak fix.
28698 2003-06-25  Dick Porter  <dick@ximian.com>
28700         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
28701         for the async object, the WaitHandle object will close the handle.
28702         Fixes bug 45321.
28704 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28706         * class.c: in mono_array_class_get (), lookup from the hash with the
28707         same type we insert: this works around a bug in
28708         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
28709         lluis. The real fix will have to wait for after the release.
28711 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
28713         * icall.c: fix memory leak when getting type members.
28715 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28717         * reflection.c: added more pubtoken special cases.
28719 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
28721         * class.c: handle field offset correctly when class size
28722         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
28724 2003-06-20  Martin Baulig  <martin@ximian.com>
28726         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
28727         *image' field.
28729 2003-06-20  Martin Baulig  <martin@ximian.com>
28731         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
28733 2003-06-20  Martin Baulig  <martin@ximian.com>
28735         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
28736         just distinguish between variables in registers and variables at
28737         an offset relative to a register.
28739 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28741         * icall.c: #ifdef out latest changes until mcs is fixed.
28743 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28745         * icall.c: return members in metadata order.
28747 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28749         * icall.c: avoid infinite loop in GetTimeZoneData.
28751 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
28753         * icall.c: added Marshal.Prelink/All icalls.
28755 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28757         * object.c, object.h: fix warnings and do some overflow checking
28758         when creating arrays.
28760 2003-06-17  Dick Porter  <dick@ximian.com>
28762         * file-io.h:
28763         * file-io.c: File attributes need to be tweaked slightly when
28764         passed from the managed to the w32 world.
28766 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28767         * profiler.h profiler-private.h profiler.c: Rework last patch
28768         based on suggestion by Paolo.
28769         
28770 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28772         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
28773         instruction level coverage data collection.
28774         * profiler.h profiler.c (: Added new callback function which can be
28775         used by the profiler to limit which functions should have coverage
28776         instrumentation.
28777         * profiler.c (mono_profiler_load): Call g_module_build_path to
28778         generate the file name of the profiler library.
28780 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28782         * profiler.c, profiler.h, profiler-private.h: added basic block 
28783         coverage profiling API.
28785 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
28787         * reflection.c (mono_reflection_create_runtime_class): Add support
28788         for events in dynamically generated code.
28790         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
28791         not allocated.
28793 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28795         * icall.c: when getting timezone info, return reasonable values if we
28796         can't get the actual data.
28798 2003-06-14  Dick Porter  <dick@ximian.com>
28800         * threads.c (start_wrapper): Remove the reference to the thread
28801         object in the TLS data, so the thread object can be finalized.
28802         This won't be reached if the thread threw an uncaught exception,
28803         so those thread handles will stay referenced :-( (This is due to
28804         missing support for scanning thread-specific data in the Boehm GC
28805         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
28807 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
28809         * reflection.c: ensure streams and tables are first allocated with
28810         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
28812 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28814         * icall.c: fixed GetElementType for byrefs (bug# 44792).
28816 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
28818         * reflection.c (mono_reflection_create_runtime_class): Add support for
28819         properties to dynamically created classes.
28820         * reflection.c: Fix a few places where non-MonoObjects were inserted
28821         into the tokens hashtable.
28823 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28825         * object.c: some support to handle out of memory exceptions.
28827 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
28829         * marshal.c (mono_marshal_get_native_wrapper): support reference
28830         return types
28832 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28834         * object.h, object.c: more portability stuff from Bernie Solomon.
28835         Unexport mono_object_allocate(). Added mono_object_unbox ().
28836         Set exitcode when an unhandled exception is thrown.
28838 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
28840         * marshal.c (mono_marshal_get_native_wrapper): use custom
28841         marshaler for return types.
28843 2003-06-10  Dick Porter  <dick@ximian.com>
28845         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
28846         ip_mreq is available
28848 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
28850         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
28851         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
28852         by Bernie Solomon <bernard@ugsolutions.com>.
28854 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
28856         * gc.c (mono_gc_init): Avoid error message on shutdown when
28857         GC_DONT_GC=1 is used.
28859         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
28860         New icall to return the GUID of a module.
28862 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28864         * class.c: ensure instance size always includes the parent's size
28865         even whem class size is set explicitly (fixes bug#44294).
28867 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28869         * profiler.h, profiler.c: made the simple profiler thread-safe,
28870         get more accurate timing info. Allow the loading of an
28871         externally-developed profiler module.
28873 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
28875         * marshal.c (mono_marshal_get_native_wrapper): improved
28876         class/byref arguments.
28877         (mono_marshal_get_native_wrapper): better string marshaling support.
28879 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
28881         * class.c: ensure .pack and .size are handled correctly and
28882         simplified layout of static fields.
28884 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
28886         * appdomain.c
28887         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
28889         * loader.c (mono_lookup_pinvoke_call): look for modules in the
28890         current directory (fix bug 44008)
28892 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
28894         * marshal.c (mono_marshal_get_native_wrapper): started support for
28895         custom marshalers.
28896         (mono_delegate_to_ftnptr): consider marshalling specifications
28898 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
28900         * reflection.c, reflection.h: emit custom marshal info.
28902 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28904         * object.c: free the GError.
28905         * icall.c: added CloseEvent_internal.
28906         * threads.[ch]:
28907         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
28908         call.
28910 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
28912         * loader.c (mono_method_get_signature): Add support for dynamic
28913         assemblies.
28915 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
28917         * reflection.c: fixed bug #43905.
28919 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28921         * class.c, domain.c, icall.c, metadata.h, object.h: support for
28922         handling TypedReference and ArgIterator.
28923         * loader.c, loader.h: added function to get signature at call site.
28925 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28927         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
28928         data readonly. Buglets and warning fixes. Some MethodSpec support.
28930 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28932         * class.h, class.c, object.c: remove relative numbering support.
28934 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
28936         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
28937         free the string, until we get a chance to fix Gtk#
28939 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28941         * marshal.c: revert last patch.
28943 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
28945         * icall.c: updates for new mono_class_vtable() not calling
28946         the type constructor anymore.
28948 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
28950         * object.h, object.c: separate vtable creation from type
28951         initialization. Make running the .cctor thread safe.
28953 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
28955         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
28957 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
28959         * loader.c (mono_get_method): consider calling convention
28961 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
28963         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
28964         to return the invisible global type for a module.
28966         * reflection.c (mono_image_build_metadata): Emit global fields too.
28968 2003-05-20  Peter Williams  <peterw@ximian.com>
28970         * loader.c (mono_lookup_internal_call): Add a few newlines.
28972 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
28974         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
28975         literal strings.
28977         * appdomain.c (set_domain_search_path): Recalculate search path when
28978         AppDomainSetup.PrivateBinPath changes.
28980         * object.c (mono_class_compute_gc_descriptor): It turns out some
28981         parts of the class libs (like System.Thread) holds pointers to
28982         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
28983         to treat native int a pointer type here.
28984         
28985 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
28987         * appdomain.h, domain.c: add hashtable for jump target resolution.
28989 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
28991         * reflection.h reflection.c icall.c: Added new icalls 
28992         GetManifestResourceInfoInternal, GetModulesInternal and support
28993         infrastructure.
28995 2003-05-16  Dick Porter  <dick@ximian.com>
28997         * icall.c:
28998         * file-io.h:
28999         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29001 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29003         * object.c: mono_store_remote_field: little fix to previous patch.
29005 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29007         * class.c: add constructors to array classes.
29008         * icall.c: special case array construction for InternalInvoke (),
29010 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29012         * class.h class.c reflection.c object.c: Added support for field
29013         defaults in dynamically generated classes.
29015 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29017         * reflection.c: properly encode charset for ddlimport.
29019 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29021         * threads.c: allow compiling without GC.
29023 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29025         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29026         handling of thread static data.
29028 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29030         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29032 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29034         * class.c (mono_array_class_get): always set the serializable flags
29035         (mono_array_class_get): always set the SEALED attribute for array types
29037 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29039         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29040         attributes (fix for bug 42021).
29042 2003-05-12  Dick Porter  <dick@ximian.com>
29044         * gc.c: Don't run finalizers when the finalizer thread is
29045         finishing up, because the default domain has already been
29046         destroyed.
29048 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29050         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29051         value is null, we should throw an exception.   This is slightly
29052         different than the other conventions used for the constructor.
29054 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29056         * socket-io.c: fixed windows build.
29058 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29060         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29062 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29064         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29065         compilers.
29067 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29069         * class.c (mono_class_layout_fields): Add experimental GC aware
29070         auto layout facility. Requires class library changes to work correctly.
29072         (mono_class_setup_vtable): Avoid overriding explicit interface
29073         method implementations. Fixes iface3.exe test.
29075         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29076         object reference.
29077         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29078         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29080         * metadata.h: Add new type classification macro which determines
29081         whenever the type holds an object reference.
29083 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29085         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29087 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29089         * gc.c (finalizer_thread): Work around a GC bug.
29091 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29093         * marshal.c (emit_struct_conv): allow unions
29095         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29097 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29099         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29101 2003-05-06  Martin Baulig  <martin@ximian.com>
29103         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29105 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29107         * socket-io.c:
29108         (Select_internal): allow NULLs, don't create arrays if not needed.
29109         Coupled with Socket.cs changes.
29111         * threadpool.c:
29112         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29113         register a finalizer for it that will close the semaphore handle. This
29114         fixes the leak and make Lupus' test run with > 4080 loops.
29116 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29118         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29119         Jerome Laban (bug #42287)
29121 2003-05-02  Martin Baulig  <martin@ximian.com>
29123         * debug-mono-symfile.h
29124         (MonoSymbolFile): Moved declaration into mono-debug.h.
29125         (MonoDebugMethodJitInfo): Likewise.
29126         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29127         argument.
29128         (_mono_debug_address_from_il_offset): Take a
29129         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29131         * mono-debug.h
29132         (MonoDebugDomainData): New struct.
29133         (mono_debug_get_domain_data): New function.
29134         (mono_debug_add_method): Take an additional `MonoDomain *'
29135         argument.
29136         (mono_debug_source_location_from_address): Likewise.
29137         (mono_debug_il_offset_from_address): Likewise.
29138         (mono_debug_address_from_il_offset): Likewise.
29140 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29142         * reflection.c: one more check for null type in custom attrs.
29144 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29146         * reflection.c: avoid warning (comparison is always false due to limited
29147         range of data type).
29149 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29151         * icall.c: throw an exception in Type.GetField if the argument 'name'
29152         is NULL.
29154 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29156         * reflection.c: fixed handling of enums in named arguments to custom
29157         attributes (bug #42123).
29159 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29161         * reflection.c: use the right array element type and handle
29162         a null for a Type argument, too.
29164 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29166         * reflection.c: handle arrays as arguments to custom attributes.
29168 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29170         * reflection.c: handle a string value in a custom attr
29171         ctor that takes an object.
29173 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29175         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29176         (fix bug #42063)
29178 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29180         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29182 2003-04-27  Martin Baulig  <martin@ximian.com>
29184         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29185         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29186         MONO_DEBUGGER_EVENT_BREAKPOINT.
29187         (mono_breakpoint_trampoline_code): Removed.
29188         (mono_debugger_event_handler): The last argument is now a
29189         `guint32'.
29190         (mono_debugger_insert_breakpoint_full): Removed the
29191         `use_trampoline' argument.
29192         (mono_debugger_method_has_breakpoint): Likewise.
29193         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29194         mono_debugger_breakpoint_callback(); take the method and
29195         breakpoint number as arguments.
29197 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29199         * metadata.c: fix off by one when loading parameters attributes.
29201 2003-04-24  Martin Baulig  <martin@ximian.com>
29203         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29205 2003-04-24  Martin Baulig  <martin@ximian.com>
29207         * mono-debug-debugger.c: Moved all code which interacts with the
29208         Mono Debugger here.
29210         * debug-mono-symfile.c: This code now just deals with the symbol
29211         file itself, the debugger code is now in mono-debug-debugger.c.
29213 2003-04-23  Martin Baulig  <martin@ximian.com>
29215         * mono-debug.c (mono_debug_source_location_from_il_offset):
29216         New method; like mono_debug_source_location_from_address(), but
29217         takes an IL offset instead of a machine address.
29219 2003-04-23  Martin Baulig  <martin@ximian.com>
29221         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29222         `line' field; this is now computed by the debugger.
29224 2003-04-23  Martin Baulig  <martin@ximian.com>
29226         * mono-debug.[ch]: New files.  This is the new debugging interface.
29228         * mono-debug-debugger.[ch]: New files.  Moved all code which
29229         interacts with the Mono Debugger here.
29231 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29233         * domain.c (mono_init): initialize mono_defaults.monitor_class
29235 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29237         * reflection.c (method_encode_code): Add a spicy exception to help
29238         future compiler authors.
29240 2003-04-21  Martin Baulig  <martin@ximian.com>
29242         * icall.c
29243         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29244         Make this work with relative pathnames; g_filename_to_uri() needs
29245         an absolute filename.
29247 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29249         * icall.c: Track name changes in Object and ValueType.
29251 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29253         * metadata.c (mono_type_stack_size): size should be a multiple of
29254         sizeof (gpointer)
29256 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29258         * gc.c:
29259         (internal_domain_finalize): moved into mono_domain_finalize. No need
29260         to create another thread because the finalizers will be run in the
29261         finalizer thread.
29262         
29263         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29264         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29265         to be run (MS does this too).
29267 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29269         * object.c (mono_class_compute_gc_descriptor): Update comment.
29271         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29273         * image.h: Add synchronized wrapper cache.
29275         * image.c (do_mono_image_open): Initialize cache.
29277         * reflection.c (create_dynamic_mono_image): Initialize cache.
29279 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29281         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29282         ves_icall_System_Buffer_ByteLengthInternal.
29284 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29286         * reflection.c: setup klass->nested_in earlier. Allow
29287         a dash in the assembly name.
29289 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29291         * metadata.c (mono_type_to_unmanaged): dont access
29292         type->data.klass for MONO_TYPE_OBJECT
29293         (mono_type_to_unmanaged): consider System.Delegate class
29295 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29297         * class.c: just setup supertypes in the proper place instead of
29298         initializing the full element class for arrays.
29300 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29302         * class.c: ensure the element class of arrays is initialized.
29303         Setup the supertype info for array classes, too.
29305 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29307         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29309 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29311         * Makefile.am: re-added -m option when running cygpath. This way,
29312         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29313         separator.
29314         * mono-config.c: same codepath for locating mono config file for WIN32
29315         and the rest.
29316         * assembly.c: if mono_assembly_setrootdir is called, don't override
29317         the value set.
29319 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29321         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29322         MONO_ASSEMBLIES variable.
29324 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29326         * icall.c: added Assembly::GetNamespaces() icall.
29328 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29330         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29332 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29334         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29335         * object.c: fixed bug in the construction of vtable for proxies
29337 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29339         * object.c (mono_array_new): Mark mono_array_new as an icall.
29341 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29343         * class.c: fixed test for public method when overriding interfaces.
29344         Closes bug #40970.
29346 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29348         * appdomain.h, domain.c: added mono_domain_foreach() to
29349         be able to access the currently loaded appdomains.
29350         * object.c: make string interning work across sppdomains.
29351         Mark some functions for use as icalls.
29353 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
29355         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
29357         * reflection.h reflection.c: Allocate long living data using 
29358         GC_MALLOC_ATOMIC so the collector does not need to scan it.
29360         * reflection.c: Double the allocation size in streams instead of
29361         increasing it, to prevent unneccesary copying on large assemblies.
29362         
29363         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
29364         creation if the assembly does not have the Run flag set.
29366 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
29368         * class.h: avoid the C++ keywords in header files (Jerome Laban
29369         spotted and fixed this).
29371 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29373         * object.c:
29374         (mono_unhandled_exception): fill in the arguments for the
29375         UnhandledException event. Only trigger that event for the default
29376         domain (as MS does).
29378 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
29380         * object.c: Improve typed allocation stuff based on suggestions from
29381         Paolo. Also turn it on if the GC library supports it.
29383 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29385         * object.c object.h class.h: Added experimental typed allocation
29386         facility using the interfaces in gc_gcj.h.
29388         * os/gc_wrapper.h: Added new include files.
29389         
29390 2003-04-03  Martin Baulig  <martin@ximian.com>
29392         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
29393         which is not yet enabled by default.
29395         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
29396         functions.
29397         (mono_gc_lock, mono_gc_unlock): New static functions.
29399         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
29400         functions; stop/start the world for the garbage collector.  This
29401         is using the windows API; we need to complete the SuspendThread()/
29402         ResumeThread() implementation in the io-layer to make this work on Unix.
29403         (mono_gc_push_all_stacks): New public function; tells the garbage
29404         collector about the stack pointers from all managed threads.
29406 2003-04-03  Martin Baulig  <martin@ximian.com>
29408         * object.h (MonoThread): Added `gpointer stack_ptr'.
29410         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
29412 2003-04-03  Martin Baulig  <martin@ximian.com>
29414         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
29416 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29418         * reflection.c (typebuilder_setup_fields): Initialize field.first and
29419         field.last.
29421 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
29423         * loader.c (mono_lookup_internal_call): Report the corlib that is
29424         out of sync.
29426 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
29428         * icall.c (ves_icall_type_GetTypeCode): fixed check for
29429         System.DBNull (it's class not valuetype).
29431 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29433         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
29434         if the array method was already assigned a token (fixes bug#40646).
29436 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
29438         * reflection.c (mono_reflection_get_type): Attempt type resolve even
29439         if no assembly is given.
29441 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
29443         * metadata.h: Added the new tables.
29445         * row-indexes.h: Added definitions for new tables.
29447         * metadata.c: Add schemas for new tables, and add support for
29448         computing the sizes of them.
29450         * class.c: Update for handling the new type cases.
29452 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
29454         * metadata.h (MONO_TYPE_IS_VOID): new macro
29456 2003-03-31  Martin Baulig  <martin@ximian.com>
29458         * threads.h (MonoThreadCallbacks): Added `thread_created'.
29460         * threads.c (mono_thread_new_init): Call `thread_created' in the
29461         mono_thread_callbacks.
29463 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
29465         * loader.h: added marshalbyrefobject_class to mono_defaults
29466         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
29467         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
29468           generation of output parameters.
29469           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
29470         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
29471           contextbound and the target object belongs to the context of the caller.
29472         * object.h: added context and unwrapped_server variables in MonoRealProxy.
29473         * object.c: Implemented support for interfaces and abstract classes
29474           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
29475           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
29477 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
29479         * class.h class.c (mono_class_is_subclass_of): New function.
29480         
29481         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
29482         routines for most common case (calls from ArrayList::ToArray).
29484         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
29485         routine so programs which call Environment::Exit() can be profiled.
29487         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
29488         Added MONO_ARCH_SAVE_REGS.
29490         * icall.c (ves_icall_type_is_subtype_of): Use new function.
29492 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
29494         * blob.h: Add a couple of new MonoType types definitions.
29496         * tabledefs.h: Add a couple of new call convs.
29498 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
29500         * reflection.h (MonoReflectionDynamicAssembly): track changes in
29501         the layout of the class.
29503         * reflection.c (alloc_table): double the size on overflow to avoid
29504         unnecessary copying.
29506         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
29507         avoid filling out metadata tables and blobs. Also set mb->ilgen to
29508         null so it can be garbage collected.
29509         
29510 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
29512         * reflection.c (mono_reflection_get_type): Return the resolved type
29513         only if it is in the assembly we searched.
29515         * reflection.c (ensure_runtime_vtable): Initialize method slots.
29517         * class.c (mono_class_setup_vtable): Set the slot of the overriding
29518         method.
29520 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29522         * appdomain.c:
29523         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
29524         the right one is 'file:///blah', but MS allows it.
29525         * assembly.c:
29526         (mono_assembly_open): allow 'file://blah'
29528         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
29530 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
29532         * socket-io.c: fixes bug #40310.
29534 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
29536         * reflection.c (mono_reflection_parse_type): handle deeply nested
29537         types correctly.
29539         * reflection.c (mono_image_create_token): Use unique token values
29540         since they will be put into a hash table.
29542         * class.c (mono_class_setup_vtable): If a method occurs in more than
29543         one place in the vtable, and it gets overriden, then change the
29544         other occurances too.
29546         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29547         object as return type.
29549 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29551         * icall.c: Deleted "ToString" implementation for double and float
29552         because they are full implemented in managed code.
29554 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29556         * reflection.c, reflection.h: implemented and exported functions
29557         to retrieve info about custom attributes.
29559 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29561         * appdomain.c: moved Uri handling to assembly.c
29562         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
29563         work when using a file Uri in *nix and windows.
29565         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
29566         GetReferencedAssemblies.
29568 2003-03-18  Dick Porter  <dick@ximian.com>
29570         * icall.c: Rename a couple of internal calls
29572         * threads.c: Set the thread state to Stopped when a thread exits.
29573         Fixes bug 39377.
29575 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
29577         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
29578         New icall.
29580         * object.c (mono_class_vtable): fix warning.
29582 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
29584         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
29586         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
29587         memory.
29588         (method_encode_clauses): Create exception info structures in the right
29589         order.
29590         (mono_reflection_setup_internal_class): Initialize supertypes field.
29592         * class.c object.c: Handle interfaces which implement other interfaces 
29593         correctly.
29595         * class.h class.c: Move the supertypes array initialization code into 
29596         a separate function so it can be used for dynamic types too. Also call
29597         it earlier, in mono_class_init(), since it can be used before the
29598         type is initialized.
29600 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29602         * Makefile.am:
29603         * assembly.c:
29604         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
29606         * appdomain.c:
29607         * appdomain.h:
29608         * marshal.c:
29609         * object.c: remove warnings.
29611 2003-03-13  Martin Baulig  <martin@ximian.com>
29613         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
29614         (MonoDebugLexicalBlockEntry): New types.
29616         * debug-mono-symfile.c
29617         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
29619 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29621         * process.c: ret can be any non-zero value accroding to MS doc.
29623 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
29625         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
29626         fixing a warning for a miss-used prototype, would have cause
29627         random memory corruption.
29629 2003-03-07  Martin Baulig  <martin@ximian.com>
29631         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
29632         getting really annoying ....
29634 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
29636         * reflection.c (fixup_method): added support for array methods.
29638 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
29640         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
29641         (pointed out by Michael Adams).
29643 2003-03-04  Dick Porter  <dick@ximian.com>
29645         * icall.c: Temporarily reverted the Double and Single ToString()
29646         change, because it broke nunit.
29648 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
29650         * object.h, threads.h: make include files compatible with C++
29651         (patch by Jerome Laban <jlaban@wanadoo.fr>).
29653 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29655         * icall.c: Erased ToString helper functions for Double and Single.
29656         Now, that implementations ar all in managed code (Double and Single
29657         Formatters).
29659 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
29661         * appdomain.c: Added method for initializing the default context of
29662         a domain. Added internal call for getting the default context.
29663         * appdomain.h: Added context variable in MonoDomain struct.
29664         * domain.c: mono_domain_set also sets the default context of the domain
29665         * icall.c: Mapped internal method InternalGetDefaultContext.
29666         * object.c: mono_object_get_virtual_method returns always a remoting
29667         wrapper if the object is a transparent proxy.
29668         mono_runtime_invoke_array: when creating an object by calling the
29669         constructor, if the created object is a proxy, then the constructor should
29670         be called using the a remoting wrapper.
29672 2003-03-03  Dick Porter  <dick@ximian.com>
29674         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
29675         variable so it compiles on solaris.  Problem spotted by
29676         Christopher Taylor <ct@cs.clemson.edu>
29678 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29680         * appdomain.c:
29681         (get_info_from_assembly_name): don't leak value.
29683         * icall.c:
29684         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
29685         result.
29687 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
29689         * assembly.c: export mono_image_load_references ().
29690         * class.c: handle function pointers. mono_class_from_name() now
29691         supports nested type names directly.
29693 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
29695         * reflection.h reflection.c: Encode already created dynamic methods 
29696         and fields correctly as a DEF instead of a REF.
29698         * reflection.c: Get rid of the force_ref argument to 
29699         mono_image_typedef_or_ref since it was wrong in the first place.
29701         * string-icalls.c: add error checking to string constructors according
29702         to the MSDN docs.
29704         * reflection.c: Emit types in the order their TypeBuilders were 
29705         created. Previously, a new table index was assigned to each type before
29706         the tables were emitted. This was wrong because the signature blob
29707         might already refer to a type by its original table index.
29709 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
29711         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
29712         change.
29713         
29714 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29716         * Makefile.am: make assemblies dir have \ instead of / on windows.
29718 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
29720         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
29721         iterate over the NESTEDCLASS table using a linear search since the
29722         table is not guaranteed to be sorted by the secondary key.
29724         * class.c (mono_class_create_from_typedef): fixed up call to
29725         mono_metadata_nesting_typedef.
29726         
29727 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
29729         * marshal.c (mono_string_to_byvalstr): clear the memory as
29730         suggested by Jerome Laban <jlaban@wanadoo.fr>
29732 2003-02-26  Dick Porter  <dick@ximian.com>
29734         * process.c: Cope with padding in .rsrc blocks
29736 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29738         * metadata.h: reverted the filter_len change, it breaks reflection
29739         
29740 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29742         * metadata.h: added a new field to store the filter_len
29743         
29745 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
29747         * reflection.c: handle custom attributes for types and members
29748         created with Reflection.Emit (bug#38422).
29750 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
29752         * reflection.c: define RTSpecialName automatically for constructors for
29753         compatibility with MS.NET.
29755         * reflection.c (mono_reflection_create_runtime_class): initialize
29756         nested_in field of dynamically created classes.
29758 2003-02-22  Martin Baulig  <martin@ximian.com>
29760         * debug-mono-symfile.h: Incremented version number.
29762 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29764         * object.h icall.c process.c: fix warnings.
29766 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29768         * appdomain.h appdomain.c:
29769         (mono_domain_try_type_resolve): split the 
29770         name_or_tb argument into a name and a tb argument.
29771         (mono_domain_has_type_resolve): new function to check whenever the
29772         application has registered a TypeResolve event handler.
29773         
29774         * icall.c reflection.h reflection.c: move the type resolve logic into
29775         mono_reflection_get_type () so it will be invoked when 
29776         Assembly::GetType () is called.
29778         * reflection.c:
29779         (mono_reflection_get_type): renamed to get_type_internal.
29780         (mono_reflection_get_type): fixed type name generation so it works 
29781         for nested types too.
29782         (mono_reflection_get_type): call has_type_resolve () to avoid the 
29783         costly type name generation if there is no resolve event handler.
29785 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29787         * class.c, image.c: load exported types from file references.
29789 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
29791         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
29792           used to cache the managed methods used to create proxies and make 
29793           remote invocation of methods.
29794         * class.h: Added in MonoVTable a flag to indicate that a class needs 
29795           to be remotely created.
29796         * object.c: Modified the method mono_class_vtable(). It now initializes 
29797           the remote flag of the vtable. Modified mono_object_new_specific(), 
29798           so now it checks the remote flag.
29799         * icall.c: Added a couple of internal methods, one for enabling instance 
29800           creation interception for a type, and one for creating objects bypassing
29801           the remote check.
29803 2003-02-18  Martin Baulig  <martin@ximian.com>
29805         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
29806         New interncall to get a method's metadata token.
29808         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
29809         New interncall for the debugger.
29811 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
29813         * class.c (mono_class_setup_vtable): allocate supertype array
29815 2003-02-18  Martin Baulig  <martin@ximian.com>
29817         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
29819 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29821         * reflection.c:
29822         (assembly_name_to_aname): jump over unknown properties (i've found
29823         something like: 'type, assembly, version=xxx, custom=null, public...',
29824         so now will ignore custom=null and still get the rest of the values).
29826 2003-02-17  Dick Porter  <dick@ximian.com>
29828         * threads.c: Have Thread.Start() wait for a semaphore to signal
29829         that the thread has set up all its local data.  This fixes bug
29830         34323, where Abort() raced the new thread's TLS data.
29832         Also removes the handle_store() call from start_wrapper, because
29833         threads are now always created suspended and there is no longer a
29834         race between the parent and child threads to store the info.
29836 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
29838         * image.c: explain the #- heap issue in a message, hopefully
29839         avoiding FAQs on mono-list.
29841 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29843         * icall.c:
29844         (GetEntryAssembly): if the domain has not invoked
29845         AppDomain.ExecuteAssembly yet, return the assembly of the default
29846         AppDomain.
29848 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
29850         * class.c (mono_ldtoken): make it work in dynamic assemblies.
29852 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
29854         * metadata.c, reflection.c: simple speedup to type hash
29855         and equals code.
29857 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
29859         * image.c, image.h, class.c, assembly.c: move module loading
29860         to MonoImage. When loading metadata, consider alignemnet from
29861         the start of metadata, not from the metadata address in memory.
29863 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
29865         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
29866         AssemblyBuilder objects. Factored out custom attribute creation into
29867         a separate function.
29868         (create_custom_attr): new function to create custom attributes.
29870 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
29872         * Makefile.am: Got tired of typing the full pathname to pedump.
29873         Until there is another option, am installing this.
29875 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
29877         * class.c (class_compute_field_layout): always set field->parent 
29878         (mono_ldtoken): use mono_defaults.fieldhandle_class;
29880 2003-02-11  Dick Porter  <dick@ximian.com>
29882         * threads-types.h:
29883         * monitor.c: Rewrote Monitor, making lock much faster and
29884         Pulse/Wait work as specified.  Also uses much fewer handles, and only
29885         creates them as needed.
29887         * exception.c: Added SynchronizationLockException
29889         * threads.c: Deleted old Monitor implementation.  The new one is
29890         in a new file.
29892 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
29894         * class.c: handled TypedReference type code. Set the correct size for
29895         class data. Setup interface_offsets for interface classes, too.
29897 2003-02-09  Martin Baulig  <martin@ximian.com>
29899         * debug-mono-symfile.h: Reflect latest symbol writer changes.
29901 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
29903         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
29904         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
29905         * object.c: fixed mono_object_get_virtual_method () for interfaces.
29906         * verify.c: check for code that runs after the end of the method.
29908 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29910         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
29911         "System.Math::Round2".
29912         * sysmath.h: Added Floor, Round and Round2 definitions.
29913         * sysmath.c: Modified certain functions that were not 100% compliant
29914         with MS.NET (math precision) and added the implementation of Floor,
29915         Round and Round2.
29917 2003-02-07  Martin Baulig  <martin@ximian.com>
29919         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
29921 2003-02-07  Martin Baulig  <martin@ximian.com>
29923         * debug-mono-symfile.c: Reflected latest symwriter changes.
29924         (mono_debug_create_mono_symbol_file): Removed.
29925         (mono_debug_open_mono_symbol_file): Take an argument which
29926         specifies whether to create a dynamic symbol file.
29928 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
29930         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
29932 2003-02-05  Martin Baulig  <martin@ximian.com>
29934         * reflection.c (mono_image_build_metadata): Make this public,
29935         protect it against being called multiple times, don't create
29936         resources and don't build the compressed metadata here.
29937         (mono_image_create_pefile): Do this here.
29939         * icall.c
29940         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
29942 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29944         * socket-io.c: fixed bug #36322.
29946 2003-02-06  Piers Haken <piersh@friskit.com>
29948         * appdomain.[ch]:
29949         * class.h:
29950         * debug-mono-symfile.c:
29951         * icall.c:
29952         * loader.c:
29953         * mono-config.c:
29954         * monosn.c:
29955         * reflection.c:
29956         * socket-io.c: warning cleanups
29958 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
29960         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
29961         function. works like remoting invoke, but does a check for the Proxy first.
29963 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
29965         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
29967 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
29969         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
29970         array of pointers.
29971         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
29972         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
29974         * object.c (mono_store_remote_field_new): used by the new jit
29975         instead of mono_store_remote_field
29976         (mono_load_remote_field_new): used by the new jit
29977         instead of mono_load_remote_field
29979 2003-02-05  Patrik Torstensson
29981         * appdomain.c: changed unload to take the domain id instead
29982         of domain
29983         
29984         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
29987 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29989         * appdomain.c: don't look for assemblies in ApplicationBase if
29990         PrivateBinPathProbe is set.
29992 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29994         * object.c: make the first argument in main_args contain the absolute
29995         path to the assembly. Fixes bug #37511.
29997 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29999         * icall.c: get correct UTC offset for countries not using daylight
30000         time saving. Fixes bug #30030.
30002 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30004         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30005         and 1 are the family).
30007 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30009         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30011         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30013 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30015         * reflection.c: added support for SignatureHelper tokens, which is
30016         needed by the Calli opcode.
30018         * reflection.h: track changes to SignatureHelper class.
30020         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30022 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30024         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30026 2003-02-03  Patrik Torstensson
30027         * appdomain.[c|h], domain.c : 
30028          - Added support for getting a domain via domain id
30029          - Support for setting and getting domain from System.AppDomain 
30030            (used in cross appdomain channel)
30031          - Added support for get/set for a MonoAppContext on a thread 
30032            (Context class in System.Runtime.Remoting.Contexts),
30033          - Removed hack in Get/SetData and ExecuteAssembly.
30034         
30035         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30036         the managed world to get control when a proxy is created.
30038         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30039         
30040 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30042         * icall.c
30043         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30044         Populate the codebase field as well.
30046 2003-02-02  Martin Baulig  <martin@ximian.com>
30048         * debug-mono-symfile.c
30049         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30050         (mono_debug_symfile_add_method): Allow interncalls.
30052 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30054         * icall.c: throw parse exception if strtod fails or the string is empty.
30056 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30058         * marshal.c: handle object type separately from defined
30059         class types.
30061 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30063         * marshal.c: handle NATIVE_LPSTR for strings when it's
30064         explicitly specified.
30066 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30068         * reflection.c, reflection.h, icall.c: setup the reflection
30069         handle cache for ModuleBuilders and AssemblyBuilders.
30071 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30073         * reflection.c (reflection_methodbuilder_to_mono_method): set
30074         pinvoke flag
30076 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30078         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30080 2003-01-29  Dick Porter  <dick@ximian.com>
30082         * threads.c: No need for the fake_thread kludge now that Thread
30083         doesn't run a class constructor
30084         
30085 2003-01-29  Dick Porter  <dick@ximian.com>
30087         * threads.c: Use g_direct_hash instead of the rather bogus
30088         g_int_hash
30090 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30092         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30093         (fix pinvoke12.exe)
30094         (mono_marshal_get_struct_to_ptr): generate valid IL code
30095         (mono_marshal_get_ptr_to_struct): generate valid IL code
30096         (*): correctly set sig->pinvoke, we need to memdup the signature
30097         to do that
30099 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30101         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30102         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30104 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30106         * profiler.c: provide more callers information.
30108 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30110         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30112         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30114         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30116 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30118         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30119         exception instead of going into an infinite loop on dates which it 
30120         can't yet handle.
30122         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30123         out-of-range exception if needed.
30125         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30126         an implementation for an interface method and to override an inherited
30127         method at the same time. 
30128         Imagine a scenario when a virtual method is used to override a
30129         virtual abstract method in a parent class, and this same method 
30130         provides an implementation for an method inherited from an interface. 
30131         In this case, the interface resolution code will set im->slot, which 
30132         means that the virtual method override pass will skip this method 
30133         which means a pointer to the abstract method inherited from the parent
30134         will remain in the vtable of this non-abstract class.
30136         * class.c: (mono_class_setup_vtable): continue search for a real 
30137         method if only an abstract method is found.     
30139 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30141         * reflection.c: add size to encoding for ByValStr and ByValArray
30142         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30144 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30146         * class.c (mono_class_setup_vtable): pass the override info as an
30147         argument.
30149         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30150         correctly.
30151         
30152         * reflection.c (ensure_runtime_vtable); add support for method 
30153         overrides.
30154         
30155 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30157         * reflection.c (resolution_scope_from_image): Hack to work to work with
30158         dynamic assemblies.
30160         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30161         added a 'force_ref' argument to force this function to allways return 
30162         a TypeRef. This is needed by mono_image_get_memberref_token ().
30163         
30164 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30166         * reflection.c (mono_image_get_type_info): interfaces really don't have
30167         a parent.
30169         * reflection.c (mono_image_basic_init): fill out missing fields of
30170         image structure.
30172         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30173         dynamic assemblies. This is required so dynamic assemblies show up in
30174         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30175         Type::GetType() etc. This is consistent with MS behaviour.
30177         * image.c image.h reflection.c: add newly created classes to the name 
30178         cache so mono_class_get () will find them.      
30180 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30182         First part of changes to get IKVM.NET running under mono.
30183         
30184         * appdomain.h, appdomain.c: added new function 
30185         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30186         This function will call AppDomain::DoTypeResolve to do the actual work.
30188         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30189         moved existing code dealing with dynamic tokens to a new function 
30190         called mono_reflection_lookup_dynamic_token (). This function will 
30191         raise TypeResolve events when appropriate. Since reflection.c is not 
30192         part of libmetadata, a new hook function called 
30193         mono_lookup_dynamic_token() is added to class.c which will call this.
30195         * assembly.h assembly.c: make the invoke_load_hook function public,
30196         so it can be called for dynamic assemblies.
30198         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30200         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30201         type isn't found.
30203         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30204         MonoGHashTable, since it contains pointers to objects which the GC 
30205         needs to track.
30207         * assembly.c (search_loaded): remove unused variable.
30208         
30209 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30211         * object.c: fixed issue exposed by gcc-generated IL programs
30212         that use RVA data for pointers.
30214 2003-01-25  Martin Baulig  <martin@ximian.com>
30216         * threads.c (start_wrapper): Moved the initialization of
30217         `start_func' above the mono_new_thread_init() call to which we
30218         pass it as argument.
30220 2003-01-24  Martin Baulig  <martin@ximian.com>
30222         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30223         the MonoThread pointer.
30225 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30227         * icall.c: Rename `PowImpl' to Pow.
30229 2003-01-23  Dick Porter  <dick@ximian.com>
30231         * threads.c (start_wrapper): Create a Thread object if needed, so
30232         the Main() thread can do the class initialisation in a subthread
30233         that has been set up to allow managed code execution.
30235         Pass the thread ID instead of the MonoThread pointer to the thread
30236         start and attach callbacks.  This change is required, because the
30237         jit thread start callback must be called _before_ the Thread
30238         object can be created.
30239         
30240         (mono_thread_init): Removed much object creation code that is no
30241         longer needed.  No managed code is called from here now.
30243         * object.c (mono_runtime_exec_managed_code): Create a subthread
30244         for Main, and call back to the runtime to use it.
30245         Set the exit code when Main exits.
30247         * gc.c: Make sure domain finalisation happens in a subthread.
30248         Re-enable threaded GC, fixing bug 31333 (again).
30250         * environment.c: System.Environment internall calls (so far just
30251         ExitCode is here, the others are still in icall.c)
30253         * appdomain.c (mono_runtime_cleanup): All threads running managed
30254         code should have finished before mono_runtime_cleanup() is
30255         reached, so no need to clean up threads.
30257 2003-01-22  Martin Baulig  <martin@ximian.com>
30259         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30260         `gpointer func' arguments.      
30261         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30262         but added `MonoThread *thread' argument.
30263         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30265         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30266         and pass it to the mono_thread_start_cb callback.
30267         (mono_install_thread_callbacks): New public function to install a
30268         set of callbacks which are set by the debugger.
30269         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30271 2003-01-22  Martin Baulig  <martin@ximian.com>
30273         * Makefile.am: Install debug-mono-symfile.h.
30275 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30277         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30279 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30281         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30282         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30283         (mono_array_class_get): correctly set access levels of arrays
30285 2003-01-20      Patrik Torstensson
30286         * image.h (MonoAssemblyName): changed major, minor, build, revision
30287         from signed to unsigned.
30289 2003-01-20  sean kasun <skasun@azstarnet.com>
30291         * reflection.c (load_cattr_value): Now this handles
30292         MONO_TYPE_SZARRAY.  Fixes bug #35629
30294 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30296         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30297         integer value
30299 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30301         * decimal.c: fixed bug #26056.
30303 2003-01-17  Martin Baulig  <martin@ximian.com>
30305         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30307 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30309         * exception.[ch]:
30310         (mono_get_exception_type_initialization): new function.
30312         * object.c: throw a TypeInitializationException when an exception is
30313         thrown invoking the class constructor.
30315 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30317         * reflection.c: fixed attribute reading.
30319 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30321         * icall.c:
30322         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30323         provided, look for the type in the calling assembly and then in
30324         mscorlib; if the assembly name is provided, only try that one.
30326 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30328         * object.c: register the vtable before there is a chance it's
30329         queried again recursively.
30331 2003-01-13  Duncan Mak  <duncan@ximian.com>
30333         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30334         gc-internal.h. 
30335         
30336 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30338         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30340 2003-01-11  Martin Baulig  <martin@ximian.com>
30342         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30343         this to 20 for the release.
30345 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
30347         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
30349         * loader.c (mono_method_get_marshal_info): bug fix
30351         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
30352         structures with explicit layout
30354 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30356         * profiler.c: made the output more readable (and sorted). 
30357         Added caller information for the allocation profiler.
30359 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
30361         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
30363 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30365         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
30366         to get value types.
30367         
30368 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
30370         * object.c, profiler.h, profiler.c, profiler-private.h:
30371         Added object allocation profiler.
30373 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
30375         * reflection.h, reflection.c: handle global methods.
30376         Compress blob entries.
30378 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
30380         * marshal.c: fix compilation.
30382 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
30384         * loader.c (mono_method_get_marshal_info): impl.
30386         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
30388 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30390         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
30391         for reference types.
30393 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
30395         * loader.c: fixed off by one error in loaded parameter names.
30397 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
30399         * marshal.c (mono_marshal_get_icall_wrapper): like
30400         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
30401         instead of a MonoMethod.
30403 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30405         * decimal.c: fixed bug #36537.
30407 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
30409         * marshal.c: throw a missing method exception if a
30410         P/Invoke method is not found.
30412 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30414         * icall.c: allow a null this for constructors.
30416 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
30418         * icall.c: raise the proper exceptions if the arguments to the
30419         internal Invoke are incorrect.
30421 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
30423         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
30425 2003-01-03  Martin Baulig  <martin@ximian.com>
30427         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30429 2002-12-31  Martin Baulig  <martin@ximian.com>
30431         * debug-mono-symfile.c: Completely rewrote the type section.
30432         Instead of using individual malloc()ed fields, we use one big
30433         continuous memory area and offsets into this area.
30434         See the comments in the source code for details.
30436 2002-12-30  Martin Baulig  <martin@ximian.com>
30438         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
30440 2002-12-30  Martin Baulig  <martin@ximian.com>
30442         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
30443         line number table in this data blob instead of using an external
30444         pointer.
30446 2002-12-28  Martin Baulig  <martin@ximian.com>
30448         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30450 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
30452         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
30453         as a boxed return type.
30455 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
30457         * appdomain.c
30458         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
30459         g_build_filename to properly get separators on the filename created.
30461         * object.h: Small change, introduce MonoMarshalByRefObject to
30462         track the layout of that structure in the C# universe as we make
30463         changes there.
30465 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
30467         * object.c: removed assert to allow static fields on interfaces.
30468         * loader.c: a TypeSpec may be used for any type, not just arrays.
30470 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30472         * class.c, class.h: added mono_class_array_element_size ().
30473         Ignore static methods in interfaces.
30475 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30477         * threads.c: fixed the build under cygwin.
30479 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30481         * reflection.c: handle nullref constants. Allocate keys for
30482         reflection handles with the GC.
30484 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30486         * threads.c, threads.h: added mono_thread_get_abort_signal()
30487         to get a suitable signal for thread abort.
30489 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30491         * metadata.c: fix handling of ExportedType table.
30493 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30495         * icall.c: added WriteWindowsDebugString internal call.
30497 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30499         * reflection.h: added fields to match C# implementation.
30501 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30503         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
30505 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
30507         * gc.h, gc-internal.h: Rename header for GC internal calls to
30508         gc-internal.h from gc.h as to not clash with Boehm GC having its
30509         header installed as <gc.h> in outside include paths.
30510         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
30511         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
30513 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30515         * icall.c: assign minor, build and revision in FillName.
30517 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
30519         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
30520         Added support for running code generated by Reflection.Emit.
30522 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30524         * appdomain.c: check for NULL argument in LoadFrom.
30526 2002-12-10  Dick Porter  <dick@ximian.com>
30528         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
30530 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30532         * appdomain.c: fix buglet when building exe file name.  Handle full
30533         assembly name (needed after latest changes to AssemblyName).
30534         * image.c:
30535         (mono_image_close): free some hashtables.
30537 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
30539         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
30540         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
30541         on some systems (redhat 7.3) 
30543 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
30545         * threads.c: delete the critical section of a sync block,
30546         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
30548 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
30550         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
30552 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30554         * appdomain.[ch]: handle the assembly preload event to try loading the
30555         assemblies using the paths we have in the current domain.
30557         * assembly.[ch]: created an assembly preload hook that is called to try
30558         loading the assembly by other means that the ones provided here.
30560         * domain.c: initialize the domain search path.
30562         From now on, assemblies (TODO: except corlib and System) are loaded
30563         according to these rules when using mono_assembly_load ():
30565                 1. It tries to load the assembly from the ApplicationBase
30566                 of the current domain appending .dll and .exe (TODO: have to
30567                 try loading from name/name.dll and name/name.exe).
30569                 2. It tries the search path specified in PrivateBinPath for the
30570                 current domain (if any).
30572                 3. Previous behavior.
30574 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
30576         * icall.c: implemented GetInterfaceMap() related icall.
30577         * domain.c, loader.h: load MethodInfo in mono_defaults.
30579 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30581         * gc.c: disable the finalizer thread for now, untill all the issues
30582         with it are resolved.
30584 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30586         * string-icalls.c: handle embedded nulls in string ctor when the
30587         length is specified.
30589 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30591         * class.c: look for explicit interface implementation in parent
30592         classes, too.
30594 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
30596         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
30598 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30600         * gc.c: protect handles with a critical section.
30602 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30604         * icall.c:
30605         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
30606         parameters. If no assembly specified, try getting the type from all
30607         the assemblies in the current domain, else, load the assembly and get
30608         the type from it.
30610 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30612         * marshal.c: applied patch from Aleksey Demakov that fixes
30613         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
30615 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30617         * icall.c: fixed get_location.
30619 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
30621         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
30622         declarations to make it work with older gcc. 
30624         * loader.c (mono_get_method): set signature->pinvoke for native calls
30626 2002-11-20  Dick Porter  <dick@ximian.com>
30628         * threads.c (mono_thread_init): Set the main thread's handle
30630 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30632         * gc.c: allow compilation without GC support. Changed to match the
30633         mono coding style.
30635 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30637         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
30639 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
30641         * reflection.c: set a public key token on the core assemblies.
30643 2002-11-18  Dick Porter  <dick@ximian.com>
30645         * threads.c: Split out some thread initialisation so that other
30646         files can set the start callback function.
30648         * gc.c: Run finalisers in a separate thread, to avoid stack
30649         overflow.  Fixes bug 31333.
30651         * appdomain.c: Set up GC finalisation thread.
30653         * reflection.c: 
30654         * object.c: 
30655         * domain.c: Use gc.h macros for GC_malloc
30656         
30657 2002-11-15  Dick Porter  <dick@ximian.com>
30659         * threadpool.c: 
30660         * threads.c:
30661         * appdomain.c: Removed mono_runtime_init_with_attach(),
30662         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
30663         merging the extra parameter with the existing function.  Removed
30664         unneeded code in mono_thread_attach().
30666 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
30668         * image.c (mono_image_loaded_by_guid): a method to get loaded
30669         images by guid. 
30670         (load_metadata_ptrs): we store the guid as string.
30672 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
30674         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
30676         * metadata.c (mono_guid_to_string): imported method form Zoltan
30677         Varga (slightly modified)
30679         * assembly.c (mono_assembly_open): load precompiled code
30681         * loader.h (MonoMethod): we store the method token for use in the
30682         aot compiler. 
30684 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30686         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
30687         the hook function called when an assembly is loaded.
30688         
30689         * domain.c: Modified file.
30690         (mono_domain_assembly_load): removed hash table insertion of assemblies.
30692         Fixes bug #33196.
30694 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
30696         * reflection.c: Map PEFileKind to the value expected by the WinNT
30697         image loader. 
30699 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30701         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
30702         Read until the buffer is filled completely.
30704 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30706         * icall.c: implemented MonoType.InternalGetEvent ().
30708 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30710         * appdomain.c: implemented InitAppDomainSetup. Delayed
30711         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
30712         the entry_assembly.
30714         * assembly.c: base_dir is now an absolute path ending with
30715         G_DIR_SEPARATOR.
30717         * icall.c: modified get_location according to the above changes.
30719         * object.c: init AppDomain.SetupInformation for the default domain after
30720         we have the entry assembly.
30722         * domain.c: when unloading a domain, setup = NULL.
30724 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
30726         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
30728 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
30730         * object.h, object.c: introduced mono_object_get_virtual_method ()
30731         to lookup the method invoked on an object when a callvirt is done on
30732         a method.
30733         * icall.c: make MethodInfo::Invoke() always do a virtual call.
30735 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30737         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
30738         current domain when loaded an assembly and failed to load it.
30740         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
30742 2002-10-31  Dick Porter  <dick@ximian.com>
30744         * icall.c: 
30745         * file-io.h: 
30746         * file-io.c: Return the error status in a parameter, as the
30747         GetLastError() value has long since been blown away if we try and
30748         look it up in a subsequent internal call invocation.  Delete the
30749         GetLastError() internal call, because it's useless.
30751 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
30753         * class.[ch]: added cast_class to fix bug 29517
30755 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
30757         * marshal.c: create valid IL code in the filter clause:
30758         the new JIT is less forgiving:-)
30760 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30762         * icall.c: removed get_property internal call.
30764 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
30766         * appdomain.h domain.c: Added an ID to appdomains.
30767         
30768         * threads.c threads.h icall.c: Implement icall
30769         Thread:GetDomainID(), and remove unused icall 
30770         CurrentThreadDomain_internal.
30772 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30774         * icall.c: Don't recurse through the base types in GetConstructor.
30775         Fixes bug #32063. 
30777 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
30779         * mempool.h, mempool.c: added mono_mempool_empty() and
30780         mono_mempool_stats().
30782 2002-10-23  Dick Porter  <dick@ximian.com>
30784         * file-io.c: 
30785         * file-io.h: 
30786         * icall.c: Added MonoIO.GetFileType internal call
30788 2002-10-17  Dick Porter  <dick@ximian.com>
30790         * appdomain.c (mono_runtime_cleanup): Don't signal the async
30791         delegate semaphore before waiting for all threads to finish,
30792         because new threads can also call async delegates.  Fixes bug
30793         32004.
30795         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
30796         of 3 seconds, in case another async job is queued.  (This part is
30797         needed because the bug fix reintroduced the 3s exit lag.)  This
30798         makes the mono_runtime_shutdown flag superfluous.
30800 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
30802         * reflection.c: include ehader size in method section headers.
30803         Really check for suplicated modules entries.
30805 2002-10-17  Martin Baulig  <martin@gnome.org>
30807         * debug-mono-symfile.c: Added back support for locals.
30809 2002-10-14  Martin Baulig  <martin@gnome.org>
30811         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
30812         MONO_TYPE_VOID.
30814 2002-10-14  Martin Baulig  <martin@gnome.org>
30816         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
30817         mono_class_get() instead of looking in the class cache. 
30819 2002-10-13  Martin Baulig  <martin@gnome.org>
30821         * debug-mono-symfile.c: Set version number to 28, include the
30822         signature in method names.
30824 2002-10-13  Martin Baulig  <martin@gnome.org>
30826         * debug-mono-symfile.h: Set version number to 27.
30828 2002-10-11  Martin Baulig  <martin@gnome.org>
30830         * gc.c: Don't register/unregister NULL pointers as disappearing links.
30832 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
30834         * metadata.c, metadata.h: added helper function to allocate signatures.
30836 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30838         * icall.c: added internal call to get the location of machine.config.
30840 2002-10-08  Martin Baulig  <martin@gnome.org>
30842         * debug-mono-symfile.c: Ignore classes with a pending init for the
30843         moment.
30845 2002-10-03  Dick Porter  <dick@ximian.com>
30847         * threads.c: Freebsd pthread_t is a pointer
30849 2002-10-03  Dick Porter  <dick@ximian.com>
30851         * socket-io.c: Implemented GetHostName_internal
30853 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30855         * mono-config.c:
30856         (mono_config_parse_file): don't leak the text.
30858 2002-10-02  Martin Baulig  <martin@gnome.org>
30860         * debug-mono-symfile.c: Added support for methods.
30862 2002-10-01  Martin Baulig  <martin@gnome.org>
30864         * debug-mono-symfile.c: Don't emit methods and line numbers for
30865         the dynamic symbol file, just write the type table.  We can easily
30866         have an external helper program which creates a symbol file for an
30867         IL file.        
30869 2002-10-01  Dick Porter  <dick@ximian.com>
30871         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
30872         Only add the handle to the cleanup array when we're about to
30873         launch the thread.  Bug 31425 deadlocked when the test was run on
30874         mono under w32.
30876 2002-10-01  Martin Baulig  <martin@gnome.org>
30878         * debug-mono-symfile.c: Added support for properties.
30880 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
30882         * reflection.c: unaligned store fix from Mark Crichton
30883         <crichton@gimp.org>.
30885 2002-09-27  Martin Baulig  <martin@gnome.org>
30887         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
30888         New interncall.
30890 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30892         * assembly.h, assembly.c: use a sane API to hook into the assembly
30893         loading process instead of a useless special-purpouse hack
30894         (ngen needs a hook, too, for example).
30896 2002-09-27  Dick Porter  <dick@ximian.com>
30898         * threads.c (mono_thread_init): Call GetCurrentProcess() so
30899         io-layer can set up some process handle info.  Not needed on w32,
30900         but doesn't hurt either.
30902         * process.c: Pass the program name in the second parameter to
30903         CreateProcess, so the path is searched.  Include the working
30904         directory. Implemented process name, process enumeration, and some
30905         process detail internal calls.
30906         
30907         * icall.c: Added internal calls for process lookup, and some
30908         process details
30910 2002-09-26  Martin Baulig  <martin@gnome.org>
30912         * assembly.c (mono_install_open_assembly_hook): New global
30913         function to install a function to be invoked each time a new
30914         assembly is loaded.
30915         (mono_assembly_open): Run this callback function if set.
30917         * debug-mono-symfile.c: Put back line numbers for the dynamic
30918         symbol file and also record the .il file as source file.  This
30919         allows us to install the temporary symbol file as `file.dbg' just
30920         like a compiler-generated one.
30922 2002-09-26  Nick Zigarovich <nick@chemlab.org>
30924         * Corrected typo in gc.c (BOHEM vs BOEHM).
30926 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30928         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
30929         GetProperties. Also avoid calling g_slist_length in GetProperties and
30930         GetMethods.
30932 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
30934         * reflection.c: avoid unaligned stores (bug spotted by
30935         Mark Crichton  <crichton@gimp.org>).
30937 2002-09-25  Martin Baulig  <martin@gnome.org>
30939         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
30940         instead of guint64 for addresses and added prologue/epilogue info.
30942 2002-09-25  Martin Baulig  <martin@gnome.org>
30944         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
30945         store line number info.  For the dynamic symbol file, we only need
30946         to provide the JIT generated dynamic line number info for the dynamic
30947         symbol file.
30949 2002-09-25  Martin Baulig  <martin@gnome.org>
30951         * debug-mono-symfile.h: Incremented version number.
30953 2002-09-24  Martin Baulig  <martin@gnome.org>
30955         * class.c (mono_debugger_class_init_func): New global function
30956         pointer variable.
30957         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
30958         call it.
30960         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
30961         function.  This is called via the mono_debugger_class_init_func
30962         hook to add all types to the dynamic type table.
30963         (ves_icall_MonoDebugger_GetType): New interncall to get a class
30964         from its metadata token.
30966         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
30967         New interncall for the debugger.
30969 2002-09-24  Nick Drochak <ndrochak@gol.com>
30971         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
30972         before using it in case it is null.
30973         
30974 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
30976         * metadata.c: allow custom modifiers in local var signatures
30977         (bug spotted by Zoltan Varga).
30979 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
30981         * class.c: deal with the <Module> class that may have a NULL vtable.
30982         Eliminate warnings.
30984 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
30986         * image.c, image.h: more strong name helpers.
30987         * monosn.c: more work: convert pem keys to cryptoapi format.
30989 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
30991         * string-icalls.c: speedup IndexOf.
30993 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
30995         * icall.c: updates from Zoltan.2.Varga@nokia.com.
30997 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
30999         * icall.c: cleanup: use mono_object_domain ().
31001 2002-09-23  Martin Baulig  <martin@gnome.org>
31003         * debug-mono-symfile.c: Improved type support.
31005 2002-09-22  Martin Baulig  <martin@gnome.org>
31007         * debug-mono-symfile.c: Added support for reference types and strings.
31009 2002-09-22  Martin Baulig  <martin@gnome.org>
31011         * debug-mono-symfile.c: Started to work on the type table.
31013 2002-09-21  Martin Baulig  <martin@gnome.org>
31015         * debug-mono-symfile.c: Largely reworked the symbol table format.
31016         The symbol table is now incrementally updated each time a new
31017         method is added.  We're now also using our own magic and version
31018         so that you don't need to recompile all your classes if the
31019         dynamic table changes.
31020         (mono_debug_update_mono_symbol_file): Removed.
31021         (mono_debug_symfile_add_method): New function to add a method.
31023 2002-09-21  Martin Baulig  <martin@gnome.org>
31025         * icall.c
31026         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31027         New interncall.
31029         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31030         New interncall to get a method from its metadata token.
31032 2002-09-21  Martin Baulig  <martin@gnome.org>
31034         * debug-mono-symfile.c: Create type table.
31036 2002-09-20  Martin Baulig  <martin@gnome.org>
31038         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31040 2002-09-20  Martin Baulig  <martin@gnome.org>
31042         * debug-mono-symfile.c: Provide information about params and locals.
31044 2002-09-20  Martin Baulig  <martin@gnome.org>
31046         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31047         New interncall.
31049         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31050         interncall to get a method from its metadata token.
31052 2002-09-20  Martin Baulig  <martin@gnome.org>
31054         * debug-mono-symfile.c: Added a few checks for method->header
31055         being non-NULL.  This should never happen, but for the moment
31056         let's use a g_warning() rather than a g_assert().
31058 2002-09-19  Mark Crichton  <crichton@gimp.org>
31060         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31061         even if support for it isn't present.  Added an #ifdef to fix this.
31063         * socket-io.c: Added checks back for Solaris support.
31065 2002-09-19  Martin Baulig  <martin@gnome.org>
31067         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31068         changes in the symbol file format.
31070 2002-09-18  Martin Baulig  <martin@gnome.org>
31072         * debug-mono-symfile.c: Set version number to 21.
31074 2002-09-18  Dick Porter  <dick@ximian.com>
31076         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31077         on netbsd.  Fixes bug 30051.
31079 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31081         * reflection.c:
31082         (set_version_from_string): little fix.
31084 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31086         * monosn.c, Makefile.am: added strong name utility.
31087         * reflection.h, reflection.c: implemented delayed signing,
31088         locale, version and hash id assembly attributes.
31090 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31092         * loader.c, metadata.c: load param attributes in signatures.
31094 2002-09-16  Martin Baulig  <martin@gnome.org>
31096         * debug-mono-symfile.c: Added string table with all method names.
31098 2002-09-14  Martin Baulig  <martin@gnome.org>
31100         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31101         fast method lookup.
31103 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31105         * reflection.c: record the public key token of referenced assemblies.
31107 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31109         * image.c, image.h: added functions to get the strong name and the
31110         public key of an assembly.
31111         * pedump.c: use them.
31113 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31115         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31117 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31119         * marshal.c (mono_marshal_get_managed_wrapper): Added
31120         MONO_TYPE_BOOLEAN 
31122 2002-09-11  Martin Baulig  <martin@gnome.org>
31124         * gc.c: Call GC_unregister_disappearing_link() on all links when
31125         finalizing them, this is necessary to aviod a crash in boehm's
31126         finalize handler.
31128 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31130         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31131         nick@chemlab.org.
31133 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31135         * icall.c: implemented MonoType::Module.
31136         * reflection.c, reflection.h: mono_module_get_object () from
31137         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31139 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31141         * icall.c: ignore overridden methods in GetMethods ().
31142         Fix for FieldInfo::SetValue().
31143         * object.c: handle float/double in runtime invoke.
31145 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31147         * object.c: allow a constructor to be called again on an object.
31149 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31151         * class.h, class.c: move field layout code to it's own function and
31152         export it. Get an interface id earlier. Move fields in MonoClass
31153         so they are more cache friendly and align the bitfields.
31154         * loader.c: temporary handle get_param_names() for a runtime method.
31155         * reflection.c, reflection.h: more code to handle runtime creation of
31156         types.
31158 2002-09-09  Martin Baulig  <martin@gnome.org>
31160         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31161         signature with the pinvoke field being set for the actual call.
31163 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31165         * icall.c: removed some unused icalls. Start of map of glib charsets
31166         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31168 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31170         * debug-helpers.c: break infinite loop (found and fixed by
31171         Holger Arnold <harnold@gmx.de>).
31173 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31175         * icall.c: target may be null in create_delegate.
31177 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31179         * marshal.c: handle a boolean return type.
31181 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31183         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31185 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31187         * gc.c: fix weakreferences.
31189 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31191         * icall.c: added icall to get default codepage.
31193 2002-09-03  Dick Porter  <dick@ximian.com>
31195         * threads.h: 
31196         * threads.c: Use MonoThread instead of MonoObject where
31197         apropriate.
31199         Store running thread objects in a hash table, so that we have all
31200         the info to hand when waiting for them to finish
31201         (means we don't need OpenThread() any more, so mingw builds should
31202         be fully functional again.)
31204         * verify.c:
31205         * object.h: Added thread ID to MonoThread
31207 2002-09-03  Martin Baulig  <martin@gnome.org>
31209         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31211 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31213         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31215 2002-09-03  Martin Baulig  <martin@gnome.org>
31217         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31218         argument to store the end address of the disassembled instruction.
31220         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31221         here from debug-symfile.h.
31222         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31223         JIT into this struct.
31224         (MonoSymbolFile): Added `char *image_file' field.
31225         (MonoDebugGetMethodFunc): Removed.
31226         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31227         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31228         (mono_debug_find_method): New method.
31230         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31231         create a full symbol file.
31232         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31233         and static symbol files.
31234         (mono_debug_find_method): The symbol file keeps an internal method hash,
31235         call this to get a MonoDebugMethodInfo from a MonoMethod.
31237         * debug-symfile.[ch]: Removed.
31239 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31241         * image.c (do_mono_image_open): Remove linker version check.
31243 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31245         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31246         wrappers for instance methods.
31247         
31248 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31250         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31252 2002-08-28  Dick Porter  <dick@ximian.com>
31254         * Makefile.am: Export HOST_CC for w32 builds
31256 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31258         * file-io.c process.c: MonoString are null terminated, no
31259         need for mono_string_to_utf16() anymore.
31261 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31263         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31265 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31267         * icall.c, reflection.h: speedup System.MonoType.
31269 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31271         * reflection.c: allow null as the value of a string argument in
31272         custom attributes constructors.
31274 2002-08-27  Martin Baulig  <martin@gnome.org>
31276         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31277         `trampoline_address' field.
31279 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31281         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31282         check (fixes bug #29486) 
31284 2002-08-27  Martin Baulig  <martin@gnome.org>
31286         * debug-mono-symfile.c: Changed the file format in a way that allows us
31287         open it read-only and to use a specially malloced area for all the
31288         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31289         debugging IL code and there is no MCS generated symbol file for it.
31291 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31293         * object.c: added a define for a good string and array
31294         creation speedup (not enabled by default because we need to deal with
31295         the synch stuff).
31297 2002-08-26  Martin Baulig  <martin@gnome.org>
31299         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31300         function to create a dynamic symbol file.  This is used by the
31301         debugger to create a symbol file for IL code on-the-fly.
31303 2002-08-26  Martin Baulig  <martin@gnome.org>
31305         * loader.c (mono_lookup_pinvoke_call): Include the error message
31306         from g_module_error() in the error message.
31308 2002-08-24  Martin Baulig  <martin@gnome.org>
31310         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31311         function to update the symbol file.  The symbol file is mmap()ed
31312         writable, but private.  This allows us to install the symbol file
31313         together with the assembly.
31315 2002-08-24  Martin Baulig  <martin@gnome.org>
31317         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31318         but they can read the new symbol file format which mcs is now creating.
31320         * debug-symfile.c (mono_debug_find_source_location): Moved to
31321         debug-mono-symfile.c; this is now operating on the new symbol file.
31323 2002-08-23  Martin Baulig  <martin@gnome.org>
31325         * debug-helpers.c (mono_method_desc_from_method): New function to get
31326         a MonoMethodDesc from a MonoMethod.
31328 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31330         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31331         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31333 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31335         * string-icalls.[ch]: make helper methods static.
31337 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31339         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31340         types to it and to SetValueInternal.
31342         * object.c: Moved handle_enum label to its proper place. This was the
31343         f... bug! ;-)
31345         This time i compiled mcs and gtk-sharp and they both work.
31347 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31349         * icall.c: reverted partially my previous patch until 
31350         object.c:set_value handles enums correcly.
31352 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31354         * icall.c:
31355         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
31356         (ves_icall_System_Environment_get_MachineName): removed warning when
31357         compiling under cygwin.
31359 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31361         * object.c: fixed field_get_value() for reference types.
31363 2002-08-22  Dick Porter  <dick@ximian.com>
31365         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
31366         Don't free a buffer while it's still needed.  Patch from Jonathan
31367         Liger <Jonathan.liger@wanadoo.fr>
31369 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
31371         * icall.c (ves_icall_System_Environment_get_Platform): Add new
31372         internal call.
31374 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
31376         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
31377         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
31379         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
31380         we call unmanaged code which throws exceptions.
31382 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31384         * appdomain.h: added per-domain entry_assembly.
31385         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
31386         arguments.
31387         * icall.c: Assembly::GetEntryAssembly icall.
31388         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
31389         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
31391 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31393         * appdomain.h, gc.c: added mono_domain_finalize ().
31395 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31397         * object.c:
31398         (mono_print_unhandled_exception): changed g_warning by g_printerr
31399         because g_log has a 1024 characters limit (yeah, i got a big stack
31400         trace). Don't print exception name, that should be in ToString 
31401         returned string.
31403 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31405         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
31406         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
31408 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31410         * object.c:
31411         (mono_print_unhandled_exception): after previous commit, i realized
31412         that MS calls ToString on the exception. I changed this function to
31413         do that. This way we get stack_trace for free.
31415 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31417         * object.c:
31418         (mono_print_unhandled_exception): invoke Message property instead of
31419         getting 'message' field from Exception. Don't allocate memory for
31420         'trace' and 'message' if not needed.
31422 2002-08-18  Dick Porter  <dick@ximian.com>
31424         * unicode.c: Fix asserts to match Encoder.cs checks
31426 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31428         * marshal.c: fix unaligned store issue and a few wrong
31429         opcode argument types.
31431 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31433         * icall.c: added GetUninitializedObjectInternal internal call.
31435 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
31437         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
31438         to the right domain.
31440 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
31442         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
31444         * class.c (class_compute_field_layout): set blittable to false for Strings
31446         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
31448 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31450         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
31451         first chunk of code to create types at runtime. Code to
31452         handle ReflectedType/DeclaringType. Make reflection handles
31453         domain specific.
31455 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
31457         * class.c: set correct name in arrays.
31459 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
31461         * appdomain.c (mono_domain_transfer_object): make it work with
31462         valuetypes. bug fixes.
31464 2002-08-12  Dick Porter  <dick@ximian.com>
31466         * object.h: Rename some parameters to avoid c++ keywords (Patch
31467         from Joseph Wenninger <kde@jowenn.at>)
31469 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
31471         * icall.c: added icall to implement Assembly.GetFile*.
31473 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31475         * reflection.h, reflection.c: code to embed managed resources.
31477 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31479         * class.c: move all the type size stuff into
31480         class_compute_field_layout().
31482 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31484         * class.c: ensure enums have always the correct instance size.
31485         * unicode.c: remove wrong assert.
31487 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31489         * assembly.c: fix mem corruption issue.
31490         * image.h, image.c: added mono_image_get_resource () to access
31491         managed resources.
31492         * icall.c: implemented Assembly.EntryPoint property and some
31493         Managed Resources related internalcalls.
31496 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31498         * image.c, image.h: impemented mono_image_get_entry_point ().
31499         * appdomain.c: use mono_image_get_entry_point.
31501 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31503         * reflection.c: support the object type argument when loading
31504         custom attributes.
31506 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
31508         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
31509         String as return type.
31511 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
31513         * reflection.c: fix encoding of named args for custom attrs to match
31514         the ms implementation. Read them back when instantiating custom
31515         attributes.
31517 2002-08-02  Radek Doulik  <rodo@ximian.com>
31519         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
31520         by Dietmar as quick fix
31521         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
31522         16 as stack size, used on more places as quick fix before Dietmar
31523         will fix it properly
31525 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31527         * object.h, object.c: added accessors for fields and properties.
31529 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31531         * class.c, class.h: made mono_class_get_field_from_name ()
31532         loop on parent types.
31533         Added mono_class_get_property_from_name ().
31535 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31537         * class.c, class.h: move the code to setup the type vtable in its own
31538         function so that it can be reused also for types created at runtime.
31539         Eliminate the "class" identifier from the header file.
31540         * reflection.c: setup the vtable for enums so that we can create
31541         objects for use in SetConstant ().
31543 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
31545         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
31546         instead of the delegate itself as this pointer (bug #28383)
31548 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
31550         * marshal.c (mono_marshal_get_managed_wrapper): added return type
31551         conversions.
31553 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31555         * loader.c: don't set the pinvoke bit on icalls.
31557 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
31559         * debug-helpers.c (mono_method_full_name): only print a number to
31560         indicate wrapper type (so that the output is more readable in traces).
31562 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
31564         * class.c (mono_class_init): include method override patch from Paolo
31566 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
31568         * icall.c: fixed GetTypeCode().
31570 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
31572         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
31573         use real delegate invoke function to make it work with multicast
31574         delegates (fix bug# 28291).
31576 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31578         * object.c: load constant strings.
31580 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31582         * reflection.c: no magic numbers.
31583         * tabledefs.h: security action enum.
31585 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31587         * assembly.c: fix possible memory corruption.
31589 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31591         * reflection.h, reflection.c: added support for linking resources.
31592         * verify.c: check we have an updated corlib.
31594 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
31596         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
31597         string arrays.
31598         (mono_marshal_string_array): null terminate unmanaged string arrays.
31599         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
31601 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31603         * icall.c: Type.GetType () can now return also types from the
31604         calling assembly.
31606 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31608         * loader.h, loader.c: stack walking support.
31609         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
31610         GetCallingAssembly.
31612 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
31614         * marshal.c: added optimisations for blittable types 
31616         * class.c (mono_array_class_get): do not set blittable attribute on arrays
31617         (mono_class_setup_mono_type): set blittable attribute for single
31618         and double.
31620         * marshal.c (mono_string_utf8_to_builder): impl.
31621         (mono_string_builder_to_utf8): impl.
31622         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
31624 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
31626         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
31627         (mono_marshal_get_managed_wrapper): impl. byref types
31629 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31631         * icall.c:
31632         (search_method): don't display debug message. 
31634 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31636         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
31638 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31640         * appdomain.c: set the missing filename when throwing exception.
31642 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31644         * metadata.c (mono_type_size): code cleanup
31645         (mono_type_stack_size): removed some test code
31647 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
31649         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
31650         mono_get_exception_file_not_found now.
31652         * exception.c (mono_exception_from_name_two_strings): New version
31653         that will call a constructor with two string arguments. 
31654         (mono_get_exception_file_not_found): New helper routine, used to
31655         report file-not-found errors.
31657 2002-07-20  Dick Porter  <dick@ximian.com>
31659         * process.h:
31660         * process.c: Pass file handles to CreateProcess
31661         
31662         * icall.c:
31663         * file-io.h:
31664         * file-io.c: Implemented CreatePipe
31666 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31668         * metadata.c (mono_get_param_info): set alignment for value types
31670 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31672         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
31673         Constify mono_domain_assembly_open().
31674         * loader.c: handle null namespace in icalls.
31676 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31678         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
31679         (emit_str_to_ptr_conv): marshal object as structs
31681         * metadata.c (mono_type_to_unmanaged): marshal object as structs
31683         * marshal.c (mono_marshal_get_runtime_invoke): support value types
31685 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
31687         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
31688         (mono_marshal_get_native_wrapper): we an now return value types
31690 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31692         * verify.c: more checks implemented.
31694 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
31696         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
31697         (fix bug #27695)
31698         (mono_marshal_get_native_wrapper): allow byref arguments
31699         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
31700         impl. PtrToStringXXX methods
31701         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
31702         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
31703         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
31704         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
31705         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
31707 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31709         * reflection.c: fix buglet in parsing an assembly name.
31711 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31713         * marshal.c (emit_ptr_to_str_conv): first impl.
31715 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31717         * object.c, class.h: cache the vtable in the class as suggested by
31718         vargaz@freemail.hu (Zoltan Varga).
31720 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31722         * class.h, loader.c: added mono_field_from_token().
31723         * verify.c: first cut of type checking code.
31725 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31727         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
31729 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
31731         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
31732         (fix bug #27782)
31733         (mono_marshal_get_remoting_invoke): impl.
31734         (mono_delegate_begin_invoke): impl.
31735         (mono_mb_emit_save_args): impl.
31736         (mono_delegate_end_invoke): impl.
31737         (mono_marshal_get_delegate_begin_invoke):
31738         (mono_marshal_get_delegate_end_invoke):
31739         (mono_marshal_get_delegate_invoke): generate a special name for
31740         those methods (including the signature) and associate them whith
31741         the delegate class. 
31743 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
31745         * reflection.[ch]: 
31746         (mono_reflection_type_from_name): now it has a MonoImage parameter
31747         which is used as the default image to search the type in. If the image
31748         is NULL or getting the type from it fails, it defaults to corlib.
31750         * icall.c: changed 1 call to mono_reflection_type_from_name to match
31751         new parameter.
31753 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31755         * reflection.c: update the parameter table index.
31757 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31759         * domain.c: don't include the mark byte in the string hash.
31761 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31763         * icall.cs: icall for Type.GetTypeCode ().
31764         * verify: a couple of fixes and disabled local initialization checks.
31766 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
31768         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
31770         * debug-helpers.c (mono_method_full_name): print the type of the
31771         runtime wrapper
31773         * metadata.c (mono_signature_hash): a hash function for signatures
31774         (mono_signature_hash): better hash algorithm
31776         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
31778         * debug-helpers.c (mono_method_full_name): this can now generate
31779         method names with signatures
31781         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
31782         method dont have this pointers.
31784 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31786         * reflection.c: fixup typebuilder tokens.
31787         * image.c: fix buglet.
31788         * marshal.h: remove whitespace.
31789         * metadata.h, metadata.c: reinstate code that was removed.
31790         * verify.c: handle catch directives and fix another couple of bugs.
31792 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
31794         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
31795         (mono_marshal_get_native_wrapper): make it comp. with the old code
31796         (mono_marshal_get_native_wrapper): support boolean
31797         (mono_marshal_get_managed_wrapper): support more types
31799 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
31801         * class.c (class_compute_field_layout): compute class->blittable attribute.
31803 2002-07-09  Dick Porter  <dick@ximian.com>
31805         * threads.c: Make the thread cleaning up cope with threads that
31806         call ExitThread()
31808 2002-07-08  Radek Doulik  <rodo@ximian.com>
31810         * reflection.c (method_encode_code): use non-translated values to
31811         compute finally_start, this fixes exception handling on ppc, yay!
31813         * decimal.h (struct signscale): fix endianess
31815 2002-07-07  Radek Doulik  <rodo@ximian.com>
31817         * reflection.c: swap box_val and not val
31819 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
31821         * reflection.c, reflection.h: handle full assembly info in type name.
31822         Handle Type arguments when loading custom attributes.
31823         * icall.c: updated to use new mono_reflection_type_from_name () method.
31825 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31827         * loader.c:
31828         (method_from_memberref): also print assembly name when method not found.
31830 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31832         * icall.c:
31833         (ves_icall_TypeGetProperties): fixed bug #27473. 
31835 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31837         * reflection.c: display image name and token when cannot find the
31838         .ctor for an attribute.
31840 2002-07-05  Martin Baulig  <martin@gnome.org>
31842         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31844 2002-07-04  Dick Porter  <dick@ximian.com>
31846         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
31847         compile on mingw.  This will cause mingw builds to not wait for
31848         subthreads to terminate after the main thread does.  I've lodged a
31849         bug with the mingw developers for them to wrap OpenThread().
31851 2002-07-03  Dick Porter  <dick@ximian.com>
31853         * threads.c: Store thread IDs instead of handles, because
31854         GetCurrentThread() returns a pseudohandle and therefore stores
31855         useless values.  mono_thread_cleanup() continues checking the
31856         array of threads until it is empty, to cope with subthreads
31857         spawning new threads after the main thread has finished.
31859         * profiler.h:
31860         * profiler.c:
31861         * profiler-private.h: Pass the thread ID to thread profiler
31862         functions, instead of a handle
31864 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31866         * verify.c: fixes to make it more usable.
31867         * pedump.c: added --verify code to verify IL code in an assembly.
31869 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31871         * reflection.c: turn errors into warnings to allow compiling corlib.
31873 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31875         * reflection.c: add special cases to compile corlib.
31877 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31879         * reflection.c: handle properties with only a set method.
31881 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31883         * opcodes.h: add enum with opcodes in opval order.
31885 2002-07-01  Dick Porter  <dick@ximian.com>
31886         
31887         * object.h:
31888         * object.c (mono_runtime_run_main): Removed unneeded argument
31890 2002-06-28  Martin Baulig  <martin@gnome.org>
31892         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31894 2002-06-27  Dick Porter  <dick@ximian.com>
31896         * threads.c: Store the handle in both the parent thread and in the
31897         subthread, to minimise the time between starting a new thread and
31898         storing its ID.
31900 2002-06-26  Dick Porter  <dick@ximian.com>
31902         * appdomain.c (mono_runtime_cleanup): Close the socket library
31903         after all the threads have finished, not before
31905 2002-06-26  Martin Baulig  <martin@gnome.org>
31907         * debug-symfile.c (mono_debug_find_source_location): Added
31908         `guint32 *line_number' argument.  If it's not NULL, store the line number
31909         there and return the file name without the line number.
31911 2002-06-25  Dick Porter  <dick@ximian.com>
31913         * icall.c:
31914         * process.h:
31915         * process.c: Process forking and other support functions
31917 2002-06-25  Dick Porter  <dick@ximian.com>
31919         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
31920         things dont happen when the image is closed.
31921         (mono_image_lookup_resource): Walk the resource section looking
31922         for a particular entry
31924         * cil-coff.h: PE resource section decoding
31926 2002-06-25  Dick Porter  <dick@ximian.com>
31927         
31928         * assembly.h:
31929         * assembly.c: 
31930         (mono_assembly_foreach): Accessor functions to walk the list of
31931         loaded assemblies
31932         (mono_assembly_set_main):
31933         (mono_assembly_get_main): Process methods need to know which
31934         assembly is the "main" one
31936         * object.c (mono_runtime_run_main): Record the main assembly
31938         * debug-helpers.c: Fix typo
31940 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
31942         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
31943         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
31945 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
31947         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
31949 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
31951         * image.c (do_mono_image_open): Initialize reference count,
31952         otherwise we leak the MonoImage.
31954 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31956         * reflection.c: small tweak to handle self-hosting.
31958 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31960         * reflection.c: fix type name parse code.
31962 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31964         * reflection.c: break out of the loop.
31965         * image.c: special case corlib.
31967 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31969         * reflection.c: add all the custom attrs at the end to ensure the
31970         ctors have been properly initialized when the attributes are defined
31971         in the current assembly.
31973 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31975         * reflection.c: handle correctly multiple-nested types.
31977 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31979         * row-indexes.h: fix typos.
31980         * reflection.c: adjust for typos and fix method_def_or_ref
31981         encoding in MethodImpl table.
31983 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
31985         * reflection.c: fix entry point patching (thanks Serge!).
31987 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
31989         * verify.c: add check for System.Exception
31991 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31993         * image.c, class.c: minifix for code just c&p'ed.
31994         * reflection.c: warning fix.
31995         * object.h, loader.h, domain.c: load also StringBuilder.
31997 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31999         * marshal.h, marshal.c: some support code to handle complex marshaling.
32001 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32003         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32004         Better signatures with vtable error dump.
32006 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32008         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32010 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32012         * icall.c (ves_icall_Type_GetField): impl.
32014 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32016         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32017         to retrieve a marshal description blob for a field or param.
32019 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32021         * reflection.h, reflection.c: change order of nested type emission
32022         to avoid table corruption. The NestedTypes table is sorted.
32023         * icall.c: change order of GetConstructor results to workaround mcs bug.
32025 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32027         * reflection.h, reflection.c: handle field and param marshal
32028         information.
32030 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32032         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32034 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32036         * reflection.c: fix call convention.
32038 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32040         * reflection.h, reflection.c: mono_image_get_memberref_token()
32041         takes a type instead of a class, now. Added
32042         mono_image_get_array_token() to create tokens for the special
32043         multi-dim array methods.
32045 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32047         * assembly.c: handle modules (no assembly table). Split
32048         loading references in its own function.
32049         * class.c: handle moduleref resolution scope.
32050         * image.c, image.h: cache module name in image.
32052 2002-06-07  Martin Baulig  <martin@gnome.org>
32054         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32055         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32057 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32059         * icall.c: more signature fixes that used uint instead of int.
32061 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32063         * reflection.c: fixed signature of field refs.
32065 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32067         * class.c, reflection.c: handle typerefs of nested types
32068         (both on read and when writing files).
32070 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32072         * icall.c: fix method signatures that tried to workaround the previous
32073         typo, d'oh!
32075 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32077         * debug-helpers.c: fix typo.
32079 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32081         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32082         rewrote the PE/COFF writing code (our programs are understood by the
32083         ms runtime, now).
32085 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32087         * gc.c, gc.h, icall.c: weakreference support.
32089 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32091         * Makefile.am, mono-config.c: use $(sysconfdir).
32093 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32095         * icall.c: changed default precision of Double.ToString() to 15.
32096         Fixed memory leak. Unified with Single.ToString.
32098 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32100         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32102 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32104         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32105         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32106         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32107         and myself.
32109 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32111         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32113 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32115         * reflection.c, socket-io.c: more compilation fixes.
32117 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32119         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32120         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32121         unicode.c: warning and compiler compatibility fixes.
32123 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32125         * class.h, metadata.c: fixed warnings/compilation errors.
32127 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32129         * Makefile.am, mono-config.c, mono-config.h: configuration file
32130         support routines.
32131         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32132         config file. Export methods to insert and lookup mappings.
32134 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32136         * reflection.c: handle types and boxed objects in custom attr
32137         constructors.
32139 2002-05-30  Martin Baulig  <martin@gnome.org>
32141         * debug-symfile.c
32142         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32144 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32146         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32147         to lookup the implmap row for a P/Invoke method.
32148         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32149         P/Invoke method from the runtime on an as needed basis.
32151 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32153         * metadata.c (mono_metadata_parse_signature): impl.
32155 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32157         * class.c: handle .pack directive.
32159 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32161         * object.c: initialize static fields with RVA data.
32163 2002-05-25  Martin Baulig  <martin@gnome.org>
32165         * debug-symfile.c
32166         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32168 2002-05-24  Martin Baulig  <martin@gnome.org>
32170         * debug-symfile.c
32171         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32172         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32173         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32175 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32177         * object.c: special case string ctros in invoke.
32178         * gc.c: silly whitespace changes.
32180 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32182         * threadpool.[ch]: impl. a threadpool that can
32183         be used by mint and mono.
32185 2002-05-22  Martin Baulig  <martin@gnome.org>
32187         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32188         The first argument is now a `MonoReflectionModuleBuilder *', the return
32189         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32190         `methods' field to get the method builder.  The `token' argument is the
32191         unfixed token.
32193         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32194         invalid characters instead of g_assert_not_reached()ing.  This seems
32195         to be the behaviour of mscorlib.
32197 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32199         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32200         Hestilow to fix bug #25104
32202 2002-05-21  Martin Baulig  <martin@gnome.org>
32204         * debug-symfile.c (mono_debug_find_source_location): New function.
32205         Looks up an IL offset in the line number table and returns the source
32206         location as a string.
32208 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32210         * icall.c:
32211         (mono_double_ToStringImpl): changed %f by %g until we have something
32212         better.
32214 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32216         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32217         parameters first in C#.
32219 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32221         * icall.c, reflection.h: added icall to get info about an event.
32223 2002-05-20  Radek Doulik  <rodo@ximian.com>
32225         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32226         endian
32227         (mono_value_box): don't use memcpy for small sizes on
32228         architectures with unaligned access
32230 2002-05-20  Martin Baulig  <martin@gnome.org>
32232         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32233         if `tb->parent == NULL'.
32234         (mono_reflection_create_internal_class): New function.  This is
32235         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32236         for enum types.
32238         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32239         New interncall.
32241 2002-05-19  Martin Baulig  <martin@gnome.org>
32243         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32244         argument to get the length, don't default to the array length.
32246 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32248         * assembly.c (mono_assembly_setrootdir): New function used to
32249         override the MONO_ASSEMBLIES directory.
32251 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32253         * icall.c: ValueType_GetHashCode() initialize local var.
32255 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32257         * reflection.c: sort custom attributes table.
32259 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32261         * reflection.c: support named args in custom attributes (write support).
32263 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32265         * reflection.c: fix finally position calculation.
32267 2002-05-15  Radek Doulik  <rodo@ximian.com>
32269         * reflection.c: fixed endianess at many places
32271         * icall.c (ves_icall_InitializeArray): comment out debug msg
32273 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32275         * object.c (mono_unhandled_exception): new function to handle
32276         unhandled exceptions.
32277         (mono_unhandled_exception): call the UnhandledException event.
32278         (mono_runtime_delegate_invoke): impl.
32280 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32282         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32283         returns the RVA, not the direct pointer to the data. Handle the case
32284         when the class size is fixed.
32286 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32288         * reflection.c: fix some endianess issues.
32290 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32292         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32294         * threads.c (mono_thread_init): added a callback which is invoked
32295         at thread start.
32297 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32298         
32299         * icall.c: make GetHashCode return non-negative values.
32301 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32303         * object.c, icall.c, gc.c: revert to address-based hashcode.
32305 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32307         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32309 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32311         * icall.c, class.c: special case <Module>.
32313 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32315         * icall.c: fix bug in GetNow().
32317 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32319         * object.c (mono_runtime_class_init): make sure that we call all
32320         static class constructors.
32322 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32324         * reflection.c: sort methodsemantics table.
32326 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32328         * reflection.h, reflection.c: honour init locals setting.
32330 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32332         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32334 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32336         * reflection.c: support ContructorBuilders in attribute blob creation.
32338 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32340         * reflection.c: some changes to build a binary that can be run
32341         directly in windows.
32343 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32345         * loader.c: print a big message when an icall can't be found.
32347 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32349         * string-icalls.c: fix bug 24248.
32351 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32353         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
32354         icall.c, reflection.h: separate assembly loading by pathname and by
32355         assembly name. Use the MONO_PATH env var to search for assemblies.
32357 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32359         * assembly.c, image.h: add some support for assemblies
32360         with multiple modules.
32361         * class.c, class.h: export mono_class_from_typeref().
32362         * loader.c: remove duplicated code and use mono_class_from_typeref(),
32363         instead.
32365 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32367         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
32368         documentation says (the ECMA one is correct).
32370 2002-05-02  Dick Porter  <dick@ximian.com>
32372         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
32373         Don't name the synchronisation mutex.
32375 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
32377         * rand.c
32378         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
32379         Make the prototypes match.
32380         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
32381         Same.
32383         * icall.c
32384         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
32385         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
32386         all systems have tm.tm_zone, so use strftime() with %Z to print
32387         the timezone abreviation into a temp string.
32389         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
32390         rather than mono_array_addr() on a MonoString on Big Endian
32391         machines.
32393 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
32395         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
32396         fix bug 24041
32398 2002-04-30  Dick Porter  <dick@ximian.com>
32400         * socket-io.c: Cope with SOCKET being an integer rather than a
32401         pointer now.
32403         * threads.c: Added Thread_free_internal, to deal with thread
32404         handle cleanup.  Moved calls to handle_store() and handle_remove()
32405         to start_wrapper(), so each can only be called once.  Allocate
32406         synchronisation blocks with GC_malloc(), and use GC finalisation
32407         to close the handles.
32409         * icall.c: added System.Threading.Thread::Thread_free_internal
32411 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32413         * icall.c: support Environment.Exit, CommandLineArgs().
32415 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32417         * object.c, object.h: added mono_runtime_run_main () and
32418         mono_runtime_get_main_args () for use in System.Environment.
32420 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32422         * gc.c: fix thinko, enable actual finalization since the jit is now
32423         fixed.
32425 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32427         * gc.c, object.c: take into account that an object may be offset wrt the address
32428         returned by GC_malloc().
32430 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32432         * image.c: handle files without entries in the assembly table (modules).
32434 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
32436         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
32437         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
32438         allowed to be null when it's System.Object class setup.
32440 2002-04-27  Martin Baulig  <martin@gnome.org>
32442         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
32443         if `tb->parent == NULL' rather than crashing.
32445 2002-04-28  Nick Drochak  <ndrochak@gol.com>
32447         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
32448         calling acos() where asin() should have been called.
32450 2002-04-26  Martin Baulig  <martin@gnome.org>
32452         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
32453         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
32454         there's a subdirectory called `System', but we don't want to read that
32455         subdirectory as an assembly.
32457 2002-04-25  Martin Baulig  <martin@gnome.org>
32459         * debug-symfile.c: Reflect latest MonoString changes.
32461 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32463         * rand.c, rand.h: instance method icalls need to have an explicit
32464         this pointer as first argument in the C implementation.
32466 2002-04-25  Nick Drochak <ndrochak@gol.com>
32468         * icall.c: Fix typo in map for GetNonZeroBytes
32470 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32472         * string-icalls.c : String does now passes unit tests without any 
32473         errors, the following changes has been made:
32474         
32475         Implemented replace methods.
32476         Renaming of methods to (try) follow the standard.
32477         Fixed compare ordinal
32478         Made all memory allocated directly to function instead of via icall function.
32479         Small performance fix in is_in_array function
32480                         
32481  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
32483         c (mono_string_Internal_ctor_charp_int_int):
32484         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
32485         sindex < 0, throw ArgumentOutOfRangeException instead of
32486         ArgumentNullException.
32488         Added new check for length == 0, however
32489         I need to make it return String.Empty from the C code.
32490         
32491         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
32492         that calculate the length for us here.
32493         
32494         (mono_string_Internal_ctor_sbytep_int_int): Replaced
32495         mono_string_new_utf16 with mono_string_new, since value is utf8.
32497 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32499         * object.c: register the object for finalization if needed.
32500         Allocate one more char in the string for the terminating 0 char.
32502 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32504         * class.c, class.h, image.c: check if a type implemenst a destructor.
32505         Use the proper key for array class lookups.
32506         * icall.c: register the icalls in the System.GC class.
32507         * gc.c, gc.h: GC-related functions and icalls.
32509 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32511         * icall.c:
32512         * socket-io.c:
32513         * unicode.c: free some strings gotten from mono_string_to_utf8 and
32514         changed a couple of free () by g_free ().
32516         * decimal.c: one-liner in the comments for decimal2string ().
32518 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32520         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
32522 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32524         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
32525         * object.c (mono_runtime_invoke_array) : handle null in params
32527 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32529         * string-icalls.c: fixed bug in split (one off bug)
32531 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32533         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
32534         * icalls.c: added String::Equals as internal method
32536 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32538         * threads.c: fixed bug in the double interlocked functions
32540 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
32542         * threads.c: implemented all of the new interlocked icalls.
32543         * string-icalls.c: fix a bug in insert.
32544         * icalls.c: added the icalls for interlocked, removed old string functions.
32545         
32546 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32548         * loader.c: fix off-by-one error when reading argument names.
32550 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32552         * profiler.c: win32 counter implementation (untested).
32553         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
32554         (the latter needs testing and more complete impl. from win32 folks).
32556 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
32558         * object.c: mono_array_new_full workaround mono_array_class_get
32559         problem.
32561 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32563         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
32564         * object.h (mono_string_chars): Changed casting type.
32566 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32568         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
32569                            method signatures to use gunichar2 instead of gint16.
32571 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
32573         * object.h, object.c: domain-specific versions of mono_object_new and
32574         mono_array_new.
32576 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
32578         * object.c: changed String layout
32580         * string-icalls.c (mono_string_Internal_ctor_chara): added
32581         internal string constructors.
32583 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
32585         * threads.c: pass 'this' to the thread start routine.
32587 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32589         * string-icalls.c: fix IndexOf and LastIndexOf. Now
32590         InternalCompareStr don't call twice mono_string_cmp_char for the last
32591         character. Improved performance in mono_string_cmp_char.
32593 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32595         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
32596         code into its own library: libmonoruntime.
32598 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
32600         * object.h, object.c: changed array format so that szarrays do not
32601         require a bounds structure.
32602         * icall.c, appdomain.c: support for new szarray format.
32604 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32606         * metadata.c: compare also the retuns type when comparing signatures:
32607         we didn't do this as an optimization since really overloaded methods
32608         must differ also in the arguments, but this doesn't work with
32609         low-level IL code (or when using explicit conversion operators: see
32610         bug#23498 for an example).
32612 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32614         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
32616 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32618         * icall.c: make MonoType::GetElementType its own icall.
32620 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32622         * icall.c: remove MonoMethod_get_Name().
32623         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
32624         object.
32626 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32628         * string-icalls.c: optimized a few methods.
32630 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32632         * icall.c: added all new string internal calls
32633         * string-icalls.c: added, new string internal call implementation.
32634         * object.c: added mono_string_new_size for allocating a string a size
32636 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
32638         * object.c (mono_object_isinst): use the same code as in the
32639         optimized x86 version.
32641 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32643         * profiler.c: TSC-based timer code (faster and more accurate).
32644         Not hooked up in configure, yet (set USE_X86TSC to 1).
32646 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
32648         * profiler.c, profiler.h: track time spent compiling methods.
32649         * threads.c: track thread creation/destruction.
32651 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
32653         * profiler.c, profiler.h, profiler-private.h: profiling interface
32654         and sample implementation. Moved here so that it can be used also by
32655         the jit.
32657 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
32659         * reflection.c, reflection.h: keep types and other handles separate in
32660         the hash tables for referred tokens. Add guid for modules.
32662 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32664         * assembly.c: fix bugs found with valgrind.
32665         * metadata.h, metadata.c: added mono_metadata_guid_heap().
32667 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
32669         * threads: added icall support for getting current domain for
32670                    the thread.
32672 2002-04-13  Martin Baulig  <martin@gnome.org>
32674         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
32675         (MonoDebugVarInfo): Added `index' field for register based addresses.
32676         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
32677         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
32678         `MonoDebugVarInfo *params' and `guint32 this_offset' with
32679         `MonoDebugVarInfo *this_var'.
32681         * debug-symfile.c (relocate_variable): New static function to write
32682         a location description for a local variable or method parameter.
32684 2002-04-12  Martin Baulig  <martin@gnome.org>
32686         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
32687         stack offset and begin/end scope address of a local variable.
32688         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
32689         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
32690         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
32692         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
32693         Added new relocation types for start/end scope of a local variable.
32695 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32697         * object.h: add mono_object_domain() macro.
32698         * reflection.c: handle typespecs.
32699         * icall.c: MonoMethod::get_Name() implementation.
32701 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32703         * icall.c: String::GetHashCode() icall implementation.
32705 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32707         * icall.c: String::IndexOfAny icall.
32708         * object.c, object.h: make array->max_length more useful.
32709         Intrduced mono_object_class() and mono_string_length() macros.
32711 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32713         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
32714         instead of g_unichar_isdigit.
32716 2002-04-11  Nick Drochak  <ndrochak@gol.com>
32718         * icall.c: Implement a simple Double.ToString().
32720 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32722         * appdomain.h: only io-layer.h is supposed to be included.
32723         * icall.c: explicitly import environ. Fix warning.
32725 2002-04-10  Nick Drochak  <ndrochak@gol.com>
32727         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
32728                 return true even if it's not Daylight Savings time.
32729                 Only return false for the case where the function isn't
32730                 implemented for a plaform (read Windows).
32732 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32734         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
32735         data with a mutex.
32737 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
32739         * mempool.c (mono_mempool_alloc): only use g_malloc when
32740         absolutely necessary.
32742 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32744         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
32746         * class.c (mono_class_vtable): use domain mempool to allocate vtable
32747         (mono_class_proxy_vtable): use domain mempool
32749 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32751         * appdomain.h, appdomain.c: split initialization that requires the
32752         execution engine support into mono_runtime_init().
32754 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32756         * class.c (mono_class_init): don't include vtable inside MonoClass
32757         to save some memory, gather some statistics.
32758         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
32760 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32762         * icall.c: internalcall implementation for ValueType.Equals().
32764 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
32766         * object.c (mono_message_init): moved 
32767         (mono_runtime_exec_main): new arch. independent impl.
32768         (mono_runtime_invoke_array): new method - like
32769         mono_runtime_invoke, but you can pass an array of objects.
32770         (mono_remoting_invoke): new arch. independent impl.
32771         (mono_message_invoke): new arch. independent impl.
32772         (mono_runtime_class_init): new arch. independent impl.
32773         (mono_runtime_object_init): new arch. independent impl.
32775 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32777         * metadata.c, object.c, reflection.c: documented the exported
32778         functions.
32780 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32782         * icall.c: simpler code to pass the assembly builder data to corlib.
32783         Implement GetNestedTypes() internalcall.
32785 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32787         * class.c: warn if a type can't be loaded.
32789 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
32791         * image.h: typedef MonoImageOpenStatus
32792         * types.h: removed unused file
32793         
32794 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
32796         * icall.c: Enum_ToObject accepts enum value arguments.
32798 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32800         * class.c: move initialization of properties, events and nested
32801         classes, so that they happen for interfaces, too.
32803 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32805         * icall.c: cleanup some ugly casts in Array_SetValue*.
32807 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32809         * icall.c: the values array fro enums is of the correct type, now.
32810         Implement (correctly) getFullName instead of assQualifiedName for
32811         MonoType.
32812         * reflection.h, reflection.c: added mono_type_get_name ().
32814 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32816         * assembly.c, image.h: for each MonoImage, record from wich assembly
32817         it was loaded.
32818         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
32819         Make Type.Assembly work.
32821 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
32823         * debug-symfile.h: use char* instead of gpointer to avoid
32824         unnecessary casts.
32826         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
32828         * icall.c (ves_icall_InternalExecute): impl. FielSetter
32829         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
32831 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
32833         * icall.c (mono_message_init): impl. (code cleanup)
32834         (ves_icall_InternalExecute): impl. FieldGetter
32836         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
32837         defined we call all (non-static)methods through the vtable. 
32839 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
32841         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
32842         finalizer even though the memory is still referenced (and the chunk of
32843         memory is not freed).
32845 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
32847         * assembly.c: fix brokeness.
32849 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
32851         * class.c: kill some warnings. Check explicit interface method
32852         implementation also without considering the namespace.
32853         Load also literal strings in static class data.
32855 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
32857         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
32858         (default_assembly_name_resolver): Make the resolver take the
32859         "base" directory where the assembly was originally defined, so we
32860         can load DLLs that are in the same directory as the assembly that
32861         is being referenced.
32863 2002-03-28  Dick Porter  <dick@ximian.com>
32865         * file-io.h: 
32866         * file-io.c:
32867         * socket-io.c: 
32868         * unicode.h: 
32869         * unicode.c: Warning cleanups
32871 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
32873         * object.h, reflection.h: use the correct type instead of MonoObject.
32875 2002-03-28  Martin Baulig  <martin@gnome.org>
32877         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
32878         (mono_debug_update_symbol_file): Initialize classes if necessary.
32880 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
32882         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
32883         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
32885 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
32887         * assembly.h: fix function prototype.
32888         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
32889         * mono-endian.h: use const cast.
32891 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32893         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
32895 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
32897         * loader.c: don't assert when a typeref can't be loaded, give
32898         a chance to the runtime to trow an exception instead.
32899         * loader.h: fix warning.
32901 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32903         * class.c (mono_class_proxy_vtable): added proxy support
32905 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
32907         * icall.c: removed last of PAL calls, added System.Environment
32908         * file-io.h, file-io.c: MonoIO implementation
32909         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
32911 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
32913         * appdomain.c: do not use the byte marker in ldstr table lookup.
32914         * debug-helpers.c: allow two ':' to separate class and method name.
32915         * object.c: allocate arrays bounds with the GC, too.
32916         * verify: add a few more checks.
32918 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
32920         * reflection.c: output also literal strings. Allocate parameter data
32921         with GC_malloc() (thanks, Martin, for catching this!).
32923 2002-03-26  Martin Baulig  <martin@gnome.org>
32925         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
32926         include the `this' offset in the `param_offsets'.
32928 2002-03-25  Martin Baulig  <martin@gnome.org>
32930         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
32931         mono_debug_get_class() function to get the classes. Added new
32932         relocation types for arrays and strings.
32933         (mono_debug_get_class): New static function to search in all
32934         referenced assemblies for a metadata token.
32936         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
32938 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32940         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
32941         hold gc-allocated objects. Make the string heap a stream like the
32942         others. Removed duplicated code when writing stream info.
32943         Added asserts to catch possible buffer overflows. Set the sorted map
32944         for tables that need sorting. Added some documentation.
32946 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
32948         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
32949         for interned strings and vtables.
32951 2002-03-24  Martin Baulig  <martin@gnome.org>
32953         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
32954         it in the array since it was created with g_slist_prepend().
32956 2002-03-24  Martin Baulig  <martin@gnome.org>
32958         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
32959         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
32960         (mono_debug_method_from_token): Renamed to
32961         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
32962         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
32964         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
32965         relocation types.
32967         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
32969 2002-03-24  Martin Baulig  <martin@gnome.org>
32971         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
32972         (mono_debug_method_from_token): New func.
32974         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
32975         New interncall, calls mono_debug_local_type_from_signature().
32976         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
32977         calls mono_debug_method_from_token().
32979 2002-03-23  Martin Baulig  <martin@gnome.org>
32981         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
32982         specifies the number of bytes to be converted, not the array size.
32983         Return the number of chars, not the number of bytes.
32984         (ves_icall_iconv_get_chars): The `byteCount' argument
32985         specifies the number of bytes to be converted, not the array size.
32987 2002-03-23  Martin Baulig  <martin@gnome.org>
32989         * reflection.h (MonoReflectionSigHelper): New type.
32991         * reflection.c (mono_reflection_sighelper_get_signature_local),
32992         (mono_reflection_sighelper_get_signature_local): New functions.
32994         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
32995         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
32996         interncalls.
32998 2002-03-23  Martin Baulig  <martin@gnome.org>
33000         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33001         is_writeable is set.
33002         (mono_raw_buffer_update): New function to write the modified map
33003         back to disk.
33005         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33007         * debug-symfile.c (mono_debug_update_symbol_file): Call
33008         mono_raw_buffer_update() when done writing.
33010 2002-03-23  Martin Baulig  <martin@gnome.org>
33012         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33014         * debug-symfile.c: Added support for arguments and local variables.
33016 2002-03-23  Dick Porter  <dick@ximian.com>
33018         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33019         protected by ifdefs, hence breaking the w32 build.
33021 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33023         * object.c: implement is_interned() the right way.
33025 2002-03-21  Martin Baulig  <martin@gnome.org>
33027         * debug-symfile.[ch]: New files to handle debugging information
33028         files. There's also support to dynamically update these symbol
33029         files to include machine dependent information.
33031 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33033         * threads.c (mono_thread_create): new function to create thread
33034         from C
33036 2002-03-20  Martin Baulig  <martin@gnome.org>
33038         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33039         method is a constructor.
33040         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33041         points to ves_icall_InternalInvoke().
33043 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33045         * file-io.c: Flush shouldn't throw exceptions.
33047 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33049         * file-io.c: FileStream flush support; FileSetLength now
33050         restores file pointer.
33052 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33054         * class.c: set image for pointer classes.
33056 2002/03/19  Nick Drochak <ndrochak@gol.com>
33058         * sysmath.c: Forgot one.
33060 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33062         * sysmath.c: Avoid redefining existing names.
33064 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33066         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33067         handled by runtime as icall rather than dllimport from libm.so
33068         * file-io.c, file-io.h: fixed handle argument type.
33070 2002-03-18  Dick Porter  <dick@ximian.com>
33072         * reflection.c (mono_image_get_type_info): rename interface to
33073         iface, because of "#define interface struct" on windows.
33075 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33077         * class.c, class.h: rename and export mono_ptr_class_get().
33078         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33079         * reflection.c, reflection.h, icall.c: better/saner type name
33080         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33081         method signatures.
33083 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33085         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33087         * icall.c (ves_icall_InternalInvoke): impl.
33089 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33091         * reflection.c: output the interface map table, too.
33093 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33095         * class.c (class_compute_field_layout): separate computation of 
33096         static field layout
33098 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33100         * icall.c: added System.Buffer support.
33101         * file-io.c: moved file icalls from PAL to FileStream.
33103 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33105         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33107 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33109         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33111 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33113         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33115 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33117         * debug-helpers.{c,h}: moved here from monograph some useful functions
33118         to locate a method by name/signature in a class or image. Included
33119         also a small and flexible IL disassembler.
33121 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33123         * reflection.c: fixup tokens in methods with small header size, too.
33125 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33127         * object.c (mono_string_to_utf8): remove assert(!error), instead
33128         print a warning. 
33130 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33132         * icall.c: update to the new mono_Array_class_get interface.
33134 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33136         * appdomain.c, object.c: Boehm-GC enable.
33137         * icall.c: make get_data_chunk() support split data requests.
33138         Ensure a class is initialized in more cases. Return only the first
33139         property found in GetProperties() or the compiler gets confused. 
33140         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33141         * reflection.h, reflection.c: add fixup mechanism for field and method
33142         tokens. Initialize assembly->typeref in a single place. Output
33143         properties after events. Support custom attributes for events, too.
33144         Typo fix for paramter custom attrs.
33146 2002-03-07  Martin Baulig  <martin@gnome.org>
33148         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33150 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33152         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33154 2002-03-06  Martin Baulig  <martin@gnome.org>
33156         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33157         non-zero lower bounds. See testcases #F10-#F13.
33159 2002-03-05  Martin Baulig  <martin@gnome.org>
33161         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33163         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33164         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33165         here.
33166         (ves_icall_System_Array_SetValue): Likewise.
33167         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33168         as argument and does the actual work. This function is used when copying a
33169         multi-dimensional array.
33170         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33171         now do all the widening conversions of value types.
33172         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33174 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33176         * class.c: remove some magic numbers and use the smbolic names,
33177         instead. Added init_events() to load event info at class init time.
33178         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33179         and mono_metadata_methods_from_event().
33180         * reflection.h, reflection.c: added support for writing out the evnets
33181         related information.
33183 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33185         * reflection.h, icall.c: use a different method (GetInterfaces)
33186         to gather interface info and add isbyref, isprimitive and
33187         ispointer to the ves_icall_get_type_info() return value.
33189 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33191         * class.h: stared adding support for events.
33192         * icall.c: split find_members implementation. Added debug icall to get
33193         the address of an object.
33194         * reflection.c: handle TypeBuilders in mono_type_get_object().
33196 2002-03-01  Martin Baulig  <martin@gnome.org>
33198         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33199         ArgumentOutOfRangeException(), not an ArgumentException().
33200         (ves_icall_System_Array_GetLowerBound): Likewise.
33201         (ves_icall_System_Array_GetValue): Improved argument checking.
33202         (ves_icall_System_Array_SetValue): Improved argument checking.
33204 2002-03-01  Martin Baulig  <martin@gnome.org>
33206         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33207         called with invalid arguments rather than just dying with g_assert().
33208         (ves_icall_System_Array_SetValue): Likewise.
33209         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33210         raise a NotImplementedException instead.
33211         (ves_icall_System_Array_GetLength): Added argument checking.
33212         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33214 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33216         * object.h (mono_assert): new macros mono_assert and
33217         mono_assert_not_reached
33219 2002-02-28  Martin Baulig  <martin@gnome.org>
33221         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33222         and "System::String::IsInterned" to "System::String::_IsInterned".
33224 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33226         * icall.c: remove hacks for typebuilder. Added icall to create a
33227         modified type from a tybebuilder.
33228         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33229         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33230         to create a backing MonoClass for a TypeBuilder.
33232 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33234         * class.c, class.h: more refactoring of class init.
33235         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33237 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33239         * marshal.c, marshal.h: start of marshaling interface.
33241 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33243         * icall.c: fix order in assembly qualified name icall.
33245 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33247         * class.c: do not free str, since we store it in the hash table.
33248         * reflection.h: add label field to MonoILExceptionInfo.
33249         * reflection.c: handle references to more than one assembly. Handle
33250         case when there isn't a module created in the assembly.
33252 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33254         * class.c: Fix typo. Start refactoring of class init code.
33256 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33258         * appdomain.c: exit with 1 on error.
33259         * class.c: we already have the name in MonoClassField.
33260         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33261         MonoStreamHeader instead of an offset of image->raw_metadata.
33263 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33265         * appdomain.c (mono_init): Be even more descriptive about the error.
33267 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33269         * appdomain.c: give the user an informative message when corlib can't
33270         be loaded.
33272 2002-02-26  Martin Baulig  <martin@gnome.org>
33274         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33275         New icall to get the time zone data.
33277 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33279         * reflection.c: set virtual and raw size of section correctly.
33280         * threads.c: transfer domain information to newly created threads.
33282 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33284         * class.c: when instancing a class in a domain, load the default
33285         vaules for static fields from the constant table. Fix System.Enum to
33286         not be an enum.
33287         * icall.c: implement Object::GetType() internalcall. Implemented
33288         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33289         Fixed checking of binding flags in find_members().
33290         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33291         * reflection.c: handle enumerations when writing to the constant
33292         table. Use a different object cache for types.
33295 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33297         * object.c (mono_object_isinst): fix for arrays
33299         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33301 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33303         * object.c: don't use mprotect ()  and fix intern pool hash table
33304         lookup for big endian systems.
33306 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33308         * icall.c: change type_is_subtype_of () signature.
33310 2002-02-21  Mark Crichton  <crichton@gimp.org>
33312         * rand.c, rand.h: Added random number generator for
33313         System.Security.Cryptography classes.
33315         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33317         * icall.c: Added System.Security.Cryptography calls.
33319 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33321         * class.c, icall.c, metadata.c: better support for pointer types.
33322         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33323         * reflection.c: Add support for getting custom attrs for properties
33324         and simplify some code.
33326 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33328         * icall.c: change getToken () and add custom attribute GetBlob()helper
33329         method.
33330         * reflection.h: add custom attrs array to the reflection builder structures.
33331         * reflection.c: encode and emit custom attributes for all the relevant
33332         reflection objects. Cache fieldref and methodref tokens. Change
33333         mono_image_create_token() interface to take a MonoDynamicAssembly.
33334         More complete custom attributes decoder. Load custom attributes for
33335         Assembly, Field, Method and Constructor objects, too. Make the
33336         returned array an Attribute[] one, not object[]. Added
33337         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33338         custom attribute constructor.
33340 2002-02-20  Dick Porter  <dick@ximian.com>
33342         * icall.c:
33343         * rawbuffer.c:
33344         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33345         problem code out for now).
33347 2002-02-19  Radek Doulik  <rodo@ximian.com>
33349         * object.c (mono_ldstr): use hash table to avoid multiple swapping
33351 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
33353         * icall.c: register the GetCustomAttributes method.
33354         * object.c, object.h: add mono_string_new_len ().
33355         * reflection.h, reflection.c: added mono_runtime_invoke(),
33356         mono_install_runtime_invoke(). Added
33357         mono_reflection_get_custom_attrs () to load custom attributes and
33358         create the attribute objects.
33360 2002-02-19  Dick Porter  <dick@ximian.com>
33361         * threads-dummy-types.c:
33362         * threads-dummy-types.h:
33363         * threads-dummy.c:
33364         * threads-dummy.h:
33365         * threads-pthread-types.c:
33366         * threads-pthread-types.h:
33367         * threads-pthread.c:
33368         * threads-pthread.h:  Deleted obsolete files
33370 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
33372         * class.c (mono_class_vtable): runtime init the class when we
33373         allocate static class data.
33375         * icall.c (ves_icall_System_Array_SetValue): check for null values.
33377         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
33378         and String - but we will need generic marshalling support in the
33379         future. 
33380         (mono_init): set the domain name in a ms compatible way
33382         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
33383         String[].
33385 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
33387         * object.c (mono_array_clone): use alloca() instead of g_malloc  
33388         for sizes
33390         * appdomain.c (mono_domain_unload): impl.
33392 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33394         * appdomain.c, object.c: fix intern pool implementation.
33395         * class.c: fix alignment code.
33397 2002-02-16  Radek Doulik  <rodo@ximian.com>
33399         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
33400         and s2 > s1, just copy lower bytes to be compatible with little
33401         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
33402         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
33404         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
33405         force big_endian to be 1 for big endian machines 
33406         (ves_icall_iconv_new_decoder): ditto
33408 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
33410         * socket-io.c (convert_sockopt_level_and_name): If the system
33411         doesn't define SOL_IP or SOL_TCP, get them by hand using
33412         getprotobyname() and caching the values (because this could be a
33413         slow operation).
33414         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
33415         Use the appropriate struct when the system does support it. Ie,
33416         not all systems have struct ip_mreqn so use struct ip_mreq when
33417         appropriate.
33419 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
33421         * reflection.c: handle finally clauses.
33423 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
33425         * socket-io.c: use g_snprintf() instead of snprintf.
33427 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33429         * reflection.c (mono_param_get_objects): Cast second argument to
33430         mono_method_get_param_names to a const char** to silence the
33431         compiler warning.
33433         * appdomain.c (mono_domain_assembly_open): Put parens around the
33434         truth statement in the for-loop.
33436         * unicode.c (iconv_convert): Got rid of a compiler warning about
33437         int i being unused when the system has a new iconv.
33438         (iconv_get_length): Same.
33440         * image.c (load_class_names): Cast the second argument to
33441         g_hash_table_insert() to char* to hush compiler warnings about the
33442         arg being a const.
33443         (mono_image_open): Same here.
33445         * socket-io.c: Don't conditionally include sys/filio.h or
33446         sys/sockio.h here anymore since we now get them from
33447         io-layer/io-layer.h
33448         (inet_pton): If the system doesn't support inet_aton, implement
33449         using inet_addr and also #define INADDR_NONE if it isn't defined
33450         by the system.
33452 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33454         * metadata.c, metadata.h: added function to get packing and size info
33455         of a typedef.
33456         * reflection.h, reflection.c: handle field RVA data. Save info about
33457         the table layout if needed. Assign typedef indexes to all the types
33458         before dumping the info about them to avoid forward reference problems.
33460 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
33462         * socket-io.c (convert_sockopt_level_and_name): ifdef
33463         SO_ACCEPTCONN because it is not defined on my system (old debian)
33465 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33467         * opcode.c: use stddef.h to get NULL.
33469 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33471         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
33472         for FIONBIO, FIONREAD and SIOCATMARK.
33473         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
33474         define INADDR_NONE and besides, inet_addr() is deprecated and
33475         should not be used. Use inet_pton() instead - it also has the
33476         added bonus that it can easily handle IPv6 addresses as well.
33477         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
33479 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33481         * decimal.c: remove _MSC_VER conditional.
33483 2002-02-13  Dick Porter  <dick@ximian.com>
33485         * socket-io.c: 
33486         * icall.c: Internal calls for Blocking, Select, Shutdown,
33487         GetSocketOption and SetSocketOption
33489 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33491         * assembly.cs: better resolver: use it instead of some kludgy
33492         code.
33494 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
33496         * reflection.c: the best way to speed-up the compiler is to avoid
33497         infinite loops.
33499 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
33501         * class.c (mono_class_vtable): changed the object layout
33502         (obj->vtable->class). 
33503         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
33505 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33507         * assembly.c: look for assemblies in the assembly dir, too.
33509 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33511         * class.c: fix thinko in mono_class_from_type().
33513 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33515         * exception.h, exception.c: added TypeLoadException.
33516         * object.h, object.c: added mono_array_clone ().
33517         * icall.c: handle throwOnError in AssemblyGetType().
33518         Added Array.Clone().
33519         * opcode.h, opcode.c: use a single value for the opcode val.
33520         Compile fix for non-gcc compilers.
33522 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
33524         * opcodes.c, opcodes.h: export interesting info about opcodes.
33526 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
33528         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
33529         icalls. 
33531         * class.c (class_compute_field_layout): set element_class for enums
33532         (mono_class_create_from_typedef): set element_class for normal classes
33534         * icall.c (ves_icall_System_Enum_get_value): impl.
33536         * class.c (mono_class_create_from_typedef): do not set valuetype
33537         flag for System.ValueType and System.Enum
33539 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
33541         * unicode.c (iconv_convert): fix big endian problem.
33543 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33545         * class.c: add asserts if we are ever going to scribble over memory.
33546         * socket-io.c: not all systems have AF_IRDA defined.
33548 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
33550         * class.c (class_compute_field_layout): do not consider static
33551         fields to compute alignment
33553 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
33555         * appdomain.c (mono_appdomain_get): impl.
33556         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
33558 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33560         * icall.c: ignore "file://" prefix when loading an assembly.
33562 2002-01-23  Dick Porter  <dick@ximian.com>
33564         * socket-io.c:
33565         * icall.c:
33566         * Makefile.am: Added socket support
33568 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33570         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
33571         code back.  This should return the assemblies that are loaded by
33572         the runtime on behalf of an application domain. 
33574         The current implementation is still broken, it just returns every
33575         assembly loaded, but until we get real applications domain this
33576         will do.
33578 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
33580         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
33581         AppDomain object.
33583 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33585         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
33586         the mono_class_from_name lookup.
33587         (ves_icall_get_parameter_info): ditto.
33588         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
33589         method.
33590         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
33592 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33594         * class.c: load also nested classes on class init.
33595         System.ValueType instance methods gets passed boxed
33596         values, unless methods in derived classed that get a pointer to the
33597         data.
33598         * icall.c: use better name parsing code in GetType().
33599         * image.c, image.h: add mono_image_loaded ().
33600         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
33601         * reflection.c, reflection.h: added mono_reflection_parse_type().
33603 2002-01-22  Veronica De Santis <veron78@interfree.it>
33605         * icall.c : Added mapping of internal calls for Manual and Auto reset events
33606         * threads.c : Added the implementation of internal calls for events
33607         * threads.h : Added prototypes of internal calls for events
33608         
33609 2002-01-21  Radek Doulik  <rodo@ximian.com>
33611         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
33613 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
33615         * class.c (mono_class_init): set min_align to 1 (instead of 0)
33616         (mono_class_value_size): use min_align
33618 2002-01-20  Dick Porter  <dick@ximian.com>
33620         * threads.h:
33621         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
33622         so it compiles on w32.
33624 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
33626         * metadata.c (mono_type_stack_size): impl.
33628         * class.c (mono_class_get_field): impl. memberref token
33630 2002-01-16 Veronica De Santis <veron78@@interfree.it>
33632         * icall.h : Added the internal calls mapping for CreateMutex_internal
33633                     and ReleaseMutex_internal.
33634         * threads.h : Added the prototype of mutexes internal calls.
33635         * threads.c : Added the implementations of mutexes internal calls.
33637 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33639         * metaparse.h: removed unused file.
33640         * reflection.c, reflection.h: added stream_data_align () function 
33641         to align data in streams and keep stream aligned. Add support for
33642         exception support in method headers.
33644 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
33646         * unicode.c: make iconv_convert () return the number of bytess written
33647         in the output buffer.
33649 2002-01-15  Dick Porter  <dick@ximian.com>
33650         * threads.c: Make the runtime's idea of infinite timeouts coincide
33651         with the class library's
33653         Fix a particularly egregious bug in mono_thread_cleanup(). That
33654         code was so utterly bogus it must have been written on a Monday.
33656 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33658         * reflection.h: add subtypes field to TypeBuilder.
33659         * reflection.c: encode constants for literal fields.
33660         Handle subtypes. Fix user string token (and add a zero byte)
33661         at the end.
33662         
33663 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
33665         * class.c (mono_class_init): bug fix: assign slot numbers for
33666         abstract methods.
33668 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33670         * reflection.c: don't try to output a code RVA for abstract methods.
33671         Small fixes for method header format. Output parameter info to the
33672         ParamDef table. Save method overriding info to MethodImpl table.
33673         Fix property support. Allow typedef.extends to be a type in the
33674         building assembly.
33675         * verify.c: fix off-by-one error.
33677 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
33679         * class.c: fix mono_class_from_mono_type () for szarray types.
33680         Remove unused cache check in mono_class_from_type_spec().
33681         * icall.c: *type_from_name () functions handle simple arrays and byref.
33682         * reflection.c: handle byref and szarray types. Handle methods without
33683         body (gets P/Invoke compilation working). Handle types and fields in
33684         get_token ().
33685         * reflection.h: add rank to MonoTypeInfo.
33687 2002-01-10  Dick Porter  <dick@ximian.com>
33689         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
33690         internal calls
33692 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33694         * icall.c: initialize class in type_from_handle ().
33695         Loop also in parent classes for get_method ().
33696         * reflection.c: properly encode class and valuetype types.
33697         Start on encoding TypeBuilder types. Handle fieldrefs.
33698         Use correct length when registering a user string.
33699         Handle ConstructorBuilder and MonoMethod in get_token ().
33700         Make mono_type_get_object () aware of cached types.
33701         * object.c: back out change to mono_string_new ().
33703 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
33704         * object.c: mono_string_new should return a NULL when the string 
33705         passed in is NULL -- not try to deference it.
33706         
33707 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33709         * icall.c: hack to make IsSubType work for TypeBuilders.
33710         * reflection.c: emit constructors before methods.
33711         Retrieve param names in mono_param_get_objects().
33713 2002/01/05  Nick Drochak  <ndrochak@gol.com>
33715         * Makefile.am: fix list of headers and sources so automake 1.5
33716         doesn't complain. Removed \# at end of list.
33718 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33720         * reflection.c: get token for a method ref. Set return type of
33721         constructor to void.
33722         * loader.c: debug message.
33723         * class.c: typo fix.
33725 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
33727         * icall.c: fix array init with rank > 1. FindMembers
33728         loops in parent class as well.
33729         * image.c: do not insert nested types in name cache.
33730         * reflection.c: warning fix.
33731         * reflection.h: add override method (for interface impl).
33733 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
33735         * metadata.c: fix customattr decoding.
33737 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
33739         * rawbuffer.cs: Added native Win32 implementation, avoids using
33740         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
33742 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
33744         * class.c: make the low-level routines handle the cache.
33746 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
33748         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
33750 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
33752         * class.c: fix mono_array_element_size() for objects.
33753         * class.h, class.c: add properties to MonoClass and load them
33754         at init time.
33755         * icall.c: check with isinst() when assigning a value to an array
33756         instead of requiring the classes to match exactly.
33757         Implemented icall for System.Type::GetType().
33758         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
33759         enums. Handle bindingflags when looking for methods and fields.
33760         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
33761         and mono_metadata_methods_from_property().
33762         * reflection.h, reflection.c: added structures for propreties,
33763         parameters and enums. Implemented mono_property_get_object() and
33764         mono_param_get_objects().
33766 2001-12-18  Dick Porter  <dick@ximian.com>
33768         * file-io.c: Use mono_string_to_utf16() instead of
33769         mono_string_chars()
33771         * object.c: Added mono_string_to_utf16(), which copies the non
33772         NULL-terminated MonoString into a new double-null-terminated
33773         buffer.
33775 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
33777         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
33779 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
33781         * file-io.c: raise exceptions if handle is invalid.
33783 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
33785         * assembly.c: yet another check for mscorlib.
33786         * class.c, class.h: load nesting info for classes.
33787         * icall.c: many new functions to support the Reflection classes.
33788         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
33789         * reflection.h, reflection.c: mono_image_create_token(),
33790         mono_assembly_get_object(), mono_type_get_object(),
33791         mono_method_get_object(), mono_field_get_object(): methods to return
33792         objects that parallel the C representation of assemblies, types,
33793         methods, fields.
33795 2001-12-11  Dick Porter  <dick@ximian.com>
33797         * icall.c:
33798         * file-io.c: Internal calls for file IO.
33800 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
33802         * tabledefs.h: missing FileAttributes.
33803         * verify.h, verify.c: use is_valid_string () to simplify and check for
33804         valid strings more correctly. Fix warnings and speeling.
33805         Check more tables: Filed, File, ModuleRef, StandAloneSig.
33806         Check code: branches, maxstack, method calls.
33808 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
33810         * object.c (mono_object_allocate): removed static, so that the jit
33811         can allocate value types.
33813         * icall.c (ves_icall_System_DateTime_GetNow): impl.
33815 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33817         * class.c: init enum types right away and register the
33818         token->MonoClass map in mono_class_create_from_typedef ().
33819         * verify.h, verify.c: first cut of the verifier.
33820         * pedump.c: add --verify switch to verify metadata tables.
33821         * tabledefs.h: add some missing enums.
33823 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
33825         * class.c (mono_install_runtime_class_init): impl.
33826         (mono_class_init): renamed mono_class_metadata_init to
33827         mono_class_init, also removed the metadata_inited flag
33829         * object.c (mono_object_isinst): use faster algorithm
33831 2001-11-30  Radek Doulik  <rodo@ximian.com>
33833         * mono-endian.h: reverted last change
33834         added function prototypes
33836         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
33837         add mono-endian.c back
33839         * mono-endian.c: returned back, as Paolo pointed out, it's needed
33840         for unaligned access, I've mistaked it with endianess. I am
33841         sorry.
33842         (mono_read16): fix reverted endianess
33843         (mono_read64): ditto
33844         (mono_read32): ditto
33846 2001-11-30  Dick Porter  <dick@ximian.com>
33848         * exception.c: Implement mono_exception_from_name()
33850 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33852         * metadata.h, metadata.c: remove params_size and locals_size and their
33853         calculation from the metadata code: they are only usefult to the
33854         interp.
33856 2001-11-29  Radek Doulik  <rodo@ximian.com>
33858         * object.c (mono_ldstr): swap bytes here, it's probably not the
33859         best place, but works for me now, I'll redo it once I know mono
33860         better, also note that I add PROT_WRITE and don't reset back, also
33861         note that it's only affects big endians, so x86 should be OK
33863         * mono-endian.h (read16): use just glib macros for both endians
33865         * mono-endian.c: removed as glib macros are used in in
33866         mono-endian.h so we don't need to care about endianess for read
33867         macros as glib does that for us already
33869 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
33871         * class.h, class.h: take minimum alignment into consideration so
33872         that the fields of a class remain aligned also when in an array.
33874 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33876         * loader.h, loader.c: add mono_method_get_param_names().
33877         * class.c: 0-init class fields.
33879 2001-11-26  Dick Porter  <dick@ximian.com>
33881         * icall.c:
33882         * threads-types.h:
33883         * threads.c: New file that handles System.Threading on all platforms
33885         * object.c: 
33886         * object.h: Remove the synchronisation struct from MonoObject,
33887         replace it with a pointer that gets initialised on demand
33889         * Makefile.am: Replace all the system-specific threading code with
33890         a single file that uses the new wrapper library
33892 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
33894         * class.c, class.h: add mono_install_trampoline() so that the runtime
33895         can register a function to create a trampoline: removes the ugly
33896         requirement that a runtime needed to export arch_create_jit_trampoline.
33897         * object.h, object.c: added mono_install_handler() so that the runtime
33898         can install an handler for exceptions generated in C code (with
33899         mono_raise_exception()). Added C struct for System.Delegate.
33900         * pedump.c: removed arch_create_jit_trampoline.
33901         * reflection.c: some cleanups to allow registering user strings and
33902         later getting a token for methodrefs and fieldrefs before the assembly
33903         is built.
33904         * row-indexes.h: updates and fixes from the new ECMA specs.
33906 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
33908         * class.h, class.c: add enum_basetype field to MonoClass.
33909         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
33910         to get index in the constant table reated to a field, param or
33911         property.
33912         * reflection.h, reflection.c: handle constructors. Set public-key and
33913         version number of the built assembly to 0.
33914         * row-indexes.h: update from new ECMA spec.
33916 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33918         * class.h, class.c: add a max_interface_id to MonoClass.
33919         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
33920         since it's used to do that. Added mono_type_type_from_obj().
33921         Make GetType() return NULL instead of segfaulting if the type was not
33922         found. Handle simple arrays in assQualifiedName.
33923         * object.h: add a struct to represent an Exception.
33924         * reflection.c: output call convention in method signature.
33925         Add code to support P/Invoke methods and fixed offsets for fields.
33927 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
33929         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
33930         the value.
33931         * icall.c: use mono_array_addr instead of array->vector: fixes the
33932         reflection image writing.
33933         * reflection.c: init call convention byte to 0 in method signature.
33934         Encode the property signature. Don't output property-related methods
33935         twice. Really process the properties for a type (don't cast a field to
33936         a property, my mom always told me that).
33937         Fix 64 bit issues in pointer alignment in a different and more
33938         readable way.
33940 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
33942         * loader.h: Removed type class from MonoDefaults, added monotype
33944         * loader.c: Loaded MonoType, removed loading of Type
33946         * icall.c (my_mono_new_object): Now returns a System.MonoType,
33947         and fills in System.Type._impl with a RuntimeTypeHandle rather
33948         than the actual MonoClass *
33950         (ves_icall_type_from_handle): change from type_class to
33951         monotype_class
33953         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
33954         implemented
33956         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
33957         implemented
33959         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
33961         (ves_icall_System_Reflection_Assembly_GetType): implemented
33963         (ves_icall_System_MonoType_assQualifiedName): implemented
33965         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
33967 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
33969         * assembly.c (mono_assembly_open): Implement a cache for the
33970         assemblies. 
33972         (mono_assembly_close): only destroy the assembly when the last
33973         reference is gone.
33974         
33975 2001-11-09  Dick Porter  <dick@ximian.com>
33977         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
33979 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
33981         * class.c (mono_class_metadata_init): bug fix: compute the right slot
33983 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33985         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
33986         from Martin Weindel.
33987         * object.h: add mono_string_chars ().
33989 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
33991         * reflection.c (build_compressed_metadata): Eliminates warnings
33992         and uses 64-bit clean code.
33994         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
33995         (mono_type_equal): Change signature to eliminate warnings.
33997 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33999         * icall.c, loader.c: remove the internalcall array constructors.
34000         Changes to match the new MonoArray structure.
34001         * object.h, object.c: an array object doesn't allocate an extra
34002         vector. Add mono_array_new_full () to create jagged arrays easily.
34004 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34006         * metadata.h, metadata.c: add mono_metadata_field_info () to
34007         retreive all the info about a field from vairous tables.
34008         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34009         * class.h, class.c: augment MonoClassField with more info.
34010         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34011         policy and load a field's RVA if needed.
34013 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34015         * class.c (mono_class_metadata_init): create a trampoline for all
34016         virtual functions instead of actually compiling them.
34018 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34020         * class.h, class.c: include name in MonoClassField.
34021         * class.c: fix fundamental type of System.Object and System.String.
34022         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34023         tokens in ldtoken.
34024         * icall.c: remove internalcalls for the Reflection stuff that is now
34025         done in C# code.
34026         * loader.c: mono_field_from_memberref () implementation.
34027         * mono-endian.c: thinko (s/struct/union/g).
34028         * object.c, object.h: make the mono_string_* prototypes actually use
34029         MonoString instead of MonoObject.
34030         * reflection.c, reflection.h: updates for changes in the reflection
34031         code in corlib: we use C structures that map to the actual C# classes.
34032         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34033         fat method header if needed and use the info from the ILGenerator for
34034         methods. Handle fields in types. Misc fixes.
34036 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34038         * class.c (mono_class_metadata_init): bug fix: always allocate
34039         space for static class data
34041 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34043         * class.c (mono_compute_relative_numbering): use relative
34044         numbering to support fast runtime type checks.
34046 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34048         * class.c (mono_class_create_from_typeref): added debugging output
34049         to print class name when MonoDummy is returned instead of real class
34051 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34053         * class.c (mono_class_metadata_init): interface offset table now
34054         contains pointers into the vtable - this is more efficient for the jit
34056 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34058         * class.c (mono_class_metadata_init): use a temporary vtable (the
34059         old algorithm only worked for the interpreter, but not for the jit)
34061 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34063         * loader.c (method_from_memberref): use mono_class_get to get the
34064         class of an array instead of using System.Array directly.
34065         (mono_get_method): also add MEMBERREF methods to the method cache
34066         which usefull for arrays.
34068 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34070         * pedump.c (arch_compile_method): added to compute vtable entry
34072         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34073         number of interfaces.
34074         
34075         * class.h: merged MonoArrayClass into MonoClass
34077         * class.c (mono_class_create_from_typedef): compute the vtable size and
34078         allocate space to include the vtable inside MonoClass
34079         (mono_class_metadata_init): initialize the vtable
34081 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34083         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34084         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34085         * image.c: endian fixes by Laurent Rioux.
34086         * object.h, object.c: rename MonoStringObject to MonoString and
34087         MonoArrayObject to MonoArray. Change some function names to conform to
34088         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34089         guint16* as first argument, so don't use char*.
34090         Provide macros to do the interesting things on arrays in a portable way.
34091         * threads-pthread.c: updates for the API changes and #include <sched.h>
34092         (required for sched_yield()).
34093         * icall.c: updates for the API changes above.
34094         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34095         platforms that need them.
34097 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34099         * class.c: set the correct type for all the fundamental
34100         type when loading the class.
34102 2001-10-05  Dick Porter  <dick@ximian.com>
34104         * threads-pthread.c (pthread_mutex_timedlock): Simple
34105         compatibility version for C libraries that lack this call.
34107 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34109         * class.c: MonoTypes stored in MonoClass are stored as
34110         fundamental MonoTypes when the class represents a
34111         fundamental type (System.Int32, ...).
34112         The TypeHandle return by ldtoken is a MonoType*.
34113         * icall.c: ves_icall_get_data_chunk () write out all the
34114         PE/COFF stuff. Implement ves_icall_define_method (),
34115         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34116         * image.c: properly skip unknown streams.
34117         * loader.h, loader.c: add type_class to mono_defaults.
34118         * metadata.c, metadata.h: export compute_size () as
34119         mono_metadata_compute_size () with a better interface.
34120         Typo and C&P fixes.
34121         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34122         * reflection.c, reflection.h: many cleanups, fixes, output method
34123         signatures and headers, typedef and typeref info, compress the metadata
34124         tables, output all the heap streams, cli header etc.
34125         * row-indexes.h: typo fixes.
34127 2001-10-04  Dick Porter  <dick@ximian.com>
34129         * object.h: Add a synchronisation mutex struct to MonoObject
34131         * object.c (mono_new_object): Initialise the object
34132         synchronisation mutexes
34134         * icall.c: System.Threading.Monitor internal calls
34135         
34136         * threads-pthread.h:
34137         * threads-pthread.c: System.Threading.Monitor internal calls
34139         * threads-types.h: New file, includes the system-specific thread
34140         structures
34141         
34142         * threads-pthread-types.h:
34143         * threads-pthread-types.c: New files, handle pthread-specific
34144         synchronisation types
34146         * threads-dummy-types.h: 
34147         * threads-dummy-types.c: New files of dummy support for
34148         thread-specific types
34150         * metadata.c:
34151         * image.c:
34152         * pedump.c: include mono-endian.h not endian.h
34153         
34154         * Makefile.am: More threads files.
34155         Name mono-endian.h not endian.h
34157 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34159         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34160         stuff and implement a few more bits.
34161         * icall.c: a field needs to be dereferenced twice. Do not use the same
34162         name for two variables in the same scope.
34163         * image.c, image.h: cleanups.
34165 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34167         * class.c (mono_class_metadata_init): bug fix: compute the right size
34169 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34171         * icall.c: implemented some of the Reflection internalcalls.
34172         * image.c, image.h: start writing out the PE/COFF image.
34173         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34174         that does the reverse than decode_blob_size ().
34175         * object.c: use mono_metadata_encode_value (). Move here
34176         temporary implementation of mono_string_to_utf8 ().
34177         * rawbuffer.c: make malloc_map static.
34179 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34181         * metadata.c: fix type comparison for arrays.
34182         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34183         Added a couple of new classes to monodefaults.
34184         * icall.c: added a couple of Reflection-related internalcalls.
34185         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34186         Added a byval_arg MonoType to MonoClass.
34188 2001-09-28  Dick Porter  <dick@ximian.com>
34190         * icall.c:
34191         * threads-pthread.h: 
34192         * threads-pthread.c: Implemented internal calls for
34193         LocalDataStoreSlot operations.  Applied mutexes around all shared
34194         data.  Reworked the thread creation and Start() operations to
34195         avoid a race condition.
34196         
34197         * threads-dummy.h:
34198         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34200 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34202         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34204 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34206         * class.c, loader.c: warn and return NULL instead of erroring out.
34207         * icall.c: added System.AppDomain::getCurDomain().
34208         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34210 2001-09-25  Dick Porter  <dick@ximian.com>
34212         * threads-pthread.h:
34213         * threads-pthread.c: Implemented timed thread joining and added
34214         System.Threading.Thread::Join_internal internal call
34216         * icall.c: Added System.Threading.Thread::Join_internal internal call
34218         * threads-dummy.h:
34219         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34221 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34223         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34224         mono_string_intern () to implement the semantics of the ldstr opcode
34225         and the interning of System.Strings.
34226         * icall.c: provide hooks to make String::IsIntern and String::Intern
34227         internalcalls.
34229 2001-09-23  Dick Porter  <dick@ximian.com>
34231         * threads-dummy.c: 
34232         * threads-dummy.h: New files of dummy threading routines
34234         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34235         support code based on system specifics
34237         Rename PTHREAD_LIBS to THREAD_LIBS
34238         
34239 2001-09-23  Dick Porter  <dick@ximian.com>
34241         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34242         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34243         internal calls.
34244         (mono_thread_init): Set up a Thread object instance to return when
34245         the main thread calls Thread.CurrentThread
34246         (mono_thread_cleanup): Wait for all subthreads to exit
34248         * icall.c: New internal calls for System.Threading.Thread::Sleep
34249         (including Schedule) and CurrentThread
34251         * threads.h: New file, to insulate thread-specific stuff from the
34252         rest of the code
34254 2001-09-21  Dick Porter  <dick@ximian.com>
34256         * threads-pthread.h: 
34257         * threads-pthread.c: New file, for handling pthreads-style
34258         threading support.  Start() now starts a new thread and executes
34259         the ThreadStart delegate instance.
34261         * icall.c: Added the internalcall for
34262         System.Threading.Thread::Start_internal
34264         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34266 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34268         * loader.c: work around the different signatures for delegates
34269         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34271 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34273         * class.h, class.c: add mono_class_get_field_from_name ().
34274         * *: Fix C comments and other ANSI C issues.
34276 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34278         * endian.h, assembly.c: fix some endianness issues.
34280 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34282         * loader.h, load.c: add delegate_class to mono_defaults.
34283         Handle runtime provided methods in mono_get_method ().
34285 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34287         * loader.c (mono_get_method): use pinvoke for internal call
34289         * icall.c: use pinvoke for internal call
34291         * loader.c (method_from_memberref): set the method name
34293 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34295         * metadata.c: help the compiler generate better code for
34296         mono_class_from_mono_type ().
34298 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34300         * class.c (mono_class_metadata_init): delayed computing of the
34301         class size to mono_class_metadata_init ()
34303 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34305         * class.c, class.h: add an interfaces member to MonoClass.
34306         * image.c, image.h: add assembly_name field to MonoImage
34307         from the assembly table.
34308         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34310 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34312         * class.c: Handle Array in mono_class_from_mono_type ().
34313         * metadata.c, pedump.c: some endian fixes.
34315 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34317         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34318         * metadata.c: fix small problem introduced with the latest commit.
34320 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34322         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34323         We don't need a MonoMetadata pointer anymore to compare signatures in
34324         mono_metadata_signature_equal (), update callers.
34325         Reduced memory usage an number of allocations for MonoMethodHeader and
34326         MonoMethodSignature.
34328 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34330         * metadata.c: added compare for szarray.
34332 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34334         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34335         and add a couple more types to it and mono_defaults. Give an hint on
34336         classes that need implementing in our corlib and are referenced
34337         in mscorlib.
34339 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34341         * class.h, class.c: keep track if a class is also an Enum.
34342         * loader.c: Implement a couple more types for use in libffi
34343         marshalling. Gives better diagnostics when failing to dlopen
34344         a library. Set method->klass for P/Invoke methods, too.
34346 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
34348         * class.c, class.h: add a MonoType this_arg to MonoClass that
34349         represents a pointer to an object of the class' type that
34350         can be used by the interpreter and later the type cache.
34351         Add best guess alignment info for valuetype objects.
34353 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
34355         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
34356         into MonoType: one less level of indirection and allocation and
34357         simplifies quite a bit of code. Added cache for MonoTypes that are
34358         used frequently, so that we don't need to allocate them all the time.
34360 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
34362         * class.c (mono_class_create_from_typedef): System.Enum is also a
34363         value type, although it does not derive from System.ValueType
34364         (maybe a bug in the ms compiler?)
34366         * metadata.c (mono_type_size): return the right size for value types
34368         * loader.c (mono_get_method): only initialize method header if not abstract
34370         * class.c (mono_class_from_mono_type): use mono_default values. 
34372 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
34374         * *: use MonoClass pointers instead of <type_tokens>
34375         
34376         * class.h: new flag: metadata_inited.
34378         * class.c (mono_class_metadata_init): impl.
34379         (mono_class_instance_size): impl.
34380         (mono_class_data_size): impl.
34382 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34384         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
34385         MonoClass now has the name and name_space fields. 
34386         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
34387         mono_get_method () takes and optional MonoClass as argument.
34388         Removed mono_typedef_from_name() and added mono_class_token_from_name()
34389         instead that takes advantage of a map from class names to typedef
34390         tokens in MonoImage.
34392 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
34394         * metadata.c: zero is not a valid alignment boundary.
34395         Merge MONO_TYPE_VOID in default decoding code.
34397 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
34399         * image.h: merged MonoMetadata into MonoImage
34401         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
34402         identify the type of elements.
34404 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
34406         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
34407         * cil-coff.h: split MonoMSDOSHeader and add size info.
34408         * image.c: add some consistency checks.
34409         * metadata.c: fix row size computation: one programmer
34410         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
34411         add explanation for the locator routine.
34412         Fix decoding of size in method header.
34413         
34414 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
34416         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
34417         (g_concat_dir_and_file): Bring g_concat_dir_and_file
34418         function from gnome-libs.  This uses the right path separator
34419         based on the OS, and also works around a bug in some systems where
34420         a double slash is not allowed. 
34421         (default_assembly_name_resolver): Use g_concat_dir_and_file
34422         (mono_assembly_open): ditto.
34424 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
34426         * metadata.c (mono_metadata_signature_equal): impl.
34428         * *: void is now a realy MonoType (instead of using NULL)
34429         
34430         * metadata.c (do_mono_metadata_parse_type): use
34431         mono_metadata_parse_type to parse void value.
34433 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
34435         * metadata.c, metadata.h: in the signature and method header store
34436         only the space required for holding the loca vars and incoming arguments.
34438 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
34440         * metadata.c (do_mono_metadata_parse_type): treat void like any
34441         other type (instead of assigning NULL);
34443 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
34445         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
34447 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
34449         * image.c (do_mono_image_open): added a cache for arrays.
34451 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34453         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
34454         decode a single column from a row in a metadata table and changes
34455         to take advantage of it in the typedef locator (gives a nice speed up).
34456         Store offset info for function params.
34458 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
34460         * image.h (MONO_IMAGE_IS_CORLIB): removed 
34462 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
34464         * assembly.c: how could mono_assembly_close () had ever worked?
34465         * metadata.c, metadata.h: provide offset info for local vars.
34466         Implement mono_type_size () to take care of alignment as well
34467         as size (it was mono_field_type_size in cli/class.c before).
34469 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
34471         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
34473         * assembly.h (CORLIB_NAME): set to corlib.dll
34475         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
34477 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34479         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
34480         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
34481         tokentype.h: massive namespace cleanup.
34483 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34485         * metadata.h, metadata.c: decode exception clauses when parsing method header.
34487 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
34489         * metadata.c (mono_metadata_free_type): added check for type !=
34490         NULL (void) before calling mono_metadata_free_type()
34492 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
34494         * metadata.h, row_indexes.h: added header with enumerations to use
34495         to index in the columns from tables in metadata and to decode coded
34496         tokens: we should start using this instead of embedding magic numbers
34497         all over the code.
34499 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
34501         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
34502         Move metadata_t info from cli_image_info_t to MonoImage, where
34503         it's easily accessible. Changed all the uses accordingly.
34504         Added the method and class caches to MonoImage.
34505         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
34506         and mono_metadata_decode_value () signature to be more consistent
34507         with the other parse functions (and simplify code). Taken advantage
34508         of zero-length array allocation with GCC. Removed reduntant (and
34509         wrong) MonoFieldType struct and use MonoParam instead. Changed
34510         mono_metadata_parse_field_type () to use common code for parsing.
34511         Added mono_metadata_typedef_from_field () and
34512         mono_metadata_typedef_from_method () to lookup a typedef index from a
34513         field or method token.
34514         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
34516 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
34518         * metadata.c (mono_metadata_parse_field_type): Implement. 
34519         (do_mono_metadata_parse_type): Split engine from
34520         mono_metadata_parse_type, so that we can create smaller structures
34521         for things that just have one pointer to the MonoType (look at
34522         the MonoFieldType)
34524 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
34526         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
34527         as Jan Gray found out, it is incorrect. 
34529 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
34531         * assembly.c: Implement asssembly loading.  This loads an image
34532         and loads all the referenced assemblies.  Come to think of it, we
34533         could always do lazy loading of the assemblies. 
34535         * image.c (mono_image_open): Keep loaded images in a hashtable.
34537         * image.h (MonoImage): Add reference count.
34539 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
34541         * assembly.c (mono_assembly_open): Keep track of the file name in
34542         case the assembly has no ASSEMBLY table.
34544         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
34545         from get.c here.
34547 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
34549         * metadata.c, metadata.h: decode local vars in method header
34550         parse function. Change callers accordingly.
34552 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
34554         * metadata.h, cil-coff.h: protect against multiple inclusion.
34555         Added some new structures to hold information decoded from metadata:
34556         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
34557         and relevant decoding/free functions.
34558         * metadata.c: implement decoding functions. Add warning for out of bounds
34559         index in mono_metadata_locate(). Implement mono_get_method () to retreive
34560         all the info about a method signature and invocation. Remove check on
34561         uninitialized local var in parse_mh() and fix memory leak.
34563 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
34565         * metadata.h: More macros.
34567         * tokentype.h: New file.
34569 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
34571         * assembly.c: added a consistency check and initialize
34572         some structures with g_new0().
34573         * metadata.c: fixed a couple more bugs in table size computation
34574         and add other checks for out-of bound access to metadata.
34576 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
34578         * metatada.c: fix bugs computing table sizes. Spew a
34579         warning when index in string heap is out of bounds.
34581 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
34583         * metadata.h: Add a couple of macros to manipulate tokens. 
34585 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34587         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
34588         cli_section_tables).
34590 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
34592         * metadata.c (mono_metadata_user_string): New function, provides
34593         access to the UserString heap. 
34595 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
34597         * metadata.c: Add inline documentation.
34599 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
34601         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
34602         files. 
34604 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
34606         * typeattr.h: New file, TypeAttribute flags. 
34608 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
34610         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
34611         mono_assembly_ensure_section): Section loading code.
34612         (load_section_tables): Load the sections.
34614         * mono/metadata/metadata.c (mono_metadata_locate_token,
34615         mono_metadata_locate): Functions to locate the information
34616         definition given a token or a table and an index.
34617         (mono_metadata_compute_table_bases): New.
34618         (compute_size): New function to compute the sizes of the various
34619         tables.
34621         * mono/metadata/metadata.h: Finish listing the different index
34622         types. 
34624         * mono/metadata/pedump.c: Improve to dump new information.
34626 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
34628         * mono/metadata/metadata.c: Entered all the tables matching
34629         Beta2. 
34631         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2