2009-12-30 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blobd10196a2c272b7fd5e5ab7ee14a65f4a8708ecba
1 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
3         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
5 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
7         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
8         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
9         we can't remove it from it since we don't hold the lock.
10         (mon_new): Free the orphaned events here when a mon structure is added to the
11         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
12         this down.
14 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
16         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
17         as max stack might be zero.
19         Fixes #562320.
21 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
23         Rework all uses of mono_class_setup_methods to accept that it can fail now.
25         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
26         instances if the GTD did.
28         * class.c (mono_class_setup_properties): Ditto.
30         * class.c (mono_class_setup_events): Ditto.
32         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
34         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
35         error setting.
37         * class.c (mono_class_init): Fail if GTD did.
39         * cominterop.c:
40         * generic-sharing.c:
41         * icall.c:
42         * loader.c:
43         * object.c:
44         * verify.c: Properly handle failure of mono_class_setup_methods.
46 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
48         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
49         mono_class_inflate_generic_method_full internal.
51         * class.c (inflate_generic_context): Now takes a MonoError argument.
53         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
54         errors.
56 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
58         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
59         they cannot be patched. Partly fixes #564408.
61 2009-12-24  Mark Probst  <mark.probst@gmail.com>
63         * metadata-internals.h, reflection.c: Use the
64         MonoDynamicImage.handleref hash table only with unmanaged keys,
65         and add a managed hash table handleref_managed for managed keys.
67 2009-12-24  Mark Probst  <mark.probst@gmail.com>
69         * sgen-gc.c: Unset to-space bumper between collections.  It might
70         become invalid due to degraded allocations.
72 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
74         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
75         with the one from the original method.
77         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
78         compatibility.
80         * verify-internals.h: Add new function to the internal API.
82 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
84         * culture-info-tables.h: regenerated it to include the Georgian culture.
86 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
88         * sgen-gc.c: Include mono/utils/memcheck.h.
90         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
91         instead of the current domain, since the two might not match if this is called
92         from the debugger.
94         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
95         domain which created this assembly.
97 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
99         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
101 2009-12-17  Mark Probst  <mark.probst@gmail.com>
103         * sgen-gc.c: Managed implementation of the specialized generic
104         store write barrier.
106 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
108         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
109         A private virtual newslot method is used to implement an interface method without exposing
110         it to users. When querying for public instance methods, such method would hide a public one
111         on a parent type.
113         Fixes #564379.
115 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
117         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
118         conventions.
120 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
122         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
124 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
126         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
127         as they are no longer used.
128         
129          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
131         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
133 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
135         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
136         if the owner class has not been finished before returning reflection_info.      
138         Fixes #565127.
140 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
142         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
143         param doesn't have custom attributes. Fixes #565117.
145         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
146         #565120.
148 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
150         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
152 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
154         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
155         same amount done by a core-clr enabled runtime.
157 2009-12-15  Marek Habersack  <mhabersack@novell.com>
159         * appdomain.c (mono_make_shadow_copy): make sure access mode of
160         the target files is reset to writable by owner and readable by
161         everyone else to prevent problems when updating shadow copies of
162         files whose source is read-only. Fixes bug #556884
164 2009-12-15  Mark Probst  <mark.probst@gmail.com>
166         * class.c (mono_generic_class_get_class): Allocate the generic
167         class via malloc again, so that it can be freed when any one of
168         the images of its constituent types is closed.
170         * metadata.c: When closing an image, don't free generic insts and
171         generic classes right away, but put them into a list for later
172         freeing.
174         * image.c, metadata-internals.h: Store the free list and in the
175         second pass of closing an image, free it.
177 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
179         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
181         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
182         types in type_hash.
184         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
186 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
188         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
189         user type.
191         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
192         is used.
194 2009-12-14  Miguel de Icaza  <miguel@novell.com>
196         * verify.c (mono_method_verify): The Unused opcodes produce an
197         InvalidProgramException on .NET
199 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
201         * loader.c (mono_method_get_header): Move assert after the verifier
202         has been called on the method header.
204 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
206         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
208         * appdomain.c: Bump corlib version.
210 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
212         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
213         types as well since otherwise generic instances would not return UT as arguments but
214         their undelying system type.
216         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
217         to reflect the fact that they can have now multiple different types.
219         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
221         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
223         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
225         * reflection.c (mono_reflection_register_with_runtime): Init super types
226         if the image is not dynamic.
228         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
229         check if the generic type definition is a TypeBuilder.
231         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
232         doesn't belong to a dynamic image, skip initialization.
234         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
235         base definition is not a dynamic type.
237 2009-12-11  Marek Habersack  <mhabersack@novell.com>
239         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
240         mono_profiler_string_allocation
242         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
243         if string profiling is enabled, call
244         mono_profiler_string_allocation
246         * profiler.h: added two MonoProfileFlags -
247         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
248         installation functions for the hooks below.
250         * profiler-private.h, profiler.c: added two hooks:
251         mono_profiler_string_allocation called whenever a string is
252         allocated by InternalAllocateStr and mono_profiler_iomap called
253         whenever IOMAP code performs an adjustement on a file path.
255 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
257         * boehm-gc.c: fixed race condition while getting the target of a
258         disappearing link (bug #522233).
260 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
262         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
263         the error.
265 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
267         * reflection.c: Add mono_reflection_register_with_runtime icall to
268         allow a MonoGenericClass to register itself as the managed mirror of
269         a given generic instance.
270         This is a temporary workaround until all MGC instantiation happens in
271         managed code.
273         * object-internals.h: Ditto.
275         * icall-def.h: Ditto.
277 2009-12-10  Mark Probst  <mark.probst@gmail.com>
279         * sgen-gc.c (find_in_remsets): Also search the generic store
280         remsets.
282 2009-12-10  Mark Probst  <mark.probst@gmail.com>
284         * sgen-gc.c: Don't access class names in debugging code when
285         unloading a domain, because they might not be valid anymore.
287 2009-12-10  Mark Probst  <mark.probst@gmail.com>
289         * domain.c, domain-internals.h: New function mono_domain_unset().
291         * appdomain.c (unload_thread_main): Detach the thread again at the
292         end.
294         * threads.c: When a thread exists or is detached, unset its domain
295         so that it's NULL when, for example, a pthread destructor runs.
297         * sgen-gc.c: Assert that there is no domain set after a thread is
298         done.
300 2009-12-10  Mark Probst  <mark.probst@gmail.com>
302         * class.c (mono_generic_class_get_class),
303         metadata.c (free_generic_class): Allocate generic MonoClass's from
304         the image mempool, not via malloc.  The problem with malloc is
305         that when unloading a domain those classes are freed before
306         clearing the heap and SGen needs the classes.  Rewriting the
307         unloading code to do the free later would be more work and there's
308         no point in using malloc anyway.
310 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
312         * loader.c (mono_method_signature): Always call mono_loader_unlock 
313         before returning.
315 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
317         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
318         user string blobs.
320         * verify-internals.h: Add new function to the internal API.
322         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
323         check if it's a valid string.
325         * object.c (mono_ldstr): Ditto.
327         Fixes #561943.
329 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
331         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
332         from a method before returning it. This is the expected behavior.
334 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
336         * reflection.c (inflate_method): Handle the case of a regular system type.
338 2009-12-08  Mark Probst  <mark.probst@gmail.com>
340         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
341         gathering code.
343         * mempool.c, mempool-internals.h: New function
344         mono_mempool_get_bytes_allocated().
346         * Makefile.am: sgen-pinning-stats.c added.
348 2009-12-08  Mark Probst  <mark.probst@gmail.com>
350         * sgen-gc.c (create_allocator): Only use the fast path if the
351         object size is within the small object size limit.
353 2009-12-07  Mark Probst  <mark.probst@gmail.com>
355         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
356         possibly adding padding to sizeof (GCMemSection).
358 2009-12-07  Mark Probst  <mark.probst@gmail.com>
360         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
361         reference is not in the nursery.
363 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
365         * class.c (mono_class_from_typeref): Bounds check idx against the 
366         assemblyref table.
368 2009-12-07  Mark Probst  <mark.probst@gmail.com>
370         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
371         through the potential roots, then sort the results and find the
372         pinned objects from there.
374         * Makefile.am: sgen-pinning.c added.
376 2009-12-07  Mark Probst  <mark.probst@gmail.com>
378         * sgen-gc.c: Record generic stores in specialized remset buffers.
380 2009-12-06  Mark Probst  <mark.probst@gmail.com>
382         * sgen-gc.c: Make pinned chunks the same size as major heap
383         sections, and align them as well, so that we can check whether an
384         object is in a pinned chunk or a major section in constant time.
386 2009-12-06  Mark Probst  <mark.probst@gmail.com>
388         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
390 2009-12-06  Mark Probst  <mark.probst@gmail.com>
392         * sgen-gc.c: Make all major heap sections the same size (currently
393         128k) and allocate them on aligned addresses.  Small heap sections
394         give us better granularity with pinned objects - we can free up
395         much more memory.
397 2009-12-06  Mark Probst  <mark.probst@gmail.com>
399         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
400         output removed.
402 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
404         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
406         * mono/metadata/assembly.c: When opening an assembly image, pass the real
407         names in addition to the runtime generated one.
409         * mono/metadata/image.h: Add a function to take the real name of the assembly
410         image.
412         * mono/metadata/image.c: If a real name has been passed to load an assembly,
413         use it instead of the runtime generated one.
415         Code is contributed under MIT/X11 license.
417 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
419         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
420         before the other checks to prevent problems if the DateTime class is blittable.
421         Hopefully fixes #559600.
423 2009-12-05  Mark Probst  <mark.probst@gmail.com>
425         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
426         returns the largest string length that will not be put into the
427         LOS.
429         * sgen-gc.c, gc-internal.h: New function that returns the largest
430         object size that will not be put into the LOS.
432         * appdomain.c: Bump corlib version.
434 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
436         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
438         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
440 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
442         * reflection.c (inflate_method): Fix signature.
444         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
445         in managed code.
447 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
449         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
451 2009-12-03  Mark Probst  <mark.probst@gmail.com>
453         * sgen-gc.c: Abstract to-space handling.
455 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
457         * loader.c (find_method_in_class): Ignore methods with broken signatures.
459         Fixes #559906.
461 2009-12-03  Mark Probst  <mark.probst@gmail.com>
463         * sgen-gc.c: Only add references from outside the nursery to
464         within the nursery to the global remset list.
466 2009-12-03  Mark Probst  <mark.probst@gmail.com>
468         * appdomain.c (create_exceptions): Set the domain temporarily if
469         necessary to avoid cross-domain references.
471 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
473         * verify.c (get_stack_type): Return that the type is invalid instead of
474         asserting.
476         * verify.c (mono_method_verify): Verify that all locals and arguments
477         have valid stack types.
479         Fixes #559913.
481 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
483         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
484         bounds checking overflow aware.
486         Fixes #559910.
488 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
490         * verify.c (do_invoke_method): Check for invalid method signatures.
492         Fixes #553450.
494 2009-12-02  Jb Evain  <jbevain@novell.com>
496         * appdomain.c (MONO_CORLIB_VERSION): bump.
497         * icall-def.h (get_base_definition): renamed to get_base_method
498         and add a boolean argument indicating we want the original
499         method definition, or the immediate base method.
500         * icall.c: apply the get_base_definition to get_base_method change.
502 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
504         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
506         Fixes #558042.
508 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
510         * class.c: remove asserts for invalid type token in
511         mono_class_name_from_token(), mono_assembly_name_from_token() and
512         mono_class_create_from_typedef () (fixes bug #553318).
514 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
516         * metadata.c, class.c, loader.c: remove assert after bsearch() for
517         incorrect assemblies (bug #553322).
519 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
521         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
523         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
525         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
527         * class.c (inflate_generic_context): Ditto.
529         * loader.c (method_from_methodspec): Ditto.
531         Fixes #558230.
533 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
535         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
537         * class.c (mono_class_create_from_typespec): Ditto.
539         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
541         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
543         Fixes #558184.
545 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
547         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
549         * verify.c (verify_delegate_compatibility): Ditto.
551         * verify.c (do_newobj): Ditto.
553         Fixes #558046.
555 2009-12-02  Mark Probst  <mark.probst@gmail.com>
557         * sgen-gc.c: Use a gray queue instead of requiring that gray
558         objects are in a contiguous region.
560         * sgen-gray.c: The gray queue implementation.
562         * Makefile.am: sgen-gray.c added.
564 2009-12-02  Mark Probst  <mark.probst@gmail.com>
566         * appdomain.c: When unloading a domain, zero its static data and
567         perform a minor collection when using SGen.  That will get rid of
568         all the remsets pointing into that domain's static data.
570         * sgen-gc.c: Allow remsets into static data.  By doing this we
571         need less checks so we're more efficient.
573 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
575         * verify.c (mono_method_verify): Check for catch clauses with broken
576         types.
578         Fixes #558465.
580 2009-12-01  Jb Evain  <jbevain@novell.com>
582         * class.c (make_generic_param_class): set the namespace of
583         the generic parameter class from its owner, if available.
585 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
587         * verify.c (code_bounds_check): Do proper overflow checking.
589         * verify.c (mono_method_verify): The number of switch entries is
590         an unsigned int. Properly bounds check it.
592         Fixes #558594.
594 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
596         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
597         mono_metadata_method_has_param_attrs which only checks if a given param
598         list has a non zero flags entry.
600         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
601         to inform how many params should we expect to decode.
603         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
604         as it's faster than mono_metadata_get_param_attrs.
606         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
607         add mono_metadata_method_has_param_attrs.
609 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
611         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
612         failures.
614         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
615         is -1 but its class is broken.
617         Fixes #558522.
619 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
621         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
622         for parameter overflow.
624         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
625         of mono_metadata_get_param_attrs.
627         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
628         API.
630         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
632 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
634         * class.c (mono_class_setup_fields): Check for fields with broken types.
636         Fixes #558741.
638 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
640         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
641         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
642         its TypeBuilder::CreateType ().
644         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
645         if not needed.
647         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
648         to make setup_interface_offsets happy.
650         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
651         compilation now works.
653 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
655         * appdomain.c (create_exceptions): New helper function extracted from
656         mono_runtime_init () to precreate objects used during exception handling.
657         (mono_runtime_init): Call it.
658         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
660 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
662         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
663         compilation until the proper one is found.
665 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
667         * class.c (mono_class_setup_vtable_general): Cache the result of
668         get_virtual_methods () since it can be slow because of the metadata
669         optimization.
671         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
672         from a MonoValueHashTable for now, since the later is based on an earlier
673         version of hpj's internal probing code and seems to have serious collision
674         issues.
676         * loader.c (mono_get_method_full): Update after the change above.
678 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
680         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
682 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
684         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
685         the GTD instead of the DGC instead of crashing.
687         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
688         required. Inflate fields if needed.
690         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
691         finished. Renamed.
693 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
695         * class.c (check_interface_method_override): Check for NULL signatures and fail
696         the type.
698         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
700         Fixes #553428.
702 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
704         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
705         the MONO_METHOD_FLAGS column instead of decoding the whole row.
707 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
709         * loader.c (field_from_memberref): Resolve the class first then the field
710         signature. Remove a lot of duplicated code and make sure we don't pass valid
711         values to mono_loader_set_error_field_load.
713         Fixes #553306.
715 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
717         * class.c (inflate_generic_type): Change code to use new signature of
718         mono_error_set_bad_image.
720         Fixes #558124.
722 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
724         * verify.c (mono_method_verify): Don't free ctx.params items if 
725         we aborted while inflating the ctx.locals. Complete previous fix
727 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
729         * verify.c (mono_method_verify): Use the uninflated type name, 
730         when the inflated is null, to report errors. Also take care when
731         freeing, not to free everything since, in case of an error, some
732         stuff would be copies (i.e. not allocated by the function itself)
733         Fix bug #558145
735 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
737         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
738         or overflow. The caller must have done this check explicitly. This guard us
739         from accessing invalid memory.
741         * verify.c (do_push_static_field): Check for stack overflow.
743         Fixes #553333.
745 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
747         * loader.c (find_method_in_class): Don't crash if the signature cannot
748         be resolved.
750         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
751         of asserting for the case of invalid params.
753         Fixes #553304.
755 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
757         * image.c (mono_image_load_module): Fix crash when a bad assembly
758         has no module at all (fix bug #553412) and also replace the 
759         g_assert with a return NULL (documented return value for failure)
761 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
763         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
765 2009-11-23  Miguel de Icaza  <miguel@novell.com>
767         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
768         file attribute to managed code and avoid doing the mask/attribute
769         checks here. 
771 2009-11-22  Miguel de Icaza  <miguel@novell.com>
773         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
774         the managed world.
776         * icall-def.h: New entry points.
777         
778 2009-11-19  Mark Probst  <mark.probst@gmail.com>
780         * process.c: Don't put references to managed objects into a
781         g_ptr_array.
783 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
785         * class.c (can_access_internals): Allow CoreCLR to participate in
786         allowing (or not) [InternalsVisibleTo] between assemblies.
787         * security-core-clr.c|h: Make sure that only trusted code (a 
788         superset of platform code) can access the internals of platform
789         code.
791 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
793         * reflection.c: use the correct base class to get the virtual method
794         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
796 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
798         * security-core-clr.c (get_caller_no_reflection_related): 
799         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
800         it's still reflection and must be filtered correctly.
802 2009-11-16  Mark Probst  <mark.probst@gmail.com>
804         * object.c (compute_class_bitmap): Fix for large bitmaps.
806 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
808         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
810         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
811         koush@koushikdutta.com). Disable GC_no_dls on android.
813 2009-11-12  Mark Probst  <mark.probst@gmail.com>
815         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
816         tlab_next points outside the TLAB because the allocator was
817         interrupted.
819 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
821         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
823 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
825         * object-internals.h: Change signature for mono_string_to_utf8_image.
827         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
828         argument.
830         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
831         exceptions due to mono_string_to_utf8.
833 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
835         * object-internals.h: Change signature for mono_string_to_utf8_mp.
837         * object.c (mono_remote_class): Make sure all resources are released before
838         raising an exception.
840         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
842 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
844         * mono-perfcounters.c (network_get_impl): Change variable initialization
845         ordering to fix potential memory leak in case of exceptions.
847         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
848         encoded strings.
849         
850 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
852         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
853         variable initialization ordering to fix potential memory leak in case
854         of exceptions.
856 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
858         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
859         needed.
861 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
863         * appdomain.c: Fix shadow path code to better deal with exceptions.
865 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
867         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
868         exception in the middle of the runtime code.
870 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
872         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
873         leak memory with broken envvar value.
875 2009-11-06  Mark Probst  <mark.probst@gmail.com>
877         * reflection.c (mono_reflection_setup_internal_class): Because
878         nested classes are not added to the name cache, we must put them
879         in the reflection_info_unregister_classes list.
881 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
883         * class.c: When CoreCLR is enabled don't call mono_init_com_types
884         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
885         platform (trusted) code. Instead we return a TypeLoadException to
886         be thrown later. This is the exception thrown by Silverlight 2 if
887         a type, inside application (user) code is marked with [ComImport]
889 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
891         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
892         mono_is_debugger_attached () too.
894         * mono-debug.c (mono_is_debugger_attached): New helper function.
895         (mono_set_is_debugger_attached): Ditto.
897 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
899         * object-internals.h: Add mono_string_to_utf8_checked.
901         * object.c: Implement mono_string_to_utf8_checked.
903 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
905         * class.c: Add missing check for load errors after every
906         call to mono_class_setup_fields
908         Fixes #552282.
910 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
912         metadata-verify.c (verify_tables_schema): Fix the error message.
914 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
916         * metadata.c: Change event table schema to use TDOR for event type
917         as this is what it's meant to be.
919         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
920         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
921         entry.
923         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
924         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
925         rows in MONO_TABLE_GENERICPARAM.
927         Fixes #552289.
929 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
931         * class.c (mono_image_add_to_name_cache): Assert on duplicate
932         insertion.
934         * reflection.c (mono_reflection_setup_internal_class): Avoid
935         registering a gc root the same MonoClass multiple times.
936         Don't register nested types on the global scope as they should
937         not be available there.
939 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
941         * culture-info-tables.h: regenerated.
943 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
945         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
947 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
949         * string-icalls.c|h: Remove string internal calls that are not 
950         used anymore by the class libraries.
951         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
952         which is not used in the class librairies.
953         * icall-def.h: Update tables.
955 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
957         * class.h: Move mono_class_inflate_generic_type_checked...
959         * class-internals.h: to here and make it internal. We don't want to
960         further expose MonoGenericContext. 
962 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
964         * verify.c (mono_method_verify): Improve error message.
966 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
968         * reflection.c (fieldref_encode_signature): If field_image is NULL then
969         the token is already properly encoded. Fixs 4.0 build.
971 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
973         * locales.c (construct_number_format): Check if the number index is
974         valid before trying to use it, if not, just return.
975         
976 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
978         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
979         since that loses the abort state. Fixes #539394.
981 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
983         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
984         explicit this argument to the call signature.
985         (mono_marshal_get_icall_wrapper): Ditto.
987 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
989         * reflection.c (fieldref_encode_signature): Add new field_image parameter
990         to indicate which assembly to use when resolving a custom-mod.
992         Fixes handling of volatile fields used across assemblies as reported in #551513.
994 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
996         * loader.c: Improve error messages.
998 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1000         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1001         of interfaces. Fixes IKVM.
1003         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1005 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1007         * verify.c (verifier_inflate_type): Return the inflated type on success.
1009 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1011         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1013         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1015         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1017         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1018         flag set.
1020         * profiler.c: Add new profiler callbacks for runtime invoke.
1022         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1024 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1026         * sgen-gc.c: Keep track of the reason for a major collection and
1027         write it to the heap-dump file.
1029 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1031         * threads.c: refactor the code that initializes the
1032         thread_start_args into a reusable function and use this in the two
1033         methods that start up threads.
1035 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1037         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1038         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1040 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1042         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1043         Until now, we only had the per-cpu(core) counters.
1045 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1047         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1048         mono_gc_get_suspend_signal(), which returns the suspend signal
1049         number used by the GC.
1051 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1053         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1055         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1056         signalling start_notify.
1058 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1060         * appdomain.c: do not test the st_mode field for shadow-copies.
1061         Fixes bug #545276.
1063 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1065         * threadpool.[ch]: added hooks for thread start/finish and item
1066         processing begin/end. For monotouch use only.
1068 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1070         * threads.c (mono_thread_get_name): New helper function.
1072         * reflection.c (resolve_object): Set handle_class for strings too.
1073         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1074         a cattr blob into a set of arrays and structures without creating the custom
1075         attributes themselves.
1076         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1078         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1080         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1081         function.
1083 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1085         * verify.c: Replace calls to mono_class_inflate_generic_type with
1086         mono_class_inflate_generic_type_checked. Fixes #480005.
1088 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1090         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1091         object since not all paths lead to callees initing it.
1093 2009-10-23  Alp Toker  <alp@nuanti.com>
1095         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1096         header and should not be shipped:
1098         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1099         which is specific to the mono build. Not going to work.
1101 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1103         * security-manager.c: Report if core-clr is active from
1104         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1105         to allow Moonlight BCL to behave appropriately (both in browser
1106         and outside, e.g. smcs)
1108 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1110         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1111         Fixes bug #549108.
1113 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1115         * class.c: fix typo.
1117 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1119         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1120         a MonoError parameter.
1122         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1123         version that can does proper error handling.
1125         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1127         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1129         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1131 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1133         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1134         NO_UNALIGNED_ACCESS is defined.
1136 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1138         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1139         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1140         Fixes #549173.
1142 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1144         * sgen-gc.c: Shorten sections whenever possible.
1146 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1148         * sgen-gc.c: Use our portable semaphore #defines.
1150 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1152         * sgen-gc.c: A debug option for dumping the heap layout to a file
1153         after each collection.
1155 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1157         * sgen-gc.c: Make managed write barriers atomic via
1158         thread-restarts.
1160 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1162         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1163         methods. Fixes #543021.
1165 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1167         * socket-io.[ch]: fix VS build.
1169 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1171         * icall-def.h:
1172         * socket-io.[ch]: implemented SendFile.
1174 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1176         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1177         before the interfaces to avoid crashes later if class initialization fails.
1178         Fixes #548417.
1180         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1181         Fixes #548276.
1183 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1185         * domain.c: Bump 4.0 version.
1187 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1189         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1190         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1191         check since 'pubkey' can't be NULL at this stage
1192         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1193         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1194         initialization of 'iter'
1196 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1198         * cominterop.c : Search the interface parts of vtable to find 
1199           method matches.  Fixes 547030.
1201         Code is contributed under MIT/X11 license.
1203 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1205         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1206         multiple targets. Fixes bug #574426.
1208 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1210         * profiler.h: Put here the definition of
1211         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1212         (and fix the build...).
1214 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1216         * profiler.c, profiler.h, profiler-private.h:
1217         Added support for different ways of getting call chains in stat mode.
1219 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1221         * object.c, object-internals.h: New function for computing the
1222         size of an array, factored out of mono_array_new_full().  Use
1223         SGen's functions for allocating arrays and vectors.
1225         * sgen-gc.c, gc-internal.h: Special functions for allocating
1226         arrays and vectors without race conditions.  A managed array
1227         allocator method.
1229         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1231 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1233         * object.c, object.h, icall.c: Write barriers do the copying now,
1234         as well, so no need for an additional memcpy.
1236         * sgen-gc.c: Lock when storing remsets.  Do the memory
1237         copying/moving in the write barriers.
1239         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1241         * reflection.c: Added an assert.
1243 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1245         * threads.c, process.c: A few missing write barriers.
1247 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1249         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1250         network performance counters for bytes sent per second, bytes
1251         received per second, and bytes total per second.
1253         Code is contributed under MIT/X11 license.
1255 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1257         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1258         Fix warning.
1260 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1262         * threads.c, object-internals.h, object.c: Move code for
1263         transferring an object to a different domain (via
1264         serialization/remoting) to object.c.
1266         * object.c (call_unhandled_exception_delegate): If the exception
1267         is in a different domain than the delegate, transfer the exception
1268         to that domain.
1270 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1272         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1273         Fixes #322934.
1275 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1277         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1279 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1281         * object.c (mono_method_return_message_restore): Handle the case
1282         where the argument is an instance of a generic type.  Fixes
1283         #544446.
1285 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1287         * object.c (set_value): Write barrier fix - we must pass the
1288         count, not the size.
1290 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1292         * domain.c (mono_init_internal): Print a useful error message when encountering
1293         an old mscorlib, instead of crashing. Fixes #544307.
1295 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1297         * appdomain.c (copy_app_domain_setup): Fix a warning.
1299         * debug-helpers.c (dis_one): Ditto.
1301 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1303         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1304         into the new domain, instead of referencing the original one.
1306         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1307         non-static.
1309         * appdomain.c: Corlib version bump.
1311 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1313         * threadpool.c: one more...
1315 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1317         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1318         threads to die because we're shutting down. delgate5.exe works again.
1320 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1322         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1323           ccw_interface_hash table when a ccw is finalized.
1325         Code is contributed under MIT/X11 license.
1327 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1329         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1330         domain and image unloading into two steps.  We must do this
1331         because clearing the domain in SGen requires the class metadata to
1332         be intact, but we need to free the mono_g_hash_tables in case a
1333         collection occurs during domain unloading and the roots would trip
1334         up the GC.
1336 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1338         * object-internals.h: Remove serialized culture fields from
1339         MonoInternalThread.
1341         * icall-def.h, thread-types.h, threads.c: Remove serialized
1342         culture icalls.
1344         * appdomain.c: Corlib version bump.
1346 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1348         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1349         Fixes #543133.
1351 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1353         * sgen-gc.c: Try to shorten the new section after a major
1354         allocation to avoid ever-growing sections.
1356 2009-10-13  Martin Baulig  <martin@ximian.com>
1358         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1359         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1360         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1361         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1363         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1365 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1367         * threadpool.c: fixed the order in which 'completed' and the wait
1368         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1369         No need to use the wait_handle field of ASyncCall. Make sure the
1370         threadpool is active when adding a job or queueing an idle thread.
1372 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1374         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1376         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1377         when using --compile-all.
1379 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1381         * metadata.c (free_generic_class): Unregister the field_objects
1382         roots if we're using SGen.
1384 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1386         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1387         for GenericParamTableEntry.gparam.
1389 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1391         * marshal.c: don't create the handle when calling. It is created later
1392         if needed.
1394 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1396         * sgen-gc.c: Warning fixes.
1398 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1400         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1401         whole heap for cross-domain references before each collection.
1403         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1404         object.
1406         * threadpool-internals.h, threadpool.c: New function
1407         mono_thread_pool_is_queue_array() for checking whether a given
1408         array is used as a (cross-domain) queue by the thread pool code.
1410 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1412         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1413         searches the whole heap for objects containing a specific
1414         reference.  Only for debugging.
1416 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1418         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1420         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1421         byte arrays between domains.
1423 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1425         * threadpool.c:
1426         * class-internals.h:
1427         * mono-perfcounters-def.h:
1428         * mono-perfcounters.c:
1429         -There is a list of idle threads
1430         -Each of those idle threads wait on their own WaitHandle instead
1431         of all of them using the same semaphore. When a new work item is
1432         added, the job is assigned directly to an idle thread or a newly
1433         created one if possible and then the handle for that thread is
1434         signaled. Compare that to the current approach where all the
1435         threads in the pool compete to dequeue a job from the same
1436         queue.
1437         -New struct ThreadPool that brings together the bunch of static
1438         variable for each threadpool (IO and regular).
1439         -New performance counters: # of items added and its rate per
1440         threadpool. The rate will be used later, perhaps together with
1441         other perf. counters, to decide when idle threads should exit.
1443 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1445         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1446         Fix typo on Windows build.      
1447         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1448         
1449         Code is contributed under MIT/X11 license.
1451 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1453         * object-internals.h: The Thread class is split up into Thread and
1454         InternalThread now.  We have exactly one InternalThread per
1455         thread, and at most one Thread per appdomain per thread.  Most
1456         data is stored in InternalThread.  All InternalThread objects live
1457         in the root domain.
1459         * class-internals.h: Add internal_thread_class to MonoDefaults.
1461         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1462         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1463         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1464         resulting from the split of the Thread class.
1466         * gc-internal.h: Prototype for new function for checking whether a
1467         thread is the finalizer thread.
1469         * appdomain.c: Corlib version bump.
1471 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1473         * appdomain.c|h: Add a mono_domain_try_unload method which is
1474         equivalent to mono_domain_unload, except that it returns an exception
1475         instead of throwing it. Make mono_domain_unload use the
1476         mono_domain_try_unload method to avoid code-duplication.
1478 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1480         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1481         a problem.
1483 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1485         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1486         aborting when a conversion is not implemented.
1488 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1490         * verify.c: when comparing culture strings, use g_ascii_strcmp
1492         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1493         when comparing public key tokens to use memcmp on 16 bytes.   I do
1494         not believe this ever worked as advertised in the past.
1496         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1497         which would have always failed earlier.
1499 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1501         * gc.c: Raise a NullArgumentException if the object passed is
1502         null.
1504 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1506         * image.c (mono_image_close): Atomically decrement the reference count and
1507         remove the image from the hash tables, to prevent another thread from seeing a
1508         dying MonoImage. Fixes #541194.
1510 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1512         * threadpool.c: actually use the minimum number of 'completion ports'
1513         (for us is just a potential worker thread).
1515 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1517         * threadpool.c: remove ares_htable. It does not make sense any more
1518         since the same objects are now stored in GC-tracked arrays while they are
1519         in the queue.
1521 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1523         * threadpool.c: increase the minimum length of the queues to 128.
1524         Remove warning.
1526 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1528         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1529         return the modified signature used by string ctors.
1531 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1533         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1534         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1535         method, to be used by full-aot.
1537 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1539         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1540         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1541         be known to be good.
1543         * class.c (mono_class_init): Fail array types if their element type fails initialization
1544         as well.
1546         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1547         initialization, additionally we request the element_type vtable to be initialized as well.
1549         This is fine and should not increase the working set in any meaningful way since it's reasonable
1550         to assume       that most code will create an array and eventually populate it, which will require the
1551         type's vtable to be initialized.
1553         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1555 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1557         * normalization-tables.h : regenerated.
1559 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1561         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1562         a leb128 encoding can take up to 5 bytes.
1564 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1566         * class.c (verify_class_overrides): Remove useless argument.
1568         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1569         before interface enumeration as this is no longer required.
1571 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1573         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1574         used under mono_class_init context. This functions avoid any code path that
1575         calls mono_class_init, which leads it to be slow as some things like the interface
1576         bitmap are not available.
1578         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1579         of it's own broken version. Fixes the verifier part of #538588.
1581         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1582         API.
1584 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1586         * class.c (mono_class_init): Always set an exception in a class if
1587         vtable setup fails.  Fixes #538577.
1589         * generic-sharing.c: Raise an exception if mono_class_vtable()
1590         returns NULL.
1592 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1594         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1595         methods of vtypes, as they could be incorrectly shared with static methods
1596         taking an IntPtr argument.
1598 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1600         * domain.c:
1601         * object.c:
1602         * class-internals.h: renamed waithandle_class to
1603         manualresetevent_class.
1604         * marshal.c: propagate the exception if a remoting BeginInvoke call
1605         fails.
1607 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1609         * object.c: Properly handle vtable failures.
1611 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1613         * socket-io.c: Assert on vtable failure.
1615         * mono-mlist.c: Assert on vtable failure.
1617 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1619         * marshal.c: Assert on vtable failure.
1621 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1623         * icall.c: Properly handle vtable failures.
1625 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1627         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1629 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1631         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1633         * console-unix.c (do_console_cancel_event): Same.
1635 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1637         * class-internals.h: Add mono_class_vtable_full function that allows control
1638         if an exception should be raised or not.
1640         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1641         to do what its documentation say, that is to return NULL and set exception_type on
1642         failure.
1644         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1645         and change the code to honor it.
1647 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1649         * verify.c: Fix typo in error message.
1651 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1653         * security-core-clr.c: Fix default_platform_check so it can run
1654         the runtime coreclr tests (without an infinite recursion when
1655         throwing an exception).
1657 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1659         object.c (mono_delegate_ctor_with_method): Guard against null method.
1661 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1663         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1664         that should be replaced with error handling later.
1666 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1668         * marshal.c (mono_delegate_end_invoke): Fix warning.
1670 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1672         * loader.c (mono_field_from_token): Properly handle invalid
1673         dynamic tokens.
1675 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1677         * pedump.c (verify_image_file): Skip types that can't be
1678         decoded.
1680 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1682         * verify.c: Look for recursive valuetypes only against the
1683         type been initialized as this is a lot simpler and works.
1685 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1687         * verify.c: Ensure that fields are properly loaded before
1688         checking them.
1690 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1692         * object.c (mono_object_get_virtual_method) : Call 
1693           mono_cominterop_get_invoke if the object is a COM object.
1695         Code is contributed under MIT/X11 license.
1697 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1699         * verify.c: Check for recursive valuetype definitions.
1701 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1703         Use inheritance-aware interface offsets. Inherited types use the same offsets
1704         of their parents. This reduce offset duplication in case more than one type in
1705         the inheritance tree explicitly implements the same interface.
1707         This also removes a source of vtable bubbles found in #532409. An abstract type
1708         isn't required to provide abstract methods to all interfaces it implements, which
1709         resulted in a bubble with the previous scheme as the child would get a non-full
1710         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1711         should be fixed.
1713         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1714         it's expected to not cause any significant increase beyond that.
1716         * class.c (setup_interface_offsets): Compute super class iface offsets
1717         first to force sharing.
1719         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1720         dumping only the relevant ones.
1722         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1723         methods a new slot regardless if they belong to an interface or not. This allows
1724         an inherited type to override the iface method separately from the class one.
1726 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1728         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1729         applications that take less than 2s to execute.
1730         Bug #524984 fixed.
1732 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1734         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1736         * object.c (mono_get_runtime_callbacks): New helper function to return
1737         the runtime callbacks.
1739         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1740         mono_get_runtime_build_info () as the display name.
1741         
1742 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1744         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1745         argument, since NEWARR expects a native int. Fixes #481559.
1747 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1749         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1750         against broken SRE methods.
1752 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1754         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1755         a NULL variable. Abort early on failure.
1757 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1759         * class.c (can_access_type): Fail visibility test for non nested
1760         types with nested visibility.
1762 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1764         * assembly.c (parse_public_key): Avoid allocating (and not 
1765         freeing) the public key array when it's not requested by the 
1766         caller.
1767         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1768         ves_icall_System_Threading_Thread_Thread_internal): Free 
1769         allocated memory on error.
1771 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1773         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1775 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1777         * class.c (mono_class_setup_fields): Remove duplicated local variable
1778         named gklass.
1779         Rename gklass to gtd to reflect the fact that it points to the generic
1780         type definition.
1781         Remove the duplicated call to mono_class_setup_fields on gtd and move
1782         the error check to the beginning.
1784 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1786         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1787         Remove cruft of the previous patch.
1789 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1791         * metadata-verify.c (verify_method_table): Check for abstract + final.
1792         Fixes #534175.
1794 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1796         * verify.c (verify_class_fields): Check for duplicate fields.
1798 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1800         * metadata-verify.c: Verify the typeref table for duplicates.
1802 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1804         This reverts r140936 and properly handles interfaces with static methods. The
1805         right fix is to ensure vtables without bubles which is an easier to verify
1806         constraint. We should avoid such special cases as of the reverted patch as those
1807         only make the runtime more brittle.
1809         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1810         static methods on interfaces.
1812         * class.c (setup_interface_offsets): Use the number of virtual methods when
1813         calculating interface offsets instead of the number of methods. This way we
1814         avoid bubles on the layout.
1816 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1818         * metadata-verify.c (verify_metadata_header): Some very smart
1819         obfuscators like to add extra stream headers. Ignore them.
1821 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1823         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1824         methods correctly.
1826 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1828         * metadata-verify.c: Verify for duplicated types.
1830 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1832         * metadata-verify.c (verify_typedef_table): Verify for nested types
1833         without an entry on the nested class table.
1835 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1837         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1838         <tom_hindle@sil.org>. Add locking around hash table accesses.
1840 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1842         * verify.c (mono_verifier_verify_class): Verify all interface if
1843         really are interfaces. Fixes #534184.
1845 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1847         * pedump.c: Initialize all types during metadata validation so we report
1848         errors only detected as part of class initialization.
1850 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1852         * metadata-verify.c (verify_method_table): PInvoke requires method to
1853         be static. Fixes #534189
1855 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1857         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1858         being NULL.
1860 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1862         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1863         for holes or bad methods. Fixes #525314.
1865 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1867         * class.c (setup_interface_offsets): Don't allocate slot
1868         for the same interface multiple times. This creates bubbles
1869         that waster space and make vtable verification harder.
1871         The same interface get a slot multiple times since we need
1872         to get the closure of all implemented interfaces, which means
1873         the same interface is reported multiple times.
1875 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1877         * verify.c (mono_verifier_verify_class): Don't check the fields
1878         of generic instances since the context on which they got expanded
1879         might lead to false positives.
1881         Such thing happens when a generic type is inflated in the context
1882         of a generic method and the inflated type of a field turns into a
1883         generic method argument, which causes the checking code to think
1884         it's an invalid class when it's not.
1886 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1888         * verify.c (mono_type_is_valid_in_context): Verify if type
1889         is NULL and remove duplicate test.
1891 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1893         * verify.c (mono_verifier_verify_class): Check fields for
1894         invalid generic arguments.
1896 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1898         * class.c (verify_class_overrides): Verify if for static
1899         and non virtual methods.
1901 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1903         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1904         Check for errors after retrieving the vtable.
1906 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1908         * class.c (mono_class_setup_vtable_general): Verify
1909         if method overrides are valid before processing them.
1911 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1913         * marshal.c (mono_array_to_lparray): Fix minimal build with
1914         cominterop disabled.
1916         * marshal.c (mono_free_lparray): Same.
1918 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1920         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1921         the hash function for the ares_htable.
1923 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1925         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1926         bit for assembly flags. MS is ok with it but there is no spec anywhere
1927         on its mean
1929 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1931         * class.c (mono_class_create_from_typedef): Emit profiler events
1932         in all cases.
1934 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1936         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1937         Release memory on failure.
1939 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1941         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1942         to the internal API.
1944         * metadata.c (get_constraints): Use a single-linked table as we don't
1945         traverse it backward. Fail and return FALSE if only of the contraint types
1946         is not found.
1948         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1949         to mono_metadata_load_generic_param_constraints except for having a return value.
1950         This has to be done since the later is part of the public API.
1952         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1953         and fail the type.
1955         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1956         and fail the method.
1958 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1960         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1961         with MS broken behavior of emmitting EH section sizes without the
1962         header size added.
1964 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1966         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1967         memory until we're sure that we'll need it. This avoids leaking for
1968         broken types or duplicated instantiation.
1970 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1972         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1973         mistake.
1975 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1977         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1978         and expected size calculation.
1980 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1982         * class.c (mono_class_get_field_idx): Add fixme for broken
1983         behavior for types with multiple fields with the same name.
1984         I would rather fix it, but have no idea on how to generate
1985         such artifact for testing.
1987 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1989         * verify.c (verifier_load_field): We should allow references to
1990         fields to be made using the generic type definition. It's up to
1991         the loader system to fail invalid ops.
1993         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1994         are invalid.
1996 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1998         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2000         * metadata-internals.h: Fix declaration of 
2001         mono_metadata_interfaces_from_typedef_full.
2003         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2004         heap_alloc_result parameter that controls if the result should be
2005         g_malloc'd.
2007         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2008         array be g_malloc'd and properly document this public API function.
2010 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2012         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2013         remove METHOD_HEADER_TINY_FORMAT1.
2015         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2017         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2019         Both spec and MS uses only 2 bits to enumerate the kind of header.
2020         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2021         is superfluous, only used for tiny headers with odd code lengths.
2023         This change also make sure that mono doesn't wronly interpret bit 2
2024         of fat header flags, which is currently reserved.
2026 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2028         * metadata.c (do_mono_metadata_parse_type): Do error
2029         checking for element types. Don't abort if presented
2030         with a broken type kind.
2032 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2034         * metadata.c (mono_metadata_parse_method_signature_full):
2035         Gracefully fail bad vararg signatures.
2037 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2039         * profiler.c:
2040         * class.c: Fix warnings for uninitialized variables.
2042 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2044         * icall.c: Fix _NSGetEnviron method declaration warning.
2046 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2048         * icall.c:
2049         * reflection.c: Make bitwise checks explicit.
2051 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2053         * debug-helpers.c:
2054         * marshal.c: Fix printf warnings.
2056 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2058         * reflection.c (encode_cattr_value): Fix a warning.
2060 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2062         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2063         of array bounds.
2065 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2067         * loader.c (mono_method_signature): Don't assert on broken
2068         signature. Print a more useful error message.
2070 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2072         * loader.c (mono_method_get_marshal_info): Assert if
2073         signature is invalid. Bounds check stores to the
2074         mspecs array;
2076 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2078         * loader.c (field_from_memberref): Fix warning.
2080 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2082         * loader.c (mono_method_get_param_names): Check if signature
2083         is null. Don't store beyond the size of the name array.
2085 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2087         * loader.c (mono_get_method_constrained): Check if signature
2088         is null.
2090 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2092         * loader.c (mono_loader_set_error_bad_image): Improve
2093         error messages.
2095 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2097         * loader.c (mono_get_method_full): Convert an assertion
2098         into a loader error.
2100 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2102         * class-internals.h, class.c: Better naming and documentation.
2104 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2106         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2107         obj is NULL.
2109 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2111         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2112         parsing fails.
2114 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2116         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2117         errors with no class set.
2119         * loader.c (field_from_memberref): If the field signature is of the wrong
2120         type fail with a MissingFieldException instead of a BadImageException as
2121         this is the behavior observed on MS. 
2123 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2125         * loader.c (field_from_memberref): Don't crash if either the field
2126         signature or the typespec class are invalid.
2128 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2130         * verify.c (verifier_load_field): Don't allow field related
2131         ops to reference fields on generic type definition.
2133 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2135         * metadata-verify.c: Add new warning level for errors specified
2136         by ECMA 335 but that MS ignores.
2138         * metadata-verify.c (verify_method_table): Make compiler controled
2139         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2140         this check is safe because the end result will only be some visibility
2141         exceptions been thrown.
2143 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2145         * verify.c (get_boxable_mono_type): Don't allow the
2146         use of the generic type definition on boxed type positions.
2148         Fixes #531237.
2150 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2152         * threadpool.c: Make sure no cross-domain references remain in
2153         ares_htable or the arrays that are thrown away when resizing.
2155 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2157         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2158         list of classes for which we have to unregister reflection_info
2159         with the GC and which are not in the namespace cache.
2161         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2162         the class to the list.
2164 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2166         * domain.c (mono_domain_free): Unregister the GC roots in
2167         MonoDomain.
2169 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2171         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2173 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2175         * class.c: Add mono_class_get_field_from_name_full which does
2176         the same as mono_class_get_field_from_name but does check field
2177         signature as well.
2179         * class-internals.h: Export mono_class_get_field_from_name_full as
2180         part of the internal API.
2182         * loader.c (field_from_memberref): Search fields by name and signature
2183         as it's valid to have two fields with same name but different types.
2185         Fixes #528055.
2187 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2189         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2191         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2193         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2194         System.Type.
2196 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2198         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2200         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2202 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2204         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2205         to sgen-scan-object.h, which can be included and parameterized via
2206         macros.
2208         * Makefile.am: sgen-scan-object.h added.
2210 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2212         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2214 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2216         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2217         before clearing a domain in the GC.
2219 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2221         * exception.c (mono_exception_from_name_domain): Actually create
2222         the exception in the specified domain.
2224         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2225         OutOfMemoryException a bit later so that the domain is inialized
2226         "enough" that it works.
2228 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2230         * threads.c (thread_cleanup): Clean up the cached_culture_info
2231         array to prevent cross-domain references.
2233 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2235         * metadata.c: more documentation for MonoType accessors.
2237 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2239         Fix incorrect size definitions where the tail array isn't a list
2240         of pointers
2241         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2242         define size.
2243         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2244         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2245         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2247 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2249         * reflection.h:
2250         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2252 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2254         * metadata.c:
2255         * loader.c:
2256         * metadata-internals.h:
2257         * method-builder.c:
2258         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2260 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2262         * cominterop.c:
2263         * metadata.c:
2264         * metadata.h:
2265         * loader.c:
2266         * marshal.c:
2267         * reflection.c: #define for sizeof in MonoType and
2268         MonoMethodSignature.
2270 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2272         * domain.c:
2273         * domain-internals.h: add and use #define's instead of sizeof()
2274         for MonoJitInfo and MonoJitInfoTable.
2276 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2278         * object.c:
2279         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2281 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2283         * metadata.c:
2284         * metadata.h:
2285         * object.c:
2286         * class-internals.h:
2287         * generic-sharing.c:
2288         * marshal.c: use a #define instead of sizeof() for a few
2289         structures that use a zero-length array.
2291 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2293         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2294         to handle inflated generic methods.
2296         * appdomain.c: Bump corlib version.
2298         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2299         instances.
2301         * reflection.c (fixup_method): Same
2303         * reflection.c (resolve_object): Same.
2305         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2306         g_error and a decent message.
2308 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2310         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2311         from the object because it could not yet be available globally
2312         (it happens if the profiler tries to create a gchandle on the
2313         MonoThread object of a thread that is still registering itself
2314         with the runtime).
2316 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2318         * reflection.c (mono_generic_class_get_object): Initialized the
2319         managed type arguments array.
2321         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2323         * appdomain.c: Bump corlib version.
2325 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2327         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2328         #527902.
2330 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2332         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2333         Avoid a crash if synch_cs is not set.
2334         
2335         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2336         Handle the case when the handle is 0.
2338         * appdomain.c: Bump corlib version.
2340 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2342         * reflection.c (mono_type_get_object): Fix a warning.
2344 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2346         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2347         descriptor here.  We assume it's already been computed.
2349         * generic-sharing.c (instantiate_other_info): Compute the GC
2350         descriptor for info type MONO_RGCTX_INFO_KLASS.
2352 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2354         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2355         type, so don't use MONO_OBJECT_SETREF to set a field.
2357 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2359         * gc.c: We were missing one case where invoking a finalizer would
2360         not reset the domain.  Also, in the finalizer thread loop, assert
2361         that we're in the root domain.
2363 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2365         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2366         if the type is not an array.
2368 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2370         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2371         method bound to the declaring type of the method. Raise an exception
2372         if the type is not a generic param.
2374 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2376         * class.c (print_unimplemented_interface_method_info): Print the
2377         full type name.
2379         * class.c (mono_class_setup_vtable_general): When dealing with a
2380         generic instance first check if the generic type definition is
2381         not broken.
2383 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2385         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2387         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2389         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2391         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2393         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2395         Code is contributed under MIT/X11 license
2397 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2399         * verify.c: Fix naming of stelem and ldelem.
2401 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2403         * generic-sharing.c: Replace the templates lock with the loader
2404         lock because of very hard to resolve deadlock issues.
2406 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2408         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2409         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2410         directly. Fixes #525338.
2412         * class.c (mono_class_get_vtable_size): New helper function.
2414         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2415         the field belongs to the type. Fixes #525733.
2417 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2419         * sgen-gc.c: When we stop a thread and its stack top is not within
2420         its allocated stack (because it's in an altstack signal handler),
2421         restart it and stop it again, until it is.
2423 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2425         * sgen-gc.c: Take a thread's stack top and registers from the
2426         sigcontext in the suspend signal handler.
2428         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2429         stuff to sgen-archdep.h.
2431         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2432         caller, because have code in sgen-archdep.h to acquire that data.
2434 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2436         * profiler.c, profiler.h, profiler-private.h:
2437         Added support for keeping track of code chunks and buffers.
2439 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2441         * metadata-verify.c: Fix endianness problems on decoding functions.
2442         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2444 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2446         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2447         schema for vectors and one dimension SZARRAY.
2449 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2451         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2452         schema for vectors and one dimension SZARRAY.
2454 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2456         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2457         Interlocked.(Compare)Exchange with object arguments, which invoke
2458         write barriers.
2460 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2462         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2463         passed invalid arguments.   Fixes another crasher in the
2464         Silverlight test suite.
2466         * class.c (mono_class_array_element_size): Return 0 for the size
2467         of the class;  This fixes the crasher exposed by :
2469         typeof (void).MakeArrayType ();
2471         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2472         if there is no method to dereference.    Put all the code that
2473         depends on this inside the if (method) block.
2475         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2476         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2478         With this change, we pass the test.
2479         
2480         * reflection.c (mono_reflection_sighelper_get_signature_local):
2481         Only dereference the assembly if it has been set.    Fixes a
2482         crasher exposed by #525328
2484 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2486         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2487         don't perform the store in mono_gc_wbarrier_generic_nostore().
2488         Remove the second argument (value), which is not needed.
2490 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2492         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2493         the build.
2495         * boehm-gc.c: Ditto.
2496         
2497 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2499         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2500         not perform the store itself.  Introduce
2501         mono_gc_wbarrier_generic_nostore(), which is the same as
2502         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2503         store.
2505 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2507         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2508         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2509         we still need the memcpy().
2511 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2513         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2514         so that big arrays are handled correctly.  Always use
2515         safe_object_get_size() to calculate array object sizes, which
2516         takes bounds into account.
2518 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2520         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2521         GC descriptor is computed before we use it.
2523 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2525         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2526         write barrier if necessary.
2528 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2530         * icall-def.h, icall.c, thread-types.h: New separate icall for
2531         VolatileWrite(object&,object) that uses a write barrier.
2533         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2534         barriers in icalls which write to "ref" or "out" arguments.
2536 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2538         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2539         handler in a separate icall, to reduce the size of the wrappers.
2541 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2543         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2545 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2547         * metadata-verify.c (parse_field): Allow byref field.
2549         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2551         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2553 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2555         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2556         Fixes #522784.
2558 2009-07-20  Robert Jordan  <robertj@gmx.net>
2560         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2561         Fix invalid IL in valuetype handling (STOBJ must push the
2562         corresponding class). Fixes bug #523149.
2564         Code is contributed under MIT/X11 license.
2566 2009-07-20  Geoff Norton  <gnorton@novell.com>
2568         * gc.c: Use proper semaphores where available on posix and darwin.
2570 2009-07-19  Geoff Norton  <gnorton@novell.com>
2572         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2574 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2576         * refletion.c (is_sre_usertype): Change name to is_usertype and
2577         invert it's result so it returns true if the type is an user type
2578         and not the opposite.
2580         * reflection.c (is_*_type): Change all of those to use new macro
2581         check_corlib_type_cached that cached the type lookup so we don't
2582         need to do string comparisons all the type. Changed the signature
2583         to take a MonoClass instead.
2585         * reflection.c: Change mono_image_create_token and resolve_object
2586         to use is_sre_* functions.
2588 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2590         * sgen-gc.c: Check for writes to the stack in the managed
2591         wbarrier as well.
2593 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2595         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2596         but put them on a list which is processed with the other thread's
2597         remsets.
2599 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2601         * sgen-gc.c: Fix and enable the internal allocator instead of
2602         using malloc/free (which causes deadlocks).
2604 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2606         * refletion.c: Fix builds with SRE disabled by adding a minimal
2607         implementation of mono_reflection_type_get_handle.
2609 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2611         * refletion.c: Make mono_reflection_type_get_handle non static.
2613         * object-internals.h: Export mono_reflection_type_get_handle.
2615         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2616         unmanaged handle using mono_reflection_type_get_handle.
2618 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2620         * refletion.c: Replace all reads of MonoReflectionType::type with
2621         calls to mono_reflection_type_get_handle. Only the functions that
2622         deal with constructing TypeBuilder::type have not been changed
2623         because they have to deal with NULL values.
2625         This is a first step into supporting reflection types that don't
2626         map directly into their unmanaged counterpart.
2628 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2630         * metadata-verify.c (parse_locals_signature): Don't complain
2631         on signature with zero locals since MS generates it and doesn't
2632         bother with.
2634 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2636         * reflection.c (mono_image_get_array_token): Resolve return
2637         type using mono_reflection_type_get_handle.
2639         * reflection.c (mono_image_get_array_token): Resolve array method
2640         parent type using mono_reflection_type_get_handle.
2642 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2644         * reflection.c (mono_image_basic_init): Applied patch from
2645         <Dax@daxxfiles.net>. Set the public key token from the assembly
2646         builder. Fixes #518909.
2648         * appdomain.c: Bump corlib version.
2650 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2652         * class.c (mono_class_needs_cctor_run): Make this return false if
2653         the class has no cctor.
2655 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2657         * sgen-gc.c: When the minor GC needs to allocate a new section,
2658         invoke the major GC afterwards.
2660 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2662         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2663           Applying the window_style field to the SHELLEXECUTEINFO struct.
2665         Code is contributed under MIT/X11 license.
2667 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2669         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2670         locking earlier.  Fix it in the managed allocator by making sure
2671         that no thread is stopped there before the GC runs.  If we do stop
2672         a thread there, we restart it and let it run a but, until it stops
2673         somewhere else.
2675         * gc-internal.h, gc.c: Function for getting the IP from a signal
2676         context via a function registered by mini.
2678 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2680         * object-internals.h (MonoIntPtr): New structure describing a boxed
2681         IntPtr.
2683         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2684         returns. Fixes #519953.
2686         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2688 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2690         * class-internals.h, generic-sharing.c: New RGCTX info type for
2691         getting a remoting invoke with check wrapper.
2693 2009-07-07  Geoff Norton  <gnorton@novell.com>
2695         * icall-def.h: Fix the enable-minimal build.
2697 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2699         * object-internals.h: Add MonoReflectionDerivedType.
2701         * reflection.c: Implement support for PointerType.
2702         Fixed tons of warnings.
2704 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2706         * object-internals.h: Add MonoReflectionByRefType.
2708         * reflection.c: Implement support for ByRefType.
2710 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2712         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2714         * object-internals.h: Add MonoReflectionArrayType and
2715         mono_reflection_create_unmanaged_type.
2717         * reflection.c: Implement support for ArrayType.
2719 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2721         * metadata-verify.c (is_valid_method_header): Parse EH block
2722         flags correctly.
2724 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2726         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2727         processing the disappearing links, and process disappearing links
2728         in a loop until no new objects are copied.
2730 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2732         * object.c (handle_enum): Invoke the write barrier when copying
2733         value type instances.
2735         * sgen-gc.c: Register remsets for unmanaged write barriers only
2736         when the address written to is actually on the heap.  This makes
2737         set_value() in object.c work without requiring that the result be
2738         on the heap.
2740 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2742         The runtime wrappers are all bound to a given type that must
2743         exist in the same image. For regular images we use the <Module>
2744         type, which is required to exist for all images.
2746         The <Module> type can't be used for dynamic images because it
2747         might not exist at the time the wrapper is required, so we create
2748         a synthetic type to use instead.
2750         The current code works because of the 2 stage setup of MonoClass,
2751         but once this is gone it will no longer work.
2753         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2755         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2757         * object-internals.h: Export mono_image_set_wrappers_type icall
2758         as part of the internal API.
2760         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2761         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2763         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2764         image wrappers_type to the provided value.
2766 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2768         * appdomain.c (deregister_reflection_info_roots): No need
2769         to use the image lock here.
2771 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2773         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2775 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2777         * threads.c: Store the thread start argument in a hash table instead of
2778         registering it as a root, as libgc doesn't support unregistering roots
2779         under windows, leading to 'too many root sets' errors when many threads
2780         are created.
2782         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2783         shutdown, they can still be referenced by the other dying objects.
2784         Fixes #514506.
2786 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2788         * socket-io.c: DontLinger does not allow LingerOptions.
2790 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2792         * metadata-verify.c: The spec doesn't mention that it's possible to add
2793         custom attribute to a generic parameter. Fixed.
2795 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2797         * class.c (inflate_generic_type): Don't crash while trying to output a message
2798         on why we're aborting.
2800 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2802         * socket-io.c: DontLinger can take an int or a boolean too.
2804 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2806         * gc.c: check for a null argument to SuppressFinalize () and
2807         ReRegisterForFinalize ().
2809 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2811         * loader.c (method_from_methodspec): Call into the verifier to check
2812         the signature.
2814         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2816         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2817         part of the internal API.
2819 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2821         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2822         the signature.
2824         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2826         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2827         part of the internal API.
2829 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2831         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2832         the signature.
2834         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2835         blob verification.
2837         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2838         part of the internal API.
2840 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2842         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2843         when doing basic verification. 
2845         This check must be done since the runtime peeks into signatures in much
2846         more places than it does decoding so it makes sense to ensure that all
2847         pointers to blob objects are well formed.
2849 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2851         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2852         Use proper overflow dectection. Fix usage of it.
2854 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2856         * loader.c (field_from_memberref): Call into the verifier to check
2857         the signature.
2859         * loader.c (mono_method_get_signature_full): Same.
2861         * loader.c (method_from_memberref): Same.
2863         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2865         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2866         part of the internal API.
2868 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2870         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2871         or unloaded, still return an AsyncResult, but don't add it to the
2872         threadpool.
2874 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2876         * threads.c: fix missing colon when DEBUG is defined.
2878 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2880         * threadpool.c: Don't add new calls to a threadpool if the domain
2881         of the call is unloading or unloaded.  When dequeuing a job, null
2882         the reference in the queue.
2884 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2886         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2887         generation if an object was moved.
2889 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2891         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2892           parameters of type SAFEARRAY[VARIANT].
2894         * reflection.c (encode_marshal_blob): Properly generate element type
2895           (SafeArraySubType marshal attribute option).
2897         Code is contributed under MIT/X11 license.
2899 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2901         * reflection.c: in mono_method_clear_object () really ensure all the
2902         objects are removed.
2904 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2906         * loader.c (mono_method_signature): Call into the verifier to check
2907         the method signature.
2909         * metadata-verify.c (verify_method_table): Move signature verification
2910         to verify_method_table_full.
2912         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2914         * verify-internals.h: Export mono_verifier_verify_method_signature as
2915         part of the internal API.
2917 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2919         * loader.c (mono_method_get_header): Call into the verifier to
2920         check the method header.
2922         * metadata-verify.c: Add mono_verifier_verify_method_header.
2924         * verify-internals.h: Export mono_verifier_verify_method_header as
2925         part of the internal API.
2927 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2929         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2930         check the field signature. Replace an assert with an explicit check.
2932         * class.c (mono_class_setup_fields): Call into the verifier to check
2933         the field signature.
2935         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2937         * verify-internals.h: Export mono_verifier_verify_field_signature as
2938         part of the internal API.
2940 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2942         * class.c (mono_class_find_enum_basetype): Simplify this function
2943         by moving code outside of the loop and not decoding static fields.
2945 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2947         * metadata-verify.c (verify_typedef_table): Check the extends
2948         token here. Move to here a flags check from verify_typedef_table_full.
2950 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2952         * metadata-verify.c (is_valid_method_header): Fix a warning.
2954         * metadata-internals.h (MonoImage): Remove the unused 
2955         static_rgctx_invoke_wrapper_cache.
2957         * image.c marshal.c: Ditto.
2959 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2961         * image.c (do_mono_image_load): Enable table data verification.
2963 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2965         * metadata-verify.c (is_valid_constant): Fix nullref check.
2967 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2969         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2971 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2973         * sgen-gc.c: Managed allocation with pthreads TLS.
2975         * threads.c, threads-types.h: Functions for the JIT to tell the
2976         runtime whether it supports the MONO_TLS opcode.
2978 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2980         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2981         without methods.
2983 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2985         * metadata-verify.c (is_valid_constant): Fix the string length check.
2986         Use safe overflow checking. Add decent error messages.
2988 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2990         * metadata-verify.c: Move remaininh blob checks to the offline
2991         verification path.
2993 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2995         * metadata-verify.c: Move more blob checks to the offline verification
2996         path.
2998 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3000         * object-internals.h : Adding interrupt_on_stop field.
3002         * threads.c (mono_thread_request_interruption) : On Windows exit the
3003           thread if interrupt_on_stop is set.
3005         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3006          Removing old interrupt logic and setting the interrupt_on_stop for the
3007          thread when calling accept.
3009         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3010          setting the interrupt_on_stop for the thread when calling accept.
3012         Contributed under MIT/X11 license.
3014 2009-06-20  Martin Baulig  <martin@ximian.com>
3016         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3018 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3020         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3021         running in no-exec mode.
3023 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3025         * metadata-verify.c (verify_method_table): Move header
3026         checking to verify_method_table_full.
3028         * metata-verify.c (mono_verifier_verify_full_table_data):
3029         Call verify_method_table_full.
3031 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3033         * metadata-verify.c (verify_field_table): Move signature
3034         checking to verify_field_table_full.
3036         * metata-verify.c (mono_verifier_verify_full_table_data):
3037         Call verify_field_table_full.
3039 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3041         * metadata-verify.c (verify_typedef_table): Move remaining
3042         stuff to verify_typedef_table_full.
3044 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3046         * metadata-verify.c: Kill is_corlib from VerifyContext.
3047         It is only used by the offline mode.
3048         So we better remove it from the runtime path.
3050 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3052         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3053         function that perform the offline metadata verification steps.
3055         * metadata-verify.c (verify_typedef_table): Move some checks to
3056         verify_typedef_table_full and make it been called by new function
3057         mono_verifier_verify_full_table_data.
3059         * pedump.c: Call mono_verifier_verify_full_table_data.
3061         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3062         part of the internal API.
3064 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3066         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3067         check.
3069         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3070         flags bits. SupportLastError was confused as bit 7 instead of 6.
3072         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3073         to check against the module ref table instead of module.
3075         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3077         * pedump.c: Call mono_image_load_names.
3079 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3081         * image.c: Extract mono_image_load_names from do_mono_image_load.
3083         * metadata-internals.h: Export mono_image_load_names as part of
3084         the internal API.
3085         
3086 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3088         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3089         first, as it could reference data in the other caches.
3091 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3093         * metadata-verify.c: Finished with method header verification.
3095 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3097         * metadata-verify.c: Added more header verification code.
3098         Now only EH clauses are missing.
3100 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3102         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3103         for return values.
3105 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3107         * metadata-verify.c: Initial method header verification.
3109 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3111         * metadata-verify.c (verify_import_table): The IAT contents
3112         might end been patched by the windows DL when running with
3113         coree enabled.
3115 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3117         * class.c (mono_class_from_typeref): If the enclosing type is not
3118         found return null instead of crashing. Fixes #508487.
3120 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3122         * normalization-tables.h : updated to the latest unicode charcter
3123           data.
3124         * appdomain.c : bump corlib version.
3126 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3128         * class.c (mono_class_from_name): Fix support for assembly references
3129         in the EXPORTEDTYPE table. Fixes #511704.
3131 2009-06-13  Geoff Norton  <gnorton@novell.com>
3133         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3134         assembly in the target domain.
3136 2009-06-12  Robert Jordan  <robertj@gmx.net>
3138         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3139         because "this" of the managed signature has become an
3140         ordinary parameter in the unmanaged signature.
3142 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3144         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3145         field for owner-less generic containers.
3147         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3148         image field of the owner-less generic containers created here.
3150         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3151         contain is ownerless until the caller sets its owner.
3153         * metadata.c (type_in_image): Handle owner-less generic containers
3154         correctly.
3155         
3156 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3158         * image.c (mono_image_close): Support debug_assembly_unload for
3159         dynamic images too.
3161 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3163         * class.c: Fix some typos in comments.
3165 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3167         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3169         * threads.c (mono_thread_execute_interruption): Avoid creating the
3170         abort exception object while holding the synch_cs lock.
3172 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3174         * metadata-verify.c: Verify basic cattr content.
3176 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3178         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3179         nested types.
3180         
3181         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3182         support for nested types. Fixes #511704.
3184 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3186         * metadata-verify.c: Verify methodspec signatures.
3188 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3190         * metadata-verify.c: Verify typespec signatures.
3192 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3194         * metadata.c (free_inflated_method): Call 
3195         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3197 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3199         * mono-config.c: Small change to report the PPC64/ILP32 model.
3201 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3203         * metadata-verify.c (parse_type): Check szarray.
3205 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3207         * metadata-verify.c (parse_type): Check fnptr.
3209 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3211         * metadata-verify.c (parse_type): Check generic instances.
3213 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3215         * metadata-verify.c (parse_type): Check array shape.
3217 2009-06-05  Robert Jordan  <robertj@gmx.net>
3219         * class.c (mono_class_create_from_typedef): Check only for
3220         mscorlib's System.Array.
3222 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3224         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3225         and generic params. 
3227         * metadata-verify.c (parse_field): Check the signature.
3229 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3231         * metadata-verify.c: Implement locals signature check.
3233 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3235         * domain.c: Add .NET 4.0 Beta 1 version.
3237 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3239         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3240           For QueryInterface on CCWs consider the base class
3241           interfaces as well.
3243         Code is contributed under MIT/X11 license.
3245 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3247         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3249         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3250         used.
3252         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3253         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3255         * generic-sharing.c (inflate_other_data): Ditto.
3256         
3257 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3259         * metadata-verify.c: Implement property signature check.
3261 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3263         * sgen-gc.h: Register saving support for PPC.
3265 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3267         * sgen-gc.c: Fixed a pthread TLS screwup.
3269 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3271         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3272         supported.
3274 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3276         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3277         keyword is not supported.
3279 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3281         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3282         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3283         the inflated method is freed. Fixes #508389.
3285         The code is contributed under the MIT/X11 license.
3286         
3287 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3289         * marshal.c (get_wrapper_target_class): New helper function.
3290         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3291         the <Module> class of the image. Fixes #509049.
3293 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3295         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3296         Check if the thread was interrupted and proccess it straight away.
3297         Makes abortion much more responsive.
3299 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3301         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3302         MonoThread::interruption_requested to match it's counterpart.
3304         Fixes a hang in abort-stress-1 on a 2 core x86.
3306         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3307         Fix warning.
3309 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3311         Change MonoImage::name_cache to be protected by the image lock
3312         instead of the loader lock.
3314         * appdomain.c (deregister_reflection_info_roots): Protect access
3315         to name_cache.
3317         * class.c (mono_image_init_name_cache): Change from the loader lock
3318         to the image lock. Check if the cache wasn't already created.
3320         * class.c: Change from the loader to the image lock.
3322         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3323         the code to hold the image lock while iterating over name_cache and
3324         not go into mono_array_new holding it.
3326         * metadata-internals.h: Add a comment about this change.
3328 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3330         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3331         Under the 2.0 profile raise the loader error.
3333         Fixes #508532.
3335 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3337         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3338         of ldind opcode for generic instances so we don't fail for direct wrappers.
3339         This only affect direct calls.
3341 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3343         * reflection.c (create_dynamic_mono_image): Fix warnings.
3345         * generic-sharing.c (other_info_equal): Ditto.
3346         
3347 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3349         * metadata-verify.c: Implement field signature check.
3351 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3353         * metadata-verify.c: Implement standalone signature check.
3355 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3357         * metadata-verify.c: Implement methodref signature check.
3359 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3361         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3362         callbacks supplied by the runtime.
3364         * object.c (mono_install_callbacks): New internal function to install
3365         the callbacks.
3367         * object.c (mono_create_ftnptr): Move the implementation of this to
3368         mini/.
3370         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3372 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3374         * metadata-verify.c (parse_return_type): Proper byref check.
3375         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3376         generic signatures and method params.
3378 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3380         * metadata-verify.c (decode_signature_header): Fix bounds check.
3382         * metadata-verify.c (parse_custom_mods): Check custom mods.
3384         * metadata-verify.c (parse_type): Do initial basic verification
3385         of valid values.
3386         
3387         * metadata-verify.c (is_valid_method_signature): Parse the generic
3388         param count.
3390 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3392         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3393         discarded based on their most specific definition so we set the method_slots
3394         array before checking if the method is acceptable or not.
3396         Fixes #506757.
3398 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3400         * icall.c: Free the old array when resizing a mono_ptr_array.
3402 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3404         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3405         for the hashes whose keys are managed objects.
3407 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3409         * object-internals.h, threads.c: Set the execution context on
3410         thread start here, not in corlib.
3412         * appdomain.c: Bump corlib version.
3414 2009-05-27  Martin Baulig  <martin@ximian.com>
3416         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3417         if `_mono_debug_using_mono_debugger' is set to make things work
3418         properly when embedding Mono.
3420 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3422         * class.c (mono_class_setup_fields): Don't mark simd types as having
3423         16 bytes alignment as the whole runtime doesn't support.
3425 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3427         * metadata-verify.c (safe_read): Use endian safe read macros.
3429 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3431         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3432         it is read-only when using full aot.
3434 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3436         * metadata-verify.c (is_valid_method_signature): Verify parts
3437         of the return type. Provide an error message in case of failure.
3439 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3441         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3443 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3445         * metadata-verify.c: Include the size prefix in the bounds check.
3447 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3449         * icall.c: Remove warnings.
3451         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3452         prevent auto-detection based on GCC defines.
3454         Add PS3
3456         * metadata-verify.c: Do not include signal.h
3458         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3459         messages.  Not sure why the g_assert_not_reached is not enough to
3460         quiet the compiler.
3461         
3463         * appdomain.c: Remove code that is not used when
3464         DISABLE_SHADOW_COPY is set.
3466         * image.c: use g_getenv
3468 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3470         * reflection.c: Remove code that it not used with
3471         DISABLE_REFLECTION_EMIT is defined.
3473 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3475         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3476         invoke wrappers.
3478 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3480         * socket-io.c
3481         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3482         the ifdef here and instead put that on io-layer
3484 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3486         * metadata-verify.c: Verify the generic param constraint table.
3488 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3490         * metadata-verify.c (verify_generic_param_table): Fix
3491         thinko on the valid flags bits for generic params.
3493 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3495         * metadata-verify.c: Verify the methodspec table.
3497 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3499         * metadata-verify.c: Verify the generic param table.
3501 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3503         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3505 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3507         * sgen-gc.c: Use generation enum more consistently and use the
3508         correct generation in mono_gc_register_for_finalization().
3510 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3512         * metadata-verify.c: Verify the nested class table.
3514 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3516         * metadata-verify.c: Verify the manifest resource table.
3518 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3520         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3522 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3524         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3525         wrappers, this is now done in the JIT.
3526         
3527         * class.c (mono_set_generic_sharing_supported): New internal function.
3528         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3530 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3532         * metadata-verify.c: Verify the exported type table.
3534 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3536         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3538 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3540         * metadata-verify.c: Verify the file table.
3542 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3544         * metadata-verify.c (verify_assembly_table): Fix an error message.
3546         * metadata-verify.c: Verify the assemblyref table.
3548 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3550         * metadata-verify.c (verify_assembly_table): Fix the valid
3551         bits mask for flags.
3553 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3555         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3556         generic methods as well.
3558 2009-05-15  Geoff Norton  <gnorton@novell.com>
3560         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3561         use-case and is significantly more performant than the wapi layer.
3563 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3565         * metadata-verify.c: Verify the assembly table.
3567 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3569         * metadata-verify.c: Fix rows limit check.
3571 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3573         * metadata-verify.c: Verify the fieldrva table.
3575 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3577         * sgen.c: Speed up weak links and finalizers by grouping them by
3578         generation.
3580 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3582         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3583         free the old GCHandle (only applies to SGen).
3585 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3587         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3588         mono_metadata_load_generic_params () for non-generic methods.
3590 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3592         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3593         New function for returning a monitor's weak link if it has one.
3595         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3596         one) when clearing a domain.  These can still be around because
3597         the object might not have been collected.
3599 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3601         * gc.c: Fix a warning.
3603 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3605         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3606         prevous wait that resulted in a deadlock on Windows when initializing
3607         the runtime form DllMain. Also results in improved startup time.
3608         (finalizer_thread): Get rid of thread_started_event.
3609         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3610         resulting MonoThread.
3612         Contributed under MIT/X11 license.
3614 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3616         * metadata-verify.c: Verify the implmap table.
3617         Don't require that #US and #Strings be present.
3619 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3621         * security-core-clr.c: Delegate checks are done at creation time,
3622         not a invocation time. Fix exception for Telerik Silverlight demo
3624 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3626         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3627         case for the Thread class.
3629         * threads.c: Do clean-up of abort exception/state in
3630         thread_cleanup() instead of Thread.free_internal().  Also clean up
3631         current_appcontext.  The reason we have to do that is because
3632         those references might point into another domain and if that
3633         domain is unloaded before the thread is finalized, they point to
3634         invalid data.
3636 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3638         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3639         stub signatures.
3640         
3641         Contributed unter MIT/X11 license.
3643 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3645         * verify.c, metadata-verifier.c: Add support for disabling the
3646         verifier in some builds.
3648         [ Sorry, my previous commit accidentally commited some work in
3649         progress ]
3651 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3653         * class.c (mono_class_setup_fields): Set class->field.first for
3654         generic instances.
3656 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3658         * metadata-verify.c: Verify the typespec table.
3660 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3662         * metadata-verify.c: Verify the module table.
3664 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3666         * metadata-verify.c: Verify the methodimpl table.
3668 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3670         * metadata-verify.c: Verify the property table.
3672 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3674         * debug-helpers.c (mono_method_desc_match): Add support for generic
3675         glob patterns.
3677 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3679         * metadata-verify.c: Verify the propertymap table.
3681 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3683         * metadata-verify.c: Verify the event table.
3685         * metadata-verify.c (search_sorted_table): Fix offset
3686         calculation.
3688 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3690         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3692 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3694         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3695         because mono_delegate_free_ftnptr() needs it.
3697 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3699         * metadata-verify.c: Verify the eventmap table.
3701 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3703         * metadata-verify.c: Verify the standalonesig table.
3705 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3707         * metadata-verify.c: Verify the field layout table.
3709 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3711         * class.c (mono_type_get_name_recurse): Don't crash
3712         for ownerless generic params.
3714         * debug-helpers.c (mono_type_get_desc): Correct the format
3715         for ownerless generic params.
3717 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3719         * metadata-verify.c: Verify the class layout table.
3721 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3723         * metadata-verify.c: Verify the decl security table.
3725 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3727         * domain.c (mono_domain_set_internal_with_options): Don't do
3728         anything if the old domain is the same as the old one.  Fixes
3729         #499326.
3731 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3733         * appdomain.c: Deregister the reflection_info roots when unloading
3734         a domain.
3736         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3737         memory allocated by a domain and frees its disappearing links.
3739         * boehm-gc.c, null-gc.c: Empty implementation of
3740         mono_gc_clear_domain().
3742 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3744         * appdomain.c (clear_cached_vtable): Free the static fields memory
3745         block.
3747 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3749         * gc.c: Set the correct domain when invoking finalizers.
3751         * appdomain.c: Set the correct domain when creating threads.
3753 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3755         * sgen-gc.c: Fix skip size for vectors.
3757 2009-05-03  Martin Baulig  <martin@ximian.com>
3759         * mono-debug-debugger.c
3760         (mono_debugger_check_breakpoints): Check class init handlers even
3761         if we don't have any method load handers.
3763 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3765         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3766         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3768 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3770         * metadata-verify.c: Verify the field marshal table.
3772 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3774         * metadata-verify.c: Verify the custom attribute table.
3776 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3778         * metadata-verify.c: Verify the constant table.
3780 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3782         * metadata-verify.c: Verify the memberef table.
3784 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3786         * metadata-verify.c (get_coded_index_token): Remove
3787         dead argument.
3789 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3791         * metadata-verify.c: Verify the interfaceimpl table.
3793 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3795         * verify.c: Improve error message.
3797         * debug-helpers.c (mono_type_get_desc): Harden the code that
3798         deals with VAR and MVAR.
3800 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3802         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3803         part of #498692.
3805 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3807         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3808         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3810 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3812         * security-core-clr.c: Avoid redundant checks for platform code, 
3813         e.g. check for method and for class (very common) and check
3814         for class and outer class (less common)...
3816 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3818         * reflection.c: Avoid returning random cattrs for synthetic methods.
3819         Fixes #498545.
3821 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3823         * assembly.c: assemblies in the GAC should never be shadow-copied.
3825 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3827         * domain.c, domain-internals.h: Disable
3828         track_resurrection_{objects,handles}_hash in MonoDomain if using
3829         SGen.
3831 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3833         * metadata-verify.c: Verify the param table.
3835 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3837         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3838         MethodList.
3840         * metadata-verify.c (verify_method_table): Proper check the ParamList
3841         field.
3843 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3845         * metadata-verify.c (verify_method_table): Check for runtime
3846         implemented functions such as delegate .ctors. Remove spurious
3847         printf.
3848         
3849 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3851         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3853 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3855         Don't allocate MonoGenericInfo for ownerless generic params.
3856         * class-internals.h (MonoGenericParam::info): Move field to ...
3857         (MonoGenericParamFull): ... this.  New struct.
3858         (MonoGenericContainer::type_params): Change type to
3859         MonoGenericParamFull.
3860         (MonoGenericParam, MonoGenericContainer): Update accessors.
3861         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3862         'info' field for ownerless generic param.
3863         (mono_metadata_load_generic_params): Update to changes.
3864         * reflection.c (mono_reflection_create_generic_class): Likewise.
3865         (reflection_methodbuilder_to_mono_method): Likewise.
3866         (mono_reflection_initialize_generic_parameter): Likewise.
3868 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3870         Don't use MonoGenericParamInfo for ownerless generic params.
3871         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3872         use ParamInfo class at all.
3873         (mono_class_from_generic_parameter): Use them.
3874         (make_generic_param_class): Fix a couple of instances where 'pinfo
3875         == NULL' wasn't handle.
3877 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3879         * class.c (make_generic_param_class): Carve out of ...
3880         (mono_class_from_generic_parameter): ... here.
3882 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3884         Simplify mono_class_from_generic_parameter
3885         * class-internals.h (MonoGenericParamInfo::token): New field.
3886         * metadata.c (mono_metadata_load_generic_params): Initialize it
3887         from metadata.
3888         * class.c (mono_class_from_generic_parameter): Use it instead of
3889         searching through metadata.
3891 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3893         * metadata-verify.c: Add verification of the method table.
3895 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3897         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3898         Delegate::Invoke optimization.
3900 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3902         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3903         string returned by get_shadow_assembly_location_base.
3905         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3906         about caller's ownership.
3908 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3910         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3911         reflection memory on domain unload.
3913         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3914         reflection cleanup code do it.
3916         * domain-internals.h: Add mono_reflection_cleanup_domain.
3918         This fixes a memory leak for managed mirrors of reflection objects
3919         on domain unload. 
3921 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3923         * metadata-verify.c: Implement more verification of the field table.
3925 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3927         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3928         doesn't try to parse the input assembly, which can be broken.
3930 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3932         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3933         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3934         by using the lowest bit in the link to store whether the link is
3935         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3937 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3939         * Makefile.am: Split the console support in platform specific code
3940         and put together a framework for making this easy in the future so
3941         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3943 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3945         * pedump.c: Fix a warning.
3947 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3949         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3950         mono_class_from_mono_type to avoid bad interactions with the dual representation
3951         of the generic type definition.
3953 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3955         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3956         get the MonoClass for the call context type as it might be a generic
3957         instance.
3959         Fixes #491483.
3961 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3963         * object-internals.h: The Thread object has no execution_context
3964         member anymore.
3966         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3967         the execution context.
3969         * appdomain.c: Bump corlib version.
3971 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3973         * verify.c (do_newobj): Improve error message.
3975 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3977         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3978         is nested in the filter block.
3980         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3981         block is not fully nested.
3983         Fixes #495656.
3985 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3987         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3988         not MonoType to check for equality of valuetypes as the generic type
3989         definition allows for two different encodings: the generic type definition
3990         class or a generic instance over the GTD arguments.
3992         Fixes #496175.
3994 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3996         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3998         * verify.c (do_initobj): Improve error message.
4000 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4002         * metadata-verify.c: Enable pe verification as the issue with #496453
4003         is that the authenticode data directory have a different unspecified
4004         format. Ignore it for now.
4006         * pedump.c: Run the metadata verifier together with the IL verifier.
4008         Fixes ##496453.
4010 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4012         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4014 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4016         * class.c (can_access_type): Check visibility against
4017         the element type for pointers and arrays.
4019         Fixes #496150.
4021 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4023         * metadata-verify.c: Fix cli and table verification to use information
4024         from the MonoImage. A lot of duplicated code got killed.
4026 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4029         This patch starts to integrate the metadata verifier with the runtime code.
4031         This patch causes major regression in functionality for the metadata verifier
4032         as cli and table verification are disabled since they require to be ported to
4033         use MonoImage information.
4035         * image.c (do_mono_image_load): Split the code in this function
4036         into mono_image_load_pe_data and mono_image_load_cli_data.
4037         Add     care_about_pecoff parameter to not load pecoff data.
4038         Call into the metadata verifier for pecoff and cli verification.
4040         * image.c (mono_image_open_raw): New function that doesn't perform
4041         any parsing of the image contents.
4042         
4043         The reason for the 3 new functions is to give pedump better control
4044         into the interaction with the verifier.
4046         * metadata-internals.h: Add new functions from image.c as part of the
4047         internal mono API.
4049         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4050         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4051         to make those functions work together with the runtime.
4053         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4054         true if the image needs to be verified.
4056         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4058         * pedump.c: Use new metadata verifier API.
4060 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4062         * object.c (mono_install_vtable_trampoline): Make this receive a
4063         trampoline creation function instead of trampoline, allowing the JIT
4064         to use a different trampoline for each vtable.
4066 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4068         * object.c (mono_raise_exception): Don't reset the thread abort
4069         exception state here.
4071 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4073         * icall-def.h: New icall for getting the thread abort exception
4074         state for a thread.
4076         * object.c, thread.c, object-internals.h: A thread's abort
4077         exception state is now a GC handle.  To get the object it stands
4078         for, we must move it into the current app domain, if it's
4079         different than the one where it originated from.
4081         * appdomain.c: Bump corlib version.
4083         * domain.c, domain-internals.h: New function for setting the
4084         domain and migrate the thread abort exception or not.
4086 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4088         * metadata-verify.c: Add initial verification of the
4089         field table.
4091 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4093         * metadata-verify.c: Add a macro to conditionally enable
4094         dumping of verification information. Add  make_coded_token
4095         and search_sorted_table to enable search sorted tables
4096         by a given coded token.
4098 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4100         * metadata-verify.c: Add array mapping from table index
4101         to description offset. Add get_col_offset and get_col_size
4102         functions.
4104 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4106         * metadata-verify.c: Add remaining table descriptions offsets.
4107         Add remaining coded index descriptions.
4109 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4111         * metadata-verify.c: Fixed constant table description.
4112         Fixed calculation of HasCustomAttribute coded index size.
4113         Fixed calculation of size for many table indexes. 
4115 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4117         * pedump.c (dump_metadata): Dump table offset instead
4118         of useless pointer in memory.
4120 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4122         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4124 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4126         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4127         a missing of for interface types.
4129 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4131         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4132         the code is commented.
4134         * metadata-verify.c (verify_resources_table): Remove spurious printf
4135         and don't fail if there are unmanaged resources. Gmcs generates a useless
4136         one     for all assemblies - I bet it's some MS compatibility junk.
4138 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4140         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4142         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4144         * verify-internals.h: Same.
4146         * pedump.c: Fix for mono_image_verify new signature.
4148 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4150         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4151         flags combinations.
4153 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4155         * metadata-verify.c (verify_module_table): Ignore the generation field.
4157 2009-04-15  Martin Baulig  <martin@ximian.com>
4159         * debug-mono-symfile.c
4160         (mono_debug_symfile_lookup_location): Don't print a warning for
4161         unknown extended opcodes if they're within 0x40 and 0x7f.
4163 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4165         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4166         invoke signatures returning an enum. Fixes #494847.
4168 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4170         * metadata-verify.c: Initial code to verify the typedef table.
4172 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4174         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4175         with non empty stack happens before the beginning of a try block.
4177         Fixes #494812.
4179 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4181         * metadata-verify.c: Verify typename and typenamespace fields of
4182         the typeref table.
4184 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4186         * metadata-verify.c: Initial code to verify the typeref table.
4188 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4190         * verify.c (verify_delegate_compatibility): Fix error message.
4192 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4194         * security-core-clr.c: Fix typo
4196 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4198         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4199         a MonoGHashTable to keep its values alive.
4200         (emit_marshal_boolean): Fix a warning.
4202 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4204         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4205         not have any interface configured for IPv4/IPv6.
4207 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4209         * assembly.c: fix typo in error message.
4211 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4213         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4214         allocating the location holding the this argument to prevent
4215         'too many root sets' errors.
4217         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4218         to mark fields as special static.
4219         (mono_field_static_get_value): Handle special static fields.
4220         (mono_field_static_set_value): Ditto.
4222         * class-internals.h (struct _MonoClassField): Document this.
4224 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4226         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4227           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4228           case.  This will handle when managed code returns null to native code.
4230         Code is contributed under MIT/X11 license.
4232 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4234         * object.c (build_imt_slots): Changing a free to a g_free to match
4235           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4237         Code is contributed under MIT/X11 license.
4239 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4241         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4242           the correct TRUE value is passed through the marshaling layer.
4244         Code is contributed under MIT/X11 license.
4246 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4248         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4249         correctly. Fixes #492330.
4250         
4251         * marshal.c: Fix the embedding of object pointers into JITted code in
4252         the native-to-managed wrappers by allocating some GC tracked memory, and
4253         embedding the address of that.
4255 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4257         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4258         pointers into the vtable.
4260 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4262         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4264         * verify.c (verify_ldftn_delegate): Improve error message.
4266 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4268         * reflection.c (my_mono_class_from_mono_type): Remove.
4270 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4272         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4273         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4274         and constraints fields into ...
4275         (MonoGenericParamInfo): ... this.
4276         (mono_generic_param_info, mono_generic_container_get_param_info):
4277         New accessors.
4278         * class.c, debug-helpers.c, icall.c: Update to changes.
4279         * metadata.c, reflection.c, verify.c: Likewise.
4281 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4283         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4285         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4286         
4287         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4288         booleans with sbytes.
4290 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4292         * class.c (can_access_instantiation): Verify accesibility of element types
4293         for arrays and pointers.
4295         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4297         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4299         Fixes #493068.
4301 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4303         * verify.c (do_invoke_method): Improve error messages.
4305 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4307         * verify.c:  Fixing the MSVC build.
4309         Code is contributed under MIT/X11 license.
4311 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4313         * security-core-clr.c: Simplify get_reflection_caller not to call
4314         mono_method_get_last_managed (another stack walk) and adjust the
4315         callers to handle a (should not happen) NULL return value.
4317 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4319         Add accessors to some MonoGenericParam fields
4320         * class-internals.h (mono_generic_param_owner): New accessor.
4321         (mono_generic_param_num): Likewise.
4322         (mono_type_get_generic_param_owner): New helper.
4323         (mono_type_get_generic_param_num): New helper.
4324         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4326 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4328         * class-internals.h (mono_generic_container_get_param): New wrapper.
4329         * class.c, icall.c, metadata.c, verify.c: Use it.
4331 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4333         Fix gtest-252.cs
4334         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4335         the standard case/loop.  In particular, don't complain about
4336         references to generic type definitions.
4338 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4340         * debug-helpers.c (dis_one): Decode string arguments.
4342 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4344         * pedump.c (dump_verify_info): Dump type name correctly.
4346 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4348         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4349         are larger than code size.
4351         This can happen in valid code if the try/catch block is not followed by any instruction
4352         and do a backward branch on the leave instruction.
4354         Fixes #492494.
4356 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4358         * security-core-clr.c: Fix typo while comparing second method names
4359         in can_avoid_corlib_reflection_delegate_optimization
4361 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4363         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4365         Fixes #487738.
4367 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4369         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4370         a MVAR using a class context.
4372         Fixes #490335.
4374 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4376         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4378         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4380         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4381         functions supplied by the JIT for the SGEN GC.
4383         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4384         
4385 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4387         monitor.c (mono_monitor_try_enter_internal):
4388         Added calls to profile monitor contentions.
4389         Also duplicated a small piece of code (the "get the monitor" logic)
4390         from the fast path to the slow path, and changed the relevant goto
4391         statements, so that monitor acquisition events can be emitted from the
4392         slow path (this is by Paolo Molaro).
4394 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4396         * profiler.c, profiler.h, profiler-private.h:
4397         Added support for profiling monitor contentions.
4399 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4401         * metadata-verify.c: Verify the modules table.
4403 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4405         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4406         using the context of the method been verifier and not of the method been called.
4408         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4409         safely inflate generic types. 
4411 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4413         * security-core-clr.c: Change the strategy for checking the 
4414         "reflection using delegates optimization" to avoid unneeded 
4415         attributes in multiple class libraries.
4417 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4419         * sgen-gc.c: Remove object element in the disappearing link struct
4420         by storing the object pointer in the link.
4422 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4424         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4426 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4428         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4430         * verify.c (mono_method_verify): Do proper bounds checking of exception
4431         clause ranges.
4433 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4435         * loader.c (mono_field_from_token): Don't crash if the field parent could
4436         not be decoded.
4438 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4440         * sgen-gc.c: Execute critical finalizers after ordinary
4441         finalizers.
4443         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4444         mono_defaults.
4446 2009-03-31 Jb Evain <jbevain@novell.com>
4448         * verify.c (do_ldstr): don't check if a string is in the user strings
4449         heap if the current image is dynamic.
4451 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4453         * sgen-gc.c: Wait until the last finalizer has executed when
4454         returning from WaitForPendingFinalizers.
4456 2009-03-31  Martin Baulig  <martin@ximian.com>
4458         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4459         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4460         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4461         (mono_debugger_event_create_appdomain): New function.
4462         (mono_debugger_event_unload_appdomain): New function.
4464         * appdomain.c (mono_domain_create_appdomain_internal): Call
4465         mono_debugger_event_create_appdomain().
4467 2009-03-31  Martin Baulig  <martin@ximian.com>
4469         * mono-debug-debugger.c
4470         (mono_debugger_register_class_init_callback): Also register the
4471         class init callback if the class is already initialized to make
4472         things work with shadow copied assemblies.
4474 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4476         * security-core-clr.c
4477         (mono_security_core_clr_ensure_reflection_access_field): Let 
4478         critical code access the field (just like we do for methods). Use
4479         check_field_access helper.
4480         (mono_security_core_clr_ensure_reflection_access_method): Use 
4481         check_field_access helper.
4483 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4485         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4486         call the run-finalize function directly.
4488         * gc.c, gc-internal.h: Make run_finalize() non-static.
4490 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4492         * sgen-gc.c: Use a separate struct for disappearing links.
4494 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4496         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4497         * MaxIOVectorLength enabled, just ignore them.
4498         Fixes bug #349688.
4500 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4502         * metadata-verify.c: Fix eglib build.
4504 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4506         * threads-types.h: Fix the win32 build.
4508 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4510         * class.c: move coreclr inheritance/override checks to 
4511         security-core.clr.c
4512         * security-core.clr.c|h: add code from class.c with additional
4513         documentation. Fix override check when the method is not critical.
4515 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4517         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4518         (match_class): Ditto.
4520 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4522         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4524         * metadata-verify.c: Implement table layout row size calculation. Verify
4525         the total size of the tables.
4527 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4529         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4531 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4533         * appdomain.c:
4534         * console-io.[ch]: added new mono_console_init() to make sure that
4535         file descriptors 0, 1 and 2 are opened.
4536         Bug #489019 fixed.
4538 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4540         * appdomain.h: Export a new callback type and a new function to
4541         set this callback. This allow a mono host to provide it's own
4542         definition for "platform code".
4543         * metadata-internals.h: Add a core_clr_platform_code flag on 
4544         _MonoImage to (cache and) know if it is representing platform 
4545         code.
4546         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4547         on platform code images.
4548         * security-core-clr.c|h 
4549         (mono_security_set_core_clr_platform_callback): Allow the host
4550         to provide it's own platform check definition.
4551         (mono_security_core_clr_determine_platform_image): Detect if an 
4552         image is platform code (using the specified callback).
4553         (mono_security_core_clr_is_platform_image): Return cached value 
4554         for platform code.
4556 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4558         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4559         which has different parameter types for the 'tid' argument in windows and
4560         the io-layer.
4562         * appdomain.c attach.c threads.c: Use the new helper.
4564 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4566         * metadata-verify.c: Verify valid table bits.
4568 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4570         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4572         * metadata-verify.c: Add initial table schema verification.
4574 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4576         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4577         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4578         #488383.
4580         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4582         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4584 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4586         * security-core-clr.c: Add/update documentation
4588 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4590         * marshal.c (emit_marshal_object): Generate code to throw an exception
4591         instead of throwing it. Fixes #488670.
4593 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4595         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4596         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4597         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4598         and add a call to mono_security_core_clr_ensure_delegate_creation
4599         to do the extra checks required by CoreCLR.
4600         * security-core-clr.c|h: Add function to check delegate creation,
4601         both in the binding and accessibility, under CoreCLR.
4603 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4605         * reflection.c (mono_reflection_create_dynamic_method): when 
4606         coreclr is enabled make sure that every resolved object are
4607         checked (e.g. field and method access).
4608         * security-core-clr.c|h: Add function to check objects resolved
4609         when a dynamic method is created.
4611 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4613         * metadata-verify.c: Cache directory rva translations.
4615         * metadata-verify.c: Add cli-header and streams verification.
4617 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4619         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4620         the wrong offset (8 instead of 6).
4622 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4624         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4625         methods, return the native function address itself. Fixes
4626         #487758.
4628 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4630         * console-io.c: some of the values for control characters might not be
4631         present.
4633 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4635         * exception.c|h: Add helpers to create [Field|Method]AccessException
4636         * icall.c: Add required coreclr check calls for field reflection.
4637         Move the existing (method) check logic into security-core-clr.c
4638         * security-core-clr.c: Add functions to check if the access of a
4639         field or method is allowed when reflecting under coreclr. This is
4640         mostly done using a stack walk to find the "real" caller: i.e. the
4641         code that is calling the reflection
4643 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4645         * gc-internal.h: Change location of gc_wrapper.h
4647 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4649         * class.c: Simplification to coreclr checks for overrides that
4650         makes it easier to set breakpoints.
4652 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4654         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4655         mono_security_core_clr_method_level): Avoid potential 
4656         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4657         user/application code) and make it easier to set breakpoints
4659 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4661         * metadata-verify.c: Reject cli header tables that mono don't handle.
4663 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4665         * pedump.c: Fix CLI header dumping.
4667 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4669         * metadata-verify.c: More CLI header verification.
4671 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4673         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4675 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4677         * metadata-verify.c: Initial verification of the CLI header.
4679 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4681         * metadata-verify.c (verify_resources_table): Fix verification of zero
4682         sized resource section and id entries count.
4684 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4686         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4688 2009-03-17  Jb Evain  <jbevain@novell.com>
4690         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4692 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4694         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4695         (mono_gc_make_descr_for_array): Ditto.
4697 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4699         * verify.c (mono_verifier_is_class_full_trust): Add support for
4700         CoreCLR security mode where trusted assemblies are defined as
4701         "platform code".
4703 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4705         * metadata-verify.c: Add minimal PECOFF resource verification.
4707 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4709         * metadata-verify.c: Be less restrictive with some coff fields.
4711 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4713         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4714         params as boxed values on stack. Fixes #485706.
4716 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4718         * console-io.c: the termios values may vary in different flavors of unix.
4720 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4722         * console-io.[ch]: return the entire set of control characters when
4723         initializing the terminal.
4724         * appdomain.c: bump corlib version.
4726 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4728         * mono-perfcounters.c: added support for in-process custom
4729         performance counters.
4731 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4733         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4735 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4737         * metadata-verify.c: Verify the data pointed by the import table. 
4739 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4741         * metadata-verify.c (load_data_directories): Store data
4742         directory contents.
4744         * metadata-verify.c: Verify the import table. 
4746 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4748         * metadata-verify.c: Verify data directories.
4750 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4752         * metadata-verify.c: Check section header flags.
4754 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4756         * appdomain.c: if the assembly name is a shadow-copied file, return
4757         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4758         in mono_make_shadow_copy.
4759         * icall.c: if the assembly name is a shadow-copied file, replace it
4760         with the original assembly path.
4762         Bug #484244 fixed. NUnit tests for corlib can be run without
4763         --noshadow now.
4765 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4767         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4768         entries when the table is reallocated.
4770         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4771         mono_gc_alloc_fixed () since it contains GC refs.
4773 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4775         * reflection.c (ensure_complete_type): New helper function to call
4776         type resolve handlers for unfinished dynamic types.
4777         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4779 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4781         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4782         #483247.
4784 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4786         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4788 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4790         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4791         between GCHandles of type WeakTrackResurrection and the objects they
4792         point to.
4794         * gc.c: Partly implement the sematics of GCHandles of type 
4795         WeakTrackResurrection: these handles should only be cleared after the
4796         finalizer of the object they are pointing to has ran.
4798 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4800         * icall.c: Partially revert r126631 because using the jump
4801         trampolines for generic shared methods makes it superfluous.
4803 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4805         * threads.c (handle_store): Create the 'threads' hash table with the proper
4806         MONO_HASH_VALUE_GC type.
4808 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4810         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4811         FIRST_GC_TRACKED.
4813         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4814         and LAST_GC_TRACKED as a GC root.
4816         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4818         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4819         the static data even if it consists of 1 reference.
4821         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4822         if there is a GC descriptor.
4824         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4825         instead of through the GC since they contain no object references.
4827 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4829         * generic-sharing.c (instantiate_other_info): Always return a jump
4830         trampoline for method code.
4832 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4834         * culture-info-tables.h: generated to include the en-tt culture.
4836 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4838         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4839         capture the thread context.
4841         * object.c (mono_async_result_new): Cache the invoke wrappers to
4842         ExecutionContext::Capture.
4844 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4846         * marshal.h: Add a prototype for what mono_compile_method returns
4847         for invoke wrappers.
4849         * gc.c: Use the new prototype declaration.
4851 2009-03-04  Geoff Norton  <gnorton@novell.com>
4853         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4854         * gc-internal.h:
4855         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4857 2009-03-04  Martin Baulig  <martin@ximian.com>
4859         * mono-debug.h
4860         (mono_debugger_runtime_invoke): Removed.
4862         * mono-debug-debugger.c
4863         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4865 2009-03-02  Martin Baulig  <martin@ximian.com>
4867         * mono-debug.h
4868         (mono_debugger_unhandled_exception): Removed.
4869         (mono_debugger_handle_exception): Removed.
4870         (mono_debugger_throw_exception): Removed.
4872         * mono-debug.c
4873         (mono_debug_debugger_version): Bump to 5.
4875         * mono-debug-debugger.c: Moved the exception handling code to
4876         ../mini/debug-mini.c
4878 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4880         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4881         finalize_objects_hash.
4883         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4884         
4885         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4886         field.
4888         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4889         cache.
4891         * image.c (mono_image_close): Free it.
4892         
4893         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4894         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4895         on the this argument.
4897         * gc.c (run_finalize): Optimize the calling of the finalizers.
4899 2009-03-03  Martin Baulig  <martin@ximian.com>
4901         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4902         of the `MonoGenericInst' changes.
4904 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4906         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4907         mono_array_class_get_cached to reduce locking contention. Extract
4908         a domain var.
4910         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4911         intermediary managed arrays. Use caching version of mono_array_new
4912         to allocate the result array.
4914         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4916         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4918         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4919         to reduce locking contention.
4921 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4922                 
4923         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4924         thunk builder code for the non-interface case.
4926 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4928         * object.c (get_generic_virtual_entries): New helper function to collect
4929         the virtual generic method instances which need to be added to an IMT
4930         thunk.
4931         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4932         Instead of creating a new IMT thunk, reset the vtable slot to the
4933         trampoline, the thunk will be created the next time the trampoline is called.
4934         (build_imt_slots): Add support for virtual generic methods in interfaces by
4935         adding to the IMT thunk all the methods registered using 
4936         mono_method_add_generic_virtual_invocation ().
4938         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4939         (struct _MonoIMTCheckItem): Ditto.
4941         * object.c (mono_method_add_generic_virtual_invocation): Take a
4942         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4943         the IMT thunk to include all items.
4944         
4945         * object.c (mono_class_create_runtime_vtable): Add a missing
4946         mono_loader_unlock ().
4948 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4950         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4952         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4954 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4956         * object-internals.h: Rename _MonoReflectionEvent to
4957         MonoReflectionMonoEvent so it reflects the right managed type.
4958         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4960         * icall.c:
4961         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4962         type.
4964 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4966         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4967         intermediary managed arrays. Use caching version of mono_array_new
4968         to allocate the result array.
4970 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4972         * reflection.c: Use cached version of mono_array_new alongside
4973         the mono_reflection_get_custom_attrs_by_type call path.
4975 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4977         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4978         intermediary managed arrays. Use caching version of mono_array_new
4979         to allocate the result array.
4981         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4983 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4985         * icall.c: Add small implementation of a growable stack bound array.
4987         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4989         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4990         intermediary managed arrays. Use caching version of mono_array_new
4991         to allocate the result array.
4993 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4995         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4996         helps Enum::CompareTo to be implemented without reboxing all enums
4997         to their underlying type.
4998 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5000         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5001         since it acquires a global lock leading to scalability problems.
5003         * profiler.c: Make the stat profiler work with multiple appdomains, this
5004         currently only works when no appdomains are unloaded.
5006 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5008         * appdomain.c: make the check to avoid copying when the assembly is
5009         already shadow copied actually work.
5011 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5013         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5015         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5016         changes to the managed side.
5018 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5020         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5021         classes + a separate lock for it, as it is used frequently at runtime, not
5022         just during metadata loading/JIT compilation.
5024         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5025         for szarrays.
5026         
5027         * object-internals.h (mono_class_from_name_cached): New macro to cache
5028         the results of the lookup locally without having to declare a static
5029         variable to hold it.
5030         (mono_class_get_field_from_name_cached): Ditto.
5031         (mono_array_class_get_cached): Ditto.
5033         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5034         the new macros.
5035         
5036         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5037         slower search in metadata.
5039         * pedump.c: Fix a warning.
5041 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5043         * reflection.c (encode_locals): Add checks for user types.
5044         (method_encode_clauses): Ditto.
5045         (method_encode_code): Ditto.
5046         (mono_image_create_token): Ditto.
5048         * object-internals.h: Change the type of more fields from MonoReflectionType*
5049         to MonoObject*.
5051 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5053         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5054         the a thread does not suspend within 100ms.
5056         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5057         in addition to StopRequested as well.
5059         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5061         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5062         search the method_hash before inserting a new entry, to avoid crashes when
5063         the same method is inserted multiple times, causing the old 
5064         MonoDebugMethodInfo structure to be freed by the value dtor function.
5066 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5068         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5069         SO_EXLUSIVEADDRUSE where available.
5071 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5073         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5074         runtime invoke wrappers, this time it is string ctor wrappers, which
5075         pass a dummy string as 'this' instead of their obj argument. Fixes
5076         #478473.
5078 2009-02-21  Jb Evain  <jbevain@novell.com>
5080         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5081         only get create_culture once.
5083 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5085         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5086         check before the locking.
5087         
5088         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5089         (mono_reflection_create_runtime_class): Ditto.
5090         (mono_reflection_sighelper_get_signature_local): Ditto.
5091         (mono_reflection_sighelper_get_signature_field): Ditto.
5093         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5094         is a System.MonoType object or similar.
5095         (monotype_cast): New helper function to cast a MonoObject to a 
5096         MonoReflectionType object.
5098         * object-internals.h: Change MonoReflectionType* members in structures to
5099         MonoObject* members to force the usage of the monotype_cast () function.
5101         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5102         structures/arrays. This causes us to assert instead of crashing when 
5103         instances of user defined subclasses of System.Type are encountered.
5105 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5107         * cil-coff.h:
5108         * icall-def.h:
5109         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5110         win32 resource loaded from a PE file.
5112         * image.c: fix mono_image_lookup_resource.
5114 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5116         * icall-def.h:
5117         * threads-types.h:
5118         * threads.c: added internal call for WaitHandle.SignalAndWait.
5120 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5122         * cominterop.c : Adding cominterop_type_from_handle and 
5123           registering it as an icall.  Replacing all references
5124           to type_from_handle.
5126         Code is contributed under MIT/X11 license.
5128 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5130         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5132         * appdomain.c: Call the tracer init function.
5134         * domain-internals.h: Enable the tracer for the domain locks.
5136         * image.c: Enable the tracer for image locks.
5138         * loader.c: Enable the trace for the loader lock.
5140         * lock-tracer.h:
5141         * lock-tracer.c: Initial implementation of the lock trace utility.
5142         The tracer requires a compile time define to be enabled and a env var
5143         to be enabled at runtime.
5145 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5147         * domain.c (mono_domain_code_foreach): Improve documentation.
5149 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5151         * appdomain.c:
5152         * generic-sharing.c:
5153         * object.c:
5154         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5155         comes first.
5157 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5159         * domain.c: Add mono_domain_code_* functions that perform locking
5160         around the domain codeman.
5162         * domain-internals.h: Export those functions.
5164         * object.c: Use new functions instead of acquiring the domain lock.
5166 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5168         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5169         delegate. Fixes #477396.
5171 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5173         * reflection.c (create_custom_attr): Get rid of alloca.
5175 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5177         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5178           Adding exception handling for all CCW calls.
5180         Code is contributed under MIT/X11 license.
5182 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5184         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5186         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5187         native->managed marshalling code. Fixes #476247.
5189 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5191         * class.c (mono_class_get_vtable_entry): Move the addition of
5192         static rgctx invoke wrappers for vtable methods here, this simplifies
5193         a lot of code and causes fewer rgctx wrappers to be created.
5195         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5196         name of the statistics to begin with an uppercase.
5198 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5200         * reflection.c: Revert previous change as it breaks the build.
5201         
5202 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5204         * verify.c: Properly handle SZARRAY element type.
5206         Fixes #474271.
5208 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5210         * reflection.c (mono_image_create_method_token): Correctly encode
5211         MethodDef MemberRefParent token.
5213         Fixes #472845.
5215 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5217         * image.c (mono_image_close): Delete the critical section before
5218         freeing the memory holding it.
5220 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5222         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5223         Fixes #476257.
5225 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5227         * pedump.c (main): Call mono_marshal_init so pedump
5228         doesn't crash.
5230 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * loader.c (method_from_memberref): Properly fix #474271 and
5233         don't break the runtime bad.
5235 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5237         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5238         (mono_domain_alloc0): Ditto.
5240 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5242         * loader.c (method_from_memberref): Don't abort if the array
5243         method is not found. A regular loader failure is more informative
5244         and correct.
5246         Fixes #474271.
5248 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5250         *loader.c: Guard MonoImage::method_cache/methodref_cache
5251         using the image lock instead of the loader lock.
5253         * metadata.h: Add comments about which fields are protected by
5254         the image lock.
5256 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5258         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5260         * generic-sharing.c (mono_method_construct_object_context): Remove the
5261         wrapper_type == NONE assert, it is not needed.
5263 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5265         * reflection.c (clear_cached_object): New helper function.
5266         (mono_method_clear_object): New function to clear the cached reflection
5267         objects for a dynamic method.
5269         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5270         Partly fixes # 463323.
5271         
5272 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5274         * class.c:
5275         * loader.c:
5276         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5278 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5280         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5281         take the image lock instead of the loader lock.
5283         * metadata-internals.h: Export new functions.
5285 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5287         * domain.c (app_config_parse): Remove another use of stat that is
5288         not necessary as g_file_get_contents already does the presence
5289         check. 
5291 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5293         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5295         * marshal.c: Move the bstr handling code to cominterop.c.
5297         * marshal.c: Remove some COM interop code missed previously.
5299 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5301         More Paolo patches from the Wii port:
5302         
5303         * security.c: Remove ves_icall_System_Environment_get_UserName
5304         from here.
5306         * icall.c: And put ves_icall_System_Environment_get_UserName
5307         here. 
5309         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5310         redundant call to stat that was only used to test for the file
5311         existence.   Patch from Paolo.
5313         * gc.c (run_finalize): If COM is disabled, do not link in
5314         mono_marshal_free_ccw.
5316         * generic-sharing.c: Use alloca.h here as well.
5318 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5320         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5322 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5324         * cominterop.c cominterop.h: New files.
5326         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5327         function/typedefs which are needed by cominterop.c global.
5329 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5331         * generic-sharing.c: Don't take the loader lock to guard image
5332         mempool allocs.
5334 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5336         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5337         called without the loader lock which is required to guard MonoImage:tokens.
5339 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5341         * class.c:
5342         * metadata.c:
5343         * method-builder.c:
5344         * marshal.c:
5345         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5347 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5349         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5350         Rework the code to use regular mono_image_alloc/0.
5352         * loader.c: Rework the code to use regular mono_image_alloc/0.
5354         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5356 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5358         * object-internals.h : Fixing a typo in the 
5359           MonoReflectionComVisibleAttribute struct.
5361         * marshal.c (cominterop_com_visible): Check the implemented 
5362           interfaces for ComImport.
5364         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5365           assume that bools should be treated as VARIANTBOOLs.
5367         * marshal.c (emit_marshal_boolean): Adding cases for 
5368           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5370         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5371           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5373         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5374           should be treated as VARIANTBOOLs.    
5376         Code is contributed under MIT/X11 license.
5378 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5380         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5381         allocation with the image lock.
5383 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5385         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5386         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5388         * object.c: Add mono_string_to_utf8_image.
5390         * object-internals.h: Export mono_string_to_utf8_image.
5392         * reflection.c: Rework all explicit references to the the image mempool to go thought
5393         the mono_image_alloc set of functions.
5395 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5397         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5398         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5399         and generics-sharing.c.
5401         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5402         as first argument. Note that this function remains broken as it doesn't perform locking around the
5403         mempool allocation.
5405         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5407         * image.c: Add g_slist_append_image.
5409         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5410         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5412         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5413         Fix all related code to do the same.
5415         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5417         * metadata-internals.h: Fix the signatures.
5419 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5421         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5422         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5423         and similar to work using MonoImage.
5425         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5426         MonoMemPool.
5428         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5430         * class.c (mono_metadata_signature_deep_dup): Same.
5432         * class.c (inflate_generic_type): Same.
5434         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5436         * metadata.c (mono_metadata_signature_dup_full): Same.
5438         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5439         mono_metadata_signature_dup_full.
5441         * metadata.c (mono_metadata_type_dup): Same.
5443         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5445         * reflection.c: Same.
5447         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5449         * metadata-internals.h: Fix the signatures.
5451         * class-internals.h: Same.
5453 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5455         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5456         and use mono_image_alloc set of functions instead. 
5458         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5459         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5460         of a MonoMemPool.
5462         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5464         * class.c (g_list_prepend_mempool): Removed.
5466         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5468         * image.c: Add g_list_prepend_image.
5470         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5472         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5475 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5477         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5478         mono_image_unlock.
5480         * image.c (mono_image_init): Init the lock field.
5482         * image.c (mono_image_init): Cleanup the lock field.
5484         * image.c: Add mono_image_(un)lock functions.
5486 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5488         * class.c, class-internals.h: mono_method_get_context_general()
5489         combines the functionality of mono_method_get_context() and
5490         mini_method_get_context().
5492         * generic-sharing.c, domain-internals.h:
5493         mono_method_construct_object_context() and
5494         mono_domain_lookup_shared_generic() moved from mini.
5496         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5497         method doesn't have the correct instantiation because it's shared
5498         generic code.  Fixes #473999.
5500 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5502         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5504         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5505         
5506 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5508         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5510         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5512         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5513         and recheck the cache for dups after it.
5515         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5517         Fixes one of the deadlocks found in #473150.
5519 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5521         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5522           For Win32, add additional break conditions for accept.
5524         Code is contributed under MIT/X11 license.
5526 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5528         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5529         lazily initialize the native wrapper cache.
5530         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5531         cache, since they are different from the normal wrappers.
5533         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5535         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5536         AOT compiled native wrappers.
5538 2009-02-09  Geoff Norton  <gnorton@novell.com>
5540         * appdomain.h:
5541         * security-core-clr.c: Allow enabling core-clr from the embedding
5542         API.
5544 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5546         * socket-io.c: when requesting all the local ips, if there are no
5547         interfaces up and running, MS returns 127.0.0.1.
5549 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5551         * mono-perfcounters-def.h: processor time is an inverse time.
5552         Fixes bug #468625.
5554 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5556         * socket-io.c: an empty host name returns the list of local IPs.
5557         Fixes bug #386637 part 1/2.
5559 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5561         * verify.c (mono_class_interface_implements_interface): Call
5562         mono_class_setup_interfaces ().
5563         (merge_stacks): Ditto.
5565 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5567         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5568         klass->interfaces.
5569         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5570         (mono_generic_class_get_class): Ditto.
5572 2009-02-06  U-QUACK\miguel  <miguel@quack>
5574         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5575         they live in security.c
5577         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5578         another bit from Paolo's code.
5580 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5582         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5583         methods which will be discarded by add_imt_builder_entry ().
5585         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5586         need to be boxed.
5588         * loader.c: Add a statistics for the size of the memberref signature cache.
5589         
5590         * loader.c (find_cached_memberref_sig): New helper function.
5591         (cache_memberref_sig): Ditto.
5593         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5594         they will be parsed again for every generic instantiation, leading to unbounded
5595         memory growth.
5597 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5599         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5600         parameters of generic methods.
5602         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5603         after the original method is copied to the inflated method.
5604         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5606         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5607         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5609         * class.c metadata.c: Update after the changes above.
5611 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5613         * metadata-verify.c: Simplified error handling and added
5614         section table validation.
5616 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5618         * class-internals.h (MonoClassExt): New structure containing rarely used
5619         fields of MonoClass.
5620         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5621         through a new 'ext' field.
5623         * class.c (mono_class_alloc_ext): New helper function to allocate 
5624         class->ext.
5626         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5628 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5630         * object.c (mono_object_get_virtual_method): Properly inflate
5631         generic methods.  Fixes #472692.
5633 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5635         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5636         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5637         for the parent type, the created type must be ready to be used on a generic
5638         instantiation.
5639         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5640         we won't have duplicated entries in generic_inst_cache.
5642         Fixes #469553.
5644 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5646         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5647         replace with plain BSD per the comments on the bug MONO77637.
5649 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5651         * class.c (mono_class_get_generic_class): New accessor function.
5652         (mono_class_get_generic_container): Ditto.
5654         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5655         fields, similar to the ones in MonoMethod.
5657         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5658         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5660         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5661         
5662         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5663         the same information as element_class->byval_arg.
5665         * class.c reflection.c: Remove references to class->byval_arg.
5667         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5668         klass->enum_basetype directly.
5670         * verify.c metadata.c object.c icall.c reflection.c: Use 
5671         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5672         directly.
5674 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5676         * icall-def.h: Remove internal calls for sockets when
5677         DISABLE_SOCKET is defined, file system writing features when the
5678         OS only support reading and not writing data and Policy support if
5679         the Policy is disabled.
5680         
5681         * image.c (do_mono_image_open): Apply Paolo's patches for using
5682         mono_file_map_ APIs here.
5684         * assembly.c: Add support for platforms to avoid prefix
5685         auto-detection. 
5687 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5689         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5690         warning.
5692         * class.c (mono_class_inflate_generic_class): New helper function.
5694         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5695         statistics for inflated methods/classes.
5697         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5699         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5700         the call is made from Delegate.CreateDelegate () for the invoke method of
5701         a delegate.
5703         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5705         * metadata.c (mono_metadata_signature_size): New helper function.
5707         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5708         generic instances.
5710         * metadata.c (inflated_method_in_image): Avoid calling 
5711         mono_method_signature () if the method does not already have a signature.
5713 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5715         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5716         valuetype is compatible with target type, check by inheritance as a
5717         VT is not really compatible with System.ValueType, for example.
5719         * verify.c (do_invoke_method): Improve error message.
5721         * verify.c (do_box_value): If boxing a nullable, use the type argument
5722         on stack instead.
5724         * verify.c (do_newobj): Improve error message.  
5726         Fixes #469549.
5728 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5730         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5732 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5734         * generic-sharing.c: Don't hold domain lock when calling
5735         instantiate_other_info().  Fixes #471958.
5737         * domain-internals.h, loader.c: Describe locking policy of domain
5738         lock vs loader lock.
5740 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5742         * verify.c (mono_delegate_signature_equal): Make it possible to check
5743         first-arg-bound delegates to static method.
5745         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5746         static methods with the first arg bound.
5748         Fixes #469529.
5750 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5752         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5753         errors.
5755         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5756         under strict mode. Any type, when boxed can be seen as a reference type.
5758         Fixes #469528.
5760 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5762         * object.h: The lower bound of an array is a signed integer value.
5763         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5764         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5766         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5767         calculate the upper bound.
5768         
5769         Fixes #471252.
5771 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5773         From Paolo's work, refactored, cleared up:
5774         
5775         * threadpool.c, icall.c: ifdef code that requires a working socket
5776         stack.
5778         * metadata.c (mono_metadata_field_info): Do not attempt to return
5779         a value from a function declared as void.
5781         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5782         from the console stack.
5784         * assembly.c: use strrchr instead of rindex.
5786         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5787         alloca.h on systems that have it.
5789         * environment.c: Avoid code that uses stuff from
5790         HAVE_SYS_UTSNAME_H
5791         
5792         * appdomain.c: Include sys/time.h.
5794         * console-io.c: include sys/ioctl.h if it is available.
5796 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5798         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5800         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5801         the method builder.
5803         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5804         after it was created and cached, as the later is not thread safe.
5805         
5806 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5808         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5809         called while the debugging module is not initialized. Fixes #471669.
5811 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5813         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5815         Fixes #471255.
5817 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5819         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5820         loader lock is not taken while the templates lock is held.  Fixes
5821         #471089.
5823 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5825         * metadata.c (type_in_image): Added a check to fix a monodis
5826         crash.
5828 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5830         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5831         nullable arguments.
5833         * object.c (mono_runtime_invoke_array): Ditto.
5834         
5835         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5836         freeing wrappers of dynamic methods.
5838         * loader.c (mono_free_method): Call it. Fixes #463323.
5839         
5840         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5841         methods taking vtype/byref arguments, to fix yet another bug caused by
5842         the sharing of runtime invoke wrappers. Partly fixes #471259.
5844 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5846         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5847         <first file in file table>:1 when the IL offset does not have an associated
5848         line number.
5850 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5852         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5853         variable info for a method.
5855         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5856         
5857 2009-01-30  Jb Evain  <jbevain@novell.com>
5859         * pedump.c: reuse code from monodis to make sure pedump honors
5860         MONO_PATH, which is needed to verify net_2_1 assemblies.
5862 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5864         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5865         there is no line number info.
5867 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5869         Avoid some MonoType allocations
5870         * reflection.c (mono_reflection_initialize_generic_parameter):
5871         Reuse MonoType from param->pklass rather than allocating one.
5872         (mono_dynamic_image_free): Update to changes.
5874 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5876         Rearrange some code to improve consistency
5877         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5878         (mono_reflection_initialize_generic_parameter): ... here.
5880 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5882         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5883         with type constraints as an experiment.
5885         * boehm-gc.c (on_gc_notification): Update mono_stats.
5887 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5889         Avoid some allocations
5890         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5891         pointer to tail array to avoid extra allocation.
5892         * metadata.c (free_generic_inst): Update to changes.
5893         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5894         on-stack struct.
5896 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5898         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5899         return TRUE if the two type objects are the same.
5901 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5903         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5904         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5905         klass->min_align, since klass->min_align contains the managed alignment,
5906         while the native alignment can be different, like for longs on x86.
5907         Fixes #469135.
5909         * class-internals.h (MonoMarshalType): Add a min_align field.
5911 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5913         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5914         the 1.0 format.
5916 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5918         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5919         some comments about the usage of the used_regs field.
5921         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5922         Fixes #469217.
5924 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5926         * appdomain.c: return NULL instead of throwing FileNotFoundException
5927         when LoadAssembly() fails.
5929 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5931         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5932         image if the owner is NULL.  Fixes the AOT failures.
5934 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5936         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5937         MonoGenericParam structure using memset so the image field is initialized
5938         as well.
5940 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5942         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5943         a plain store.
5945 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5947         * class.c (mono_class_setup_vtable_general): In the generic instance
5948         optimization, set method->slot for abstract virtual methods. Fixes part of
5949         #467834.
5951 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5953         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5954         which signals that the unloading has started but all appdomain services must
5955         remain operational.
5957         * appdomain.c (mono_domain_unload): The initial state for unloading now
5958         is unloading_start and we switch to unloading after the managed call to
5959         AppDomain::DomainUnload has finished.
5961         The new unloading state has to be created because managed code in the
5962         DomainUnload event can depend on things like the threadpool still working.
5963         The domain must remain fully functional while the event executes.
5965         This shown as an issue due to Process::WaitForExit, which waits for
5966         async reads of stdout and stderr to complete. Since those are processed
5967         in the threadpool the code deadlocks because the DomainUnload callback 
5968         waits for the async read finished event, which should have been set by a
5969         threadpool job but has been discarded due to the domain been in unload
5970         state.
5972 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5974         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5975         image must match.
5977 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5979         * reflection.c (resolve_object): For fields, inflate the class and
5980         then get the field in the inflated class.
5982 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5984         * object-internals.h (struct _MonoException): Added a comment
5985         explaining the new use of trace_ips.
5987 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5989         * generic-sharing.c (inflate_other_data): Inflate array methods
5990         correctly.
5992         * loader.c, class-internals.h: Rename search_in_array_class() to
5993         mono_method_search_in_array_class() and make it non-static.
5995 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5997         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5998         Hopefully fixes #458168.
6000 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6002         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6003         as it is performed elsewhere.
6005         Code is contributed under MIT/X11 license
6007 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6009         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6010         requests queued.
6011         * object.c (mono_raise_exception): Increment the exceptions total
6012         counter when an exception is thrown.
6013         * class-internals.h: Add a location for storing the total number of
6014         asp.net requests served.
6015         * mono-perfcounters.c: Implement update support for asp.net counters
6016         from the class libraries. Implement read support for asp.net counters
6017         and exceptions total counter.
6019 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6021         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6022         accessing klass->methods. Fixes #467385.
6024 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6026         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6027         for byval arguments without an [Out] attribute. Fixes #467212.
6029         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6030         Fix compilation under android.
6031         
6032         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6033         processed, scan them directly after they are copied, to achieve better locality
6034         and cache usage.
6036         * socket-io.c: Applied patch from Koushik Dutta
6037         (koush@koushikdutta.com). Disable IPV6 when running under android.
6039 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6041         * icall.c (ves_icall_InternalExecute): Add write barriers.
6043         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6044         the GC code.
6046         * sgen-gc.c: Implement write barriers in IL code.
6048 2009-01-17  Geoff Norton  <gnorton@novell.com>
6050         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6052 2009-01-17  Geoff Norton  <gnorton@novell.com>
6054         * image.c: When unloading the image->references table, there can be gaps
6055         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6056         when unloading an appdomain.
6058 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6060         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6061         speed up ptr-in-nursery checks.
6063         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6064         threads_lock () to prevent deadlocks.
6066         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6067         does not need to be scanned during minor collections, since writes to it
6068         must use write barriers.
6070 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6072         * metadata-verify.c: Add pe nt header verification.
6073         
6074 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6076         * gc.c: Fix a few warnings when using SGEN.
6078 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6080         * metadata-verify.c: Add pe optional header verification.
6082 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6084         * sgen-gc.c: Add support for user defined marker functions, used by
6085         MonoGHashTable to avoid registering a GC root for every hash node.
6087 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6089         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6090         non-pinned roots into separate hashes to avoid having to traverse them
6091         in functions which are only interested in one kind.
6093 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6095         * metadata-verify.c: Add pe header machine field verification.
6096         
6097 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6099         * metadata-verify.c: Add pe header size verification.
6101 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6103         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6104         using the GC, they don't contain references.
6106         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6108 2009-01-13  Geoff Norton  <gnorton@novell.com>
6110         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6111         AppDomains created on the native side can be cleaned up on the native side.
6113 2009-01-13  Geoff Norton  <gnorton@novell.com>
6115         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6116         as well as the managed api.
6118 2009-01-13  Geoff Norton  <gnorton@novell.com>
6120         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6121         with a MonoAppDomain initialized against it.
6123 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6125         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6126         
6127         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6129         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6130         into the wrapper caches. Fixes #465700.
6132         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6133         method builder.
6134         (mono_mb_create_method): Set the clauses from the method builder.
6136 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6138         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6139         Patch from Makoto Kishimoto.
6141 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6143         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6144         encoding them as ROOT_DESC_COMPLEX.
6145         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6147 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6149         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6150         no longer point to the nursery.
6152         * sgen-gc.c: Add a few comments/FIXMEs.
6153         
6154         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6156         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6157         initialization of the various _method variables thread safe. Fixes
6158         #465377.
6160 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6162         * domain.c, domain-internals.h: Remove the shared_generics_hash
6163         and its lookup functions.
6165 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6167         * socket-io.c:  Fixing the MSVC build. 
6169         Code is contributed under MIT/X11 license.
6171 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6173         * metadata-verify.c: Add pe header watermark verification.
6175 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6177         * metadata-verify.c: Add lfanew verification.
6179 2009-01-12  Jb Evain  <jbevain@novell.com>
6181         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6182         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6184 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6186         * socket-io.c: Fix the build.
6188         * environment.c: Fix an #ifdef.
6190 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6192         * threadpool.c (async_invoke_thread): Handle the wait function returning
6193         WAIT_IO_COMPLETION as well.
6194         (async_invoke_io_thread): Ditto.
6196 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6198         * threads.c: Fixing the Windows build.
6200         Code is contributed under MIT/X11 license.
6202 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6204         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6205         interrupt a wait.
6206         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6207         the thread to wait again.
6209 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6211         * metadata-verify.c: Initial skeleton of the metadata verifier.
6213         * pedump.c: Add support for the metadata verifier.
6215         * verify-internal.h: Export the whole assembly metadata verifier function.
6217 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6219         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6221 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6223         * Makefile.am: Upgrade dtrace-prelink.sh location.
6225 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6227         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6228         well. Otherwise the shutdown deadlock that happens on unix will can happen
6229         as well.
6230         If the main thread code finishes too fast it's possible that the finalizer
6231         thread won't have executed yet, won't record itself as the finalizer thread
6232         and the shutdown sequence will wait on it forever.
6234 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6236         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6237         with MSVC.
6239 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6241         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6242         Robert Jordan for pointing this out.
6244 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6246         * icall.c
6247         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6248         ves_icall_System_IO_DriveInfo_GetDriveType.
6250 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6252         * icall.c: Wrap calls to mono_strtod in CriticalSection
6253         invocations when using eglib, to work around #464316.
6255 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6257         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6258         return value of GetCurrentDirectory to never access unitialized memory.
6260 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6262         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6263         return value of GetCurrentDirectory and expand the buffer if needed.
6265         Fixes #459094.
6267 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6269         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6270           Adding a call to mono_init_com_types.
6272         Code is contributed under MIT/X11 license.
6274 2009-01-07  Geoff Norton  <gnorton@novell.com>
6276         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6277         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6278         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6279         be the value of the ip buffer.
6281 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6283         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6284         interfaces_packed here.
6286         Fixes part of #463294.
6288 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6290         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6292         Fixes part of #463294.
6294 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6296         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6297         is a boxed complex as well.
6299         Fixes part of #463294.
6301 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6303         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6304         control if a methodspec should be created for the generic method definition from external assemblies.
6305         Caching of methodspec is done using the handleref hash table.
6307         Fixes #462592.
6309 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6311         * loader.c (find_method): When searching the interfaces of a class
6312         check the transitive closure of implemented interfaces.
6314         Fixes #463303.
6316 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6318         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6319         
6320 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6322         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6323         interfaces calculation to fill_valuetype_array_derived_types.
6325         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6326         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6327         for example.
6329         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6330         interfaces for valuetypes if needed.    
6332         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6333         for their basetype as well. Types are array expanded if rank is > 0.
6335         Fixes #400716.
6337 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6339         * socket-io.h : Changing the signature of
6340           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6341           the blocking state.
6343         * icall-def.h :  Changing the signature of
6344           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6346         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6347           For Windows only.  Avoid blocking when calling accept by
6348           querying for a connection via select.  The loop also queries
6349           the thread state every 1000 micro seconds for the thread
6350           stop state.  This will avoid the process hanging on shutdown
6351           when using a TcpChannel that is never connected to.
6353         Code is contributed under MIT/X11 license.
6355 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6357         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6359 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6361         * class.c (get_implicit_generic_array_interfaces): Extract common
6362         code to a helper function making it a lot easier on the eyes.
6364 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6366         * class.c (get_implicit_generic_array_interfaces): If the internal
6367         enumerator is an interface inflate System.Object instead of itself.
6369         Fixes #461261.
6371 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6373         * object.c (mono_runtime_invoke_array): Don't assert with
6374         byref nullable types.
6376         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6377         byref nullables we unbox the object and store it on the
6378         stack. 
6379         We can't use the boxed object since it is the T of Nullable<T>
6380         and the boxed representation of a nullable it's underlying type
6381         or null.
6382         We could cheat and create a boxed nullable and use the same
6383         machinery of other byref VTs but this feels like a hack and
6384         using the stack has the bonus of reducing heap pressure.
6386         Fixes #461941.
6388 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6390         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6391         return value.
6393         Fixes #461867.
6395 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6397         * icall-def.h : Adding an internal call definition for 
6398           System.Environment.internalBroadcastSettingChange.
6400         * icall.c : Adding a Windows only implementation to broadcast a 
6401           WM_SETTINGCHANGE when an environment variable has changed.
6403         Code is contributed under MIT/X11 license.
6405 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6407         * class.c, class-internals.h: Made
6408         mono_class_has_parent_and_ignore_generics() non-static.
6410 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6412         * image.c: deal with the mmap failing when loading an image.
6414 2008-12-17  Geoff Norton  <gnorton@novell.com>
6416         * threadpool.c: Ensure that the io_queue_lock is initialized
6417         in all circumstances, as we always attempt to cleanup against it.
6419 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6421         * icall.c (ves_icall_System_Environment_get_Platform): For
6422         compatibility reasons for existing client code we will keep
6423         returning 4 for a while.   
6425         For how long will depend on the documentation being updated, and
6426         for us to give client code a chance to be updated.
6428         This reverts the original decison on #433108 since we did not
6429         catch roughly 33 instances of the broken code in our own source
6430         code base, we did not catch failures on the buildbots, and QA did
6431         not bring this as a problem.
6433         Only today I found some customer's code breaking due to our own
6434         class libraries not being fully updated and tracked it down to
6435         this change.  I am reverting it because if we could not even get
6436         our story straight in our own code base, how can we hope that our
6437         end user code be fixed?
6439         As of this morning, our Wiki page that documents how to detect
6440         Unix had not been fixed.    
6442 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6444         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6446         * class.c (mono_class_get_fields): Handle loading errors.
6448 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6450         * 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.
6451         
6452 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6454         * mono-perfcounters.c: avoid warning.
6456 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6458         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6459         make sure all interfaces have MonoClass::interface_id set.
6461         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6462         method table is property set.
6464 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6466         * class.c: New function mono_class_setup_interface_id that setup
6467         MonoClass::interface_id if needed.
6469         * class-internals.h: Export new function.
6471 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6473         * class.c: Add code to sanity check the vtable after setup_vtable_general
6474         has done it's work.
6476 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6478         * icall.c: make Assembly.GetExecutingAssembly work properly when
6479         reflection is used to invoke the method.
6480         Bug #321781 fixed.
6482 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6484         * metadata/generic-sharing.c: Look for constraints in all type
6485         arguments, not just the first one.
6487 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6489         * appdomain.c: return the correct CodeBase for an Assembly instance
6490         that was loaded from the shadow-copy directories.
6491         Bug #458190 fixed.
6493 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6495         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6497         * sgen-gc.c (check_object): New debugging helper function.
6499         * object.c: Fix calls to mono_value_copy_array ().
6501 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6503         * class.c (mono_class_setup_fields): If working on an inflated class
6504         first check if the generic definition did init with success.
6506         Fixes #445361.
6508 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6510         pedump.c (main): Fix a warning.
6512 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6514         * object-internals.h : Adding a definition for 
6515           MonoReflectionComVisibleAttribute.
6517         * marshal.c (cominterop_com_visible) :  Method added to check the 
6518           ComVisible attribute of a class.
6520         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6521           cominterop_raise_hr_exception added to consolidate common code 
6522           to raise hr exceptions.
6524         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6525           if a managed class should support IDispatch.
6527         * marshal.c 
6528           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6529           Added additional checks for managed object when getting 
6530           an IDispatch interface.
6532         Code is contributed under MIT/X11 license.
6534 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6536         pedump.c (main): Handle mono_get_method () returning NULL. 
6538 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6540         * marshal.h: Fix a warning.
6542 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6544         * marshal.c : Adding cominterop_release_all_rcws to release all
6545           runtime callable wrappers held by the runtime.
6547         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6548           
6549         Code is contributed under MIT/X11 license.
6551 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6553         * metadata.c (mono_image_alloc_lock): New helper function.
6554         (mono_image_alloc0_lock): Ditto.
6556         * metadata.c: Use the alloc_lock () helper functions for allocating
6557         memory from the image mempool.
6559 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6561         * class.c (mono_class_from_generic_parameter): Document it's
6562         locking behavior. Fix double checked locking here, we stored in
6563         param->pklass a partially initialized MonoClass and no membar was used.
6565 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6567         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6568         (3) functions are present in the C library use them to do the
6569         job. If they are absent, make sure that the sum of int_part and
6570         dec_part is rounded before returning. This is necessary due to the
6571         division of dec_part by the power of 10 before the final addition
6572         is performed - if the result is not rounded in some cases it will
6573         yield invalid results.
6575 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6577         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6578         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6579         instruction instead of a pointer constant.
6581 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6583         * loader.c (mono_method_get_header): Do most of the work outside the
6584         loader lock, to avoid assembly load hook deadlocks.
6586         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6587         (mono_metadata_parse_type_full): Ditto.
6589 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6591         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6592         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6593         funtions. Finally, use a lock to produce well ordered output.
6595         The lock looks silly, as all calls to the corlib mempool should be guarded
6596         with the loader lock, but for some reason this fact doesn't help. 
6598         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6600 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6602         * socket-io.c: 64 bit big-endian fixes.
6604 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6606         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6607         targets that require strict compatibility between the types.
6609         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6610         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6611         Kill the strict argument and create a new one valuetype_must_be_boxed.
6613         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6614         state that all valuetypes must be boxed.
6616         Fixes #448560.
6618 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6620         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6621         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6623         Contributed under MIT/X11 license.
6625 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6627         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6628         the inflate_generic_type machinery should handle it.
6630         This avoids a crash when the field's flags is zero and it's type is
6631         a primitive.
6632         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6633         is zero and will return one of the cached built-in primitive types. Since
6634         those types live in read-only memory, the code that copies it crashes.  
6636 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6638         * object.c: Don't put function descriptors into generalized IMT
6639         thunks.
6641 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6643         * class.c: Enable generic code sharing on PPC64.
6645 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6647         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6648         from mini/mini.c.
6650         * generic-sharing.c: Allocate the method template slists from the
6651         image mempool so it doesn't leak.
6653 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6655         * class.c (generic_array_methods): Release the linked list.
6657 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6659         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6660         invocation to g_utf16_to_utf8().
6662 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6664         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6665         arguments on big endian archs.
6667 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6669         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6670         the type name (test added in corlib).
6672 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6674         * pedump.c: initialize perf. counters. Fixes a segv.
6676 2008-11-25  Martin Baulig  <martin@ximian.com>
6678         * mono-debug-debugger.c
6679         (mono_debugger_runtime_invoke): Return the exception object if an
6680         exception was thrown.  Visual Studio displays the exception object
6681         in the locals window.
6683 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6685         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6686         ftnptr.
6688 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6690         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6691         MONO_TYPE_U are sizeof (gpointer), too.
6693 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6695         * marshal.c (mono_type_native_stack_size): Fixed size and
6696         alignment for reference types.
6698 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6700         * class.c (mono_class_generic_sharing_enabled): Disable generic
6701         code sharing for PPC64.
6703 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6705         * icall.c (mono_method_get_equivalent_method): Make sure
6706         method->klass->methods is inited before looping over it.
6708 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6710         * object.c: when calling ExecuteAssembly in a newly created domain,
6711         the configuration file and application base are already set up.
6712         Bug #446353 take 2 fixed.
6714 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6716         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6717         Fixes #444715. Fix a warning.
6719 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6721         * appdomain.c: write the full path of the assembly to the .ini file
6722         created when "shadow-copying"
6723         Bug #446353 fixed.
6725 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6727         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6728         if signature==FALSE.
6730 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6732         * marshal.h : Fix the cygwin build.
6733            marshal.c:12442: undefined reference to `_IID_IMarshal'
6734           
6735         Code is contributed under MIT/X11 license.
6737 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6739         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6740           free threaded marshaler when QueryInterface is called on a COM callable
6741           wrapper requesting the IMarshal interface.
6742           
6743         Code is contributed under MIT/X11 license.
6745 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6747         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6749         * reflection.c (mono_type_get_object): Special case the very common
6750         void type.
6752         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6753         hold typeof(void).
6755 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6757         * process.h : Adding method declaration for
6758           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6759           
6760         * process.c : Adding implementation for
6761           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6762           
6763         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6764           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6766         Code is contributed under MIT/X11 license.
6768 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6770         * appdomain.c (unload_thread_main): Clean up threadpool by
6771         calling mono_thread_pool_remove_domain_jobs.
6773         * domain-internals.h (struct _MonoDomain): Add new fields to
6774         help coordinate the cleanup of the threadpool.
6776         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6777         that cleans up the threadpool of all jobs associated with an appdomain.
6778         It does that by cleaning up the queues and making sure all active
6779         threads are accounted.
6781         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6782         unloaded or in the process of. Take this is such way that there is
6783         no race condition between another thread starting the unload and the
6784         current thread acknowledging it.
6786         * threadpool.c (async_invoke_thread): Same.
6788         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6789         firing the new thread.
6791         * threadpool.c (start_tpthread): Same.
6793         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6795         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6797 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6799         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6800         Add support for DuplicateHandle.
6801         
6802         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6803         Add support for DuplicateHandle.
6804         
6805         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6806         Add support for DuplicateHandle.
6808         Code is contributed under MIT/X11 license.
6810 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6812         * class-internals.h: Make min_align into a whole byte.
6814         * class.c: Set min_align for SIMD types to 16.
6816 2008-11-05  Geoff Norton  <gnorton@novell.com>
6818         * attach.c: Default the attacher to enabled for all cases including
6819         embedded.
6821 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6823         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6824         change r117650.
6826 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6828         * monitor.c, monitor.h: New function for querying offsets of
6829         members of MonoThreadsSync.
6831 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6833         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6834         to speed up this function and to avoid the boundless memory growth caused by
6835         the signature_dup () calls.
6837 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6839         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6840         wrapper.
6842         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6843         by 1 bit.
6845         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6847 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6849         * appdomain.c:
6850         * domain-internals.h: made mono_set_private_bin_path_from_config()
6851         "internal".
6852         * object.c: call the above function after setting the configuration
6853         file path for the root domain.
6854         Fixes bug #314478.
6856 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6858         * assembly.c: when the assembly is loaded from an absolute path, end
6859         basedir with a directory separator.
6860         Bug #440781 fixed.
6862 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6864         * monitor.c (mono_monitor_get_fast_enter_method): If
6865         CompareExchange is not available, don't create the fastpath
6866         instead of asserting.  (The method is missing in the 1.1 profile.)
6868 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6870         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6872         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6873         Monitor.Exit IL fastpaths.
6875 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6877         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6879 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6881         * class.c (mono_class_create_from_typedef): Added Vector2l.
6883 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6885         * class.c (mono_class_create_from_typedef): Added Vector2d.
6887 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6889         * appdomain.c: translate \ into / for cache_path.
6890         * domain-internals.h: new mono_is_shadow_copy_enabled().
6891         * icall.c: (fill_reflection_assembly_name) do the same path
6892         manipulations that get_code_base does.
6893         (get_code_base) use mono_is_shadow_copy_enabled.
6895 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6897         * appdomain.c: shadow-copied assemblies go to CachePath +
6898         ApplicationName when both are set. DynamicBase has nothing to do with
6899         shadow copies.
6900         Bug #406877 fixed.
6902 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6904         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6905         STANDALONESIG table.
6907         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6908         standalone signatures.
6910         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6911         comparison code: instead of comparing the signatures using a custom
6912         equals function, transform them to a common signature and compare that. This
6913         works better with AOT.
6915 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6917         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6919         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6920         call for generic instances.
6921         (mono_class_setup_properties): Call setup_properties () before accessing
6922         gklass->properties.
6924         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6925         over the virtual methods of a class using metadata if possible, avoiding the
6926         creation of MonoMethod's for non-virtual methods.
6927         
6928         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6929         get_virtual_methods () to iterate over the virtual methods of classes.
6931 2008-10-25  Martin Baulig  <martin@ximian.com>
6933         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6935 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6937         * class.c (mono_class_create_from_typedef): Added Vector4i.
6939 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6941         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6942         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6943         special-casing applies to eliminate the call completely.
6945 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6947         * class.c (mono_class_create_from_typedef): Added Vector8s.
6949 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6951         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6953 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6955         * icall.c: get rid of annoying warning.
6957 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6959         * threadpool.c: in 1.x, if you change the background status of the
6960         threadpool thread, it's not reset.
6961         Remove unnecessary calls to SetState.
6963 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6965         * threadpool.c: asynchronously create a set of idle threads upon first
6966         use of the threadpool. SetMinThreads will now start the appropriate
6967         number of idle threads if they are not already running. The default is
6968         1 threadpool thread per CPU. Increased the maximum number of threads
6969         per CPU to 10.
6971 2008-10-22  Martin Baulig  <martin@ximian.com>
6973         Revert r116521 from Zoltan, it breaks the debugger:
6975         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6976         over the virtual methods of a class using metadata if possible, avoiding the
6977         creation of MonoMethod's for non-virtual methods.
6978         
6979         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6980         get_virtual_methods () to iterate over the virtual methods of classes.
6982 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6984         * threads.c: when creating a threadpool thread, set its state to
6985         'background'.
6986         * threadpool.c: reset the background state of a threadpool thread
6987         after finishing each work item
6988         Bug #437888 fixed.
6990 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6992         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6993         
6994         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6995         generic instances which works by inflating the methods in the container
6996         class's vtable.
6998         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6999         variant which doesn't make a copy if no inflation was done.
7000         (mono_class_setup_fields): Use it.
7002         * metadata.c (mono_metadata_get_shared_type): New helper function to
7003         return a shared instance of a given MonoType.
7005         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7006         a copy of most non-generic types.
7008 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7010         * threadpool.c: remove one more GetSystemInfo () call.
7012 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7014         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7015         use the code in mono-proclib.h to get processor information.
7017 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7019         * appdomain.c: fixed the logic that determines whether assemblies in a
7020         directory are "shadow-copied" or not. Bug #433483 fixed.
7022 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7024         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7025         warning.
7027 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7029         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7030         returning a vtype.
7032         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7033         reflection.c: Use mono_field_get_name () for accessing a field's name.
7035         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7036         class.c
7038         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7039         field.
7041         * loader.c (find_method_in_class): Reenable the metadata optimization by
7042         not using it for generic instances.
7044         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7045         data/def_type fields from MonoClassField into a separate structure.
7046         (struct MonoClassField): Remove data/def_type fields.
7047         (struct _MonoClass): Add a 'field_def_values' array to store the default
7048         values/RVA for fields.
7050         * class.c reflection.c: Update after the changes.
7051         
7052         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7053         for accessing field->data.
7055         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7057         * loader.c (find_method_in_class): Revert the last change for now as
7058         it breaks Mono.C5 unit tests.
7060         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7061         'field_generic_types' and 'field_objects' which contain the information
7062         previously stored in MonoInflatedField.
7063         (MonoInflatedField): Delete.
7064         (struct _MonoClassField): Delete 'generic_info' field.
7066         * reflection.c: Store the information which was previously in 
7067         field->generic_info in MonoDynamicGenericClass instead.
7069         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7070         MonoClassField changes.
7072 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7074         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7075         store the value inside the data array of the MonoMethodWrapper.
7076         This saves memory, is faster and fixes the lifetime issues (methods
7077         were never removed from the hash previously). May also fix bug#436996.
7079 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7081         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7082         generic instances, compute the type from the generic definition instead of
7083         looking in field->generic_info.
7085         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7086         for inflated fields, the only user was get_fieldref_token () which no
7087         longer needs it.
7089         * class.c (mono_class_init): Revert the last change as it seems to cause
7090         crashes.
7092         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7093         bytes on 64 bit platforms.
7095         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7096         
7097         * object.c (mono_class_create_runtime_vtable): Don't initalize
7098         field->data/field->def_type here, it is done lazily by 
7099         mono_class_get_field_default_value ().
7101         * icall.c (ves_icall_get_enum_info): Call 
7102         mono_class_get_field_default_value () instead of directly accessing
7103         field->data and field->def_type.
7105         * object.c (get_default_field_value): Ditto.
7107         * class.c (mono_field_get_data): Ditto.
7108         
7109         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7110         call for generic instances.
7112         * loader.c (find_method_in_class): If klass != from_class, then inflate
7113         the method with the context of from_class, since the caller assumes this.
7115 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7117         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7118         for accessing method->slot.
7120 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7122         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7124 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7126         * class.c (mono_method_get_vtable_index): Use
7127         mono_method_get_vtable_slot () for accessing method->slot.
7129         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7130         accessing klass->methods.
7132         * class.c (mono_method_get_vtable_slot): New helper function.
7133         (mono_class_get_vtable_entry): Ditto.
7134         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7135         accessing method->slot.
7137         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7138         method to get_inflated_method ().
7140         * class.c (mono_class_get_inflated_method): New helper method to obtain
7141         a method of an inflated class without calling setup_methods ().
7142         (mono_class_get_cctor): Use get_inflated_method.
7144         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7145         
7146         * marshal.c image.c: Lazily create all the marshal caches.
7148         * image.c (mono_image_init): Move initialization of runtime_invoke
7149         caches to marshal.c.
7151         * marshal.c (get_cache): New helper function to lazily initialize a 
7152         wrapper cache.
7153         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7155         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7157 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7159         * loader.c: fixed check for interface type.
7161 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7163         * appdomain.c: check for NULL setup before it's referenced.
7166 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7168         * class.c: remove the unused old vtable setup code.
7170 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7172         * class.c: don't depend on interface order in
7173         setup_interface_offsets (bug #435777).
7174         * reflection.c: sort the InterfaceImpl table (patch from
7175         Jb Evain  <jbevain@novell.com>).
7177 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7179         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7180         the low level assemblies lock.
7182 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7184         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7185         object.c, reflection.c, socket-io.c, threads.c: introduced
7186         mono_framework_version () to return the major framewrok version,
7187         changed the code that was using more complex patterns to use it.
7188         Return the correct value for PlatformID for OSX.
7190 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7192         * icall-def.h, process.h, process.c: added an icall to get info about
7193         processes using mono-proclib.
7195 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7197         * mono-perfcounters.c: use the mono-proclib functions to
7198         access process information.
7200 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7202         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7203         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7204         reflection.c: remove rawbuffer usage: mmap support is more sanely
7205         provided by utils/mono-mmap.
7207 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7209         * gc.c: use posix semaphores when possible so that
7210         mono_gc_finalize_notify() is signal safe.
7212 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7214         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7215         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7216         be #ifdef-ed out, the linker will remove the rest.
7218         * marshal.c: Implement DISABLE_COM.
7220         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7222 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7224         * locales.c (string_invariant_compare_char): Optimization: do not
7225         call g_unichar_type unless we actually need the information.
7227 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7229         * object.c, class-internals.h: Also create remoting trampolines
7230         for generic methods.  Pass the domain to the remoting trampoline
7231         creation function, too.
7233 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7235         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7237 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7239         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7240         Vector4ui.
7242 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7244         * assembly.c:
7245         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7247 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7249         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7250         for the least possible amount of time (extending the fix in r113458).
7252 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7254         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7256 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7258         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7259         as possible simd intrinsic types.
7260         Optimized the test to check for the common prefix first.
7262 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7264         * class.c: back out part of a broken optimization committed on
7265         May 23th (bug #433908).
7267 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7269         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7270         Win32.  Should fix #432388 for most cases until we have the new
7271         profiler on Win32.
7273 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7275         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7276         instead of using inst->id so the hash is stable for AOT.
7278 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7280         * appdomain.c:
7281         * icall.c: create a .ini file for shadow-copied assemblies that
7282         contains the location of the original assembly. Use this to return the
7283         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7284         Also fix the number of '/' for windows when returning the CodeBase.
7285         Fixes bug #430920.
7287 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7289         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7291         Code is contributed under MIT/X11 license.
7293 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7295         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7296           if if the class vtable needs initialized.
7298         Code is contributed under MIT/X11 license.
7300 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7302         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7303           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7304           STRING->BSTR, and CLASS->INTERFACE.
7306         Code is contributed under MIT/X11 license.
7308 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7310         * sysmath.h: changed the declaration of the
7311         ves_icall_System_Math_Round2 icall by adding an extra
7312         away_from_zero parameter.
7314         * sysmath.c (ves_icall_System_Math_Round2): added support for
7315         away from zero rounding. The icall now takes an extra boolean
7316         parameter to signal that away from zero operation is requested.
7318 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7320         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7321         the delegate klass so it can work with full-aot.
7322         (mono_marshal_get_delegate_end_invoke): Ditto.
7323         (mono_marshal_get_delegate_invoke): Ditto.
7325 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7327         * gc.c, attach.h, attach.c: remove a bad pattern:
7328         add_finalizer_callback () is not implemented correctly, it can't
7329         without adding more overhead to the finalizer loop and it's not
7330         even needed, since we know exactly what we need to call, so there is
7331         no need to do so through an expensive function pointer.
7333 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7335         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7336         for the no-gc case.
7337         * attach.c (mono_attach_init): Remove the #ifdef.
7339 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7341         * attach.c (mono_attach_init): Don't use
7342         mono_gc_add_finalizer_thread_callback when compiling without GC.
7343         Fixes #432306.
7344         
7345         Code is contributed under MIT/X11 license.
7347 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7349         * class.c (mono_class_create_from_typedef): Remove the 
7350         #ifndef DISABLE_SIMD stuff.
7352 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7354         * class-internals.h (MonoClass): Added simd_type bit field.
7356         * class.c (mono_class_create_from_typedef): Check if type is a simd
7357         intrinsic.
7359 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7361         * object.c (mono_method_add_generic_virtual_invocation): Only add
7362         instantiations to the thunk whose count is at least as large as
7363         the threshold.
7365 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7367         * icall.c: changed the Type of the exception thrown when trying to
7368         invoke a constructor on an abstract class. Part of the fix for bug
7369         #324185.
7371 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7373         * class.c, class-internals.h (mono_method_get_vtable_index): New
7374         function which returns the index into the vtable and properly
7375         handles inflated virtual generic methods.
7377 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7379         * object.c, domain.c, object-internals.h, domain-internals.h:
7380         Generalize IMT thunk machinery to also handle thunks for virtual
7381         generic method invokes.  When a virtual generic method is invoked
7382         more than a number of times we insert it into the thunk so that it
7383         can be called without lookup in unmanaged code.
7385         * generic-sharing.c, class-internals.h: Fetching a
7386         MonoGenericInst* for a method from an (M)RGCTX.
7388 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7390         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7391         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7392         marshalling. Fixes #431304.
7394 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7396         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7397           handle when ref is specified without In or Out.
7399         Code is contributed under MIT/X11 license.
7401 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7403         * loader.c (mono_get_method_constrained): Don't expand method with
7404         the class's context, because it's already a method of that class.
7406 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7408         * attach.c : should be correct build fix.
7410 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7412         * attach.c: Fix the previous change.
7414 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7416         * attach.c : quick w32 build fix.
7418 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7420         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7421         crashes MonoDevelop: #430455.
7423 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7425         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7426         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7428         * domain.c: Remove initialization/cleanup of the removed fields.
7430 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7432         * class.c (mono_class_generic_sharing_enabled): Enable generic
7433         code sharing for PPC.
7435 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7437         * attach.c : Fixing the Windows builds.
7439         Code is contributed under MIT/X11 license.
7441 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7443         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7444         the default generic sharing mode to 'all'.
7446 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7448         * generic-sharing.c, class-internals.h: New function for checking
7449         whether a method needs a static RGCTX invoke wrapper.  A few
7450         funtions moved from mini/generic-sharing.c.
7452         * icall.c: New function used.
7454 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7456         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7457         Static RGCTX invoke wrapping applies to value type methods, too.
7459         * class.c (mono_class_setup_vtable_general): In generic-shared
7460         value types, wrap methods with a static RGCTX invoke wrapper.
7462 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7464         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7465         osx build.
7467 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7469         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7470         register a callback which is called when the finalizer thread is woken
7471         up.
7472         (finalizer_thread): Call the callback if it exists.
7474         * attach.h attach.c: New files, implementing the attach mechanism.
7476         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7477         
7478         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7479         by the previous change.
7481 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7483         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7484         loader.c, marshal.c, metadata-internals.h, metadata.c,
7485         method-builder.c, object.c, reflection.c: introduced specific functions
7486         to allocate from the domain and image mempools and cleaned up most of
7487         the code to use them (still missing a few in reflection.c).
7488         Keep the loader bytes counter updated.
7490 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7492         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7493         loader-related counters.
7495 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7497         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7498         added more MS-compatible counters.
7500 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7502         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7503         class->blittable. Fixes #428217.
7505 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7507         * reflection.c (mono_image_get_field_on_inst_token): Call 
7508         field_encode_signature () since that handles custom modifiers too.
7509         Fixes #424663.
7511 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7513         * reflection.c (add_custom_modifiers): New helper function to merge custom
7514         modifiers stored in objects to a MonoType.
7515         (fieldref_encode_signature): Encode custom modifiers.
7516         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7517         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7519 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7521         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7522         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7523         64-bit IL only images because imports are not resolved for IL only images.
7524         Special thanks to Bill Holmes for finding this bug and testing the patch.
7525         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7527         Contributed under MIT/X11 license.
7529 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7531         * mono-config.c (dllmap_start): Add support for the bits keyword
7532         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7534 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7536         * reflection.c (inflate_mono_method): When the class the method is
7537         to be inflated for is itself not inflated, just return the method.
7539 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7541         * mono-perfcounters.c: use more user friendly process instance names.
7543 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7545         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7546           handle "[in] ref" and "[in][out] ref" cases.
7548         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7549           to mono_mb_create_method.  This was causing problems calling native to
7550           managed passing Variants by value.
7552         Code is contributed under MIT/X11 license.
7554 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7556         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7557         before accessing the friend_assembly_names field.
7559         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7560         times.
7561         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7562         called lazily when it is needed.
7564         * metadata-internals.h (struct _MonoAssembly): Add 
7565         'friend_assembly_names_inited' flag.
7567 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7569         * mono-perfcounters-def.h: fix the types of a few counters.
7570         * mono-perfcounters.c: implemented the instance names getter
7571         and a few bugfixes.
7573 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7575         * culture-info-table.h : regenerated.
7577 2008-09-17  Robert Jordan  <robertj@gmx.net>
7579         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7580         context bound objects. Fixes #415577.
7582         Code is contributed under MIT/X11 license.
7584 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7586         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7587         implementation (bug #423582).
7589 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7591         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7592         is not set. Fixes #426309.
7594 2008-09-16  Jb Evain  <jbevain@novell.com>
7596         * class.c (mono_class_from_name): fix the exported type look up
7597         when the type is defined in a referenced assembly.
7599 2008-09-16  Jb Evain  <jbevain@novell.com>
7601         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7602         increment the next index counter on each iteration to make that work
7603         for more than one type forwarder. Unmanaged part to fix #422929.
7605 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7607         * object-internals.h: enum ComInterfaceType in
7608         MonoInterfaceTypeAttribute is guint32, not guint16.
7610 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7612         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7613         writing code.
7615 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7617         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7618         not gboolean.
7620 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7622         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7623         Endianness fixes for MonoSymbolFileOffsetTable.
7625 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7627         * process.c (complete_path) : Removing quotes from the 
7628           input path.  The glib file routines do not handle file paths
7629           that have quotes around them.
7631         Code is contributed under MIT/X11 license.
7633 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7635         * socket-io.h : Adding a comment to provide locations where 
7636           changes to MonoSocketAsyncResult need to be synced.
7638         Code is contributed under MIT/X11 license.
7640 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7642         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7643         parameters as well. Fixes #425001.
7645 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7647         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7648         windows build.
7650 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7652         * console-io.c: Add support for tracking the window size if it
7653         changes.
7655         The setup is very simple: the TtySetup function will now return a
7656         pointer to a location in memory that tracks the current console
7657         size.  The managed code checks its current value every time its
7658         queried against the last value set, and updates accordingly.
7660         With this setup we can work with multiple consoles, and we do not
7661         require to poke into managed code from a signal handler.
7663         Additionally, the environment for COLUMNS and LINES is now handled
7664         in unmanaged code.
7666         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7668 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7670         * marshal.c (mono_type_native_stack_size): Treat
7671         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7673 2008-09-04  Jb Evain  <jbevain@novell.com>
7675         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7676         to nullables.
7678 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7680         * verify.c (verify_type_compatibility_full): Revert change
7681         to allow converting a native int to unmanaged pointer be verifiable
7682         under non-strict mode.
7683         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7685         * verify.c: Added some TODOs.
7687 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7689         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7690           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7691           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7693         Code is contributed under MIT/X11 license.
7695 2008-09-02  Jb Evain  <jbevain@novell.com>
7697         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7699 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7701         reflection.c (typebuilder_setup_fields): Handle classes with
7702         explicit size.
7704 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7706         class.c (mono_class_setup_events): Add memory barrier due to
7707         double checked locking.
7708         
7709         class.c (mono_class_setup_properties): Same.
7711 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7713         * class.c (mono_class_is_assignable_from): Fix the build.
7714         
7715         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7716         before accessing klass->interface_bitmap. Fixes #421744.
7718 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7720         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7721         the runtime into no-exec mode, useful when running the AOT compiler.
7723         * appdomain.c gc.c object.c: Avoid executing managed code when running
7724         in no-exec mode.
7725         
7726         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7728         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7729         special case when the mono_assembly_loaded () returns NULL because the 
7730         search hook is not installed.
7732 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7734         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7735         crashes in bstr marshalling on linux.
7737 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7739         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7740         with more than one parameter.
7742 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7744         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7745         start/stop flow control as well when turning off ICANON (allows
7746         C-s and C-q to be read by Console.ReadKey).
7748 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7750         * class.c (mono_class_init): Move the initialization of nested classes
7751         into mono_class_get_nested_types (). Fixes #418433.
7753         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7754         flag.
7756         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7757         iterating tough the nested classes of a class.
7759 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7761         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7762         on arm.
7764 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7766         * console-io.c (sigcont_handler): Support signal chaining for
7767         SIGCONT.
7769         (console_set_signal_handlers): Use best practices with sigaction,
7770         clear the structure before using it. 
7772 2008-08-22  Robert Jordan  <robertj@gmx.net>
7774         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7775         Fix the Windows build.
7777 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7779         * class.c (mono_class_generic_sharing_enabled): Make the default
7780         sharing mode 'corlib'.
7782 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7784         * console-io.c (console_set_signal_handlers): Fix a warning.
7786         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7787         method normally, the JIT will take care of avoiding recursion.
7789 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7791         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7793         Code is contributed under MIT/X11 license.
7795 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7797         * console-io.c (sigcont_handler): We need to restore the entire
7798         termios state, not only the original settings, as things like echo
7799         can be controlled after this (Booish exposes this issue with its
7800         own ReadLine implementation).
7802         Additionally, we need to set the terminal back into keypad_xmit
7803         mode.
7804         
7805         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7806         string as a paramter as well.   Otherwise we get different
7807         keyboard sequences.
7809 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7811         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7812         delegates with byref out parameter passing. Fixes #351520.
7814         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7815         a generic context.
7816         (mono_type_get_desc): Add the type arguments for GENERICINST.
7817         (mono_method_full_name): Stringify the class name using mono_type_full_name
7818         so it picks up generic arguments.
7820 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7822         * console-io.c: Removed debug output.
7824 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7826         reflection.c (mono_reflection_create_runtime_class): Alloc
7827         the nested classes linked list using the dynamic image mempool.
7828         Fixes leak in corlib compilation.
7830 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7832         * console-io.c: Fix incredibly annoying behavior on the console
7833         after resuming execution after control-z.   This affected every
7834         console application.
7836 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7838         * mempool-internals.h: Header for mono private mempool functions. The first
7839         two function are for allocating glib linked lists using pools.
7841         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7843         * Makefile.am: Added mempool-internals.h.
7845 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7847         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7848         (mono_domain_free): Ditto.
7850         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7851         be used by the JIT to store its domain-specific information, instead of putting
7852         it directly into MonoDomain.
7854         * domain.c (mono_install_create_domain_hook): New helper function to install
7855         a hook which initializes domain->runtime_info.
7857         * domain.c (mono_install_free_domain_hook): Ditto.
7858         
7859 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7861         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7862         asserting if the ares parameter is null.
7864         * mono-perfcounters.c: Fix warnings.
7866         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7867         is not needed, don't check for interruptions either.
7868         (mono_marshal_get_delegate_end_invoke): Ditto.
7870 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7872         * mono-perfcounters.c (predef_readonly_counter): added support for
7873         reading the ASP.NET Requests Queued counter from another process.
7875 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7877         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7878         MonoImage to simplify the AOT code.
7880 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7882         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7883         marshalling. Fixes #416078.
7885 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7886         
7887         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7888         it is set, looking up the icall address is deferred to the JIT, since 
7889         in embedded scenarios, the icall might not be registered in the runtime
7890         doing the AOT compilation. Backported from the 2.0 branch.
7892 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7894         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7895         Fixes #415621.
7897 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7899         * Makefile.am: added support for cross-compilation.
7901 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7903         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7905 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7907         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7909 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7911         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7912         mono-perfcounters.c: performance counters implementation.
7914 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7916         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7917         to gpointer, letting the AOT code decide what to store in it.
7919 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7921         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7922           mono_class_setup_methods if the methods are not initialized.
7924         Code is contributed under MIT/X11 license.
7926 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7928         * verify.c: Remove some debug code I commited by accident.
7930         * verify.c (mono_method_is_valid_in_context): Change the return value
7931         to make possible to distinguish between invalid and unverifiable.
7933         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7934         methods.
7936 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7938         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7939         constraints. Fixes regression in gtest-253.
7941 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7943         * verify.c (mono_verifier_verify_class): Don't allow generic types
7944         with explicit layout.
7946         * verify.c (mono_method_verify): Check locals and argument types.
7948 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7950         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7951         wait if the thread is in StopRequested state.
7953         * class.c (mono_class_from_name): Refactor the module searching code into
7954         a separate function so it can be reused in the AOT case too.
7956 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7958         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7959         Check both the type and it's generic type definition for loader errors.
7960         
7961         * verify.c (mono_method_is_valid_in_context): Don't generate another
7962         error when a type errors occur, this leads to the wrong exception been
7963         thrown.
7965 2008-07-28  Dick Porter  <dick@ximian.com>
7967         * icall-def.h
7968         * process.c
7969         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7970         New internal calls to duplicate and close a process handle.
7972 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7974         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7976 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7978         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7980 2008-07-27  Robert Jordan  <robertj@gmx.net>
7982         * class.c (mono_class_init): Don't compute class.has_finalize for
7983         valuetypes. Fixes #412477.
7985 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7987         * verify.c: Implement constraint equivalence checking.
7988         This is required when a generic parameter is used as
7989         argument to a constrained one.
7991         Fixes #410637.
7993 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7995         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7997         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7999         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8000         synch with managed object layout.
8002 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8004         * verify.c (do_branch_op): Handle valuetypes and generic
8005         arguments properly.
8007         * verify.c (do_cmp_op): Same.
8009         Fixes #410383.
8011 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8013         * generic-sharing.c: Fix memory leaks.
8015         * class.c, class-internals.h: Make
8016         mono_class_inflate_generic_type_with_mempool() non-static.
8018 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8020         * pedump.c (dump_verify_info): Dump full class name.
8022 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8024         * generic-sharing.c: Removed some old code that didn't do anything.
8026 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8027         * profiler.c: Added runtime_initialized_event,
8028         mono_profiler_install_runtime_initialized and
8029         mono_profiler_runtime_initialized. This new hook tells the profiler
8030         when the runtime is sufficiently initialized to be able to call
8031         mono_thread_attach on the root appdomain.
8032         * profiler.h, profiler-private.h: Likewise.
8034 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8036         * verify.c (do_cast): Do boxing for generic arguments as well.
8038         * class.c (is_nesting_type): Drop generic instantiations before
8039         checking for nesting.
8041         * class.c (can_access_instantiation): Allow access to generic
8042         arguments.
8044 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8046         * verify.c (verify_class_for_overlapping_reference_fields):
8047         On some cases, the field size might be zero, guard against that.
8048         Fix the explicit layout check to work as expected.
8050 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8052         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8053         mono_thread_resume () during shutdown, since the thread we want to abort
8054         might be suspended.
8056 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8058         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8059         warning.
8061         * debug-mono-symfile.c: Fix a warning.
8063         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8065         * object.c (mono_class_vtable): Check if exception_type is set, and return
8066         NULL as defined by the function comments.
8068 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8070         * mempool.c: Use malloc for every single mempool allocation if the
8071         configure option is set.  This makes it easier to track mempool
8072         allocations with tools like Valgrind.
8074 2008-07-22  Jb Evain  <jbevain@novell.com>
8076         * reflection.c (create_dynamic_mono_image): emit the same
8077         metadata version that SL2 does when creating a SL2 image.
8079 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8081         * icall-def.h:
8082         * icall.c: New icall System.Enum:get_hashcode. This function
8083         avoids the overhead of boxing the enum to the underlying type.
8085 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8087         * reflection.c (mono_method_get_object): Don't let static RGCTX
8088         invoke wrappers get into MonoReflectionMethods.
8090 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8092         * object-internals.h:
8093         * object.c: New mono_runtime_class_init_full function
8094         that makes throwing the exception optinal.
8096         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8097         for the case where the exception object is supplied.
8099 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8101         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8102         old ld versions.
8104         Contributed under MIT/X11 license.
8106 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8108         * string-icalls.c (ves_icall_System_String_InternalSplit):
8109         Optimize array allocation by caching the MonoClass of the
8110         array type.
8112         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8114         * reflection.c (mono_param_get_objects): Same.
8116 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8118         * icall-def.h:
8119         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8120         It inflates the given type using the class context.
8122 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8124         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8125         the vtable if it already exists.
8127         * object-internals.h: Add mono_class_try_get_vtable as part of the
8128         internal API.
8130         * reflection.c (mono_type_get_object): Use the MonoObject from the
8131         vtable when possible. Reduces locking contention on reflection heavy
8132         code.
8134 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8136         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8137         g_bit_nth_msf () since that macro is not implemented in eglib.
8139 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8141         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8142         on platforms which do not support it.
8144 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8146         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8148 2008-07-11  Martin Baulig  <martin@ximian.com>
8150         * mono-debug-debugger.h
8151         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8153         * mono-debug-debugger.c
8154         (_mono_debugger_interruption_request): New global volatile variable.
8155         (mono_debugger_check_interruption): New public function.
8157         * threads.c
8158         (mono_thread_current_check_pending_interrupt): Call
8159         mono_debugger_check_interruption().
8160         (mono_thread_interruption_checkpoint_request): Likewise.
8162 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8164         * verify.c: Add more type checks for loaded types. Verify the result
8165         handle from ldtoken.
8167 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8169         * loader.c (field_from_memberref): Don't crash if the field
8170         wasn't found.
8172 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8174         * verify.c: Verify if type and method instantiations
8175         don't have invalid VAR or MVAR arguments.
8177 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8179         * verify.c: Fix double free of function pointer list.
8181 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8183         * object.c (mono_string_to_utf8): Comment the new code as it
8184         breaks under eglib.
8186 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8188         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8190 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8192         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8193           is not throw too many times.
8195         Code is contributed under MIT/X11 license.
8197 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8199         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8200         debugging is turned off.
8202 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8204         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8206 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8208         * class-internals.h, class.c: Added new generic sharing option:
8209         Share only stuff in System.Collections.Generic, which is now the
8210         default.
8212 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8214         * generic-sharing.c, class-internals.h: New function for getting a
8215         generic method in a generic class given the corresponding method
8216         for a different instantiation of the class.  Partly refactored
8217         from mini-trampolines.c.
8219         * class.c: Make sure generic methods have a class_inst if they are
8220         part of a generic class.
8222         * metadata.c (mono_type_stack_size_internal): Handle type
8223         variables.
8225 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8227         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8228         Signifies whether information on the this/vtable/mrgctx variable
8229         is available.
8231 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8233         * object.c, object-internals.h, icall.c: New function
8234         mono_delegate_ctor_with_method(), which does the same as
8235         mono_delegate_ctor(), but takes an explicit method argument
8236         instead of taking the method from the jit info.
8238         * marshal.c: When creating a delegate with an inflated method take
8239         the "this" argument as the target class for the castclass.
8241 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8243         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8244         mono_jit_info_table_find() to perform very badly in some cases.
8246 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8248         * icall.c (type_from_typename): Handle 'string'.
8250         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8251         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8253 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8255         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8257         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8258         number of available managed allocator types.
8260         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8261         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8263 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8265         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8266         which is a low level lock protecting just the 'jit_code_hash' hash table.
8268         * domain.c: Initialize+cleanup jit_code_hash_lock.
8269         
8270 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8272         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8273         after initialization.
8275         * coree.h: Make MonoFixupExe internal.
8277         Contributed under MIT/X11 license.
8279 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8281         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8282         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8283         as well.
8284         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8285         image being loaded is a CLI image and _CorValidateImage gets called.
8287         * coree.h: Add MonoLoadImage.
8289         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8290         instead of LoadLibrary.
8292         Contributed under MIT/X11 license.
8294 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8296         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8297         for any primitive type.
8299 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8301         * object.c (mono_array_new_specific): Optimize this and the other allocation
8302         functions a bit.
8303         
8304         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8305         domains too if mono_dont_free_domains is set.
8307         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8308         whenever to free appdomain data after it has been unloaded.
8310         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8311         
8312 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8314         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8315         (mono_method_get_equivalent_method): Fix a warning.
8317         * object.c (mono_message_init): Avoid looking up array types for each call.
8319 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8321         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8322         call.
8324         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8325         even more.
8327         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8328         each iteration.
8330         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8331         fields of an enum.
8333 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8335         * object.c (mono_value_box): Fix boxing of nullables.
8337 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8339         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8340         mono_module_handle that is defined by the linker; no initialization required.
8341         * coree.h: Remove mono_module_handle, add __ImageBase, update
8342         mono_image_open_from_module_handle.
8343         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8344         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8345         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8346         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8347         to 4 GB away from image base address. IA64 version is not tested but was very
8348         easy to implement and should work if we ever need it.
8349         * domain.c (mono_init_internal): Avoid system error message boxes.
8350         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8351         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8352         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8353         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8354         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8356         Contributed under MIT/X11 license.
8358 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8360         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8361         as part of the private mono API.
8362         
8363         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8364         Do proper argument checking for methods that belong to generic classes.
8365         Do proper type resolution for GMFH/2.
8366         Fixes #377324.
8367         
8368 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8370         * verify.c (do_switch): Fix a memory corruption bug with
8371         the jump index is out of bound.
8373 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8375         * verify.c: Disable debug code.
8377 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8379         * reflection.c (mono_image_get_methodbuilder_token): Use
8380         mono_image_get_methodspec_token_for_generic_method_definition
8381         instead of mono_image_get_memberref_token. We cache more memberef
8382         entries now.
8384 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8386         * verify.c: Inflate exception clause types.
8387         Fixes #402606.
8388         
8389 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8391         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8392         name.
8394         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8396         * reflection.c (mono_image_create_method_token): Same.
8398 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8400         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8401         It does the same as mono_image_get_methodref_token but works on
8402         MethodBuilder.
8404         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8405         and always generate a methodspec. This follows the old behavior and fixes
8406         the regressions in System.Core. 
8408 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8410         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8411         don't event mono_class_get () succeeds. Fixes #402182.
8413 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8415         * metadata-internals.h: Added MonoDynamicImage::methodspec
8416         hashtable to store methodspec tokens created for MethodBuilders.
8418         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8419         MethodBuilders as open instantiations if a methodspec was requested.
8421         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8423         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8425         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8427         Fixes bug #349190.
8429 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8431         * loader.c (method_from_methodspec): Avoid crashing if the
8432         method lookup fails.
8434 2008-06-20  Dick Porter  <dick@ximian.com>
8436         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8437         classes being in a different assembly.  Fixes bug 399184.
8439 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8441         * loader.c (mono_loader_init): Make this callable multiple times.
8442         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8443         the runtime is initialized. Fixes #401755.
8445 2008-06-19  Dick Porter  <dick@ximian.com>
8447         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8448         Fixes bug 349688.
8450 2008-06-19  Dick Porter  <dick@ximian.com>
8452         * socket-io.c:
8453         * icall-def.h: Implement Socket generic Send() and Receive()
8454         methods.  Fixes bug 395168.
8456 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8458         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8460         Contributed under MIT/X11 license.
8462 2008-06-18  Martin Baulig  <martin@ximian.com>
8464         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8465         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8466         set to 80.0.  The debugger <-> runtime interface is now frozen as
8467         well.   
8469         * mono-debug.c
8470         (mono_debug_debugger_version): Bump to 4.
8472 2008-06-18  Martin Baulig  <martin@ximian.com>
8474         * debug-mono-symfile.c
8475         (load_symfile): Don't check the minor version.
8477         * debug-mono-symfile.h: Bump the version number to 50.0.
8479 2008-06-18  Martin Baulig  <martin@ximian.com>
8481         * debug-mono-symfile.c
8482         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8483         minimum required version.
8485 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8487         * reflection.c (mono_custom_attrs_from_property): Fix support for
8488         retriveving cattrs of dynamic inflated generic types.
8490         * reflection.c (mono_custom_attrs_from_event): Same.
8492         * reflection.c (mono_custom_attrs_from_field): Same;
8494         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8496         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8497         Moved to metadata.c.
8499         * metadata.c: New functions to retrive the equivalent field, event
8500         of property from the generic type definition.
8502         * metadata-internals.h: Added new functions from metadata.c.
8504 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8506         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8507         to cached in a mempool is used.
8509         * metadata.c (free_generic_class): In some situations field generic_info type
8510         is not properly dup'ed and leads to double free'ing.
8512         Fixes #400643.
8514 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8516         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8517         this arguments (will be needed later for generic methods).
8518         Collect stats.
8520 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8522         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8523         Create a static RGCTX invoke wrapper for methods which require it.
8525 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8527         * object.c, class-internals.h: New function for checking whether
8528         an individual field is special static.
8530 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8532         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8533         linear search since the table is sorted.
8535         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8536         Fixes #324180.
8538 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8540         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8541         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8543         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8545         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8546         
8547         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8548         InterlockedCompareExchange to query and modify 
8549         thread->interruption_requested.
8551         * object-internals.h (struct _MonoThread): Change interruption_requested
8552         to a gint32 so it can be modified by atomic operations. Add 
8553         'critical_region_level' from the managed side, change small_id to a guint32,
8554         add new set of 'unused' fields.
8556         * appdomain.c: Bump corlib version.
8558 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8560         * class.c (mono_class_from_name): Search modules as well. Fixes
8561         #322332.
8563 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8565         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8566         templates.  Templates are generalized with an additional type_argc
8567         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8568         have type_argc>0.
8570         * domain-internals.h, domain.c: New hash table for looking up
8571         MRGCTXs.
8573         * metadata.c, metadata-internals.h: Rename hash and equal
8574         functions for MonoGenericInst's and make them public.
8576         * class-internals.h: New data structures for the MRGCTX.  Macros
8577         for distinguishing slots in the RGCTX and the MRGCTX.
8579 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8581         * object.c (mono_method_get_imt_slot): Put the same methods of
8582         different instantiations of the same generic interface in the same
8583         IMT slots, to make generic sharing simpler.
8585 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8587         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8589         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8590         This function works just like mono_metadata_field_info, but
8591         accept a mempool as argument to be used allocating memory.
8593         * marshal.c (mono_marshal_load_type_info): Use new function
8594         to load marshal data into image mempool.
8596 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8598         * class.c (mono_class_inflate_generic_type_with_mempool):
8599         This function allows to inflate a generic type using
8600         a mempool.
8602         * class.c (inflate_generic_type): Take a mempool as argument
8603         and use it to do type dup'ing.
8605         * class.c (mono_class_setup_fields): Field type for generic
8606         generic classes are allocated from the image mempool.
8608         * metadata.c (free_generic_class): Inflated field type is
8609         now allocated in the image mempool.
8611 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8613         * threads.c (thread_cleanup): Free MonoThread::name.
8615 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8617         * appdomain.c (ensure_directory_exists): avoid unnecessary
8618         mkdir(2) calls when the shadow directory already exists.
8619         (mono_make_shadow_copy): copy also satellite assemblies from the
8620         private bin directories.
8622 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8624         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8625         
8626         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8627         a page boundary. Fixes #396219.
8629 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8631         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8632         due to double-checked locking.
8634 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8636         * assembly.c (build_assembly_name): Release memory on failure.
8638         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8640 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8642         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8643         memory on failure.
8645 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8647         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8648         memory on failure.
8650 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8652         * loader.c (field_from_memberref): Check if field signature type is equal
8653         to the non-inflated type of the field. Fixes #398980.
8655 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8657         * assembly.c (mono_assembly_load_from_full): Call 
8658         mono_assembly_load_friends () outside the assemblies lock, since it can
8659         acquire the loader lock. Fixes #323696.
8661         * reflection.c (resolve_object): Inflate the inst with the context for
8662         FieldOnTypeBuilderInst. Fixes #399010.
8664 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8666         * reflection.c (mono_image_get_field_on_inst_token): Don't
8667         inflate the field to encode it's signature. If it's a
8668         VAR or MVAR it should stay that way in the signature.
8669         Fixes #399047.
8671 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8673         * reflection.c (resolve_object): Release memory of inflated types.
8675 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8677         * loader.c (mono_method_get_signature_full): Remove assert about
8678         loading a methodspec to a generic method. We have such methods, such as
8679         System.Threading.Interlocked::CompareExchange<T>.
8680         This assert was removed since it crashes the verifier when it checks
8681         methods calling CompareExchange<T>.
8683 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8685         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8686         of Type array and not MonoType.
8688 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8690         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8691         <lupus@ximian.com>
8693 2008-06-10  Martin Baulig  <martin@ximian.com>
8695         * debug-mono-symfile.h
8696         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8697         changes to the file format, but we were generating incorrect
8698         source file indices in the line number table due to a bug, which
8699         made backtraces report an incorrect source file.
8701 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8703         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8704         mini/debug-mini.c to here.
8706         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8708         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8709         use it to release structs returned by mono_debug_find_method.
8711 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8713         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8714         since it needs to set method->slot for all interface methods.
8716 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8718         * class-internals.h: Forgot to add.
8720 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8722         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8724         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8725         Lookup the custom attributes from property_hash.
8727         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8728         in property_hash. Allocate all data using the image mempool.
8730         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8731         for dynamic_custom_attrs to checks if the image is dynamic.
8733 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8735         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8736         assemblies array.
8737         
8738         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8739         runtime functions while holding the domain assemblies lock.
8741 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8743         * verify.c: Reapplied the last bit of the reverted changes.
8745 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8747         * verify.c: Reapplied more of the reverted changes.
8749 2008-06-09  Martin Baulig  <martin@ximian.com>
8751         * debug-mono-symfile.c (load_symfile): Check the major version
8752         first; if it's wrong, don't print the minor version in the error message.
8754 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8756         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8757         lock instead of the domain lock to avoid deadlocks, since the thread might
8758         already hold the loader lock.
8760         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8761         (mono_thread_attach): Ditto.
8763         * monitor.c: Use a TLS variable for holding the current thread id instead
8764         of calling pthread_self ().
8765         (mono_monitor_init_tls): New internal function to initialize the TLS
8766         variable.
8767         (mono_monitor_try_enter_internal): Put the owner == id check after the
8768         owner == 0 check.
8770         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8771         missed optimizations when using gcc-4.3.
8773 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8775         * reflection.c (mono_dynamic_image_free): Free the memory
8776         used by MonoGenericParam in MonoDynamicImage::gen_param.
8778         * reflection.c (mono_reflection_setup_generic_class): Allocate
8779         container from mempool.
8781         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8782         container from mempool.
8784 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8786         * threads.c (mono_set_pending_exception): New internal function to set the
8787         pending exception of the current thread.
8788         (mono_thread_get_and_clear_pending_exception): Check for 
8789         thread->pending_exception as well.
8791         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8793         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8794         it can trigger a collection.
8796 2008-06-06  Martin Baulig  <martin@ximian.com>
8798         Merged the `debugger-kahalo' branch.
8800         * mono-debug.h
8801         (MONO_DEBUGGER_VERSION): Bumped to 72.
8803         * debug-mono-symfile.h
8804         (MonoSymbolFileMethodIndexEntry): Removed.
8805         (MonoSymbolFileMethodEntry): New public typedef.
8806         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8807         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8808         `data_offset'.
8809         (MonoSymbolFileMethodEntry): Removed.
8810         (MonoSymbolFileLexicalBlockEntry): Removed.
8811         (MonoSymbolFileLineNumberEntry): Removed.
8812         (MonoDebugLexicalBlockEntry): Removed.
8813         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8814         removed `num_il_offsets' and `il_offsets'.
8815         (MonoSymbolFile): Replace `version' with `major_version' and
8816         `minor_version'.
8817         (MONO_SYMBOL_FILE_VERSION): Replace with
8818         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8819         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8821         * debug-mono-symfile.c
8822         (mono_debug_symfile_lookup_location): Add support for the new line
8823         number table format.
8825 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8827         * metadata.c (free_generic_class): Release the inflated
8828         MonoClass of dynamic generic classes if it's not a generic
8829         type definition.
8831 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8833         * verify.c: Reapplied more of the reverted changes.
8835 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8837         * reflection.c (lookup_custom_attr): Clean the cached flag or
8838         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8839         for SRE types.
8841 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8843         * verify.c: Reapplied a small part of the reverted changes.
8845 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8847         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8849         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8850         previously in managed code.
8851         (mono_monitor_exit): Ditto.
8852         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8854         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8855         the managed definition.
8857 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8859         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8861 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8863         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8864         
8865         * monitor.c: Add some micro optimizations.
8867         * icall.c (type_from_typename): Handle 'bool'.
8869 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8871         * verify.c: Implement constructor verification per P III 1.8.1.4.
8872         Fixes #396716.
8874 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8876         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8877         holding the assemblies lock here too.
8879 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8881         * verify.c: Kill stack_top function.
8883 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8885         * verify.c: Kill stack_get function.
8887 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8889         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8891 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8893         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8894         more reliable.
8896         * verify.c (mono_method_verify): Inflate params and locals to avoid
8897         mismatch when checking for compatibility.
8899 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8901         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8902         Length prefix should be size in bytes. Fix bug #339530.
8903         
8904         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8905         Length prefix should be size in bytes. Fix bug #339530.
8907         Code is contributed under MIT/X11 license.
8909 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8911         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8913         Contributed under MIT/X11 license.
8915 2008-06-05  Martin Baulig  <martin@ximian.com>
8917         * mono-debug-debugger.c
8918         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8920 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8922         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8923         while holding the assemblies lock to prevent deadlocks. Handle the case
8924         where the search hook returns NULL but the assembly was still loaded.
8925         Fixes #323696.
8927         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8928         modify domain state.
8930 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8932         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8933         * Makefile.am (pedump_LDADD): Post-process object files and
8934         add dtrace-generated object file, if necessary.
8936         Code is contributed under MIT/X11 license.
8938 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8940         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8942 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8944         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8946 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8948         * threads.c: Try to free everything from the delayed free table
8949         when shutting down threads, and set the variable to NULL after the
8950         table is freed so that calling
8951         mono_thread_hazardous_try_free_all() when shutting down the root
8952         domain doesn't crash.
8954 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8956         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8957         the caller if resulting type was inflated.
8959         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8960         was inflated.
8962         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8965 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8967         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8968         class library tests.
8970         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8971         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8972         #396989.
8974 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8976         * domain.c, domain-internals.h: The JIT infos are now freed by the
8977         JIT info table code.  They are freed immediately if there only a
8978         single JIT info table in circulation.  If there is more, the free
8979         is delayed via a queue.
8981         * threads.c, threads-types.h: New hazard pointer function for
8982         freeing all freeable delayed items in one sitting.
8984 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8986         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8988         * reflection.c (typebuilder_setup_properties): Same.
8990         * reflection.c (typebuilder_setup_events): Same.
8992 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8994         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8995         and use it for allocating memory.
8997         * reflection.c (mono_marshal_spec_from_builder): Same.
8999         * reflection.c: Change code to use new signatures.
9001         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9003 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9005         * decimal.c (rescale128): Put back one line which was accidently commented
9006         out.
9007         
9008         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9009         to cause crashes.
9011 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9013         * reflection.c (mono_reflection_generic_class_initialize): Name must
9014         be always malloc'ed so we can free it later on. Do this for field, property
9015         and event.
9017         * metadata.c (free_generic_class): Free field, property and event names.
9019 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9021         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9022         instead of g_memdup.
9024         * reflection.c (typebuilder_setup_fields): Same.
9026 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9028         * decimal.c (rescale128): Optimize this function a bit more.
9030 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9032         * metadata.c (free_generic_class): Release some memory from
9033         SRE generic classes.
9035 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9037         * reflection.c (mono_image_get_generic_field_token): No reference
9038         to name is kept, free it.
9040         * reflection.c (mono_reflection_generic_class_initialize): Free
9041         more memory of the inflated field.
9043 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9045         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9046         code.
9048 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9050         * reflection.c (mono_dynamic_image_free): Release memory used by
9051         MonoDynamicImage::array_methods elements.
9053         * reflection.c (assembly_add_win32_resources): Release memory after
9054         encoding.
9056 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9058         * decimal.c (log2_32): Use an optimized version for this function too.
9059         
9060         * decimal.c (log2_64): Fix this on 32 bit machines.
9062 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9064         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9066         * class.c (mono_metadata_signature_deep_dup): Same.
9068         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9069         a mempool.
9071         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9073         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9075         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9077         * class-internals.h: Update signatures to take a MonoMemPool.
9079 2008-06-02  Dick Porter  <dick@ximian.com>
9081         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9082         * icall-def.h: Add
9083         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9084         FormatMessage API to get the error text.  Fixes bug 321827.
9086 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9088         * decimal.c: Add some micro optimizations to make decimal operations faster.
9090 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9092         * reflection.c (method_encode_clauses): Take a mempool
9093         as parameter and use it to allocate the clause array.
9095         * reflection.c (mono_image_get_field_on_inst_token): Free
9096         the inflated type after encoding it.
9098         * reflection.c (mono_dynamic_image_free): Free each element
9099         of MonoDynamicImage::gen_params.
9101         * reflection.c (reflection_methodbuilder_to_mono_method):
9102         Allocate the generic param array from the mempool.
9103         Allocate signature params from the mempool.
9105         * reflection.c (mono_reflection_generic_class_initialize):
9106         Free inflated fields after been used.
9108 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9110         * icall.c: Reapply the memory leak fixes as they no
9111         longer make mono crash.
9113 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9115         * reflection.c (mono_type_get_object): Don't store the suplied
9116         MonoType with type_hash. A caller which pass a type that
9117         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9118         might end with a pointer to freed memory.
9119         The solution is to use byval_arg or this_arg from the associated
9120         MonoClass of the supplied type.
9122 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9124         * icall.c: Revert the rest of the last change as it breaks the build too.
9126 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9128         * icall.c: Revert a leak fix as it's breaking the build.
9130 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9132         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9134 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9136         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9138 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9140         * icall.c: Fix some memory leaks.
9142 2008-05-29  Dick Porter  <dick@ximian.com>
9144         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9145         async socket operations from the pending list when a socket
9146         closes.  Leaving it until the threadpool services the event
9147         exposes a race condition when a socket descriptor is reused.
9148         Fixes bug 377589.
9150 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9152         * object.c: Fix negative index check for array alocation.
9154 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9156         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9157         This check is performed by the verifier for IL created delegates
9158         and by Delegate::CreateDelegate for programatically created ones.
9159         Fixes #372406.
9161 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9163         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9164         Fix code to use mono_array_size_t instead of int.
9166         Based on patch by Luis F. Ortiz.
9167         Contributed under X11 license.
9168         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9170 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9172         * icall.c: Added ves_icall_System_Array_GetLongLength and
9173         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9174         arrays.
9176         * icall.h: Export both new functions.
9178         Based on patch by Luis F. Ortiz.
9179         Contributed under X11 license.
9180         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9182 2008-05-28  Martin Baulig  <martin@ximian.com>
9184         The debugger now requires exactly r103463.
9186         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9187         This version is not supported by the debugger, wait for 72.
9189 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9191         * object.h: Changed array related functions to use
9192         mono_array_size_t instead of guint32. Forgot to commit this file.
9194         Patch by Luis F. Ortiz.
9195         Contributed under X11 license.
9196         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9199 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9201         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9202         don't define it. Use the number literal instead.
9204 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9206         * icall.c: Changed array related functions to use
9207         mono_array_size_t instead of guint32.
9209         * icall.c (ves_icall_System_Array_GetLength): Check for length
9210         overflow under MONO_BIG_ARRAYS.
9212         Based on patch by Luis F. Ortiz.
9213         Contributed under X11 license.
9214         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9216 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9218         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9220         Based on patch by Luis F. Ortiz.
9221         Contributed under X11 license.
9222         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9224 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9226         * object.c, object.h: Changed array related functions to use
9227         mono_array_size_t instead of guint32.
9229         Patch by Luis F. Ortiz.
9230         Contributed under X11 license.
9231         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9233 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9235         * object.h: Introduced mono_array_size_t typedef. This must be used
9236         in all places an array length is expected. This is 64bits wide if
9237         MONO_BIG_ARRAYS is enabled.
9239         Patch by Luis F. Ortiz.
9240         Contributed under X11 license.
9241         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9243 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9245         * security-manager.c class.c: Set the class exception info by calling
9246         mono_class_set_failure ().
9248         * class.c (mono_class_get_exception_data): New accessor function.
9249         (mono_class_set_failure): Store exception_data in the property hash.
9251         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9252         the struct as a property.
9254         * loader.c (mono_get_method_full): Store the lookup result for method
9255         tokens in method_cache, the others in methodref_cache to decrease the memory
9256         usage of hash tables.
9258         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9259         (mono_image_init): method_cache is lazy inited now.
9261         * metadata-internals.h (struct _MonoImage): Change method_cache to
9262         a MonoValueHashTable, add a separate methodref_cache.
9264 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9266         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9267           Double.ToString as exposed by Bug #383531.
9269 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9271         * number-formatter.h: Make some tables static.
9273         * class.c (mono_method_set_generic_container): New accessor function.
9274         (mono_method_get_generic_container): Ditto.
9276         * class-internals.h (struct _MonoMethod): Remove rarely used 
9277         'generic_container' field, store it in the property hash instead. Add 
9278         'is_generic' boolean field instead.
9280         * image.c (mono_image_init): Initialize property_hash.
9281         (mono_image_close): Destroy property_hash.
9283         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9284         hold rarely used fields of runtime structures belonging to this image.
9286         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9287         to get/set method->generic_container.
9289         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9290         generic methods.
9292 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9294         * class.c (mono_class_inflate_generic_method_full): Don't increase
9295         mono_stats.inflated_method_count for methods found in the cache.
9297         * threads.c (mono_thread_request_interruption): Add a comment about 
9298         QueueUserAPC ().
9300 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9302         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9303         interface_offsets_packed table.
9304         
9305         * class.c (mono_class_init): Remove some dead code.
9307         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9308         mono_class_setup_vtable () when CAS is active to detect security problems.
9310 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9312         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9314         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9315         parameters as it's irrelevant for delegate checking.
9317 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9319         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9321         * class.c (mono_class_init): Control the creation of a generic vtable using
9322         a global which is true by default, but set to false by the runtime startup code.
9323         
9324         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9325         Disabled for now since it breaks the embedding API.
9326         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9327         (mono_class_setup_methods): Add a memory barrier.
9329         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9330         when mono_class_init () doesn't compute the generic vtable.
9331         
9332 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9333         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9334         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9335         to support call chains (backtrace) in the stat profiler.
9336         * profiler.c, profiler-private.h: Likewise.
9338 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9340         * generic-sharing.c: Init generic class when a method of it is
9341         requested via a runtime generic context.
9343 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9345         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9347         * reflection.c (mono_type_get_object): Add a FIXME.
9349         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9351         * class.c (mono_class_get_method_by_index): New helper function, returning an
9352         entry in the class->methods array.
9354 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9356         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9357         Avoid creating a generic vtable for generic instances as well.
9358         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9359         generic instances.
9361 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9363         * loader.c (mono_get_method_constrained): Inflate the signature
9364         with class context. Fix #325283.
9366 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9368         * object.c (mono_class_create_runtime_vtable): Add a comment.
9370         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9371         where needed.
9372         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9373         (mono_class_setup_vtable_general): Add an assert.
9374         (mono_class_init): Avoid creating a generic vtable for arrays.
9376         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9377         here, let mono_class_init () do that.
9379         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9380         interfaces in mscorlib.
9382         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9383         interfaces. Add some comments.
9384         (mono_class_init): Call mono_class_setup_methods () here since it is no
9385         longer called by mono_class_setup_vtable ().
9387         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9388         not set in class->vtable.
9389         (mono_class_create_runtime_vtable): Reenable the disabled code.
9391         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9392         now as it causes some test failures.
9394         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9395         if using the vtable trampoline. Also remove some strange code which put the
9396         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9397         stuff as it is no longer needed.
9399 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9401         * pedump.c: Give make --verify all option check code as well.
9402         Using --verify code won't check for metadata now.
9404 2008-05-19  Martin Baulig  <martin@ximian.com>
9406         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9408         * mono-debug.c
9409         (_mono_debug_using_mono_debugger): New global variable; it's set
9410         directly by the debugger, so mono_debug_using_mono_debugger() also
9411         works after attaching.
9413 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9415         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9416         as we do double checked locking on MonoClass::runtime_info and
9417         MonoClassRuntimeInfo::domain_vtables.
9419 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9421         * debug-helpers.c (print_field_value): Fix a warning.
9423 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9425         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9426         set in the AOT case.
9428 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9430         * class.c (mono_class_setup_vtable_general): Use memory barriers
9431         as we do double checked locking on MonoClass::vtable.
9433 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9435         * reflection.c (resolve_object): Inflate only if the generic context
9436         is not null. Fixes #389886.
9438 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9440         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9441         instead of g_free.
9443         Code is contributed under MIT/X11 license.
9445 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9447         * class.c: Revert unrelated change.
9449 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9451         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9452         a generic instantiation, use mono_class_from_mono_type instead of playing
9453         with MonoType directly.
9455 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9457         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9458         checks must ignore generic instantiations, so mono_class_has_parent is not
9459         suitable. Fixes #390128.
9461 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9463         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9464         it to avoid registering tokens during metadata generation. Fixes #390023.
9466 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9468         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9469         consistent.
9471         Contributed under MIT/X11 license.
9473 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9475         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9476         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9477         to fixup the EXE image.
9478         (mono_cleanup): Use mono_close_exe_image.
9479         (mono_close_exe_image): New function.
9480         * image.c: Include "marshal.h".
9481         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9482         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9483         counting when the image is loaded outside of mono_image_open_full. Set status
9484         based on GetLastError.
9485         * coree.c: Include required headers. Add init_from_coree.
9486         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9487         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9488         (_CorExeMain): Set init_from_coree.
9489         (CorExitProcess): Only call ExitProcess for now.
9490         (CorBindToRuntimeEx): New stub implementation.
9491         (CorBindToRuntime): New function.
9492         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9493         (MonoFixupExe): ILONLY executables require no fixups.
9494         (mono_set_act_ctx): New function to set activation context.
9495         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9496         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9497         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9498         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9499         as MONO_INTERNAL.
9500         * domain-internals.h: Add mono_close_exe_image.
9502         Contributed under MIT/X11 license.
9504 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9506         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9507         size for generic param and event tables. Fixes #388977.
9509 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9511         * loader.c (mono_method_signature): Use memory barriers because of the double
9512         checked locking pattern.
9514         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9515         aborting or aborted as well. Fixes #376391.
9516         
9517         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9518         existing runtime state in the Suspend handler during shutdown.
9520 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9522         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9524         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9525         which are starting up or shutting down.
9527         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9528         this function never returns if the runtime is already shutting down.
9530         * icall.c (ves_icall_System_Environment_Exit): Update after 
9531         mono_threads_set_shutting_down () signature change.
9532         
9533 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9535         * class.c: Added can_access_instantiation to verify if the instantiation
9536         is visible. Fix access check for nested types as they returned TRUE
9537         before doing type and generic instantiation visibility checks.
9539 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9541         * reflection.c (mono_reflection_create_generic_class): The created type
9542         must have a different container from its TypeBuilder. Otherwise they
9543         will end sharing generic arguments, which is wrong.
9545         Due to the sharing, making a generic instance of the created type using
9546         the TypeBuider generic arguments resulted in the generic type definition
9547         been returned, which is wrong as well.
9549         As a bonus the code was leaking the type_params array. This memory should
9550         be allocated from the image mempool.
9552         This fixes bug #354047.
9554 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9556         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9557         to here         as they are now used in assembly.c new code.
9558         Added a skipverification flag to MonoAssembly.
9559         New internal function mono_assembly_has_skip_verification.
9561         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9562         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9563         part of #387274.
9565 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9567         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9568         needed. Fixes #387034.
9570         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9572 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9574         * assembly.c (mono_assembly_load_reference): Prevent crash while
9575         disassembling Silverlight 2.0 executables while we still do not
9576         have GACed libraries.
9578 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9580         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9582 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9584         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9585         of the dynamic case. Fixes #387404.
9587 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9589         *verify.c (mono_verifier_is_class_full_trust): If under
9590         verify_all and the verifier mode was not set, only
9591         gac and corlib types are fulltrust. This makes --verify-all
9592         usable to detect unverifiable code, which is the expected
9593         use case.
9595 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9597         * verify.h: Ops, commited the header with debug
9598         enabled.
9600 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9602         * verify.c (merge_stack): Use the new value on unverifiable
9603         stack merges.
9605         * verify.c (verify_type_compatibility_full): Comparison
9606         of nullable types can't use mono_class_is_assignable_from.
9608         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9609         that makes all verification errors be reported.
9611         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9612         mono_method_verify.
9614 2008-05-05  Robert Jordan  <robertj@gmx.net>
9616         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9617         support for value types. See #386415.
9619         * object.c: comments.
9621         Code is contributed under MIT/X11 license.
9623 2008-05-05  Martin Baulig  <martin@ximian.com>
9625         * debug-mono-symfile.h
9626         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9627         for old pre-terrania symbol files.
9629 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9631         * mono-config.c: Add ppc64 architecture.
9633         Code is contributed under MIT/X11 license.
9635 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9637         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9638           PPC64 uses function descriptors as well.
9640         Code is contributed under MIT/X11 license.
9642 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9644         * object.c (compute_class_bitmap): Ignore literal static fields.
9646         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9647         var has an invalid format.
9648         (describe_ptr): Add some sanity checks for the vtable.
9649         (add_nursery_frag): Clear unused nursery fragments.
9650         (major_collection): Clear all remaining nursery fragments.
9652 2008-05-03  Robert Jordan  <robertj@gmx.net>
9654         * image.c, metadata-internals.h: add thunk_invoke_cache.
9656         * marshal.c, marshal.h: implement
9657         mono_marshal_get_thunk_invoke_wrapper ().
9659         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9661         Code is contributed under MIT/X11 license.
9663 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9665         * verify.c (do_leave): Empty the stack.
9667 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9669         * class.c (mono_class_is_assignable_from): Variance
9670         doesn't work between reference and value types. For example,
9671         given type C<T+>, C<int32> is not assignable to C<object>.
9672         Break the argument checking loop on first error. 
9674 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9676         * icall.c : base64_to_byte_array() needs some more strict
9677           check for sequence of '=' characters. Patch by Santa
9678           Marta (http://deee.g.hatena.ne.jp/santamarta).
9680           Contributed under MIT/X11 license.
9681           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9683 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9685         * domain.c: Disable LoadLibrary support to fix Win32 build.
9687         Code is contributed under MIT/X11 license.
9689 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9691         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9692         to help with cache behaviour.
9694 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9696         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9697         method. 
9699 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9701         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9703 2008-05-01  Dick Porter  <dick@ximian.com>
9705         * process.c (process_get_fileversion): Only pass 16 bits of
9706         language ID to VerLanguageName.  Fixes bug 381204.
9708 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9710         * verify.c (mono_method_verify): Fix the comparison
9711         operator for code bounds check.
9713 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9715         * verify.c (mono_method_verify): Check the bounds of
9716         all access of the code array.
9718 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9720         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9722 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9724         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9725         not valid.
9727 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9729         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9730         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9731         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9732         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9733         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9734         mono_runtime_load.
9735         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9736         runtime initialization from metadata.
9737         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9738         (mono_set_rootdir): Use mono_get_module_file_name.
9739         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9740         handles.
9741         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9742         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9743         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9744         MonoCLIImageInfo. Add support for module handles.
9745         (load_cli_header): Update mono_cli_rva_image_map signature.
9746         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9747         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9748         (mono_image_rva_map): Add support for module handles.
9749         (mono_image_ensure_section_idx): Add support for module handles.
9750         (mono_image_close): Add support for module handles.
9751         (do_load_header): Add support for module handles.
9752         (mono_image_open_from_module_handle): New function for internal use.
9753         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9754         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9755         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9756         handles.
9757         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9758         * image.h: Add mono_image_fixup_vtable.
9759         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9760         support.
9761         * coree.h: New file.
9762         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9763         unsupported native code.
9764         (mono_marshal_set_callconv_from_modopt): New function splitted from
9765         mono_marshal_get_managed_wrapper.
9766         (mono_marshal_get_managed_wrapper): Use
9767         mono_marshal_set_callconv_from_modopt.
9768         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9769         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9770         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9771         that results in a deadlock when the runtime is loaded in _CorDllMain.
9772         * Makefile.am: Add coree.c and coree.h.
9774         Contributed under MIT/X11 license.
9776 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9778         * generic-sharing.c: Search for type arguments in array element
9779         types as well.
9781 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9783         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9785         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9787         * object.c: Don't setup the RGCTX when the vtable is created,
9788         because we're setting it up lazily now.
9790 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9792         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9793         64 bit support.
9795 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9797         * verify.c (verify_class_for_overlapping_reference_fields): 
9798         If class is under fulltrust allow reference types to overllap
9799         if they have the same RVA.
9801 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9803         * pedump.c: Added new flag valid-only, that makes the verifier
9804         behaves just like --security=validil. It won't fail type load
9805         due to unverifiable restrictions.
9807 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9809         * class-internals.h (struct MonoMethod): Added a verification_success
9810         field to cache verifier executions. Reduced MonoMethod:slot size by
9811         one bit.
9813 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9815         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9816         instead of a 'vt' argument to save an indirection and to allow these to be used
9817         for valuetypes.
9818         (scan_vtype): New helper function to scan an area using a gc descriptor.
9819         (mono_gc_wbarrier_value_copy): Implement this.
9820         (handle_remset): Add support for REMSET_VTYPE.
9821         (find_in_remset_loc): Ditto.
9822         (mono_gc_base_init): Allow some debugging options to be controlled through the
9823         use of the MONO_GC_DEBUG env variable.
9824         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9825         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9827 2008-04-23  Martin Baulig  <martin@ximian.com>
9829         * domain.c (mono_domain_create): Move the call to
9830         mono_debug_domain_create() down, after allocating the domain id.
9832 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9834         verify.c (verify_class_for_overlapping_reference_fields): Skip
9835         static fields while verifying for overlapping fields as they
9836         don't matter at all.
9838 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9840         * domain-internals.h: added a declaration of
9841         mono_make_shadow_copy.
9843         * assembly.c (mono_assembly_open_full): shadow copying of
9844         assemblies moved to here, so that all the assemblies within the
9845         application domain's private binary directories can be
9846         processed. Fixes bug #380546
9848         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9849         mono_make_shadow_copy and made non-static. The decision whether
9850         to shadow-copy an assembly is made based on its location - it's
9851         copied if it's in one of the private application domain binary
9852         directories and its different to the target file in the shadow
9853         directory. Fixes bug #380546
9855 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9857         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9859         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9860         types.
9862         * reflection.c (mono_image_create_token): Handle 
9863         Method/ConstructorOnTypeBuilderInst.
9864         (resolve_object): Ditto.
9865         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9866         so it can be called from resolve_object. Also handle the case when the inflated
9867         class already has its methods setup.
9869 2008-04-21  Martin Baulig  <martin@ximian.com>
9871         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9873 2008-04-20  Geoff Norton  <gnorton@novell.com>
9875         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9876         pointer dereference.
9878 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9880         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9881         portability API to look up the assembly file. Fixes behavior in
9882         situations when the application has a bin/ directory, but the
9883         assembly search patch refers to Bin/ (and thus the requested file
9884         name is Bin/SomeLibrary.dll). Fixes bug #379888
9886 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9888         verify.c (mono_type_is_generic_argument): Extracted this check
9889         from a dozen places to here.
9891         verify.c: Fixed all issues related to boxing generic arguments
9892         and their constraints.
9894 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9896         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9898 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9900         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9901         isn't finished yet. Fixes #363447.
9903 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9905         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9906         Fixes #346419.
9908 2008-04-13  Jb Evain  <jbevain@novell.com>
9910         * domain.c: update the 2.1 profile versions.
9911         Merged from the Moonlight 2 branch.
9913 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9915         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9916         mscorlibs for the non-refonly case as well.
9918         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9919         in mono_assembly_load_from_full (). Fixes #378924.
9921 2008-04-11  Geoff Norton  <gnorton@novell.com>
9923         * icall.c: The global extern environ doesn't exist on Mac.  We
9924         need to call NSGetEnviron instead.
9926 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9928         verify.c: Add generic method constraint verification.
9930 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9932         class.c (mono_class_inflate_generic_method_full): Add a long
9933         explanation to the is_mb_open hack. Remove the FIXME.
9935 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9937         * verify.c (mono_method_verify): Mark all unknown opcodes
9938         as invalid. Mark jmp as unverifiable.
9940 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9942         * verify.c: Add code to do type constraint verification on class instances.
9944         * verify.c (mono_verifier_verify_class): Use the type constraint 
9945         verification code.
9947 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9949         * class.c (mono_class_get_field_default_value): Don't pass cindex
9950         as hint to mono_metadata_get_constant_index. The local is not initialized
9951         and should contain garbage most of the time. This could only work
9952         with a lot of luck.
9954 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9956         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9958 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9960         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9962         * class.c (mono_class_from_generic_parameter): Save the token of the
9963         generic param in MonoClass::sizes.generic_param_token.
9965         * reflection.c (mono_custom_attrs_from_class): If the class type is
9966         VAR or MVAR retrieve the attributes of the generic param.
9968 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9970         * class.c (mono_class_init): Do class verification if the verifier
9971         is enabled.
9973 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9975         * verify-internal.h: Added mono_verifier_verify_class.
9977         * verify.c: Added mono_verifier_verify_class. It checks for
9978         classes with explicit layout that have overlapping reference fields.
9980         * pedump.c: Init the verifier state prior to verification. Fixed
9981         command line arguments.
9983 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9985         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9987 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9989         * verify-internals.h: Fix a warning.
9991 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9993         * verify-internals.h: New header with the verifier configuration
9994         extracted from mini.c.
9996         * verify.c: Implemented the new functions exported by verify-internals.h.
9998 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10000         * verify.c: Add proper verification of ckfinite.
10002 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10004         * verify.c (do_conversion): Improved error message to something
10005         more meanfull.
10007         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10008         with primitive types.
10010 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10012         * verify.c: Added tail prefix checking. Marked icall
10013         as unverifible.
10015 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10017         * verify.c: Fix the detection of branches to the middle
10018         of an instruction.
10020 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10022         * verify.c: Implemented verification of volatile. and
10023         unaligned. prefix. Check if a type is valid after retrieving it.
10025 2008-04-01  Dick Porter  <dick@ximian.com>
10027         * process.c (process_get_fileversion): If there's no string block,
10028         set the file language to en_US.  Fixes the other new part of bug
10029         374600.
10031 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10033         * class.c: New functions mono_method_can_access_field_full and
10034         mono_method_can_access_method_full. They perform type visibility
10035         and type site check.
10037         * class-internal.h: Added exported functions.
10039         * verify.c: Use new functions to implement proper visibility checks.
10041 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10043         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10045 2008-03-28  Dick Porter  <dick@ximian.com>
10047         * process.c (process_get_fileversion): Use the first language ID
10048         we see, rather than insisting on an invariant language.  Fixes bug
10049         374600.
10051 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10053         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10054         the streams to fix reading of invalid memory later.
10056         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10057         to ease debugging.
10059 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10061         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10062         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10064 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10065         * threads.h: Added MonoThreadManageCallback type and
10066         mono_thread_set_manage_callback prototype
10067         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10068         (used to store the mono_thread_manage callback).
10069         * threads.c: Added mono_thread_set_manage_callback, and handle
10070         "MonoThread->manage_callback" in build_wait_tids.
10072 2008-03-26  Dick Porter  <dick@ximian.com>
10074         * process.c (process_get_fileversion): Set FileVersionInfo strings
10075         to Empty when the resource doesn't have the particular info.
10076         Fixes bug 355717.
10078 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10080         * verify.c (mono_method_verify): Proper prefix validation.
10082 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10084         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10085         itself in a separate argument instead of throwing them. Fixes #373448.
10087         * appdomain.c: Bump corlib version.
10089 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10091         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10093 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10095         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10096         version macros.
10098 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10100         * generic-sharing.c, class-internals.h: Code for putting
10101         reflection types into the runtime generic context.
10103 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10105         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10106         Fixes #340662. 
10109 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10111         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10113         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10115         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10117         * verify.c (do_cast): Let the result value keep the boxed status.
10119         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10121 2008-03-17  Jb Evain  <jbevain@novell.com>
10123         * reflection.c: when running on a 2.0 runtime, emit
10124         unconditionally the #~ header version as 2.0, and the
10125         CLI header version as 2.5, for symmetry's sake with csc.
10127 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10129         * class.c: Remove the unused cache_interface_offsets stuff.
10131         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10132         profiler.c: Fix warnings.
10134 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10136         * generic-sharing.c, class-internals.h: Support for putting
10137         methods into the runtime generic context.
10139 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10141         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10142         classes which are generic instances of not-yet finished typebuilders. Fixes
10143         #351172.
10145         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10147 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10149         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10151         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10152         field, replace it with a hash table in MonoDynamicImage.
10154         * reflection.c (inflate_mono_method): Access the generic definition object from
10155         image->generic_def_objects instead of imethod->reflection_info.
10157         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10159         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10160         
10161         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10162         function in reflection.c so it is easier to keep in sync with the dynamic image
10163         creation code.
10165         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10166         mono_image_close ().
10168 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10170         * class.c (mono_class_generic_sharing_enabled): Disable generic
10171         sharing for all architectures except AMD64 and x86 to fix build.
10173 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10175         * verify.c: Use the generic definition MonoGenericContext when available.
10176         Remove code for checking generics instance compatibility in favor of
10177         mono_class_is_assignable_from.
10179 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10181         * marshal.c, marshal.h, metadata-internals.h, image.c,
10182         wrapper-types.h: New wrapper for invoking a shared static method
10183         without having to pass the runtime generic context argument.
10185 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10187         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10189 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10191         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10192         
10193         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10194         create a token from a FieldOnTypeBuilderInst.
10195         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10196         (resolve_object): Ditto.
10198         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10199         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10201 2008-03-14  Martin Baulig  <martin@ximian.com>
10203         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10205         * debug-mono-symfile.h
10206         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10207         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10209 2008-03-10  Martin Baulig  <martin@ximian.com>
10211         * debug-mono-symfile.h
10212         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10213         `lexical_block_table_offset'.
10214         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10215         `lexical_blocks'.
10216         (MonoSymbolFile): Added `version'.
10218         * mono-debug.h
10219         (MonoDebugLexicalBlockEntry): Removed.
10220         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10221         `lexical_blocks'.
10223         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10224         blocks here; the debugger now does this internally.
10226 2008-02-27  Martin Baulig  <martin@ximian.com>
10228         * object.c (mono_runtime_exec_main): Call
10229         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10230         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10232 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10234         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10235         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10237 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10239         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10240         ldftn with a virtual method.
10242 2008-03-13  Geoff Norton  <gnorton@novell.com>
10244         * decimal.c:  Only include memory.h if the platform has it.
10246 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10248         * assembly.c, class.c, metadata-internals.h: make sure public key
10249         tokesns are compared in a case-insensitive way. Also, all
10250         the lookups in the GAC use a lowercase public key token
10251         (gaacutil already does the lowercasing on install). Fixes
10252         bug #369541.
10254 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10256         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10257         and return value.
10259 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10261         * image.c: when someone loads a mscorlib from a file, return the
10262         currently loaded mscorlib (fixes bug #369253).
10264 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10266         * class.c: handle types with no parents by forcing them to have
10267         System.Object as a parent and marking them as broken (this currently
10268         allows the first part of bug #369173 to work as well, likely because
10269         we don't check for typeload exceptions everywhere yet).
10271 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10273         * class.c: more complete check that types belong to corlib
10274         (fixes second part of bug #369173).
10276 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10278         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10279           "inline" to "__inline" before including mono-membar.h.
10280           
10281         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10282           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10283           MSVC builds.
10285         Contributed under MIT/X11 license.
10287 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10289         * verify.c (do_invoke_method): Remove return type validation.
10291         * verify.c (do_ret): Do return type validation at return site instead of
10292         call site.
10294 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10296         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10298         * verify.c: Some todos cleaned and improved a few error messages.
10300 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10302         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10304 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10306         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10307         system types correctly.
10309         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10310         function.
10312 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10314         * assembly.c (build_assembly_name): Fix a warning.
10316 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10318         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10319         the called function takes an object type argument. Fixes storing or
10320         valuetypes across remoting as well as reducing memory usage.
10321         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10322         stfld_remote wrapper caches.
10324 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10326         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10327         is not found.
10329         * reflection.c (mono_image_register_token): New helper function to save
10330         a token->object mapping.        
10332         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10333         managed code.
10335         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10336         one dimension arrays. Fixes #367670.
10337         (mono_reflection_get_type_internal): Ditto.
10339 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10341         * marshal.c: mono_load_remote_field_new() always returns object.
10342         so use the proper signature (fixes bug #366445).
10344 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10345         
10346         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10347         add an 'inline_failure' flag instead.
10349 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10351         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10352         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10353         contains the location of "this", used for exception handling.
10355 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10357         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10358         their size on all platforms for perf reasons.
10360 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10362         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10363         object-internal.h
10365         * object-internal.h: Same.
10367 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10369         * reflection.h: Fix the build I just broke.
10371 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10373         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10374         Test if a token is valid, this remove explicit usage of 
10375         MonoDynamicImage::tokens from the verifier code.
10377         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10379         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10380         instead of direct access to MonoDynamicImage::tokens.
10382 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10384         * verify.c (token_bounds_check): Fix the build I just broke.
10386 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10388         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10390         * verify.c (verifier_load_method): Fixed the errors message.
10392         * verify.c (mono_method_verify): Fixed a debug message.
10394 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10396         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10397         mono-perfcounters.h, class-internals.h: support for predefined
10398         writable counters, query of categories and counters, bugfixes.
10400 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10402         * verify.c (do_refanytype): Verify the refanytype opcode.
10404         * verify.c (mono_method_verify): Use do_refanytype.
10406 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10408         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10410         * verify.c (mono_method_verify): Use do_mkrefany.
10412 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10414         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10415         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10416         implementation.
10418 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10420         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10421         the type load exception.
10423 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10425         * verify.c: Added a few FIXME for method signatures
10427         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10428         of mono_method_get_signature and get vararg call working. Removed unused
10429         checks for return value.
10431         * verify.c (do_refanyval): Verify the refanyval opcode.
10433         * verify.c (mono_method_verify): Implemented verification of arglist and
10434         use do_refanyval.
10436 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10438         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10439         vtypes to marshal.c.
10441         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10442         it works for AOT as well.
10444 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10446         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10447         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10448         the system time is adjusted.
10450 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10452         * icall.c, icall-def.h: use the new time functions (fixes the
10453         non-monotonic behaviour of TickCount).
10455 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10457         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10458         it breaks the build.
10459         
10460         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10461         cattr is not finished yet.
10463 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10465         * verify.c: Proper token validation for field, method and type.
10467 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10469         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10471         * loader.c (method_from_memberref): Generate type load error instead of method missing
10472         if the type is not found.
10474 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10476         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10477         some of the conversions caused the generation of a marshal directive exception.
10479 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10481         verify.c: Report which exception should be thrown by the JIT.
10482         Added a lot of FIXME notes.
10484 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10486         * generic-sharing.c: Runtime generic context slots are not
10487         instantiated on init anymore.  Instead, provide function to do the
10488         instantiating on demand.
10490         * class-internals.h: Added vtable to runtime generic context.
10491         Macros for encoding direct and indirect slot offsets in one
10492         guint32.
10494 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10496         * object.c, generic-sharing.c: Moved some generic sharing code
10497         from object.c to generic-sharing.c.
10499         * generic-sharing.c: Added support for extensible runtime generic
10500         context.
10502         * metadata-internals.h: Two new hash tables in MonoImage for
10503         extensible runtime generic context support.
10505         * domain.c: Unregister generic vtables upon domain unloading.
10507         * image.c: Destroy new hash tables upon image unloading.
10509         * metadata.c: Unregister generic subclasses upon image unloading.
10511         * class-internals.h: New data structure for runtime generic
10512         context template.  New fields in the runtime generic context for
10513         extensible part.
10515         * Makefile.am: Added generic-sharing.c.
10517 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10519         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10520         there is a pending loader exception, raise it.
10522         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10523         same.
10525         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10526         same.
10528         Fixes #363450.
10530 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10532         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10534         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10535         
10536         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10537         ref-only requests for compatibility with MS.
10539 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10541         * reflection.c (mono_custom_attrs_from_method): Don't silently
10542         return an empty list for generic method instances.
10543         (mono_custom_attrs_from_param): Likewise.
10545 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10546             Raja R Harinath  <harinath@hurrynot.org>
10548         Fix #354757
10549         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10550         * class.c (mono_class_inflate_generic_method_full): Initialize it
10551         when a fully-open method is instantiated.
10552         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10553         to new field.
10554         * reflection.c (inflate_mono_method): Don't create a temporary context.
10556 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10558         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10559         Compute correct value, to prepare for imethod->reflection_info going away.
10561 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10563         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10565 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10567         * verify.c: Implement skip visibility flag.
10569 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10571         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10572         which contains an extra field to tell the kind of exception that should be thrown.
10574         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10576 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10578         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10579         'method' is updated.
10581 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10583         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10584         explicit layout as well. Fixes #360375.
10586 2008-02-11  Geoff Norton  <gnorton@novell.com>
10588         * loader.c: Guard and dereference against inflated generic methods
10590 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10592         * class.c: Include Retargetable spec in assembly name.
10593         * assembly.c: Always include PublicKeyToken spec in assembly name
10594         (with value "null" if assembly is not signed), and include
10595         Retargetable spec.
10596         * icall-def.h: Added icall for Assembly.get_fullname.
10597         * icall.c: Added icall returning the fullname of an assembly.
10599 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10601         * class.c (mono_class_setup_vtable_general): Add a missing call to
10602         mono_class_setup_methods () which is needed in the AOT case.
10604 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10606         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10607         stack type of the given MonoType.
10609         * verify.c (verify_type_compatibility_full): Handle the void type.
10611         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10612         way stack merging works.
10614         * verify.c (store_local): Improved verification message.
10616         * verify.c (do_branch_op): If the merging is invalid, the method
10617         is unverifiable and not invalid. Improved error message.
10619         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10620         a reference type diferent than System.Object. Improved error
10621         message.
10623 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10625         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10627         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10628         type of an enum even if the argument is byref.
10630         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10631         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10633         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10635         *verify.c (verify_type_compatibility_full): Make enum types
10636         compatible with their base types.
10638         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10639         types are compatible for the special case of a boxed valuetype and
10640         System.Object.
10642         * verify.c (verify_stack_type_compatibility): The function
10643         is_compatible_boxed_valuetype was extracted from here.
10645         * verify.c (push_arg): Only set ctx->has_this_store if the method
10646         is not static.
10648         * verify.c (do_ldelem): Fixed a typo in an error message and added
10649         strict check for mixing int32 and native int as the array type
10650         and ldelem type.
10652         * verify.c (merge_stacks): Consider boxed valuetypes in the
10653         compatibility checks.
10655 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10656         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10658 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10659         *class.c: use_new_interface_vtable_code: renamed the env var to have
10660         a "MONO_" prefix, and fix the logic to enable it by default.
10662 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10663         *class.c:
10664         mono_class_setup_vtable_general: rewrote the way in which interface
10665         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10666         makes the code more maintainable.
10667         For now the old code is still there, and can be activated setting
10668         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10670 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10672         * verify.c: guarded some debug functions around and #ifdef.
10674         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10676 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10678         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10679         changes for now since they seem to break too many things.
10681 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10683         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10684         mono_marshal_find_nonzero_bit_offset): Added macro and function
10685         for finding the byte- and bit-offset of a bitfield within a
10686         struct.
10688 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10690         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10691         (mono_marshal_get_struct_to_ptr): Ditto.
10693         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10694         cctor_signature.
10696 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10698         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10699         between methods for non-corlib types.
10701 2008-02-02  Geoff Norton  <gnorton@novell.com>
10703         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10704         generic parameters as well. (Fixes #342536)
10706 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10708         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10710         * verify.c (do_invoke_method): Fix for calling with byref structs.
10712         * verify.c (do_cast): push a boxed value type based on the type token and not
10713         the type of stack.
10715 2008-01-31  William Holmes  <billholmes54@gmail.com>
10717         * process.c (process_module_string_read): Check the size returned form 
10718           VerQueryValue to avoid out of memory exception. 
10720 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10722         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10723         Handle properly modules which are not in the moduleref table. Fixes
10724         #356938.
10726 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10728         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10729         the dynamic case which is now in managed code.
10730         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10732         * marshal.c (mono_string_to_bstr): Fix a warning.
10733         (init_com_provider_ms): Ditto.
10735         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10737         * exception.c (mono_get_exception_out_of_memory): New helper function.
10739 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10741         * marshal.c: Add support for BSTR marshalling
10742         using other COM systems.
10744         Code is contributed under MIT/X11 license.
10746 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10748         * object.c (mono_runtime_invoke_array): reverted previous
10749         commit as it breaks the build.
10751 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10753         * object.c (mono_runtime_invoke_array): Verify arguments for
10754         invalid types. Fixes #348522.
10756 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10758         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10759         non-final virtual calls using call. 
10761         * verify.c (do_invoke): fixed some TODOs.
10763         * verify.c (push_arg): set has_this_store for "ldarga 0".
10765 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10767         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10768         which belong to an inflated class. Fixes #356531.
10770 2008-01-26  Robert Jordan  <robertj@gmx.net>
10772         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10773         which resort to FindFirstFile when a certain error condition
10774         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10775         Code is contributed under MIT/X11 license.
10777 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10779         * marshal.c (emit_marshal_string): Fix out string marshalling
10780         to use specified encoding. Fixes #323900.
10782         Code is contributed under MIT/X11 license.
10784 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10786         * class.c (mono_class_inflate_generic_method_full): Don't modify
10787         iresult->context after cache check.
10789 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10791         * class.c (mono_class_inflate_generic_method_full): Change the
10792         struct assignments to memcpy for better visibility and add some comments.
10794 2008-01-23  Dick Porter  <dick@ximian.com>
10796         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10797         procedure, and make it work on windows.
10799 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10801         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10802         a MonoReflectionTypeBuilder since it is always of that type.
10804         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10806         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10808         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10809         
10810         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10812         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10814         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10815         instantiations from the type cache.
10817 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10819         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10821         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10823 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10825         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10827         * verify.c (mono_method_verify): removed old TODO
10829 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10831         * verify.c (do_newobj): add visibility check.
10833 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10835         * verify.c (do_load_function_ptr): add visibility check.
10837 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10838         *class.c:
10839         mono_generic_class_get_class: hook profiler events.
10840         mono_field_get_offset: added to support heap-shot in the new profiler.
10841         *class.h: exported mono_field_get_offset.
10842         * reflection.c:
10843         mono_reflection_setup_internal_class: hook profiler events.
10845 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10847         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10848         argument here too and use it to avoid checking for pending exceptions if 
10849         possible.
10851 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10853         * assembly.c (build_assembly_name): add arg for passing the assembly
10854         flags. Do not consider a PublicKey with value "null" valid.
10855         (mono_assembly_name_parse_full): added boolean argument that will be
10856         set if the assembly name contains a PublicKeyToken spec. Added support
10857         for the Retargetable spec for which only Yes or No are allowed as valid
10858         value. Consider assembly name invalid if Retargetable spec is set, but
10859         either version, culture or public key (token) are not specified.
10860         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10861         with implementation in assembly.c.
10862         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10863         from MonoAssemblyName.
10864         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10865         introduced argument for mono_assembly_name_parse_full to know if the
10866         assembly name has a PublicKeyToken spec, and if it has instruct
10867         fill_reflection_assembly_name to use default value for keyToken (if
10868         PublicKeyToken is null).
10870 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10872         * verify.c (mono_method_verify): fixed ovf ops with
10873         float values. They are unverifiable now.
10875 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10877         * class.c (set_failure_from_loader_error): add BadImageException to the
10878         list of exceptions that can cause a type to fail to load.
10880         * class.c (mono_class_get_exception_for_failure): same.
10882 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10884         * verify.c (in_any_exception_block): added, check if offset
10885         is part of any exception handling clause.
10887         * verify.c (get_stack_type): added VAR and MVAR types.
10889         * verify.c (do_stobj): better error messages.
10891         * verify.c (do_cpobj): added, check cpobj.
10893         * verify.c (do_initobj): added, check initobj.
10895         * verify.c (do_sizeof): added, check sizeof.
10897         * verify.c (do_localloc): added, check localloc.
10899         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10901 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10903         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10904         save_lmf/restore_lmf opcodes.
10906         * threads.c (mono_threads_install_notify_pending_exc): New function to
10907         install a callback notifying the JIT there is a pending exception on a thread.
10908         (mono_thread_request_interruption): Call the new callback.
10909         (mono_thread_get_and_clear_pending_exception): New function to return the
10910         exception pending on a thread.
10912         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10913         to turn off checking for pending exceptions.
10914         (mono_marshal_get_native_wrapper): Ditto.
10916 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10918         * threads-types.h: Get rid of the unnecessary extern declarations.
10920 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10922         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10923         return field from parent class if not private.
10924         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10925         returns fields from parent class if they are not private.
10926         (method_nonpublic): added function to determine if a given method
10927         should be considered non-public. Returns false for private methods
10928         on parent class, and internal methods from parent on the 1.0 profile.
10929         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10930         use method_nonpublic function to determine whether method should be
10931         returned.
10932         (property_accessor_public): use newly introduced method_nonpublic
10933         function to determine whether accessor is non-public. 
10934         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10935         event from parent class if not private. Only return static event if
10936         Static flag is set, and only return static event from parent class if
10937         FlattenHierarchy flag is set.
10938         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10939         include non-private events from parent class.
10941 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10943         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10944         warning.
10946 2008-01-16  Wade Berrier <wberrier@novell.com>
10948         * security.c: Add assembly.h header to appease some warnings
10950 2008-01-16  Dick Porter  <dick@ximian.com>
10952         * process.c (process_module_string_read): Remove trailing null
10953         when saving string.
10955 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10957         * class-internals.h: A new data structure describing the layout of
10958         a runtime generic context (MonoRuntimeGenericContextTemplate).
10960         * metadata-internals.h: Added a hash table to MonoDomain that maps
10961         from open generic classes to their runtime generic context
10962         templates.
10964         * object.c: Building of the runtime generic context, including
10965         proper handling of generic type arguments of superclasses.
10966         Building of the runtime generic context according to the template.
10968 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10970         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10971         Fixes #350856.
10973         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10974         mono_portability_find_file (). Fixes #325466.
10975         (mono_image_get_public_key): Fix a warning.
10977 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10979         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10980         Fixes #353550.
10981         (mono_class_from_name_case): Ditto.
10983 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10985         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10986           common storage for the tables used in the System/NumberFormatter class.
10988 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10990         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10992 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10994         * verify.c (get_boxable_mono_type): check if the token is valid.
10996         * verify.c (set_stack_value): changed to add an error if an
10997         invalid type is set on stack. Changed all callers due to signature change.
10999         * verify.c (do_stobj): implement stobj validation.
11001 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11003         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11004         set container->is_method, it was set earlier.
11006         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11007         generic methods.
11009         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11010         is_method of the generic container to TRUE for methods.
11012 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11014         * metadata.c (type_in_image): Handle type parameters properly.
11016         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11017         memory ownership of this structure.
11019 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11021         * verify.c (get_boxable_mono_type): make typedref types been just
11022         unverifiable. check for void type.
11024         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11026         * verify.c (do_load_function_ptr): accept method spec tokens.
11028 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11030         * marshal.c (mono_class_native_size): Always set *align even if this is called
11031         recursively.
11033 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11035         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11036         out-of-date.
11038 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11040         * verify.c: removed some old unused tables. A huge bunch of small fixes
11041         to things found while testing the verifier with mono basic.
11043         * verify.c (dump_stack_value): dump null literal flag to.
11045         * verify.c (verify_type_compatibility_full): fix comparison
11046         for types that have a generic super type.
11048         * verify.c (verify_stack_type_compatibility): fix compatibility
11049         between null literals and reference types. fix compatibility between
11050         boxed valuetypes and object. fix corner case test for enums.
11052         * verify.c (do_cmp_op): proper verification of cgt.un in case
11053         of reference types.
11055         * verify.c (do_invoke_method): fix error message.
11057         * verify.c (do_store_indirect
11059         * verify.c (check_is_valid_type_for_field_ops): proper verification
11060         of managed pointers to valuetypes and boxed valuetypes. proper verification
11061         of null literals.
11063         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11064         allow token to be a reference type.
11066         * verify.c (do_cast): proper handling of boxes valuetypes.
11068         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11069         in object[].
11071         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11072         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11073         fixed the decoding of unbox_any
11075 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11077         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11079 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11081         * verify.c (do_newobj): do delegate verification.
11083         * verify.c (verify_delegate_compatibility): perform delegate
11084         verification.
11086         * verify.c (verify_ldftn_delegate): perform tests related to
11087         ldftn delegates.
11089         * verify.c (mono_delegate_signature_equal): perform the
11090         slightly diferent signature comparison required by delegates.
11092         * metadata.c (mono_metadata_type_equal_full): added and exported
11093         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11094         allows signature only comparison.
11096         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11097         as MONO_INTERNAL.
11099 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11101         * verify.c: added a bunch of stack_slot_* functions to
11102         make access to stack slot type easier. This is required to
11103         allow optional flags, like null literal, boxed value and
11104         this pointer.
11105         All access paths to IlStackDesc::stype have been changed 
11106         to use these new funcions.
11107         Removed a bunch of unused functions and cleared all warnings.
11108         This patch introduces the usage of the this pointer and 
11109         boxed value flags.
11111 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11113         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11115 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11117         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11118         match managed version.
11120         * appdomain.c: Bump corlib version.
11121         
11122         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11123         argument.
11125 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11127         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11128         Set public key token to zero-length byte array if assembly is not
11129         strongnamed.
11131 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11133         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11134         writing a vtype array elem.
11136 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11138         * assembly.c (build_assembly_name): return FALSE if length of token is
11139         not 16 (if not "null").
11140         (mono_assembly_name_parse_full): return FALSE if value of version,
11141         culture, token or key is 0.
11142         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11143         specify whether public key and public key token must be set to default
11144         value (zero-length byte array) if not available. Set versioncompat to
11145         SameMachine. If public key is available or the default is set, then
11146         set PublicKey flag.
11147         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11148         is available, use empty byte array as default value. On the 2.0
11149         profile, use default value for public key token if not set.
11150         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11151         profile, use default value for public key if not set. On the 2.0
11152         profile, use default value for public key token if not set.
11153         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11154         default values for public key and public key token.
11156 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11158         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11159         field to keep it in synch with the managed object.
11161         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11162         delegates. Fixes #351520.
11164         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11165         contains defined memory.
11166         
11167         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11169         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11170         
11171         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11172         of the GC data structures.
11174         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11176         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11177         
11178         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11179         barrier.
11180         (mono_array_clone_in_domain): Ditto.
11181         (mono_array_clone_in_domain): Ditto.
11183         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11184         (cache_culture): Use a write barrier.
11186         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11187         (ves_icall_get_property_info): Ditto.
11189         * object.h (MONO_STRUCT_SETREF): New macro.
11191         * class-internals.h (MonoStats): Add some GC statistics.
11193         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11195 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11197         * exception.c (mono_exception_from_name_two_strings):
11198         Break from loop after method is found.
11200 2008-01-04  Dick Porter  <dick@ximian.com>
11202         * process.c (process_module_string_read): Rename variable to
11203         reflect correct usage, after fixing bug 345972.
11205 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11207         * verify.c (mono_type_create_fnptr_from_mono_method): 
11208         created a MonoType function pointer instance to be used during
11209         verification. The verifier releases this memory at end.
11211         * verify.c (mono_method_is_constructor): extracted repeated
11212         checks for constructor into a single class.
11214         * verify.c (do_push_field): use new extracted method
11215         for constructor check.
11217         * verify.c (do_newobj): same.
11219         * verify.c (do_ldftn): renamed to do_load_function_ptr
11220         and make it verify ldvirtftn too.
11222         * verify.c (mono_method_verify: proper verification
11223         of ldvirtftn. release created MonoMethod instances.
11225 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11227         * verify.c (token_bounds_check): added.
11229         * verify.c (do_ldftn): added.
11231         * verify.c (mono_method_verify): proper verificartion of ldftn.
11233 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11235         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11236         than the table row count. It's the resposibility of the caller to
11237         make the bounds check and raise the correct error.
11239         * metadata.c (mono_metadata_decode_row_col): Same.
11241         * loader.c (mono_get_method_from_token): perform bounds check
11242         on token for methoddef table.
11244 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11246         * icall.c
11247         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11248         assert into a negative result, the managed code already coped with
11249         that.
11251         Some folks on Windows reported this error. 
11253 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11255         * appdomain.c: Bump corlib version.
11256         * icall.c:
11257         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11258         CultureInfo.CreateCulture to create CultureInfo for name.
11259         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11260         create CultureInfo for name. Fixes bug #347174.
11262 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11264         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11265         flags.
11267         * verify.c (is_valid_branch_instruction): allow branching to the
11268         first instruction of the protected block.
11270         * verify.c (is_valid_cmp_branch_instruction): same.
11272         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11273         avoid double initialization.
11275         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11276         detect which cases the eval stack should just be copied.
11278         * verify.c (mono_method_verify): check if the eval stack
11279         is empty when entering a protected block.
11281 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11283         * verify.c: added is_clause_in_range, is_clause_inside_range,
11284         is_clause_nested and verify_clause_relationship. They perform
11285         the verifications stated in P1 12.4.2.7.
11287         * verify.c (mono_method_verify): remove some unused variables,
11288         add the new exception clause checks, add instruction border
11289         checks for protected block start/end, improved some error 
11290         messages and fixed a bug in the way invalid instruction access
11291         is detected.
11293 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11295         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11296         from GC 7.0 if available.
11298         * object.c: Remove an unused define.
11299         
11300         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11302         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11304         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11306         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11308         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11309         to take the same arguments as the other make_descr functions.
11311         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11313         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11314         directly.
11316         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11317         mini.c.
11319         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11320         call to boehm-gc.c.
11322         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11324         * null-gc.c (mono_gc_register_root): Fix a warning.
11326         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11328         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11329         (mono_gc_base_init): Call GC_init ().
11331         * null-gc.c: Define mono_gc_register_root () as a no-op.
11333         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11335 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11337         * verify.c: add prototype for merge_stacks at top
11339         * verify.c (do_switch): added.
11341         * verify.c (merge_stacks): on some cases the stack merging
11342         was not happening properly. Unequal stack sizes at merge
11343         points should be invalid.
11345         * verify.c (mono_method_verify): added more debug info on stack state.
11346         verify switch properly.
11348 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11350         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11351         marshal.h.
11353         * boehm-gc.c marshal.c: Include method-builder.h.
11355         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11357         * marshal.c: Remove some code which is now in method-builder.c.
11359 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11361         * method-builder.c: New file, extraction of the method builder functionality 
11362         from marshal.c.
11364         * marshal.c: Move the mb functions into method-builder.c.
11366         * marshal.h marshal.c: Export some mono_mb_... functions.
11368         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11370         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11371         the caller.
11373         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11375         * loader.c (mono_field_from_token): Ditto.      
11377         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11378         type as well.
11379         
11380         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11381         Fixes #342565.
11383         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11384         a helper function for setting it.
11386         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11388         
11389         * assembly.c: Significally simplify code now that referenced assemblies are 
11390         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11392         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11393         #349952.
11395 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11397         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11398         instructions that were target of branches or are at protected block boundaries.
11400         * verify.c (in_same_block): handle filter clauses.
11402         * verify.c (is_valid_branch_instruction): added. checks the target of
11403         instructions br or brtrue/false.
11405         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11406         binary branch instructions such as beq and bge.
11408         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11409         and made it pin the instruction as been part of the exception block.
11411         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11412         of in_same_block.
11414         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11415         of in_same_block.
11417         * verify.c (do_ret): ret from a protected block is unverifiable and
11418         not invalid.
11420         * verify.c (do_static_branch): verify br and br.s instructions.
11422         * verify.c (merge_stacks): add extra param to support detection
11423         of branches in the middle of instructions.
11424         
11425         * verify.c (mono_method_verify): verify branches and exception blocks
11426         that target the middle of instructions. Proper verification of br and br.s.
11428 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11430         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11431         skip_visibility field.
11432         (reflection_methodbuilder_from_dynamic_method): Ditto.
11434         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11435         registrations. Fixes #348193.
11437         * threads.h: Move the internal mono_thread_get_pending_exception () to
11438         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11440 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11442         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11443         icall registration. Fixes #348193.
11445         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11446         for corlib classes into object. Fixes #349621.
11448 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11450         * icall.c (property_accessor_nonpublic): new function to determine
11451         whether an accessor allows a property to be considered non-public.
11452         Returns false for private accessor(s) from parent class, and internal
11453         accessor(s) from parent on 2.0 profile (and higher).
11454         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11455         to determine whether property should be included if NonPublic flag
11456         is set. Fixes bug #349078.
11458 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11460         * verify.c (init_stack_with_value): added.
11462         * verify.c (mono_method_verify): extracted common
11463         code for exception initialization into init_stack_with_value.
11465         * verify.c (mono_method_verify): initialize the exception
11466         for handler clauses as well.
11468         * verify.c (mono_method_verify): fix the exception clause
11469         ordering rules, it should use handler end offset and not
11470         start offset.
11472 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11474         * rawbuffer.c: remove useless warning.
11476 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11478         * threads.h, threads-types.h: move functions to the correct header
11479         (fixes bug#349952).
11481 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11483         * verify.c (mono_method_verify): proper verification
11484         of exception handling clauses ranges and fallthru in
11485         and out of protected blocks.
11487 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11489         * verify.c (mono_method_verify): fixed compilation issue.
11491 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11493         * verify.c (mono_method_verify): a printf slipped in, changed
11494         to use verifier debug macro.
11496 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11498         * verify.c (is_correct_leave): check for filter clauses.
11500         * verify.c (do_filter): added.
11502         * verify.c (mono_method_verify): property verification of leave.
11505 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11507         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11508         Win32 build, until we figure out how to do the proper thing on
11509         Win32.
11511 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11513         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11514         by the previous patch.
11515         
11516         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11517         the assembly resolve handler for refonly assemblies.
11519 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11521         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11522         Make sure only one thread is allowed to commence shutdown, and
11523         don't allow new threads to be started once shutdown is in
11524         progress.
11526 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11528         * verify.c (is_correct_endfilter): added.
11530         * verify.c (is_unverifiable_endfilter): added.
11532         * verify.c (do_endfilter): added.
11534         * verify.c (mono_method_verify): property verification of endfilter
11535         and fixed a corner case or endfinally.
11537 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11539         * verify.h: new flags to support fail fast of unverifiable code and
11540         do non-strict verification. Non-strict verification is required to
11541         have MS runtime compatibility. There are a huge amount of unverifiable
11542         code that it accepts as verifiable. The strict mode verifies the code
11543         as the specs says.
11544         Non-strict mode will be required in cases where code needs to be
11545         accepted as verifiable but fails under strict mode.
11547         * pedump.c: added support to fail fast and non-strict verification.
11549         * verify.c: added support for both fail fast and non-strict verification.
11551 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11553         * verify.c (is_correct_endfinally): added.
11555         * verify.c (mono_method_verify): property verification of endfinally.
11557 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11559         * verify.c (in_any_block): check for filter clauses.
11561         * verify.c (is_correct_rethrow): added.
11563         * verify.c (mono_method_verify): property verification of rethrow.
11565         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11567 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11569         * verify.c (do_throw): added.
11571         * verify.c (mono_method_verify): property verification of throw
11573 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11575         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11576         assemblies. Fixes #346425.
11578 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11580         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11581         FieldBuilders.
11583         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11585         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11586         prevent asserts when this is called with a token which might not be valid.
11588         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11589         lookup_dynamic_token_class with valid_token == FALSE.
11591         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11593         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11595         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11596         
11597 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11599         * gc.c: Don't delay threadpool thread finalization unless Mono is
11600         shutting down.
11602 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11604         * threads.c: turn an assert into a non-fatal warning.
11606 2007-12-09  Robert Jordan  <robertj@gmx.net>
11608         * icall.c (GetVirtualMethod): Add missing argument validation.
11610 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11612         * verify.c (do_cast): added.
11614         * verify.c (mono_method_verify): property verification of castclass and isinst.
11617 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11619         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11621         * verify.c (do_stelem): added.
11623         * verify.c (mono_method_verify): property verification of stelem.X.
11625 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11627         * class.c, class-internals.h: Introduce an environment variable
11628         (MONO_GENERIC_SHARING) through which the extent of generic code
11629         sharing can be controlled (share all classes, share only corlib
11630         classes, or share nothing).
11632         * object.c: Only create runtime generic context for classes for
11633         which sharing is enabled.
11635 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11637         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11639         * verify.c (mono_method_verify): property verification of ldelem.any.
11641 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11643         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11644         added ldelem.X opcodes.
11646         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11648         * verify.c: proper verification of ldelem.X 
11650 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11652         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11654 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11656         * verify.c (mono_method_verify): null literal requires special handling,
11657         the value pushed on stack need to be flagged as so.
11659         * verify.c (do_ldelema): Verify ldelema properly.
11661 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11663         * verify.c: Verify ldlen properly.
11665 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11667         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11668         to the target object's type. Fixes #346160.
11670 2007-12-05  Dick Porter  <dick@ximian.com>
11672         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11673         Solaris needs the same workaround as BSD-derived systems.  Fixes
11674         bug 323524, patch by Burkhard Linke
11675         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11677 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11679         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11680         handle to use when error dialog is shown; otherwise, update mask
11681         to show no error dialog when an error occurs.
11683 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11685         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11687         * class.c (mono_class_get_field_default_value): New helper function to initialize
11688         field->def_type and field->data.
11690 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11692         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11693         the general one.
11695         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11697         * marshal.c: Avoid depending on delegate->method_info being set.
11699         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11700         
11701         * object.c (mono_delegate_ctor): Set delegate->method.
11703         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11705         * appdomain.c: Bump corlib version.
11707 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11709         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11710         equality check if we're comparing canonicalized MonoGenericInsts.
11712 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11714         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11715         accessing class->methods.
11717 2007-11-22  Dick Porter  <dick@ximian.com>
11719         * threads.c: Ensure that the synch_cs is set before trying to use
11720         it.
11722 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11724         * profiler.c: r89126 broke the statistial profiler, unbreak.
11726 2007-11-22  Martin Baulig  <martin@ximian.com>
11728         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11730         * mono-debug.c
11731         (mono_debug_debugger_version): Bump to 3.
11732         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11733         -> mono_debugger_class_initialized().
11735         * mono-debug-debugger.c
11736         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11738         * class.c
11739         (mono_debugger_start_class_init_func): Removed.
11740         (mono_debugger_class_loaded_methods_func): Added.
11741         (mono_class_setup_methods): Call it here.
11743 2007-11-22  Martin Baulig  <martin@ximian.com>
11745         * mono-debug.c
11746         (mono_debug_add_delegate_trampoline): New public method.
11747         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11749         * mono-debug.h
11750         (MonoSymbolTable): Added `global_data_table'.
11751         (MonoDebuggerTypeKind): Removed.
11753 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11755         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11756         these methods.
11758         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11759         
11760 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11762         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11764 2007-11-20  Martin Baulig  <martin@ximian.com>
11766         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11768         * mono-debug-debugger.c
11769         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11770         (mono_debugger_remove_breakpoint): Likewise.
11771         (mono_debugger_check_breakpoints): Likewise.
11772         (mono_debugger_register_class_init_callback): New public method.
11773         (mono_debugger_remove_class_init_callback): Likewise.
11774         (mono_debugger_add_type): Likewise.
11776         * mono-debug-debugger.h
11777         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11779 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11781         * class.c: more interface implementations needed for the
11782         array enumerator (fixes bug #341112).
11784 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11786         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11787         fix ParamName of ArgumentNullExceptions.
11789 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11791         * reflection.c (mono_reflection_encode_sighelper): Generate the
11792         modopts and modreqs.   I have a useless test that crashes monodis,
11793         but that shows the code working.
11795 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11797         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11798         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11800 2007-11-15  Dick Porter  <dick@ximian.com>
11802         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11803         When joining a thread, it's the thread that's calling Join that
11804         gets WaitSleepJoin state not the target.  Fixes the standalone
11805         test case in bug 334740, and hopefully the whole bug too.
11807 2007-11-15  Dick Porter  <dick@ximian.com>
11809         * process.c: Read file version info from the files pointed at by
11810         process modules, not the current process.  Fixes bug 315969.
11812         Use windows typedef names in some places to fix warnings on the
11813         windows build.
11815 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11817         * image.c, metadata-internals.h: Added a generic_class_cache hash
11818         to MonoImage for looking up generic classes when sharing generics.
11820 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11822         * sgen-gc.c: warning cleanups.
11824 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11826         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11827         inherited properties.
11829 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11831         * object.c, class-internals.h: Added more information to the
11832         runtime generic context.
11834 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11836         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11837         instead of just the target method. Generalize the abstract method handling to
11838         handle any non-static method.
11840         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11841         mono_marshal_get_delegate_invoke () signature change.
11843 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11845         * class.c, class-internals.h: Made
11846         mono_type_get_basic_type_from_generic () public.  Fixed member
11847         access check for shared generics.
11849         * loader.c: Don't insert field into field cache if it's part of a
11850         non-inflated generic class.
11852         * domain.c, domain-internals.h: The generic sharing context is now
11853         part of the jit info data structure.  Added two accessor
11854         functions.
11856 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11858         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11859         the array Get/Set/Address methods, since the JIT inlines them.
11861         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11863         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11864         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11866         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11867         mono_marshal_get_delegate_invoke signature change.
11869         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11870         an additional argument. Add support for invoking abstract methods.
11872         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11874         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11876 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11878         * class.c: Do field layout for open generic classes as well.
11880 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11882         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11883         other objects, because the threadpool is still around.  Put them
11884         in a list instead and after finalizing all other objects in the
11885         root domain shut down the thread pool and then finalize the
11886         threads.  Fixes bug #337383.
11888         * threads.c, thread-types.h: New mono_thread_create_internal()
11889         function for marking a thread with the threadpool flag before it
11890         started.  Set synch_cs to NULL after freeing it.
11892         * threadpool.c: Mark threadpool threads before they start.
11894 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11896         * reflection.h, reflection.c: don't export random functions
11897         and lazy load dbnull and missing objects.
11899 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11901         * class.c: Initialize COM types if COM interfaces
11902         are present (not just COM classes).
11903         
11904         Code is contributed under MIT/X11 license.
11906 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11907         * reflection.c:
11908         create_dynamic_mono_image: hook module profiler events (dynamic case).
11909         mono_image_basic_init: hook assembly profiler events (dynamic case).
11911 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11912         * profiler.c:
11913         simple_appdomain_unload: completely terminate the profiler
11914         instead of only processing the statistical samples.
11915         simple_shutdown: make sure this is really called exactly once,
11916         even in multithreaded applications, and always listen to
11917         appdomain events.
11918         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11919         here, the "[un]load" functions will do it.
11920         Fixes bugs #333791 and #325261.
11922 2007-11-07  Geoff Norton  <gnorton@novell.com>
11924         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11925         rather than depend on __APPLE__.
11927 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11929         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11931 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11933         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11934         UTF16 MonoString. Fix the crash from bug #335488
11936 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11938         * marshal.c: Correct (for non-Win32 OS) length != size in 
11939         mono_string_from_bstr. Fix #339530.
11941 2007-11-06  Geoff Norton  <gnorton@novell.com>
11943         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11944         to succeed
11946 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11948         * process.c: Added run-time GetProcessId API detection for Windows.
11950 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11952         * reflection.c  (mono_param_get_objects): If a parameter has the
11953         attribute [System.Runtime.InteropServices.Optional] we should
11954         set the DefaultValue of the ParameterInfo to be
11955         System.Reflection.Missing instead of DBNull.
11957         See bug #339013.
11959         (mono_get_reflection_missing_object): New method,
11960         returns the System.Reflection.Missing.Value singleton instance.
11962 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11964         * culture-info-table.h : regenerated.
11966 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11968         * icall.c: Use GetEnvironmentStrings on windows
11969         so we are using the same environment block as 
11970         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11971         #333740.
11972         
11973         Code is contributed under MIT/X11 license.
11975 2007-10-31  Martin Baulig  <martin@ximian.com>
11977         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11979         * mono-debug-debugger.h
11980         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11982 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11984         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11985         classes.
11987 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11989         * culture-info-table.h : regenerated.
11991 2007-10-30  Robert Jordan  <robertj@gmx.net>
11993         * icall-def.h, icall.c:
11994         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11996         Code is contributed under MIT/X11 license.
11998 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12000         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12001         inflated class instead of inflating them again.
12002         
12003         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12004         dynamic case.
12006         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12007         Call setup_supertypes () after klass->parent is set.
12008         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12010         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12011         for inflated instances of not yet created dynamic generic classes.
12012         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12013         times from inflated_method.
12014         (methodbuilder_to_mono_method): Ditto.
12016 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12018         * gc.c: code cleanup and removed old untested option of not creating the
12019         finalizer thread.
12021 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12023         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12024         creating a jump trampoline for dynamic methods.
12026 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12028         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12029         generic TypeBuilders when called from another method of the same type (bug #335131).
12032 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12034         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12035         doesn't seem to work perfectly.
12036         
12037         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12038         called multiple times.
12039         (methodbuilder_to_mono_method): Ditto.
12040         (resolve_object): Inflate FieldBuilder's.
12042 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12044         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12045         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12046         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12048 2007-10-26  Dick Porter  <dick@ximian.com>
12050         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12051         Thread initialisation changes
12053 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12055         * verify.c: fix compatibility check between arrays and System.Array
12057 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12059         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12060         too. Fixes #336999.
12062 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12064         * object.c (mono_value_box): Use typed allocation here.
12066 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12068         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12069         trampoline instead of compiling the method right away.
12071         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12073 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12075         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12076         related fields for dynamic classes. Fixes #334493.
12078 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12080         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12081         
12082         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12084         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12085         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12087         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12089         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12090         if needed.
12091         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12093 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12095         * marshal.c: Use correct key when removing item
12096         from ccw_hash.
12097         
12098         Code is contributed under MIT/X11 license.
12100 2007-10-17  William Holmes  <billholmes54@gmail.com>
12102         *marshal.c: Adding a case to marshal booleans to U1
12104         Code is contributed under MIT/X11 license.
12106 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12108         * class.c (mono_class_from_name): Search the modules compromising dynamic
12109         assemblies. Fixes #331601.
12111 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12113         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12114         exception if the type name contains an assembly component. Fixes #334203.
12116         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12117         modules inside dynamic assemblies. Fixes #334200.
12118         
12119         * reflection.c: Set image->public_key and image->public_key_length;
12121         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12122         fields.
12124         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12125         
12126 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12128         * metadata.c: Implemented correct comparing of generic classes.
12129         An inflated generic class can be equal to a non-inflated one if it
12130         is inflated with generic type variables as type arguments.  Fixes
12131         bug #333798.
12133 2007-10-15  Dick Porter  <dick@ximian.com>
12135         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12136         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12137         81646.
12139         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12140         instead of a monitor lock.  This means that monitor_try_enter and
12141         co can set the thread state safely.
12142         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12143         thread_interrupt_requested, so interrupt actually works.
12145         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12146         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12147         state accessor function
12149 2007-10-15  Martin Baulig  <martin@ximian.com>
12151         * mono-debug.h
12152         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12153         the debugger with the current runtime.
12155 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12157         * object.c, object-internals.h: added the ability to set a single
12158         trampoline for all the slots in a vtable.
12160 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12162         * marshal.c: deal with a possible race condition during multicast
12163         delegate invocation.
12165 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12167         * class.c: ensure value type methods don't have the synchronized
12168         flag set.
12170 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12172         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12173         breaks the build.
12175 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12177         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12178         to take an options parameter so that empty entries can be removed during
12179         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12181 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12183         * marshal.c: make sure we don't store the signature from a dynamic
12184         method into the runtime invoke cache (bug #327189).
12186 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12188         * marshal.c: make sure the wrapper methods are properly initialized.
12190 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12192         * metadata.c, metadata-internals.h: Generalized
12193         mono_type_stack_size() to mono_type_stack_size_internal() which
12194         takes an additional argument specifying whether it allows open
12195         types.
12197 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12199         * verify.c (do_invoke_method): handle typedbyref params
12200         correctly and check for unverifiable return values.
12202         * verify.c (do_newobj): fix a warning.
12204 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12206         * verify.c: don't tread typedbyref as allways unverifable,
12207         so uses, like (ld/st)loc.0 are valid. verify for the cases
12208         that it matters, like boxing related operations.
12210 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12212         * verify.c: add verification of the newobj opcode. verification
12213         of delegate instantation still missing due ldftn and virldftn not
12214         pushing the function type on stack
12216 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12218         * class-internals.h: Runtime generic context data structure
12219         definition.
12221         * object.c: Initialization of runtime generic context at runtime
12222         vtable creation time.
12224 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12225         * class.c (mono_class_create_from_typedef,
12226         mono_class_from_generic_parameter, mono_ptr_class_get,
12227         mono_fnptr_class_get, mono_bounded_array_class_get)
12228         * domain.c (mono_domain_create, mono_domain_free)
12229         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12230         * image.c (do_mono_image_load, mono_image_close):
12231         Hooked up load-unload profiler events.
12233 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12235         * domain.c: track statistics about the actual amount of native code
12236         allocated.
12238 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12240         * class.c: the valuetype enumerators don't have the additional
12241         supertypes interfaces.
12243 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12245         * class.c: need more interfaces setup for the IEnumerator<T>
12246         object created for arrays (tests/ienumerator-interfaces.2.cs).
12248 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12250         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12252 2007-10-05  Alp Toker  <alp@atoker.com>
12254         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12255         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12256         #315863.
12258 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12260         * verify.c (verify_type_compatibility_full): verification of
12261         compatibility improved, validates correctly non-strict checks between
12262         native int and I4 types different than (unsigned)int32.
12264         * verify.c (do_store_indirect): added, do all verification of
12265         ldind.X opcodes. 
12267         * verify.c (get_load_indirect_mono_type): renamed to
12268         get_indirect_op_mono_type, as it now returns the MonoType for 
12269         ldind.X and stind.X opcodes.
12271 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12273         * reflection.c: Fix the encoding of generic type definition for
12274         TypeBuilders.
12276         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12277         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12278         be made. Typespec check is done prior to typeref cache lookup.
12280         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12281         mono_image_typedef_or_ref_full.
12283         * reflection.c (encode_generic_class): encode the generic class
12284         directly instead of calling encode_type.
12286         * reflection.c (encode_type): encode the generic type definition
12287         MonoClass as a generic instantiation.
12289         * reflection.c (create_typespec): cache typespec tokens in
12290         the assembly->typespec cache. Don't create typespec for a generic
12291         instance MonoClass. Create typespec for the generic type defintion.
12293         * reflection.c (create_generic_typespec): encode the generic
12294         class directly instead of calling encode_type.
12296         * reflection.c (mono_image_create_token): encode the generic
12297         type definition not using a typespec for MonoType instances.
12300 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12302         Fix #328812
12303         * class.c (mono_image_init_name_cache): Don't return nested
12304         'protected internal' classes.
12305         (mono_class_from_name_case): Likewise.
12307 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12309         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12310           common function used by both DefaultConfig in System.dll and
12311           InternalConfigurationHost in System.Configuration.dll.
12313 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12315         * class.c: automatically add to vectors only a few essential explicit
12316         generic interfaces. The rest of the interfaces that arrays should
12317         provide are currently implicitly added (but still not lazily, see the
12318         design in the discussion of bug#325495 for the details of what is
12319         needed for that). Additionally, implicit interfaces are assigned the
12320         same vtable slot as the explicit interfaces (as they are compatible):
12321         this enables huge memory savings since we don't need to instantiate
12322         as many memthods and as large vtables anymore. Also, Since
12323         GetEnumerator<T> returns an instance of a type that is required to
12324         support a similarly large set of interfaces as arrays, we add
12325         implicit interfaces and interface offset sharing support to those
12326         types, too. This change adds all the required interfaces so that
12327         the anonarray.cs test case in the bug report works (we don't add
12328         all the interfaces to arrays of arrays 3-level deep and more because
12329         of the memory requirements explained in the bug and since they are much
12330         less common: the lazy-loading support will enabled them to work, too).
12332 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12334         * verify.c (merge_stacks): major clean up, all type compatibility
12335         checks are done by verify_type_compatibility. This fix my earlier lack
12336         of understanding of the CLR type system and merge_stacks no longer looks
12337         scary.
12339         * verify.c: fixed some bad spelling.
12341 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12343         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12344         a given stack slock.
12345         
12346         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12347         verify_type_compatibility_full. This removed a near indentical function and fixed
12348         handling of Int32 and IntPtr across all opcodes.
12350 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12352         * class.c: only vectors have the additional generic interfaces.
12354 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12356         * mono-config.c: Use g_strcasecmp instead of
12357         strcasecmp like everywhere else to fix
12358         compilation with MSVC.
12359         
12360         Code is contributed under MIT/X11 license.
12362 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12364         * object.c, object-internals.h: refactored the IMT code to enable
12365         building a single slot at a time and lazily creating the IMT trampolines
12366         and thunks.
12368 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12370         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12372         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12373         Fixes #328501.
12374         
12375 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12377         * loader.c (method_from_methodspec): Rearrange to avoid
12378         un-necessary exposition.  Don't assert out if the method's
12379         declaring type is a generic type definition.
12381 2007-09-28  Martin Baulig  <martin@ximian.com>
12383         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12385 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12387         * class-internals.h: optimize field layout of MonoClass to
12388         requires less cachelines at runtime and save a few bytes on 64 bit
12389         systems.
12391 2007-09-28  Jb Evain  <jbevain@novell.com>
12393         * reflection.c: when encoding type names in custom attributes,
12394         if the type is a closed generic type, its generic arguments
12395         have to be serialized as AssemblyQualifiedName, so that when
12396         they are deserialized, it's possible to re-create them properly.
12397         Fixes #329450.
12400 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12402         * object.c, class-internals.h: added delegate-creation counter.
12404 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12406         * class.c: cleanup of the code that synthetizes interfaces for
12407         arrays in 2.0: saves quit a bit of corlib mempool memory.
12408         Code to fix bug #325495 ifdeffed out for now until the issues
12409         with memory usage and O(n^2) behaviour are fixed.
12411 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12413         * marshal.c: when possible, do not duplicate the name of the methods
12414         in the method builder and in the generated MonoMethod.
12416 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12417         * verify.c: added support for type checking ldind_* opcodes.
12419 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12421         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12422         which is used to distinguish the fully open instantiation of a TypeBuilder
12423         with the rest. This temporary hack is required to restore the property that
12424         the fully open instantiation is the same type of the generic type definition.
12426         * class-internals.h (mono_generic_class_is_generic_type_definition):
12427         new function as part of the internal API.
12429         * class.c (inflate_generic_type): return NULL when the generic inst is
12430         fully open. The fully open generic type is now the same as the generic type
12431         definition for non TypeBuilder types.
12433         * class.c (mono_generic_class_get_class): removed assert since it is
12434         no longer valid, gklass->cached_class can point to the generic type definition.
12436         * class.c (mono_generic_class_is_generic_type_definition): new.
12438         * metadata.c (mono_generic_class_hash): added is_tb_open field
12439         to the hash calculation.
12441         * metadata.c (free_generic_class): if the generic class is associated
12442         with the generic type definition, its field will come from the mempool and
12443         must not be freed.
12445         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12446         new, this function identifies the corner case of a TypeBuilder fully open
12447         instantiation.
12449         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12450         for lookup. Set gclass->cached_class to be the container class in case of
12451         the fully open instantiation of non TypeBuilder types.
12453         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12454         to compare generic classes.
12456         * reflection.c (method_encode_methodspec): remove assert that
12457         no longer is valid.
12459         * reflection.c (mono_reflection_generic_class_initialize): add
12460         an aditional assert to ensure the proper type is used.
12462 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12464         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12465         to enjoy it.
12467 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12469         * verify.c (push_arg): Fixed support for ldarga
12470         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12471         MonoType used as first arg in case of instance calls.
12473 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12475         * verify.c: Support for verifying VAR and MVAR types, 
12477 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12479         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12480         accessors correctly.
12482 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12484         * threads.c: support OSX and other systems in
12485         mono_thread_get_stack_bounds (bug #328026).
12487 2007-09-25  Martin Baulig  <martin@ximian.com>
12489         * mono-debug.h
12490         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12492 2007-09-24  Martin Baulig  <martin@ximian.com>
12494         * mono-debug.h
12495         (MonoDebugClassEntry): Moved the definition of this struct into
12496         mono-debug.c to make it private.
12498         * mono-debug.c
12499         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12500         type table per symbol file, we don't need to store the symfile id
12501         any longer.
12503 2007-09-24  Martin Baulig  <martin@ximian.com>
12505         Create one type table per symbol file, since a `MonoClass *' gets
12506         invalid when its image is unloaded.
12508         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12509         (MonoDebugHandle): Added `type_table'.
12511 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12513         * mempool.c, mempool.h: added mono_mempool_new_size () API
12514         to be able to specify a smaller initial size for the pool.
12515         Adjusted the code to slowly increase pool size before using
12516         the previous default size.
12517         * image.c: use a small initial size for image mempools.
12519 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12521         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12522         Fixes ##320990.
12524         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12525         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12527 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12529         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12530         free. Fixes #327438.
12532 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12534         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12535         generic instantiations, etc.
12536         <MONO_TYPE_ARRAY>: Likewise.
12538 2007-09-21  Martin Baulig  <martin@ximian.com>
12540         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12541         these structs were never defined.
12542         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12544 2007-09-21  Martin Baulig  <martin@ximian.com>
12546         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12548 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12550         * image.c: removed the guid hash tables: we can get the same info
12551         without the additional memory usage hit (partially fixes also bug #327052).
12553 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12555         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12556         event to handle unloading methods. After the event is called, the
12557         corresponding MonoMethod* must be considered invalid.
12558         * loader.c (mono_free_method): call the new mono_profiler_method_free
12559         event.
12561 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12563         * domain-internals.h: New flag in MonoJitInfo which marks shared
12564         generic methods.  New hash table (shared_generics_hash) in
12565         MonoDomain to keep track of shared generic methods.  Prototypes
12566         for functions to register and lookup shared generic methods.
12568         * domain.c: Support for registering and looking up shared generic
12569         methods via a hash table (shared_generics_hash) in MonoDomain.
12571         * class-internals.h: New exception to signal failure of shared
12572         compilation of a generic method.  New counters for generics
12573         sharing in MonoStats.
12575 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12577         * image.c, metadata-internals.h: don't keep a file descriptor open
12578         for loaded assemblies (bug#325988).
12580 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12582         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12583         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12584         use the corresponding datatypes.
12585         (type_in_image): Update to changes.
12586         (CleanForImageUserData): Simplify.
12587         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12588         Avoid quadratic behaviour in handling the "stolen" list by
12589         separating the filter predicate out, and by prepending the stolen
12590         items rather than appending them.
12591         (steal_ginst_in_image): Likewise.
12592         (mono_metadata_clean_for_image): Update to changes.
12594 2007-09-19  Martin Baulig  <martin@ximian.com>
12596         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12598 2007-09-19  Martin Baulig  <martin@ximian.com>
12600         * mono-debug.c (mono_debug_cleanup): Don't call
12601         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12603 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12605         Fix crash on 'make run-test' in mcs/errors
12606         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12607         Avoid more potential allocations in mono_class_from_mono_type.
12608         (ginst_in_image): Update to changes.
12609         (gclass_in_image): Rearrange slightly.
12611 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12613         * class.c (mono_class_init): Move the code that sets up class->methods to 
12614         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12616         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12617         canonical instance of an inflated generic signature.
12618         (mono_type_create_from_typespec): Remove an invalid free.
12620         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12622 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12624         * domain-internals.h: added a declaration of the
12625         mono_assembly_load_full_nosearch internal function.
12627         * assembly.c (mono_assembly_load_with_partial_name): use
12628         mono_try_assembly_resolve return value properly.
12629         (mono_assembly_load_full_nosearch): copied the function body from
12630         mono_assembly_load_full, without the code to invoke assembly
12631         search hooks.
12632         (mono_assembly_load_full): calls the above new function and if the
12633         assembly is not resolved, invokes the search hooks.
12635         * appdomain.c (mono_runtime_init): restore the global postload
12636         assembly search handlers.
12638 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12640         * class.c (mono_class_init): Make sure class->methods and class->properties
12641         are never NULL in the generics case.
12643         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12645 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12647         * metadata.c (free_generic_class): Disable some code to fix the build.
12649         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12651         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12652         from the image mempool.
12654         * metadata.c (free_generic_class): Free more data from the inflated class.
12656         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12658         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12659         mempool.
12660         (mono_type_create_from_typespec): Ditto.
12662         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12663         MonoImage to the caller.
12664         (mono_init_internal): Save the opened image in a global variable.
12665         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12667         * reflection.c (resolve_object): Fix a leak.
12669         * metadata.c: Fix the freeing of data in the generics caches.
12670         
12671         * metadata.c (free_generic_inst): Comment this out to fix the build.
12672         (free_generic_class): Ditto.
12674         * metadata.c: Free cached generic methods, instantinations and classes when
12675         they are removed from the caches.
12676         (mono_metadata_free_type): Free the type itself.
12678         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12679         places.
12681 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12683         * boehm-gc.c: restrict managed allocs to __thread supporting
12684         architectures.
12686 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12688         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12689         (mono_generic_class_get_class): Fix a leak.
12691         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12692         mono_metadata_free_type ().
12693         (mono_metadata_inflate_generic_inst): Fix a leak.
12695 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12697         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12699         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12700         mempool.
12702         * mono-debug.c (mono_debug_close_image): Fix call to 
12703         g_hash_table_remove ().
12705 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12707         * icall-def.h: redirect all the string ctor to the managed
12708         CreateString () methods.
12709         * string-icalls.c, string-icalls.h: removed dead code for string
12710         ctors and icalls.
12712 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12714         * mono-debug.c: Fix memory leaks.
12716 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12718         * threads-types.h: Implement mono_hazard_pointer_set and 
12719         mono_hazard_pointer_clear macros using do/while(0) to fix
12720         compilation with MSVC.
12721         
12722         Code is contributed under MIT/X11 license.
12724 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12726         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12727         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12729 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12731         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12732         icalls.
12734 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12736         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12737         managed-code allocated as well.
12739 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12741         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12743 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12745         * boehm-gc.c: fixed the build after the AOT changes.
12747 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12749         * wrapper-types.h: Add an ALLOC wrapper type.
12751         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12752         reference managed allocator methods.
12754 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12756         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12757         of Type array and not MonoType, a fix suggested by Hari.
12758         
12759 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12761         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12762         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12763         
12764         Code is contributed under MIT/X11 license.
12766 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12768         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12770 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12772         * image.c (do_mono_image_open): if assembly file fails to open and
12773         MONO_IOMAP is in effect, try to find the path in a
12774         case-insensitive way.
12776         * appdomain.c (mono_runtime_init): do not install postload hooks -
12777         tests show that MS.NET doesn't use anything of that sort to
12778         trigger the AppDomain.AssemblyResolve event.
12779         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12780         made non-static.
12781         (mono_runtime_init): init portability helpers here.
12783         * assembly.c (mono_assembly_load_with_partial_name): if other   
12784         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12785         to resolve the assembly.
12787         * domain-internals.h: added mono_try_assembly_resolve and marked
12788         it as internal.
12790 2007-09-11  Jb Evain  <jbevain@novell.com>
12792         * object-internals.h (MonoReflectionDynamicMethod): add
12793         a `MonoReflectionType *owner` field. The owner is used
12794         * reflection.c:
12795         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12796         method as the class declaring the dynamic method.
12797         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12798         dynamic method to the declaring type of the methodbuilder.
12800 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12802         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12803         rules for calling methods via reflection.
12805 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12807         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12808         Inflate MonoType's.
12810 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12812         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12813         provide a managed method that does fast allocations without needing
12814         a managed->unmanaged transition. Boehm GC implementation currently
12815         enabled for ptrfree objects on sane architectures.
12817 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12819         * marshal.c, marshal.h: exported a couple of useful functions and
12820         added mono_mb_get_label () to easily handle backward branches.
12822 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12824         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12826 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12828         * loader.c (find_method): Fixed the regression introduced while
12829         fixing bug #81466.
12831 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12833         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12834         well.
12835         
12836         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12837         icall.c reflection.c: Pass a MonoGenericContext argument to 
12838         mono_lookup_dynamic_token ().
12840         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12841         #82744.
12842         
12843 2007-09-09  Robert Jordan  <robertj@gmx.net>
12845         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12846         for generic methods.
12848         * object.c (mono_object_get_virtual_method): Handle generic methods.
12849         Fixes bug #78882.
12851         Code is contributed under MIT/X11 license.
12853 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12855         * image.c: fix locking in mono_image_load_file_for_image ().
12857 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12859         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12860         used only as a cache: added an icall to fill it.
12862 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12864         * reflection.h: exposed mono_reflection_free_type_info
12865         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12866         since mono_reflection_bind_generic_parameters makes a copy of it.
12867         * reflection.c (free_type_info): subinfos should be freed.
12868         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12869         made non static.
12870         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12871         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12872         this fixes #82695 and #81726.
12873    
12875 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12877         * process.h, process.c:  added support for user profile/info in
12878           ProcessStartInfo. For now only Windows works.
12880 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12882         * metadata.c: consider the generic arguments when comparing
12883         signatures (bug #82614).
12885 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12887         * cil-coff.h, image.c: updated assembly loader to cope with the
12888         PE32+ 64 bit file format.
12890 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12892         * assembly.c, class.c, domain.c, loader.c: remove useless
12893         inclusion of cil-coff.h.
12895 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12897         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12898         if interface is marked with CoClassAttribute. 
12899    
12900         Code is contributed under MIT/X11 license.
12902 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12904         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12905         if it's seen twice in major collections.
12907 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12909         * sgen-gc.c: big objects are not copied to the gray area, but they
12910         need to be considered for scanning, too, if they are brought alive
12911         by an object ready for finalizations or a survived one.
12913 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12915         * sgen-gc.c: properly account the number of disappearing links when
12916         they are nullified.
12918 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12920         * sgen-gc.c: share the code to scan the registered roots between the
12921         different types of collections.
12923 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12925         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12927 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12929         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12930         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12932 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12934         * security-manager.c (mono_security_manager_get_methods):
12935         LinkDemandSecurityException now has 2 arguments instead of 3.
12937 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12939         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12940         platforms which need it.
12942 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12944         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12945         dtor.
12947 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12949         * threads.c: free the thread static data on thread exit.
12951 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12953         * class.c: walk the hierarchy to find the generic definition for
12954         a class (fixes runtime part of bug #82498).
12956 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12958         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12959         ...
12961         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12963 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12965         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12967 2007-08-24  Robert Jordan  <robertj@gmx.net>
12969         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12971 2007-08-24  Jb Evain  <jbevain@novell.com>
12973         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12974         for byref types.
12976 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12978         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12979         #82286.
12981 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12983         * assembly.c: Fix a warning.
12984         
12985 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12987         * appdomain.c: parse the <runtime> section looking for the probing
12988         element with the 'privatePath' attribute, which sets additional
12989         directories in which the runtime should look for assemblies.
12991 2007-08-23  Robert Jordan  <robertj@gmx.net>
12993         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12994         Fixes #82499.
12996 2007-08-23  Martin Baulig  <martin@ximian.com>
12998         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12999         _mono_debug_init_corlib() and remove it from the header file.
13001 2007-08-23  Martin Baulig  <martin@ximian.com>
13003         * mono-debug-debugger.c
13004         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13005         don't notify the debugger about it.
13007         * mono-debug-debugger.h
13008         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13010 2007-08-23  Robert Jordan  <robertj@gmx.net>
13012         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13013         Code is contributed under MIT/X11 license.
13015 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13017         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13019 2007-08-22  Martin Baulig  <martin@ximian.com>
13021         * mono-debug.c: Store debugging info on a per-domain basis and
13022         free it on domain unload.  Add support for unloading symbol files.
13024         * mono-debug.h
13025         (MonoDebugList): New typedef.
13026         (MonoSymbolTable):
13027         - add `data_tables and `type_table'.
13028         - replace 'symbol_files' and `num_symbol_files' with a
13029           `MonoDebugList *'.
13030         (mono_debug_data_table): Removed.
13031         (mono_debug_list_add): New public function.
13032         (mono_debug_list_remove): New public function.
13033         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13034         (mono_debug_init_2_memory): Renamed into
13035         mono_debug_open_image_from_memory().
13036         (mono_debug_close_image): New public function.
13037         (mono_debug_domain_create): Likewise.
13038         (mono_debug_domain_unload): Likewise.
13039         (MONO_DEBUGGER_VERSION): Bump to 60.
13041         * mono-debug-debugger.h
13042         (MonoDebuggerEvent):
13043         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13044         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13045         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13046         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13047           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13048         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13049           meaning.
13050         (mono_debugger_add_symbol_file): Removed.
13051         (mono_debugger_add_type): Removed.
13052         (mono_debugger_lookup_type): Removed.
13053         (mono_debugger_lookup_assembly): Removed.
13055         * domain.c
13056         (mono_domain_create): Call mono_debug_domain_create().
13057         (mono_init_internal): Call mono_debug_init_corlib().
13059         * assembly.c
13060         (mono_assembly_close): Call mono_debug_close_image().
13062 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13064         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13065         mmap call.
13067 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13069         * sgen-gc.c: ensure section->pin_queue_end is initialized
13070         correctly when non pinning objects in the section have been found.
13072 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13074         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13075         containing a list of directories separated by ':'. MSDN docs say
13076         the directories should be separated with ';'. Part of a bugfix for
13077         bug #81446
13079 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13081         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13082         it should MonoType and not MonoClass.
13084 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13086         * culture-info-table.h : regenerated.
13088 2007-08-20  William Holmes  <billholmes54@gmail.com>
13090         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13091          to call ReplaceFile Kernel32 on windows or in io-layer.
13092         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13093         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13094          as an internal call.
13096         Code is contributed under MIT/X11 license.
13098 2007-08-20  Jb Evain  <jbevain@novell.com>
13100         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13101         and MONO_EXCEPTION_FIELD_ACCESS.
13103         * debug-helpers.[c|h]: new mono_field_full_name function.
13105 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13107         * class.c: Removed class_security_level() and moved it to
13108         security-core-clr.c.
13110         * security-core-clr.c, security-core-clr.h: class_security_level()
13111         is now public and renamed to mono_security_core_clr_class_level().
13112         It also looks for security attributes in the classes a class is
13113         nested in.
13115 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13117         * security-core-clr.c, security-core-clr.h: CoreCLR security
13118         utility functions.
13120         * Makefile.am: Added security-core-clr.[ch].
13122         * security-manager.c, security-manager.h: Functions and enum for
13123         setting and getting the security mode.
13125         * class.c: CoreCLR security checks.
13127 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13129         * icall-def.h, process.c, process.h: implemented icall to get
13130         user/system processor times.
13132 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13134         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13135         reader-lock-free jit_info_table.
13137 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13139         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13141         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13143         * object-internals.h (MonoException): Add missing _data member.
13145 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13147         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13148         checking that only methods with matching qname or fqname are picked
13149         from implemented interfaces.
13151 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13153         * verify.c (do_newarr):added, do type verification of
13154         newarr ops, push the right value on the eval stack.
13155         * verify.c (mono_method_verify): use do_newarr
13158 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13160         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13161         factored the common code into get_boxable_mono_type, which
13162         is now using mono_type_get_full, this fixed byref related tests.
13164 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13166         * class.c: added mono_type_get_full, this function has the same
13167         behavior of mono_class_get_full but the returned MonoType has
13168         all metadata of the associated token in case of a typespec token.
13169         * class.c: added mono_type_retrieve_from_typespec, used by 
13170         mono_type_get_full to retrieve the token type.
13171         * class.c (mono_class_create_from_typespec): changed to use
13172         mono_type_retrieve_from_typespec.
13173         * class.c (mono_ldtoken): changed to use mono_type_get_full
13174         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13175         * class-internals.h: exported mono_type_get_full for internal use.
13177 2007-08-16  Jb Evain  <jbevain@novell.com>
13179         * domain.c (supported_runtimes): add entry for
13180         the 'moonlight' runtime version.
13182 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13184         * verify.c (mono_method_verify): small typo sliped in.  
13186 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13188         * verify.c (do_unbox_value): added, do type verification of
13189         unboxing ops
13190         * verify.c (mono_method_verify): use do_unbox_value
13193 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13195         * verify.c (dump_stack_value): fixed typo, was printing string
13196         instead of object on stack.
13197         * verify.c (do_box_value): moved the byref check up as it leads
13198         to invalid code and should be done earlier.
13199         * verify.c: improved error messages for and ldobj
13201 2007-08-15  William Holmes  <billholmes54@gmail.com>
13203         * marshal.c (emit_marshal_custom): Omit the call to 
13204           marshal_native_to_managed when calling native to managed 
13205           and the argument is specified as an out argument.
13207         Code is contributed under MIT/X11 license.
13209 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13211         * verify.c: fixed the type checks for generics, function pointers and vectors.
13212         Added type verification for ldobj and ldtoken. The verifier
13213         would segfault if header or signature of a method contained references
13214         to non-existant types.
13216 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13218         * marshal.c (cominterop_get_ccw): Patch from
13219         Bill Holmes to no walk up interface hierarchy. 
13220         All parent methods should be present in the interface for COM.
13221    
13222         Code is contributed under MIT/X11 license.
13224 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13226         * marshal.c (emit_marshal_com_interface): Patch from
13227         Bill Holmes to handle COM Interfaces as return values
13228         for native->managed calls.
13229    
13230         Code is contributed under MIT/X11 license.
13232 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13234         * marshal.c (cominterop_get_idispatch_for_object): Implement
13235         for runtime callable wrappers.
13236    
13237         Code is contributed under MIT/X11 license.
13239 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13241         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13242         so 2.0 types are accessible
13245 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13247         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13248         once we load mscorlib.   Due to the order in which we initialize,
13249         the mono_assembly_load_full routine that loads mscorlib did not
13250         load friends.   We now load it once we load the
13251         mono_defaults.internals_visible_class class. 
13253         * assembly.c: Expose the mono_load_friend_assemblies method.
13255 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13257         * verify.c: improved the handling of boxing, better
13258         type checking for unary ops and conversion. Fix bug
13259         regarding managed pointer compatibility checking
13261 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13263         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13265         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13267 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13269         * reflection.c (dup_type): Remove.
13270         * class.c (dup_type): Remove.
13271         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13272         instead of the dodgy 'dup_type'.
13273         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13274         handle the case where 'dup_type' needed the second argument.
13276 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13278         * domain.c: Fix a warning.
13280 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13282         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13283         checking that methods with the same fqname are not overridden
13284         with a method from an ancestor.
13286 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13288         * threads.c (free_thread_static_data_helper): Avoid a crash if
13289         thread->static_data is not yet set.
13291 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13293         * marshal.c: Use correct image when emitting
13294         native wrapper for COM calls.
13295    
13296         Code is contributed under MIT/X11 license.
13298 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13300         * icall-def.h, security.c, security.h :
13301           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13303 2007-08-07  Martin Baulig  <martin@ximian.com>
13305         * mono-debug-debugger.h
13306         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13308         * domain.c (mono_domain_free): Call
13309         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13311 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13313         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13314         * verify.c (in_same_block): code should test if either offset is inside the clauses
13315         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13316         and filter blocks
13318 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13320         * image.c (mono_image_close): Fix a leak.
13322         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13324         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13326 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13328         * domain.c, threads.c, threads-types.h: fix memory retention issue
13329         with thread static variables not being cleared on domain unload.
13330         Reuse thread static slots after domain unload.
13332 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13334         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13335         nullable type.
13337         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13338         now done in mono_runtime_invoke_array.
13340         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13341         receiver is a nullable type.
13343         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13344         generic parameter.
13346 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13348         * marshal.c: Implement COM Objects as return type for 
13349         managed->unmanaged calls. Added Release calls for COM Object
13350         out/return values in managed->unmanaged calls.
13352         Code is contributed under MIT/X11 license.
13354 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13356         * threads.h, threads-type.h: move the hazard pointer declarations
13357         to the private header.
13359 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13361         * file-io.c, appdomain.c: memory leak fixes.
13363 2007-08-02  Dick Porter  <dick@ximian.com>
13365         * socket-io.c
13366         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13367         SO_REUSEADDR setting into io-layer/sockets.c.
13369 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13371         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13372         from Object when called on a generic parameter. Fixes #82211.
13374 2007-08-01  Dick Porter  <dick@ximian.com>
13376         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13377         Fixes bug 79250 yet again.
13379 2007-07-30  Martin Baulig  <martin@ximian.com>
13381         Merged the `debugger-dublin' branch.
13383         * mono-debug.h
13384         (MonoDebugDataTable): New typedef.
13385         (MonoDebugMethodAddressList): New typedef.
13386         (MonoDebugWrapperData): Removed.
13387         (MonoDebugSymbolTable): Removed `current_data_table',
13388         `current_data_table_size', `current_data_table_offset'.
13389         (MonoDebugDataItemType): Moved into mono-debug.c.
13390         (MonoDebugMethodJitInfo): Remove `address'.
13391         (mono_debug_data_table): New global variable.
13392         (mono_debug_lookup_method_addresses): New public function.
13393         (mono_debug_find_method): Take a `MonoMethod *', not a
13394         `MonoDebugMethodInfo *'.
13396         * mono-debug.c: Drop support for the old symbol tables.
13398 2007-06-28  Martin Baulig  <martin@ximian.com>
13400         * mono-debug.c (mono_debug_debugger_version): New public variable.
13402 2007-07-31  William Holmes  <billholmes54@gmail.com>
13404         * metadata.c Changed mono_type_create_from_typespec to not insert
13405           the type into the hash map until after
13406           do_mono_metadata_parse_type has completed.
13407         Fixes Bug #82194
13408         Code is contributed under MIT/X11 license.
13410 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13412         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13413         generic parameter. Fixes #82211.
13415 2007-07-27  Jb Evain  <jbevain@novell.com>
13417         * pedump.c (dump_metadata, dump_metadata_header): dump
13418         versions contained in the metadata header.
13420 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13422         * threads.c: register small_id_table with the GC.
13424 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13426         * threads.c, threads.h, class-internals.h, object-internals.h:
13427         Hazard pointers, to be used by lock-free parallel algorithms.
13429 2007-07-26  Dick Porter  <dick@ximian.com>
13431         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13432         routine on non-windows platforms, as I've not managed to think of
13433         a non-kludgy way of doing this.  Finishes off bug 78739.
13435 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13437         * object.c: properly setup interface_bitmap in proxy vtables.
13439 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13441         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13442         to create unique shadow copy target directories, use the domain's
13443         serial number instead. Each domain gets a unique target directory
13444         that way.
13446         * domain.c (mono_domain_create): added code to increment domain
13447         shadow copy serial number and cache the value in the current
13448         domain structure.
13450         * domain-internals.h (struct _MonoDomain): added a new field -
13451         shadow_serial to hold the serial number used in generation of
13452         shadow-copy directories. This is to make sure that the directory
13453         name is unique for each and every domain created. We avoid a race
13454         condition with overriding assemblies already in use by other app
13455         domains.
13457 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13459         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13460         binding generic parameters.
13462 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13464         * metadata.c (do_mono_metadata_parse_generic_class): Use
13465         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13466         error.
13468 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13470         * loader.c, class-internals.h, reflection.c: removed the per-method
13471         generics hashtable: we use the global one through the call of
13472         mono_class_inflate_generic_method ().
13474 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13476         * class.c, metadata.c, class-internals.h: introduce yet another
13477         generics global cache for inflated methods (fixes 98% of the perf
13478         issue in bug #81806).
13480 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13482         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13483         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13484         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13485         return a MonoGenericInst containing (a copy) of those types.
13486         (mono_metadata_inflate_generic_inst): Update to changes.
13487         (mono_metadata_parse_generic_inst): Likewise.
13488         (mono_get_shared_generic_inst): Likewise.
13489         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13490         (mono_reflection_bind_generic_method_parameters): Likewise.
13491         * metadata-internals.h: Likewise.
13492         * icall.c (free_generic_context): Kill.
13493         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13495         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13496         mono_metadata_type_dup.
13497         * marshal.c (mono_mb_create_method): Likewise.
13499         * metadata.c (mono_metadata_type_dup): Rename from
13500         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13501         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13502         * marshal.c, metadata-internals.h: Update to changes.
13504 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13506         * class.c: fixed a small leak for array classes and removed warning.
13508 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13510         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13511         Return 0x8000000 for return parameters. Fixes #82161.
13513 2007-07-21  Marek Habersack  <grendello@gmail.com>
13515         * appdomain.c (get_shadow_assembly_location): append the current
13516         ticks value to the path. Avoids overwriting the same assemblies by
13517         several threads at the same time.
13519 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13520         and Raja R Harinath  <rharinath@novell.com>
13522         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13523         Simplify slightly.
13524         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13525         property for testing if a method is a generic method definition.
13527 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13529         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13531 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13533         * verify.c: used function from private branch, reverted to the one in class.h 
13535 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13537         * verify.c: a typo slipped in and the code wont compile
13539 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13541         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13542         disabled box instruction as it is doing the wrong thing
13543         improved stack dump messages, now it is easier to debug type related issues
13546 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13548         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13550 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13552         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13553         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13554         grouped with class and valuetype. This change will simply 
13555         the code as it should be handled just like unmanaged pointers.
13557 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13559         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13561 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13563         * verify.c: several stack merge issues fixed, reference comparisons now
13564         check the type size. strict type check now works correctly.
13565         added more uses of IS_MANAGED_POINTER macro.
13566         fixed issues pointed by running the test suite against .net.
13567         
13569 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13571         * class.c, loader.c, class-internals.h: Removed the
13572         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13573         defines.
13575         * icall.c: Better error checking in some internal reflection
13576         methods.
13578 2007-07-18  William Holmes  <billholmes54@gmail.com>
13580         * filewatcher.c : removed unused variable 'filename' in 
13581           ves_icall_System_IO_FSW_SupportsFSW
13583 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13585         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13586         obsolete, removed.
13588 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13590         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13591         
13592         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13594 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13596         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13597         Implement generics support.
13598         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13600         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13601         type_args and method_args arguments.
13602         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13603         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13604         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13606 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13608         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13609           It adds a rootimage parameter to mono_reflection_get_type_internal,
13610           adds new function mono_reflection_get_type_with_rootimage and use
13611           the rootimage to resolve the types instead of the current image
13613 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13615         * culture-info-table.h: Forgot to update after r78304.
13617 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13619         * class.c (mono_class_is_open_constructed_type)
13620         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13622 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13624         * class.c (mono_bounded_array_class_get):  method fails if used with
13625         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13626         avoiding calculating the size for such array as it cannot be instantiated.
13627         Fix bug #82015
13629 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13631         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13632         field.
13633         * metadata.c, reflection.c: Update to changes.
13635 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13637         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13638         mono_class_is_valid_enum, they are used to valide a enum when loading.
13639         * reflection.c: used new functions to throw TypeLoadException when and
13640         invalid enum is build with TypeBuilder. Fixes #82018
13641   
13642 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13644         * object.c: forgot commit of mono_class_setup_methods () to access
13645         iface->methods.
13646         * object-internals.h: added a few more handy fields to
13647         MonoIMTCheckItem.
13649 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13651         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13652         iface->methods.
13654 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13656         * class-internals.h, object-internals.h, object.c: IMT-based
13657         interface invocation core from Massimiliano Mantione
13658         (massi@ximian.com) with a reworked arch-specific interface,
13659         bsearch implementation and a few bugfixes and memory savings by me.
13661 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13663         * class.c (mono_class_create_from_typedef): mono would segfault if 
13664         an enum did not have a __value field. It now throws a TypeLoadException
13665         for such cases. Fix bug #82022
13667 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13669         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13671 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13673         * class.c (mono_class_init): If a class is already inited but has
13674         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13676 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13678         * class.c: Properly handle the case of an unimplemented interface
13679         method.  Fixes: 81673.
13681 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13683         * class-internals.h, object.c: cleanup patch from massi: use
13684         MonoVTable->interface_bitmap since the vtable interfaces offset array
13685         is going away.
13687 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13689         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13690         GetMDStreamVersion icall instead.
13692 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13694         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13695         not use mono_dl_build_path() with a full library name: makes
13696         fallbacks to libgaim and libfam work.
13698 2007-07-06  William Holmes  <billholmes54@gmail.com>
13700         * assembly.c: Added a continue statement in probe_for_partial_name when
13701          parse_assembly_directory_name fails.  Fixes : 82002
13703 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13705         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13706         and added a verification  for TYPEDBYREF.
13707         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13708         make native int interchangeable with int32 and some small cleanup and formating.
13709         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13710         handle byref of byref.
13711         * verify.c (push_local): handle byref of byref.
13712         * verify.c (do_binop): invalid mix of values is unverifiable
13713         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13714         added visibility checks
13715         * verify.c (field related method): added visibility checks
13716         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13718 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13720         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13721         string.
13723 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13725         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13727         * marshal.c (emit_marshal_string): When returning a string from managed code,
13728         allways make a copy even for unicode strings. Fixes #81990.
13730 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13732         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13733         of byref generic inst types (bug #81997).
13735 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13737         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13738         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13740 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13742         * marshal.c (emit_marshal_string): Add support for unicode strings in
13743         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13745 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13747         * verify.c: field load/store are now verified, missing only access checks now
13749 2007-06-28  Martin Baulig  <martin@ximian.com>
13751         * mono-debug.c (mono_debug_debugger_version): New public variable.
13753 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13755         * locales.c: When constructing DateTimeFormat or NumberFormat for
13756         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13757         MonoCultureInfo contructed from the current locale is always
13758         read-only and has UseUserOverride set to true. All MonoCultureInfo
13759         instances returned for GetCultures have both IsReadOnly and
13760         UseUserOverride set to true. Fixes part of bug #81930.
13762 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13764        * icall-def.h: Update System.__ComObject icalls
13765        * marshal.c: Avoid managed transition (and object creation)
13766        when looking up COM interface in RCW.
13767        * marshal.h: Ditto.
13768        
13769        Code is contributed under MIT/X11 license.
13771 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13773         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13774         to avoid crashes during assembly unloading.
13776 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13778         Fix MethodInfo.IsGenericMethodDefinition
13779         * reflection.c (mono_reflection_bind_generic_method_parameters):
13780         Rearrange code to ensure we always uses a generic method definition.
13781         * class.c (mono_class_inflate_generic_method_full): Set
13782         'generic_container' field only for generic method definitions.
13783         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13784         Use presense of 'generic_container' field as indication of being a
13785         generic method definition.
13787 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13789         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13791         * object-internals.h: Reflect changes in the layout of the managed Delegate
13792         class.
13793         
13794         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13795         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13796         runtime memory used by the dynamic method. Fixes #77146.
13798 2007-06-21  Dick Porter  <dick@ximian.com>
13800         * file-io.h: 
13801         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13802         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13803         81767.
13805 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13807         * reflection.c (method_encode_methodspec): Add a tripwire.
13808         * class.c (inflate_generic_type): The fully open generic type is
13809         not the same as the generic type definition.
13811 2007-06-21  Martin Baulig  <martin@ximian.com>
13813         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13815         * mono-debug-debugger.h
13816         (MonoDebuggerBreakpointInfo): Removed.
13817         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13818         (mono_debugger_remove_breakpoint): Likewise.
13819         (mono_debugger_breakpoint_callback): Likewise.
13820         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13822 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13824         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13825         generic type is not the same as the generic type definition.
13826         * class.c (mono_generic_class_get_class): Likewise.
13828 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13830         * icall.c: The second argument to 
13831         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13832         is a MonoType not a MonoClass.
13834 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13836         * verify.c: support for function pointers in the verifier
13838 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13840         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13842 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13844         * assembly.c: removed Mono.Data.SqliteClient from the list of
13845         forward-compatible assemblies as it breaks the ABI (bug #81899).
13847 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13849         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13850         lookup/update with the loader lock.
13851         * reflection.c (mono_class_bind_generic_parameters): No need to
13852         protect mono_metadata_lookup_* with the loader lock.
13853         * class.c (inflate_generic_type): Likewise.
13854         
13855         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13856         on a generic instantiated type.
13858 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13860         *verify.c: produce meanfull error messages on verification error
13861         *verify.c: fixed some cases of verification errors reported as validation errors
13862         *pedump.c: fixed the error name array, now it shows validation errors properly
13863         *verify.h: fixed the contant that should be used for verification errors
13865 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13867         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13868         for bug #77596, 81858 and 80743 (generics data structures on domain
13869         unload).
13871 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13873         Avoid allocating 'MonoGenericContext' on the heap.
13874         * class-internals (_MonoMethodInflated::context): Make field
13875         inline, not a pointer.
13876         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13877         stack.  Use the context embedded within the inflated method as the
13878         hash key, rather than 'new_context'.
13879         * class.c (inflate_generic_context): Simplify.  Return a struct
13880         rather than allocating on the heap.
13881         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13882         doesn't salt away a copy of the context -- simplifying the
13883         lifetime rules of a 'MonoGenericContext *'.
13884         (mono_method_get_context): Return pointer to embedded context.
13885         (setup_generic_array_ifaces): Allocate temporary context on stack.
13886         * reflection.c (inflate_mono_method): Likewise.
13887         (mono_reflection_bind_generic_method_parameters): Likewise.
13888         Use the context embedded within the inflated method as the hash key.
13890         Avoid a source of allocation of 'MonoGenericContext'.
13891         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13892         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13893         * class.c: Update to changes.
13894         (mono_generic_class_get_context): Simplify drastically.  Now just
13895         returns a pointer to the field.
13896         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13897         argument as a const pointer.
13898         (mono_metadata_generic_context_equal): Likewise.
13899         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13900         Update to changes.
13902 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13904         * verify.c improved the handling of brtrue/brfalse, factored out common code
13906 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13908         Kill MonoGenericMethod.
13909         * class-internals.h (MonoGenericContext::method_inst): Rename from
13910         'gmethod' and convert to a MonoGenericInst.
13911         (MonoGenericMethod): Remove.
13912         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13913         * loader.c (method_from_methodspec): Update to changes.  Use a
13914         MonoGenericContext as the key to the hashtable.
13915         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13916         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13917         (mono_metadata_generic_context_hash): Likewise from
13918         'mono_metadata_generic_method_hash'.  Change hash function.
13919         (mono_metadata_load_generic_params): Update to changes.
13920         (mono_get_shared_generic_method): Remove.
13921         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13922         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13923         (inflate_generic_context): Likewise.
13924         (mono_class_inflate_generic_method_full): Likewise.
13925         (setup_generic_array_ifaces): Likewise.
13926         (mono_class_create_from_typespec): Likewise.
13927         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13928         (method_encode_methodspec): Update callsite.
13929         (reflection_methodbuilder_to_mono_method): Update to changes.
13930         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13931         MonoGenericContext as the key to the hashtable.
13932         (inflate_mono_method): Update to changes.
13934         * class-internals.h (MonoGenericMethod::container): Remove.
13935         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13937 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13939         * profiler-private.h, profiler.c, profiler.h: added API to profile
13940         exception events.
13942 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13944         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13946 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13948         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13949         Fixed overflow and underflow not aborting the verification process.
13951 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13953         * class-internals.h (MonoStats): Added stats entries for dynamic
13954         code allocations.
13956 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13958         * loader.c (mono_free_method): Free header->locals and header->clauses.
13960         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13961         dynamic case.
13963         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13965         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13967 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13969         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13970         the tables.
13972 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13974         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13976 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13978         MonoGenericMethod on a diet
13979         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13980         here ...
13981         (_MonoGenericMethod::reflection_info): ... from here.
13982         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13983         Update to changes.
13984         * reflection.c (inflate_mono_method): Likewise.
13985         (mono_reflection_bind_generic_method_parameters): Likewise.
13987 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13989         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13990         *verify.c: factored long ldarg forms to share code with short forms
13992 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13994         *verify.c: fixed code formating factored some duplicate code
13995         into a new function
13997         *verify.h: fixed binary incompatibility introduced earlier
13999         *pedump.c: fixed formating
14001 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14003         Fix assertion when disassembling Mono.C5.dll
14004         * loader.c (method_from_methodspec): Avoid inflating a method
14005         twice with the same context.  If the methodref is inflated, use
14006         the declaring method instead.
14008         * class.c (mono_class_from_generic_parameter): Fix case similar to
14009         bug #81830 handled below, but for method containers.
14011 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14013         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14014         get_shared_generic_class.  Directly inflate the instance.
14015         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14016         (inflate_generic_class): Delete.
14017         (get_shared_generic_class): Delete.  Move setting of
14018         'cached_class' and 'cached_context' ...
14019         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14021         * metadata.c (mono_metadata_lookup_generic_class): Change
14022         signature to take the components of a MonoGenericClass rather than
14023         an allocated MonoGenericClass.  Change semantics to be intern-like.
14024         * reflection.c (mono_class_bind_generic_parameters): Update to
14025         changes.  Make locking region tighter.
14026         * class.c (inflate_generic_class): Update to changes.
14027         (get_shared_generic_class): Likewise.
14028         * metadata-internals.h: Likewise.
14030         * reflection.c (mono_class_bind_generic_parameters): Take and
14031         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14032         (mono_reflection_bind_generic_parameters): Use
14033         'mono_class_bind_generic_parameters' rather than duplicate the code.
14034         * class.c (mono_bounded_array_class_get): Update to changes.
14035         * object-internals.h: Likewise.
14037         * reflection.c (mono_class_bind_generic_parameters): Only support
14038         parameterizing generic type definitions.  Remove support for other
14039         open types.
14041 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14043         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14045         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14046         in the dynamic case.
14048 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14050         * threads.c: When cleaning up thread, reset the Background bit.
14051         Fixes bug #81720.
14053 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14055        * metadata.c: Move variable declarations to top of scope.
14056        * verify.c: Move variable declarations to top of scope.
14058        Code is contributed under MIT/X11 license.
14060 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14062         * reflection.c (mono_class_bind_generic_parameters): Replace
14063         open-coded loop with mono_metadata_inflate_generic_inst.
14065         * class.c (get_shared_generic_class): Don't call
14066         mono_get_shared_generic_inst.  Use the container's own
14067         'class_inst'.
14069         * metadata.c (mono_metadata_load_generic_params): Move
14070         initialization of 'context' field here from ...
14071         * class.c (mono_class_create_from_typedef): ... here, and ...
14072         * loader.c (mono_get_method_from_token): ... here.
14074         * class.c (get_shared_generic_class): Rename from
14075         mono_get_shared_generic_class and make static.
14076         (mono_get_shared_generic_inst): Move to metadata.c.
14077         * loader.c (mono_get_shared_generic_method): Likewise.
14078         * class-internals.h, metadata-internals.h: Update to changes.
14080         Fix #81830
14081         * class.c (mono_class_from_generic_parameter): Don't assume a
14082         generic container owner exists.  Generic containers from monodis
14083         don't have any.
14085 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14087         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14088         * verify.h: new typedefs to returns the non-verifiable status
14089         * verify.c: initial implementation of generics, stack merging and object compatibility check
14091 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14093         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14094         a MonoInternalHashTable again (fixed bug in internal hash table
14095         code).
14097 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14099         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14100         MonoInternalHashTable again (fixed bug in internal hash table
14101         code).
14103 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14105         * class.c, image.c, class-internals.h, domain.c,
14106         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14107         changes.  Have to figure out what makes them break the SWF
14108         regression.
14110 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14112         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14113         a MonoInternalHashTable now.
14115 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14117         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14118         MonoInternalHashTable now.
14120 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14122         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14123         invoke_impl code.
14125         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14127         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14128         dependent trampoline.
14130         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14132         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14134 2007-05-29  Robert Jordan  <robertj@gmx.net>
14136         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14138 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14140         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14142 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14144        * marshal.c: Fix interface lookup loops for
14145        cominterop_get_com_slot_for_method and 
14146        cominterop_get_method_interface. Only need to lookup
14147        if type is a class, else use interface type method is on.
14149        Code is contributed under MIT/X11 license.
14151 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14153         * reflection.c: HasSecurity can be present even if no specially 
14154         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14155         SecurityAttribute). Fix CAS regression tests on buildbot.
14157 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14159        * appdomain.c: Add configure checks for header files.
14160        * image.c: Add configure checks for header files.
14161        * file-io.c: Add configure checks for header files.
14162        * debug-mono-symfile.c: Add configure checks for header files.
14163        * threadpool.c: Add configure checks for header files.
14164        * console-io.c: Add configure checks for header files.
14165        * profiler.c: Add configure checks for header files.
14166        * rawbuffer.c: Add configure checks for header files.
14167        * icall.c: Add configure checks for header files.
14168        * rand.c: Add configure checks for header files.
14169        * socket-io.c: Add configure checks for header files.
14171        Code is contributed under MIT/X11 license.
14173 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14175         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14176         assertion as it breaks the build.
14177         
14178         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14180         * reflection.c (lookup_custom_attr): Make a copy here too.
14182         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14183         dynamic images.
14185         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14186         images.
14188         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14189         info.
14191 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14193         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14194         (load_cattr_value): Ditto.
14196 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14198         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14200 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14202         * threads.c: In "start_wrapper", set apartment_state to MTA if
14203         apartment_state is Unknown and we're running on 2.0 profile or
14204         higher.
14205         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14206         to main method, then set apartment_state to Unknown on 1.0 profile,
14207         and MTA on 2.0 profile.
14209 2007-05-16  Jb Evain  <jb@nurv.fr>
14211         * class-internals.h (MonoDefaults): Add an attribute_class and
14212           customattribute_data_class.
14213         * domain.c (mono_init_internal): Populate them.
14214         * reflection.c: Use them to remove duplicates. Make a vew
14215         MonoClass variables `static'.
14217 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14219         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14220         step in implementing IMT, so that all isinst checks now can go
14221         through the bitmap.
14222         This was needed because vtables for TransparentProxy need to look
14223         like the vtable of the "target" class, so they need to point to
14224         its interface bitmap directly.
14226         * object.c: inside "mono_class_create_runtime_vtable" and
14227         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14229 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14231         * object-internals.h
14232           culture-info.h : added territory field in MonoCulture and
14233           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14234         * locales.c : fill territory field above too.
14235         * culture-info-table.h : regenerated.
14237 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14239         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14240         Fixes #81599.
14242 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14244         * object.c: Always initialize apartment, even if 
14245         there is no custom attributes on entry point.
14246         
14247         Code is contributed under MIT/X11 license.
14249 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14251         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14252         * metadata.c: If no encoding is set, check for unicode
14253         on class.
14254         
14255         Code is contributed under MIT/X11 license.
14257 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14259         * threads.c: Handle if mono_thread_current returns NULL 
14260         
14261         Code is contributed under MIT/X11 license.
14263 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14265         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14266         in start_wrapper. Added mono_thread_init_apartment_state and
14267         mono_thread_cleanup_apartment_state.
14268         * object.c: Initialize thread apartment state on main thread
14269         by checking for STAThreadAttribute on entry point.
14270         * object-internals.h: Add apartment_state field to MonoThread.
14271         * threads-types.h: Add unmanaged definition of 
14272         System.Threading.ApartmentState, MonoThreadApartmentState.
14273         
14274         Code is contributed under MIT/X11 license.
14275         
14276 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14278         * class.c: Fix windows build.
14279         * class-internals.h: Fix windows build.
14280         
14281         Code is contributed under MIT/X11 license.
14283 2007-05-08  Robert Jordan  <robertj@gmx.net>
14285         * process.c (CreateProcess_internal):
14286         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14287         .CreateNoWindow was specified. Fixes #81496.
14289 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14291         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14292         step in implementing IMT, replaced it with two compact arrays
14293         (interfaces_packed and interface_offsets_packed) and a bitmap that
14294         is used for isinst checks (interface_bitmap).
14296         * class.c: (compare_interface_ids): compare function to pass to
14297         bsearch when looking for an interface with a given id.
14298         (mono_class_interface_offset): reimplemented using bsearch on
14299         interfaces_packed, getting the offset from interface_offsets_packed.
14300         (print_implemented_interfaces): utility debugging function.
14301         (setup_interface_offsets): reworked to initialize interfaces_packed,
14302         interface_offsets_packed and interface_bitmap.
14304         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14305         with uses of interfaces_packed and interface_offsets_packed.
14307 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14309         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14310         mono_class_interface_offset prototype to wrap all accesses to
14311         "MonoClass.interface_offsets".
14313         * class.c: Implemented mono_class_interface_offset, and wrapped all
14314         accesses to "MonoClass.interface_offsets".
14316         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14317         "MonoClass.interface_offsets".
14319 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14321         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14322         GetMethodFromHandle overloads (bug #78637).
14324 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14326         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14327         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14329 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14331         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14332         #81498.
14334         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14335         gracefully.
14336         (mono_custom_attrs_from_index): Ditto.
14338         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14339         Fixes #81501.
14341 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14343         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14344         is now allocated from a mempool.
14346 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14348         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14349         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14351 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14353         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14354         mono_loader_clear_error () too late. Fixes #81463.
14356 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14358         * culture-info-table.h : regenerated.
14360 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14362         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14363         is missing.
14365 2007-04-25  Dick Porter  <dick@ximian.com>
14367         * Makefile.am: Put the mingw enforced-optimisation back into the
14368         PLATFORM_WIN32 section.
14370 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14372         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14373         patch.
14375         * image.c (mono_image_load_module): New API function to load a module reference.
14377         * image.c (load_modules): Load modules lazily. Fixes #80812.
14379         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14380         
14381         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14383         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14384         to mono_image_load_module_dynamic.
14386 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14388         * marshal.c: Fix calling convention for CCW on non-windows
14389         platforms. STDCALL on windows, CDECL everywhere else to work 
14390         with XPCOM and MainWin COM.
14391         
14392         Code is contributed under MIT/X11 license.
14394 2007-04-23  Martin Baulig  <martin@ximian.com>
14396         Fix #80969.
14398         * loader.c
14399         (method_from_memberref): Added `gboolean *used_context' argument.
14400         (mono_get_method_from_token): Likewise.
14401         (mono_get_method_full): Don't insert the method in the cache when
14402         `used_context' is true.
14404 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14406         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14408         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14409         create new MonoTypes for returned types.
14410         * class.c (mono_generic_class_get_class): Export mono-internal.
14411         * class-internals.h: Update to changes.
14413 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14415         * threadpool.c, threadpool.h, icall-def.h: patch from
14416         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14418 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14420         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14421         
14422         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14424         * threads.c (mono_thread_get_stack_bounds): New helper function.
14426         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14427         Correctly compute stack bounds when attaching. Fixes #81394.
14429 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14431         * reflection.c: fix handling of doubles in custom attributes
14432         for the arm-fpa format (bug #81368).
14434 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14436         * reflection.c (assembly_add_win32_resources): Mildly relax an
14437         bounds check to let the end pointer point just past the end of the
14438         allocated buffer.  (may fix #81384)
14440 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14442         * culture-info-table.h : regenerated.
14444 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14446         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14447         the thread is aborted early.
14449 2007-04-05  Dick Porter  <dick@ximian.com>
14451         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14452         FindFirstFile()/FindNextFile() to find entries.  This lets the
14453         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14454         81038.
14456         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14457         the parameters of
14458         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14460 2007-04-04  Martin Baulig  <martin@ximian.com>
14462         * debug-helpers.c
14463         (mono_method_desc_full_match): Add support for nested classes.
14465 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14467         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14469 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14471         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14472         waiting for too many threads.
14474 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14476         * environment.c: Fix return value check on uname so we can get the 
14477         executing version on Solaris operating systems.
14479 2007-03-28  Jb Evain  <jbevain@gmail.com>
14481         * class.c (mono_type_get_name_recurse): Complete the
14482         fix for the creation of assembly qualified names for
14483         pointer types. Fixes #81208.
14485 2007-03-27  Dick Porter  <dick@ximian.com>
14487         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14488         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14489         changed.
14491         * threads.c
14492         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14493         the value of ReleaseMutex().
14495 2007-03-27  Dick Porter  <dick@ximian.com>
14497         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14498         in little-endian order, not network endian, so must be converted
14499         to host endian here.  Fixes bug 80593.
14501 2007-03-22  Jb Evain  <jbevain@gmail.com>
14503         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14504         qualified names for pointer types. Fixes #81208.
14506 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14508         * marshal.c: Add support for PreserveSigAttribute. 
14509         
14510         Code is contributed under MIT/X11 license.
14512 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14514         * process.c: Fix endianness issues. Fixes #81126.
14516         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14517         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14519         * image.c (mono_image_lookup_resource): Make this work on big-endian
14520         machines.Change API contract so the caller needs to free the return value.
14521         
14522         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14523         API change.
14524         
14525 2007-03-14  Martin Baulig  <martin@ximian.com>
14527         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14528         mono_type_get_desc() as well.
14530 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14532         * icall.c:  Fix environ access in VS.  
14533         
14534 2007-03-13  Alp Toker  <alp@atoker.com>
14536         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14537         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14538         #63841.
14540 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14542         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14543         circular references among dynamic methods. Fixes #81091.
14545         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14547 2007-03-09  Martin Baulig  <martin@ximian.com>
14549         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14551 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14553         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14554         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14555         
14556         Code is contributed under MIT/X11 license.
14557         
14558 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14560         * loader.c: Reapply patch for bug #79424.
14562 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14564         * metadata.c (mono_type_to_unmanaged): Only convert object to
14565         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14567 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14569         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14570         (and incorrectly set) is_reference field from MonoGenericInst.
14572 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14574         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14575         a little earlier.
14577         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14579         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14581 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14583         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14584         FileOptions.1 value to mean "temporary", map that to
14585         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14587         Fixes 80688
14589 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14591         * appdomain.c: implement MS .Net style shadow copying. Copies of
14592         the assemblies are made in a subdirectory of the dynamic base
14593         directory, the assembly names are preserved.
14594         Copy .mdb and .config files along with the assemblies being shadowed.
14596 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14598         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14599         (emit_marshal_handleref): Ditto.
14601         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14602         on Visual C++. Fixes #80671.
14604 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14606         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14607         for clone operations.
14609 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14611         * marshal.c: Fix warnings.
14613 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14615         * loader.c: allow case-insensitive matching of the dll name
14616         in dllmap handling when prefixed with "i:".
14618 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14620         * threads.c: Fix #ifdef for dummy_apc function for VS.
14622 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14624         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14626 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14627         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14628         giving precedence to the methods with a fully qualified name
14629         (InterfaceName.MethodName) when building the interface sections
14630         of the vtable.
14632 2007-02-16  Dick Porter  <dick@ximian.com>
14634         * threadpool.c (append_job): Fix fast-path array handling, so it's
14635         less likely the array will grow exponentially when the load is
14636         heavy.
14638 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14640         * metadata-internals.h, loader.c: fix dllmap lookup order
14641         for non-function maps, too, and prepare for fallback code.
14643 2007-02-12  Robert Jordan  <robertj@gmx.net>
14645         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14646         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14647         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14648         GlobalFree. Fixes a part of bug #77075.
14650 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14652         * loader.c: implemented typedef parent in field memberref.
14654 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14656         * marshal.c: Fix warnings and remember to call Release on
14657         IUnknown of RCW.
14658         
14659         Code is contributed under MIT/X11 license.
14661 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14663         * class-internals.h: Add MonoHandleRef definition, and
14664         handleref_class to mono_defaults. 
14666         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14667         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14669         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14670         (do nothing on this stage)
14671         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14672         (emit_marshal_handleref): New method, used for argument handling
14673         of HandleRefs. 
14675 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14677         * class.c (mono_class_setup_parent): Lazily init com types.
14678         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14679         init com types.
14680         * object.c (mono_remote_class_vtable): Lazily init com types.
14681         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14682         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14683         * domain-internals.h: Expose mono_init_com_types.
14684         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14685         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14686         Add support for COM Callable Wrapper marshalling.
14687         * marshal.h: Add icall definitions.
14688         * gc.c: Handle freeing of CCWs in finalizer code.
14689         
14690         Code is contributed under MIT/X11 license.
14692 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14694         * reflection.c: changed all the signature encoding code to use
14695         a variable-sized buffer.
14697 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14699         * marshal.c: locking fixes: never take the loader lock
14700         or other runtime locks when holding the marshal lock
14701         (fixes bug#80664).
14703 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14705         * marshal.c: make the delegate function pointer mapping
14706         work for the moving GC.
14708 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14710         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14711         for bug #80618.
14713 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14715         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14716         gmodule.
14718 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14720         * threadpool.c: made the code moving-GC safe.
14722 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14724         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14725         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14726         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14727         warning cleanup.
14728         * reflection.c: warning cleanup, some threading and moving GC fixes.
14730 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14732         * class.c, loader.c: create the needed Set/Get/Address array methods
14733         as well as the .ctors in mono_class_init (), fixes bug #80567.
14735 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14737         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14738         we doesn't decrease its alignment. Should fix the sparc build.
14740 2007-01-24  Dick Porter  <dick@ximian.com>
14742         * socket-io.c
14743         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14744         Create the returned object if we need to ignore an unsupported
14745         socket option.  Fixes a segfault reported by Atsushi.
14747 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14749         * class.c, object.c: restrict GC-tracked fields to
14750         UIntPtr fields used inside corlib, so we provide better
14751         type info to the GC and also allow broken packing as in
14752         bug #80580.
14754 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14756         * sgen-gc.c: removed duplicated function.
14758 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14760         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14761         value that means that the value is not supported, but that we
14762         should not return a failure, but instead report this as a
14763         successful operation.
14765 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14767         Fix tests/bug79956.2.il
14768         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14769         (mono_generic_class_get_class): If the generic definition in an
14770         enum, copy over other fields related to it.
14772 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14774         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14775         genericinst enums (bug #79215).
14777 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14778         * class.c: Fix bug 80307.
14780 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14782         * image.c: if the file table is not present, try to load
14783         all the modules, since we don't have info about them
14784         having or not metadata (bug #80517).
14785         * assembly.c: allow mono_assembly_load_references () to
14786         work for netmodules.
14788 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14790         * image.c, metadata-internals.h, object.c: execute module
14791         cctors when running on the 2 runtime if present (bug #80487).
14793 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14795         * icall.c: optimized InitializeArray() on bigendian.
14797 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14799         * icall.c: fix for the broken ARM FPA double format.
14801 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14803         * icall.c: handle endian issues for r4 and r8 types, too, in
14804         the InitializeArray() icall.
14806 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14808         * loader.c (mono_loader_error_prepare_exception): Clear the error
14809         once we have extracted the information from it, do this before we
14810         call into the JIT's class loading mechanisms.
14812         * object.c (mono_class_create_runtime_vtable): Do not clear the
14813         loader error before calling mono_class_get_exception_for_failure
14814         as the loader error is needed inside
14815         mono_class_get_exception_for_failure to throw the error (thinko).
14817         Fixes #80521
14818         
14819 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14821         * reflection.c: align fields rva data so it's faster to load at
14822         runtime.
14824 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14826         Prepare to simplify GenericMethod handling.
14827         * class-internals.h (mono_method_get_context): New accessor function.
14828         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14829         rather than directly accessing '->context' field.
14831         * class-internals.h (_MonoGenericParam.method): Move ...
14832         (_MonoGenericContainer): ... here.  Add into union with klass field.
14833         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14834         Update to changes.
14836 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14838         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14839         the wrapper type enum and reduce relocations.
14841 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14843         * reflection.c (inflate_mono_method): Reuse method instantiation
14844         from the generic method, if available.
14846 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14848         * marshal.c (emit_marshal_variant): Fix conv_arg
14849         type in last commit, based on whether parameter is byref.
14850         
14851 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14853         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14854         marshalling.
14855         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14856         MONO_TYPE_OBJECT back for VARIANT support.
14858 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14860         * marshal.c, marshal.h, icall-def.h: Implement 
14861         Marshal.ReAllocCoTaskMem.
14863 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14865         * marshal.c: memory retention fixes: use the proper
14866         image cache for runtime_invoke method lookups.
14868 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14870         * mempool.c: added code to help debug mempool allocations.
14872 2007-01-11  Dick Porter  <dick@ximian.com>
14874         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14875         support (experimenting with faking it with IP_MTU_DISCOVER for
14876         systems that don't have IP_DONTFRAGMENT.)
14877         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14878         icall.
14880         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14882         * socket-io.h: Add new fields to MonoSocketAsyncResult
14883         corresponding to the new ones in Socket.cs.
14885 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14887         Fix IronPython regression mentioned in #80249
14888         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14889         'cached_context' field, since it may have been initialized as a
14890         side-effect of metadata parsing.
14892         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14893         (_MonoGenericClass.cached_class): Move here and rename from lone
14894         remaining field of ...
14895         (_MonoInflatedGenericClass): ... this.  Remove.
14896         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14897         to changes.
14899         Fix mcs/tests/test-128.cs regression.
14900         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14901         2007-01-10 change below.
14902         [MONO_TYPE_OBJECT]: Recurse into array case.
14904 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14906         * class-internals.h (mono_get_inflated_generic_class): Remove.
14907         * class.c (mono_get_inflated_generic_class): Remove.
14908         (mono_generic_class_get_class): Rename from
14909         mono_class_create_generic.
14910         (mono_class_from_mono_type) [GENERICINST]: Use it.
14911         * reflection.c, metadata.c: Update to changes.  Use
14912         'mono_class_from_mono_type'.
14914 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14916         * reflection.c: use passed type when encoding an array element
14917         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14919 2007-01-09  Robert Jordan  <robertj@gmx.net>
14921         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14922         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14923         Fixes bug #80392.
14925 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14927         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14929         * object.c (set_value): Avoid aliasing between type->data.klass
14930         and type->data.generic_class.
14932         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14934 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14936         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14937         between type->data.klass and type->data.generic_class.
14939 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14941         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14942         value in out parameters.
14944 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14946         Simplify invariant for MonoGenericClass::klass field.
14947         * class.c (mono_class_create_generic): Verify 'klass' is null.
14948         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14949         initialize 'klass' field.
14951 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14953         Ongoing work to avoid redundant data and simplify invariants.
14954         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14955         'generic_class', and change type to a GenericInst.
14956         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14957         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14959 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14961         * class.c : skip io-layer under PLATFORM_WIN32.
14963 2007-01-03  Tor Lillqvist  <tml@novell.com>
14965         Fix #80305: In a bundled executable, look in the bundled exe
14966         assembly to determine the runtime version. Add the possibility to
14967         bundle also the machine.config file.
14968         
14969         * assembly.c (mono_assembly_open_from_bundle): Make
14970         non-static. Allow being called even if we have no bundled
14971         assemblies, and return NULL right away in that case.
14973         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14974         here.
14976         * domain.c (app_config_parse): Take an assembly exe file name as
14977         parameter instead of a config file name. Check for a bundled
14978         config file for that assembly by calling
14979         mono_config_string_for_assembly_file() (see below) before looking
14980         for one in the file system.
14981         (get_runtimes_from_exe): Corrsponding change to call of
14982         app_config_parse().
14983         (get_runtimes_from_exe): Check for bundled assembly exe file first
14984         by calling mono_assembly_open_from_bundle(). If no bundled
14985         assembly exe file is found, call mono_image_open() as before to
14986         look it up in the file system.
14988         * mono-config.c: Add variable bundled_machinec_onfig.
14989         (mono_config_string_for_assembly_file): New function.
14990         (mono_config_for_assembly): Move code snippet that looks for a
14991         bundled assembly .config file into the above new function. Call
14992         it.
14993         (mono_register_machine_config, mono_get_machine_config): New
14994         functions to set and retrieve
14996         * assembly.h: Declare mono_register_machine_config().
14998         * mono-config.h: Declare mono_get_machine_config() and
14999         mono_config_string_for_assembly_file().
15001         * icall.c: No declaration of environ necessary on Win32. It is
15002         declared (as a macro expanding to a function call) in stdlib.h.
15003         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15004         New internal mono function. Returns the value of
15005         mono_get_machine_config() as a Mono string.
15007         * icall-def.h: Add get_bundled_machine_config().
15009 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15011         Remove redundant field
15012         * class-internals.h (_MonoGenericContext.container): Remove field.
15013         * loader.c (mono_method_get_signature_full): Don't parse a
15014         "container" for a signature parse when the signature is inflated
15015         immediately.
15016         (method_from_methodspec): Likewise, for a generic_inst.
15017         * class.c, metadata.c, reflection.c: Update to changes.
15019 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15021         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15022         'cached_context', and change semantics -- it starts off NULL, and
15023         is initialized on demand.
15024         * class.c (mono_generic_class_get_context): New accessor to
15025         replace 'context' field accesses.
15026         (mono_class_get_context): New helper.
15027         (*): Update to changes.
15028         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15030 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15032         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15033         before the memcpy.   Fixes Marshal2 regression.
15035 2007-01-02  Jb Evain  <jbevain@gmail.com>
15037         * blob.h: add a MONO_TYPE_ENUM definition
15038         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15039         fix the encoding of arrays of enums in custom attributes.
15041         Fixes #79666.
15043 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15045         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15046         string is null terminated, but only cut the string short if it
15047         overflows the buffer.   
15048         
15049         (mono_string_to_byvalstr): Also fix this routine.   The code here
15050         was not properly terminating a string (it was only terminated
15051         because of the previous catch-all memset). 
15053         I left the memset, because I do not know if applications expect
15054         the runtime to clear this region. 
15056         Fixes #79944.
15058         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15059         Clear the error before returning to unmanaged code to prevent the
15060         runtime from being confused later on (fixes  80420).
15061         (ves_icall_type_from_name): Always call mono_loader_clear_error
15062         after parsing a type that could have failed.
15063         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15065         * loader.c (mono_loader_clear_error): Fix indentation.
15067 2006-12-28  Martin Baulig  <martin@ximian.com>
15069         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15071 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15073         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15074         getting a token for an EnumBuilder.
15076 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15078         * reflection.c: be more careful in case resource generation
15079         fails to create the data array.
15081 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15083         * sgen-gc.c: write barrier for clone and fix unregister handles.
15085 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15087         * reflection.c: some fixes needed in the generics code for the moving GC.
15089 2006-12-22  Robert Jordan  <robertj@gmx.net>
15091         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15092         account. Fixes bug #80299.
15094 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15096         Fix WaitHandle usage in delegates.
15097         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15098         * object.c (mono_wait_handle_new): Use the property set method to
15099         initialize the handle.
15100         (mono_wait_handle_get_handle): New.
15101         * threadpool.c (mono_async_invoke): Use it.
15102         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15103         Likewise.
15104         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15106 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15108         * marshal.c (emit_marshal): Call emit_marshal_variant and
15109         emit_marshal_com_interface when applicable.
15110         (emit_marshal_variant, emit_marshal_com_interface): Add
15111         methods for this case and remove if's from emit_marshal_object.
15112         
15113 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15115         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15117 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15119         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15120         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15121         and GlobalFree on Windows. Remove FIXME.
15123 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15125         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15126         implementation for managed objects.
15128 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15130         * object.c: implemented code to be used for checking
15131         that no reference field overlaps with non-references.
15133 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15135         * threadpool.c: fix queue code to be compatible with the
15136         moving GC.
15138 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15140         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15141         in structures by throwing ArgumentNullException.
15143         (emit_marshal_safehandle): Also when they are null parameters.
15145         (emit_marshal_safehandle): Add support for ref
15146         SafeHandles parameters
15148 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15150         * profiler.c: updated to use the mono-dl API instead of
15151         gmodule.
15153 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15155         * profiler.c: updated to use the mono-dl dynamic loading
15156         API instead of gmodule.
15158 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15160         * profiler.c: use readlink, older versions of glib don't have
15161         g_file_read_link ().
15163 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15165         * profiler.c: try to detect the path to mono if libc fails to provide
15166         a useful name (bug #80286).
15168 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15170         Fix #80242
15171         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15172         instance, use the generic type definition instead.
15173         (ves_icall_Type_GetNestedTypes): Likewise.
15174         * class.c (mono_class_create_generic): Always set the
15175         nested_classes of a generic instance to NULL, even if the generic
15176         type definition has nested types.
15178 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15180         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15181         and fix on Linux.
15182         
15183 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15185         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15186         my arguments were in the wrong order.   I also fixed the Windows
15187         version which seems to have had the same issue.
15189         (mono_free_bstr): On Unix, this is g_free.
15190         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15191         conversions (for the tests in corlib to pass).
15193 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15195         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15196         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15197         exception if a ref SafeHandle in a struct has changed).
15198         
15199         (emit_struct_conv): Do not perform layout checks for classes
15200         derived from SafeHandle, as those are specially handled. 
15202         (emit_object_to_ptr_conv): Add support for
15203         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15205         (emit_marshal_safehandle): Implement conversion of return values
15206         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15207         
15208         * threads.c: WaitHandle now is compiled with two different handles
15209         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15210         for 2.0.
15211         
15212         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15213         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15214         these routines to cope with both kinds of fields.
15216 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15218         * metadata.c (mono_type_to_unmanaged): Handle the case where
15219         type->data.klass is a SafeHandle, and in that case, return the
15220         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15221         MONO_MARSHAL_CONV_SAFEHANDLE. 
15223 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15225         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15226         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15227         calling emit_marshal_object.
15229         (emit_marshal_safehandle): Implement marshalling of
15230         SafeHandle parameters (no ref support yet).
15232         (MarshalAction): Document the defines as I implement
15233         them for SafeHandle.
15235         (emit_marshal_object): indentation police.
15237         * class-internals.h: Define MonoSafeHandle.
15238         Add safehandle_class to MonoDefaults type.
15240         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15241         list of classes to check for fields. 
15243         * domain.c (mono_init_internal): Add SafeHandle to the list of
15244         mono_defaults loaded.
15246 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15248         Fix #80253
15249         * reflection.c (mono_reflection_bind_generic_parameters): If the
15250         generic type definition is a type builder, ensure that it is fully
15251         initialized before instantiating it.  Kill some dead code.
15253 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15255         * object.c: clear the loader_error () before loading
15256         more metadata stuff (bug #80258).
15258 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15260         * icall.c, icall-defs.h: type modifiers icalls for
15261         parameters and properties.
15263 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15265         * object.c, icall.c: fixed warnings.
15267 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15269         * marshal.c: fixed a couple of leaks and coding style in a few places.
15271 2006-12-08  Dick Porter  <dick@ximian.com>
15273         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15274         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15275         80173.
15277 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15279         * process.c: ProcessStartInfo may have only filename set and
15280         arguments can be NULL.
15282 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15284         * icall.c: fix leak found by Robert Jordan.
15286 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15288         * marshal.c, marshal.h: generate managed method to access an element
15289         of a multi-dimensional array.
15291 2006-11-30  Paolo Molaro (lupus@ximian.com)
15293         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15295 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15297         * icall.c: back out GetFields () fix until the serialization code is
15298         fixed to not depend on the incorrect behaviour.
15300 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15302         * profiler.c: provide defaults if none are set.
15304 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15306         * Makefile.am, attrdefs.h: new public header file with
15307         constants for attributes for use by embedders.
15309 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15311         * icall.c: GetFields () fix for bug #80064.
15313 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15315         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15316         removed long unused icalls.
15318 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15319   
15320         * marshal.c: 
15321                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15322                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15323                 can be generated without a delegate class.
15324                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15325         
15326         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15328 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15330         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15331         #80069.
15333 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15335         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15336         icall-def.h: added icalls needed by System.GC.
15338 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15340         * loader.c: ensure the class in catch clauses is handled
15341         correctly for generics methods (fixes bug#79980).
15343 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15345         * monitor.h, monitor.c: added mono_locks_dump () function
15346         to help debug deadlocks involving managed locks.
15348 2006-11-13  Dick Porter  <dick@ximian.com>
15350         * file-io.c (get_file_attributes): If the file is a symlink try
15351         and get the stat data for the target, but also add the
15352         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15353         the specs for the windows symlink support, but will probably have
15354         to be reworked when I have test data from a vista machine.  Fixes
15355         bug 79887.
15357 2006-11-13  Dick Porter  <dick@ximian.com>
15359         * gc.c (mono_domain_finalize): 
15360         * marshal.c (mono_delegate_begin_invoke): 
15361         * threadpool.c (socket_io_init, mono_thread_pool_init)
15362         (mono_thread_pool_finish): 
15363         * monitor.c (mono_monitor_try_enter_internal): 
15364         * threads.c (mono_thread_resume, mono_thread_init)
15365         (mono_thread_suspend_all_other_threads)
15366         (mono_thread_execute_interruption): 
15367         * appdomain.c (mono_domain_unload): Check for NULL error returns
15368         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15369         75733.
15371 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15373         * process.c
15374         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15375         Only close the handle if the value of the handle is not
15376         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15377         robust.
15379         Improvement for #75733, so that we do not run into this problem. 
15381         
15382         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15383         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15384         internal variables.  Fixes #79462 
15385         
15387 2006-11-09  Dick Porter  <dick@ximian.com>
15389         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15390         Use poll() not select().  Fixes bug 79397.
15392 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15394         Fix #79872
15395         * assembly.c (mono_assembly_load_from_full): Check that the given
15396         image has an assembly manifest.
15398 2006-11-09  Ankit Jain  <jankit@novell.com>
15400         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15401         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15402         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15404 2006-11-07  Dick Porter  <dick@ximian.com>
15406         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15407         Put the old resolver behaviour back for pre-2.0 profiles.
15409 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15411         * threadpool.c: precise GC and locking fixes.
15413 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15415         * class.c: don't load types that have an explicit unaligned
15416         managed reference. Provide better info in the TypeLoad exception.
15417         Part of the fix for bug #79744.
15418         * object.c: use the correct check for class type load issues.
15420 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15422         * class.c: enforce alignment of fields with managed references
15423         even when Pack=1 is forced by the user (bug #77788).
15425 2006-11-03  Dick Porter  <dick@ximian.com>
15427         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15428         If the address reverse lookup fails, return it as the hostname
15429         anyway.  Fixes bug 79721.
15431 2006-11-03  Dick Porter  <dick@ximian.com>
15433         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15434         Fix build on Windows.
15436 2006-11-02  Dick Porter  <dick@ximian.com>
15438         * icall-def.h: 
15439         * object-internals.h: 
15440         * exception.c (mono_get_exception_thread_interrupted): 
15441         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15442         Fixes bug 74525.
15444         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15445         Check for pending Thread.Interrupt.
15447 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15448         * loader.c: Fixed bug 79684.
15450 2006-10-27  Dick Porter  <dick@ximian.com>
15452         * file-io.c (get_file_attributes): Force symlinks to directories
15453         to be returned as a regular file.  Fixes bug 79733.
15454 2006-10-26  Dick Porter  <dick@ximian.com>
15456         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15457         CreateFile to open a directory then we need to set the
15458         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15460 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15462         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15463         friends.
15465 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15467         * sgengc.c: small cleanup of timer code.
15469 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15471         * sgen-gc.c: fix some warnings and start adding support for
15472         complete object removal on domain unload.
15474 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15476         * assembly.c: build_assembly_name should not consider a version
15477         number without build or revision number invalid. Fixes bug #79715.
15479 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15481         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15482         call kernel32 function OutputDebugString directly.
15483         
15484         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15485         
15486 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15488         * reflection.c: small cleanup, using a function to insert a MonoString
15489         in the string heap.
15491 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15493         * reflection.c: moving GC fixes.
15495 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15497         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15498         all the objects with finalizers belonging to an unloading appdomain.
15500 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15502         * sgen-gc.c: added ability to allocate even when the nursery is fully
15503         pinned and fixed a couple of bugs.
15505 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15507         * threads.h: Revert the last change for now.
15509         * threads.h (mono_thread_get_pending_exception): Rename this to
15510         mono_thread_get_undeniable_exception ().
15512 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15514         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15515         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15516         when fname does not refer to valid assembly. This result in a more
15517         meaningful error message.
15518         * exception.c: added mono_get_exception_bad_image_format2 which 
15519         constructs a BadImageFormatException using the ctor taking a custom
15520         message and the file name. Passing in a NULL msg results in a default
15521         message.
15522         * exception.h: define mono_get_exception_bad_image_format2 function.
15523         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15524         when file name pointed to an invalid IL image. Use 
15525         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15526         as this results in a more meaningful error message.
15528 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15530         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15531         #79465.
15533 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15535         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15536         consistency with the other _size functions.
15537         (mono_type_stack_size): Ditto.
15539         * class.c object.c icall.c: Fix warnings caused by the above change.
15541         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15543         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15545         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15547 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15549         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15550         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15551         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15552         threadpool.h, threads-types.h: mark more internal functions.
15554 2006-10-11  Dick Porter  <dick@ximian.com>
15556         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15557         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15558         reproduce the bug even before applying the fix.)
15560 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15562         * reflection.c: allow retrieving attributes for arguments in generic
15563         methods (bug #79241).
15565 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15567         * debug-mono-symfile.c: properly check fopen () result (found by
15568         coverity).
15570 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15572         * reflection.c: make error message clearer and fixed two
15573         issuelets found by Coverity.
15575 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15577         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15579 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15581         * object-internals.h, gc-internal.h, profiler-private.h:
15582         mark internal functions.
15584 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15586         * reflection.c: put data in the text section.
15587         * icall.c: recognize more types in type_from_typename ().
15588         * process.c, marshal.c: added some GC FIXMEs.
15590 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15592         * loader.c: check for NULL before initializing.
15594 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15596         * gc.c (finalizer_thread): Use a non-alertable wait here.
15598         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15599         until the correct solution is found.
15601 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15603         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15604         modules with no metadata. Fixes #79596.
15606         * image.c (load_metadata_ptrs): Put back the error message when
15607         the #- heap is encountered since the support is not complete yet.
15609 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15611         * gc.c: do not allow the user to SuppressFinalize () a
15612         delegate because it would leak the trampoline if present.
15614 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15616         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15617         PropertyPtr table.
15619 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15621         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15623         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15625         * row-indexes.h: Add definitions for *Ptr tables.
15627         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15629         * metadata.c (mono_metadata_translate_token_index): New helper function to
15630         translate table indexes used in uncompressed metadata.
15631         (mono_metadata_decode_table_row): Ditto.
15632         (mono_metadata_decode_table_row_col): Ditto.
15634         * metadata.c: Add table schema for *Ptr tables.
15636         * class.c loader.c: Use the new helper function to access the affected metadata
15637         tables.
15638         
15639         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15640         #38532.
15641         
15642 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15644         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15645         sequences which can be unbounded in size. Fixes #79583.
15647 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15649         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15650         static initialization.
15652         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15654         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15656         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15658         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15659         ctor fails, i.e. throw the same exception on subsequent accesses.
15660         
15661 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15663         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15664         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15665         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15666         Handle marshalling of interfaces and VARIANTs contained in structs.
15667         
15668         Code is contributed under MIT/X11 license.
15669         
15670 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15672         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15673         
15674         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15675         mempool.
15677 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15679         * console-io.c: ignore previous SIGINT handler.
15681 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15683         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15684         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15685         #79460, #79461, #79485.
15687         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15689         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15690         #79217.
15692 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15694         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15695         could be generated from it.
15697 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15699         * rand.c: fix read loop to correctly handle EINTR.
15701 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15703         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15704         internal calls are defined to keep methods closer to the declaring
15705         type and allow a significant reduction in runtime relocations and
15706         memory usage.
15708 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15710         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15711         exception message to have FileNotFoundException use the default
15712         assembly load error message. Fixes bug #79426.
15713         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15715 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15717         * threadpool.c: (start_thread_or_queue) use the root domain when
15718         creating the thread instead of the async object one.
15720 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15722         * class.c, object.c, class-internals.h, reflection.c:
15723         for arrays, store element_size inside MonoClass (speedup
15724         for array object creation).
15726 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15728         * icall.c: fixed CodeBase to use the file name and not the module
15729         name (bug #79365).
15731 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15733         * mono-debug.c, mono-debug.h: export find_method as
15734         mono_debug_find_method ().
15736 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15738         * debug-helpers.c, class-internals.h: added a few functions useful
15739         when debugging under gdb.
15741 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15743         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15744         characters that need special handling.
15746 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15748         * mono-config.c: make the os/cpu specification more flexible,
15749         allowing lists and negation.
15751 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15753         * marshal.c: COM Interop fixes. Handle case where method->klass.
15754         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15755         calling convention on non-windows platforms. This is for
15756         compatibility with XPCOM and MainWin COM.
15757         
15758         Code is contributed under MIT/X11 license.
15759         
15761 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15763         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15764         correctly. Fixes #79217.
15766         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15768 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15770         * mono-config.c: allow both an os and cpu attribute for dllmap
15771         and dllentry elemnets to enable a single config file to be used
15772         for multiple architectures.
15774 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15776         * loader.c: MonoLoaderError was cleared too soon on load failure.
15777         Fixes bug #79424.
15779 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15781         * icall.c: use the defining class vtable when accessing a
15782         static field, not a pobblibly derived class.
15784 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15786         * icall.c string-icalls.c: Remove references to unicode.h.
15788         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15790         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15792         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15793         indicating the image where custom marshaller types should be looked up.
15794         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15795         custom marshallers, instead of corlib. Fixes #79425.
15797 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15799         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15801 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15803         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15804         Implement Environment.ProcessorCount.
15805         
15806         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15807         Implement Environment.ProcessorCount.
15808         
15809         * icall.c: 
15810         Add Environment.ProcessorCount icall.
15811         
15812         Patch by Jason McFall.
15814 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15816         * assembly.c: don't append .exe/.dll when the filename already contains
15817         one of those extensions.
15819 2006-09-12  Martin Baulig  <martin@ximian.com>
15821         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15822         to array interfaces.
15824 2006-09-11  Martin Baulig  <martin@ximian.com>
15826         * reflection.c (mono_image_build_metadata): Create the
15827         MethodImpl's after emitting all types and methods, so we don't
15828         need another fixup pass for them.
15830 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15832         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15833         change.
15835 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15837         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15838         unload.
15840 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15842         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15843         args is not set. Fixes #78926.
15845 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15847         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15849         * image.c (load_class_names): Move this to class.c, and rename it to 
15850         'mono_image_init_name_cache'.
15851         (load_modules): Fix a warning.
15853         * class.c icall.c image.c: Initialize image->name_cache lazily.
15855         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15856         on its name using information in the AOT file.
15858         * class.c (mono_class_from_name): Use the new hook function.
15860 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15862         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15863         correctly.
15865         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15866         Fixes #79289.
15867         
15868 2006-09-06  Martin Baulig  <martin@ximian.com>
15870         * icall.c (mono_lookup_internal_call): Small fix.
15872 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15874         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15875         double g_free.
15877 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15879         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15880         when --debug is specified.
15882 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15884         * class.c (setup_generic_array_ifaces): Fix a warning.
15886 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15888         * Temporarily remove the patch to assemly.c that checks the
15889         assembly versions as it breaks our gacutil.
15891 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15893         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15895         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15896         a net 1.0 runtime.
15898         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15899         created using the default ctor. Fixes #79152.
15900         (mono_string_builder_to_utf16): Ditto.
15902 2006-09-01  Martin Baulig  <martin@ximian.com>
15904         Fix handling of the generic array interfaces.
15906         * class-internals.h
15907         (MonoDefaults): Removed `generic_array_class' and added
15908         `generic_ilist' class.
15910         * class.c
15911         (mono_bounded_array_class_get): Add the new generic array interfaces.
15912         (setup_generic_array_ifaces): New static method; create vtable
15913         entries for each method in the generic array interfaces.
15915         * metadata.c
15916         (select_container): Allow "parent-less" generic methods.
15918         * marshal.c
15919         (mono_marshal_get_generic_array_helper): New public method.
15921         * icall.c
15922         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15923         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15924         moved the interncall into System.Array.
15926 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15928         A few more cases of avoiding work on types with ->byref set.
15929         Has the real fix for #79238
15930         * icall.c (is_generic_parameter): New helper.
15931         (ves_icall_Type_GetGenericParameterPosition): Use it.
15932         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15933         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15934         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15935         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15936         reference types.
15937         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15938         reference types.
15939         (ves_icall_Type_get_IsGenericInstance): Likewise.
15940         (ves_icall_Type_get_IsGenericType): Likewise.
15942 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15944         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15945         class if possible.
15947         * mempool.h (mono_mempool_get_allocated): New helper function.
15949         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15950         change.
15952         * mempool.c: Fix warnings and the calculation of stats.
15954         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15956         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15958         * loader.c (mono_get_method_from_token): Update method_count stat.
15960         * class-internals.h (MonoStats): Add some stats.
15962 2006-08-31 Robert Jordan  <robertj@gmx.net>
15964         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15965         with managed variants.
15966         All code is contributed under the MIT/X11 license.
15967         
15968 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15970         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15971         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15973         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15975         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15976         with cycles in classes.
15978         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15980         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15981         missing a [MarshalAs] directive. Fixes #79203.
15983         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15984         klass->marshal_info. Fixes #79217.
15986 2006-08-30  Martin Baulig  <martin@ximian.com>
15988         Committing a patch from Joachim Ante <joe@otee.dk>:
15989         Add support for binary data symbol stores.
15991         * debug-mono-symfile.c
15992         (mono_debug_open_mono_symbol_file): Renamed into
15993         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15994         arguments.
15996         * mono-debug.c
15997         (mono_debug_open_image): Added `raw_contents' and `size' args.
15998         (mono_debug_init_2_memory): New public function.
16000 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16002         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16004 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16006         * appdomain.c: implement support for ShadowCopyFiles.
16008 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16010         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16011         when value is NULL (and should remove CID #51).
16013 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16015         * image.c: moved 2 functions to ../utils.
16017 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16019         * gc.c: cope with the target object of a GC handle being NULL
16020         (bug #78877).
16022 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16024         * class.c: recursively check parent's explicit implementations
16025         of interface methods (fixes bug #79125).
16027 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16029         * filewatcher.c: Avoid warnings when building, do not redefine
16030         constants that are defined.
16032         Remove warnings.
16034 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16036         * image.c: don't fail when the link points to an absolute path.
16038 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16040         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16041         Fix CID #3.
16043 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16045         * image.c (full_path): A new method used to obtain the actual path
16046         of an assembly even in the presence of symbolic links.  
16048         This is necessary for the case where we are running a binary that
16049         has been GACed, but we are using the "published" path name
16050         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16051         file in the GAC.
16053         This was the source of the failure for the `xsp' command with the
16054         recent AppDomain changes, as far as the runtime was concerned,
16055         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16056         $prefix/mono/gac/blah/version/blah.exe.
16058         (do_mono_image_open): use full path
16060 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16062         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16064 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16066         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16067         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16069 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16071         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16072         small structures. Fixes #78990.
16074 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16076         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16078         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16080 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16082         * appdomain.c:
16083         * marshal.c: don't load all the assemblies from a domain into newly
16084         created ones. The new domains might have different rules and load
16085         assemblies from different locations. Fixes bug #76757.
16087         Patch by Lluis. Conflicts resolved by Brian Crowell.
16089 2006-08-16  Alp Toker  <alp@atoker.com>
16091         * socket-io.c: First half of the fix for #79084.
16092         Set sa_size to the length of the content, not that of the struct.
16093         Don't add NULL suffix to the content, this should be done in
16094         managed code if needed.
16096 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16098         Fix part of #79012
16099         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16100         mono_metadata_parse_type returns NULL.
16102 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16104         * normalization-tables.h : new file for string normalization data.
16105         * locales.c, locales.h, icall.c :
16106           added load_normalization_resource() for string normalization,
16107           and icall as well.
16108         * Makefile.am : added normalization-tables.h to the sources.
16110 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16112         * marshal.c: Add more helper functions to reduce code duplication and use them
16113         everywhere.
16115 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16117         * marshal.c: Fix non-x86 stdcall warnings.
16118         
16119         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16120         them everywhere.
16122 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16124         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16125         type check on multi-dimensional arrays. Fixes #79000.
16127 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16129         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16130         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16131         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16132         * class-internals.h: add is_com_object to class structure.
16133         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16134         null checks to COM object marshalling. Fix .ctor call on RCW.
16135         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16136         
16137         All code is contributed under the MIT/X11 license.
16139 2006-08-09  Dick Porter  <dick@ximian.com>
16141         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16142         racing mono_monitor_allocator_lock() somewhere, so don't delete
16143         the critical section for now.  Found by running and exiting
16144         monodevelop.
16146 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16148         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16149         (ves_icall_System_ComObject_FindInterface): Ditto.
16150         (ves_icall_System_ComObject_CacheInterface): Ditto.
16152         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16153         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16155 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16157         * threadpool.c: treat pipes from process asynchronous reads as sockets
16158         when reading from them, so we get select/poll or epoll to wait for
16159         data.
16161 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16163         * loader.c: Fix a typo (CID #233) in the null check.
16165 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16167         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16168         Hopefully fixes #78949.
16169         
16170         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16171         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16172         bytes. Fixes #78972.
16174 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16176         * filewatcher.c: we need to set errno here.
16178 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16180         * filewatcher.c: let Win32Exception get the error value.
16182 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16184         * filewatcher.c: translate errno into win32 errors for Win32Exception
16185         to know what happened.
16187 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16189         * threadpool.c: Fix more warnings.
16191         * assembly.c (search_loaded): Fix warnings.
16193         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16194         (mono_async_invoke): Ditto.
16196 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16198         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16199         entries for __ComObject type in addition to ComImport types.
16200         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16201         about hash table.
16202         
16203         All code is contributed under the MIT/X11 license.
16205 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16207         * image.c: avoid tentative loading of modulerefs that contain
16208         no metadata (P/Invoke library names).
16210 2006-07-28  Dick Porter  <dick@ximian.com>
16212         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16213         mono_loader_lock() somewhere, so don't delete the critical section
16214         for now.  Found by running and exiting monodevelop.
16216 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16218         * filewatcher.c: define the inotify syscalls when we're building on
16219         linux and have sys/syscall.h. The build system might not have support
16220         for inotify but the target system might have it.
16222 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16224         * domain.c: Documentation updates.
16226         * loader.c (mono_free_method): Do not release the method
16227         information if we are being profiled, as profilers will use this
16228         information at shut down to present some data to the user.
16230         This is needed so that the profiler does not crash, as the
16231         profiler tends to keep MonoMethods around, and they might become
16232         invalid if we free these.
16234         (mono_get_method_constrained): Return the original CIL stream
16235         method as well, so verification can be performed against it.
16237 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16239         * filewatcher.[ch]: support for inotify file system watcher.
16240         * icall.c: add new internal calls for the inotify file system watcher.
16242 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16244         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16245         #78888.
16247 2006-07-20  Dick Porter  <dick@ximian.com>
16249         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16250         warning.
16252 2006-07-20  Dick Porter  <dick@ximian.com>
16254         * threads.c (start_wrapper): Do the thread cleanup while we still
16255         hold a reference to its object.  Fixes bug 78123.
16257 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16259         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16260         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16261           "managed-to-managed".
16262         * icall.c: Redirect string constructors that take sbyte* to
16263           ves_icall_System_String_ctor_RedirectToCreateString.
16264         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16265           to CreateString () methods with matching signature.
16266         * reflection.c: Use original security informations for
16267           MONO_WRAPPER_MANAGED_TO_MANAGED.
16268         * security-manager.c: Use original security informations for
16269           MONO_WRAPPER_MANAGED_TO_MANAGED.
16270         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16271           that is a placeholder and only its address should be used.
16272         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16273           that is a placeholder and only its address should be used.
16275 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16277         Begin implementing COM Interop.
16278         * appdomain.c: Increment corlib version.
16279         * class.c: Set ComImport classes' parent to __ComObject.
16280         * loader.c: Mark cominterop methods as such.
16281         * domain.c: Add __ComObject class to MonoDefaults structure.
16282         * image.c: Add 2 hashtables to the image for COM Interop related methods
16283         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16284         using the mempool allocator
16285         
16286         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16287         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16288         declaration for mono_metadata_type_dup_mp.
16289         
16290         * debug-helpers.c: Added strings for two additional wrapper types
16291         * object.c: Create proxy objects for ComImport classes
16292         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16293         and added __ComObject class to MonoDefaults structure.
16294         
16295         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16296         MonoComInteropProxy and MonoComObject.
16297         
16298         * marshal.c: Added support for COM Interop
16299         (signature_cominterop): Converts managed signature to corresponding
16300         unmanaged COM signature.
16301         (cominterop_get_function_pointer): gets unmanaged function pointer via
16302         COM object vtable
16303         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16304         (cominterop_get_method_interface): returns interface type that method is defined on
16305         (mono_mb_emit_cominterop_call): emits native call to function pointer
16306         gotten from vtable
16307         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16308         that matches signature of unmanaged function.
16309         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16310         (cominterop_get_invoke): forwards call from proxy to __ComObject
16311         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16312         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16313         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16314         
16315         * marshal.h: Added Marshal icall declarations.
16316         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16317         so we can access them in finalizer
16318         
16319 2006-07-14  Dick Porter  <dick@ximian.com>
16321         * object.c (mono_type_initialization_cleanup): Fix a race
16322         condition by temporarily commenting out the critical section
16323         deletion.
16325 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16327         * reflection.c (create_custom_attr): Fix some warnings.
16328         (create_custom_attr_data): Ditto.
16329         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16330         types. Fixes #78855.
16332 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16334         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16336         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16338 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16340         * reflection.c (resolve_object): Add support for DynamicMethod.
16342         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16343         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16345 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16347         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16348         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16350 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16352         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16353         Fixes #77888.
16355 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16357         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16358         slightly: remove a shadow local variable.
16360 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16362         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16363         definition that introduces the virtual function slot.
16364         Also fix Coverity #105.
16366 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16368         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16369         for dynamic assemblies. Fixes #78724.
16371 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16373         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16374         Fixes #78722.
16376 2006-06-21  Martin Baulig  <martin@ximian.com>
16378         * reflection.c
16379         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16380         fixes #76484.
16382 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16384         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16386 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16388         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16389         nor TYPEREFs.
16390         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16391         Inflate result if necessary.
16392         (mono_class_get_full): Remove old version.  Rename from
16393         'mono_class_get' and add 'context' argument.  Pass it to
16394         ..._create_from_typespec.
16395         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16396         (mono_ldtoken): Revert change below.
16398 2006-06-20  Martin Baulig  <martin@ximian.com>
16400         * class.c (mono_ldtoken): Don't pass the generic context to
16401         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16403 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16405         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16406         and later freeing it. Fixes #78638.
16408 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16410         * icall.c (mono_class_get_throw): Revert over-zealous error
16411         throwing, the caller for mono_class_get_throw will cope with
16412         errors when classes are not properly initialized already.
16414         The code still copes with loader exceptions though.
16416         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16417         
16418 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16420         Fixes the `make run1' version of RuntimeAbort (to be commited,
16421         source is in Bugzilla).
16422         
16423         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16424         FALSE on class loading failure instead of returning true.
16426         * class.c (mono_class_create_from_typedef): It is possible for
16427         mono_metadata_interfaces_from_typedef_full to fail if a class is
16428         not found, cope with this.
16429         
16431 2006-06-14  Dick Porter  <dick@ximian.com>
16433         * socket-io.c: 
16434         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16435         4.1.1
16437 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16439         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16441 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16443         * icall.c: Another fix for building mono in Visual Studio.
16445 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16447         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16448         
16449 2006-06-09  Martin Baulig  <martin@ximian.com>
16451         * debug-mono-symfile.c: Put this back and really fix it this
16452         time. Sorry for all the trouble.
16454 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16456         * icall.c (mono_class_get_throw): Fix a warning.
16457         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16458         ReflectionTypeLoadException if needed. Fixes #78606.
16460         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16461         (mono_class_init): Ditto.
16463         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16464         ref_only exceptions.
16465         (mono_loader_clear_error): Make this work even if there is no error.
16467 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16469         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16470         Marshal.GetComSlotForMethodInfo using internal call.
16472 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16474         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16475         a function for signalling it.
16477         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16478         a referenced assembly is not found.
16480         * loader.c (mono_loader_error_prepare_exception): Add support for 
16481         LOADER_ERROR_ASSEMBLY. Fix formatting.
16483 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16485         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16486         for VARIANT marshalling on windows and increment corlib version
16487         since Variant struct was added.
16489 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16491         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16492         stack trace line information:
16494         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16495         (Martin) when looking up B which is between A and C, return A not C.
16497         Bug is #78573.
16499         Thanks to Alexander Olk for tracking this down.
16501 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16503         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16504         
16505         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16506         avoid clobbering its value.
16507         (mono_string_to_lpstr): Fix a warning on windows.
16509 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16511         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16513         * reflection.c loader.c: Removed references to 'dummy' flag.
16515         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16517         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16518         it gets GC tracking.
16520         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16521         GC tracking.
16522         
16523         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16525         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16527         * appdomain.c: Bump corlib version.
16529 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16531         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16532         CEE_STIND_REF when working with object references.
16534 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16536         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16537         Fixes #78539.
16539 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16541         * loader.c (method_from_memberref): Fix argument value for
16542         mono_loader_set_error_method_load (I was passing the MonoClass
16543         instead of the class name char *).
16545 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16547         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16548         CEE_STIND_REF when working with object references.
16550 2006-05-30  Martin Baulig  <martin@ximian.com>
16552         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16553         mono_method_full_name() change and replace the ':' with a '.'
16554         here.
16556 2006-05-30  Martin Baulig  <martin@ximian.com>
16558         * debug-mono-symfile.c
16559         (mono_debug_symfile_lookup_location): Fix the algorithm:
16560         when looking up B which is between A and C, return A not C.
16562 2006-05-29  Martin Baulig  <martin@ximian.com>
16564         * mono-debug.h
16565         (MonoDebugMethodInfo): Make the typedef public.
16566         (MonoDebugSourceLocation): New public struct.
16568         * mono-debug.c
16569         (mono_debug_source_location_from_address): Removed.
16570         (mono_debug_source_location_from_il_offset): Removed.
16571         (mono_debug_il_offset_from_address): Removed.
16572         (mono_debug_address_from_il_offset): Removed.
16573         (mono_debug_lookup_method): New public function.
16574         (mono_debug_lookup_source_location): New public function; replaces
16575         the old mono_debug_source_location_from_*() functions; see the
16576         inline documentation.
16577         (mono_debug_free_source_location): New public function.
16578         (mono_debug_print_stack_frame): New public function; see the
16579         inline documentation.
16581         * debug-mono-symfile.c
16582         (mono_debug_find_source_location): Renamed into
16583         mono_debug_symfile_lookup_location(); only take a
16584         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16585         documentation.
16586         (mono_debug_find_method): Renamed into
16587         mono_debug_symfile_lookup_method().
16589 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16591         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16592         returned by mono_image_open_full ().
16594         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16595         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16596         #78517.
16598         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16599         #78518.
16601 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16603         * class.c (mono_class_from_typeref): handle missing images
16604         earlier, deals with bug #78418.   Refactor code; 
16606         Fix a warning introduced in my previous commit (some stale code
16607         from before I revisited my patch).
16609         * class.c (mono_class_create_from_typedef): On failure, remove the
16610         class from the MonoImage->class_cache as the class is not
16611         initialized;   Fixes the leak pointed out by Paolo.
16613 2006-05-25  Dick Porter  <dick@ximian.com>
16615         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16616         DeleteCriticalSections until I figure out which one may still be
16617         sometimes locked when mono_thread_cleanup is called.
16619 2006-05-24  Dick Porter  <dick@ximian.com>
16621         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16622         of mono_thread_manage and back into its own function, so it can be
16623         called after the finalizer thread has finished.
16625         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16627 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16629         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16630         Fixes #78495.
16632         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16633         with non-blittable elements.
16634         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16636 2006-05-24  Martin Baulig  <martin@ximian.com>
16638         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16639         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16641         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16642         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16643         `mono_debugger_event_handler' to NULL.
16645 2006-05-24  Martin Baulig  <martin@ximian.com>
16647         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16649 2006-05-24  Martin Baulig  <martin@ximian.com>
16651         * mono-debug-debugger.h
16652         (mono_debugger_create_notification_function): Added
16653         `MonoCodeManager *' argument.
16655 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16657         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16659 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16661         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16662         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16663         implementation.
16665 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16667         * icall.c: precise GC support: objects can't be stored in unmanaged
16668         memory anymore, even if they are kept alive by other references: since
16669         they can move the GC needs to be able to always find them.
16671 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16673         * object.c: precise GC support for static fields. Support
16674         for moving GCs: write barriers and pinned allocation for interned
16675         strings.
16677 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16679         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16680         structure.
16682 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16684         * class.c, gc.c: sgen and precise GC updates.
16686 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16688         * marshal.h, marshal.c: added write barrier wrapper and precise type
16689         fixes.
16691 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16693         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16694         support.
16696 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16698         * reflection.c: precise and sgen GC updates.
16700 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16702         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16704 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16706         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16708 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16710         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16711         MONO_TYPE_OBJECT. Fixes #78462.
16713 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16715         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16716         and blittable types.
16718 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16720         * class.c (mono_class_get_exception_for_failure): Implement parts
16721         of a TODO: if the loader error is set (instead of the class
16722         error), we return a Loader exception that can be properly thrown
16723         elsewhere.
16725         This was exposed by some Winforms 2.0 code that I tried to run
16726         (Atsushi pointed me to it).
16728 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16730         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16731         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16732         
16733         * marshal.c (emit_marshal_vtype): Add limited support for 
16734         UnmanagedType.LPStruct. Fixes #78427.
16736         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16737         Applied a patch from kangaroo to fix #77523.
16739 2006-05-17  Martin Baulig  <martin@ximian.com>
16741         * threads.c
16742         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16743         (debugger_thread_created): Removed.
16744         (debugger_thread_exited): Removed.
16746 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16748         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16750         * object-internals.h (MonoReflectionResource): Sync with managed version.
16752 2006-05-12  Wade Berrier <wberrier@novell.com>
16754         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16756 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16758         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16759         functions try to allocate from the image mempool.
16761 2006-05-12  Dick Porter  <dick@ximian.com>
16763         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16765 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16767         * object.c: The FieldGetter and FieldSetter methods require the full
16768         name of the class, not only the name. Fixes bug #78277.
16770 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16772         * loader.c (method_from_memberref): Do not pass the NULL klass to
16773         mono_loader_set_error_() methods.  Pass the non-NULL value
16774         (class). 
16776 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16778         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16779         (mono_assembly_close): Null out assembly->image->references after freeing it.
16781         * image.c (mono_image_close): Free image->references.
16782         
16783         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16785 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16787         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16788         before checking if it's NULL (g_assert).
16790 2006-05-10  Martin Baulig  <martin@ximian.com>
16792         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16793         I thought I already killed that two months ago, but now it somehow reappeared.
16795 2006-05-10  Martin Baulig  <martin@ximian.com>
16797         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16799 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16801         * reflection.c: Allocate memory for dynamically created methods in the image
16802         mempools.
16804 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16806         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16807         don't use the ad pointer before checking if it's NULL (g_assert).
16809 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16811         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16812         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16814         * marshal.c: Allocate all signatures from mempools.
16816         * marshal.c: Allocate some more signatures from mempools.
16818 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16820         * object.c (mono_load_remote_field): The code used to provide a
16821         temporary variable for returning results if the user did not
16822         provide a result pointer.  But our temporary variable was allocted
16823         on the satck.
16825         Fix calling code to always pass a result area.   Coverity ID 103.
16827 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16829         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16830         value, not the old. Fixes #78312.
16831         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16833         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16834         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16835         per-image cache.
16837         * assembly.c (mono_assembly_close): Free image->references.
16839         * assembly.c (mono_assembly_names_equal): Fix a warning.
16840         (mono_assemblies_cleanup): Cleanup more global data.
16842         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16844         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16845         ptr_cache and image->modules.
16847         * image.c (mono_image_init): Allocate array_cache lazily.
16848         
16849 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16851         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16852         behavior was changed recently and has bad side effects.
16854 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16856         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16857         
16858         * assembly.c (mono_assembly_close): Remove a debug printf.
16860         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16862         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16863         to also allow for temporary references between mono_image_open ()/close ().
16865         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16867 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16869         * marshal.c: Fix support for dynamic methods.
16871         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16873         * marshal.c (mono_marshal_cleanup): New cleanup function.
16875         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16876         image mempools.
16878         * class.c (mono_class_init): Fix leaking class->nested_classes.
16880         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16882         * image.c (mono_image_init): Initialize the new cashes.
16884         * image.c (mono_image_close): Destroy the new cashes.
16886         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16888         * mempool.c (mono_mempool_strdup): New helper function.
16890         * class-internals.h: Add prototype for mono_loader_unlock ().
16892         * domain.c (mono_jit_info_table_find): Fix a warning.
16893         (mono_debugger_check_runtime_version): Ditto.
16895         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16896         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16897         functions to these modules.
16899         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16900         metadata modules.
16901         
16902         * marshal.c (mono_free_bstr): Fix a warning.
16904         * assembly.c (mono_assembly_open_full): Fix another small leak.
16906         * object.c: Fix some unload leaks in the remoting code.
16908         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16909         function.
16911         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16913         * reflection.c: Fix some unload leaks in dynamic assemblies.
16915 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16917         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16918         * marshal.h: Add BSTR support on Win32
16919         * icall.c: Add BSTR icalls
16920         * metadata.h: Add BSTR enums
16922 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16924         Work to catch the crash from #76795 and turn it into an
16925         exception.   As I stubbed out pieces of the VisualBasic support,
16926         I found a number of places where the code was failing and I added
16927         checks to those places. 
16928         
16929         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16930         function return a status code.  If we fail to parse the signature
16931         from mono_metadata_parse_generic_inst, return FALSE.
16933         * loader.c (mono_get_method_from_token): If we fail to load the
16934         method (mono_class_get) return NULL.   
16936         * (method_from_memberref): Return NULL if we are unable to parse
16937         the method signature
16939         (mono_loader_error_prepare_exception): Since we now use the
16940         loader_error flag internally to stop processing, and obtaining
16941         exceptions that might be thrown will walk this code path the
16942         proper way of going from a MonoLoaderError into a
16943         MonoException was convoluted.   This new routine encapsulates the
16944         process of turning the error into an exception and *clearing* the
16945         error afterwards.
16946         
16947 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16949         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16950         with missing assemblies), and to cope with:
16952                 * Missing fieldref from a non-existing assembly.
16953                 * Missing methodref from a non-existing assembly.
16955         The first batch of work to address *some* of the issues from 76661.
16956         
16957         * object.c (mono_class_create_runtime_vtable): If we fail to
16958         initialize the class raise the exception here. 
16960         * metadata.c (mono_class_get_overrides_full): If any methods fail
16961         to load return the failure to the caller.
16963         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16964         flagging assemblies that failed to load.   
16966         Do not crash if we are unable to load the assembly.
16968         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16969         assemblies. 
16971         * loader.c (mono_loader_set_error_type_load): Change the
16972         convention to always pass unallocated strings, so we make our own
16973         copies (I know our own code had duplicated strings before, but
16974         this keeps the normal conventions).
16975         (method_from_memberref): Call mono_loader_set_error_method_load
16976         for all possible failures of loading the class. 
16977         Remove assert, turn into a loader error.
16979         (mono_loader_error_to_exception): Move this routine from mini
16980         (mini_loader_error_to_exception) there was no need to have that in
16981         mini. 
16983         * class.c (mono_class_from_typeref): If we were not able to load
16984         the assembly with mono_assembly_load_reference, call the
16985         mono_loader_set_error_type_load to register the problem.
16987         (mono_class_setup_fields): If we fail to load the type from
16988         mono_metadata_parse_type_full, call mono_class_set_failure and
16989         break from the loop.
16991         If class->exception_type is set, we do not layout the fields as
16992         that might crash the runtime, and instead return (from breaking
16993         from the previous loop).
16995         (mono_class_setup_vtable): This now returns a boolean indicating
16996         whether the table was properly setup.   The decision is driven by
16997         mono_class_get_overrides_full which might run into non-existing
16998         methods. 
16999         
17000         (mono_class_init): Returns TRUE on success or FALSE if there was a
17001         problem in loading the type (incorrect assemblies, missing
17002         assemblies, methods, etc).
17004         When we call mono_class_setup_fields we also check for a potential
17005         error inside this call (either a class exception or a general
17006         loader exception).
17008         (mono_class_create_from_typedef): If the parent fails to load
17009         (calling mono_class_get_full) return NULL.
17010         
17011         ** Important **
17013         calls to mono_metadata_parse_type_full should be checked
17014         everywhere and set the mono_class_set_failure
17015         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17017         The current patch checks the places where my manually constructed
17018         tests show the errors are showing up, but we should do it
17019         everywhere. 
17021         ** Important2 **
17023         mono_class_init return values should be tested everywhere, like
17024         the previous case this is something that we should audit
17025         everywhere and not only on the cases exposed by the tests I
17026         created. 
17028 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17030         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17031         boolean parameter and instead pass the information on `options'
17032         parameter (FileOptions).
17034         * icall.c: Register the new signature for MonoIO.Open.
17036         * debug-helpers.c (dis_one): Trying to understand how coverity
17037         works.  Fix Run 5, item 78.
17039 2006-04-26  Dick Porter  <dick@ximian.com>
17041         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17042         dereference.
17044 2006-04-25  Martin Baulig  <martin@ximian.com>
17046         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17048         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17049         debugger_thread_created().
17050         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17051         special way.
17052         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17053         (mono_debugger_finalize_threads): New function; undo the effects
17054         of mono_debugger_init_threads().
17055         (mono_debugger_create_all_threads): Removed.
17057 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17059         * image.c (mono_image_close): Tidy up trace messages.
17061         * assembly.c (mono_assembly_close): Ditto.
17063         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17064         no longer references an already freed assembly. Fixes #78168.
17066 2006-04-21  Dick Porter  <dick@ximian.com>
17068         * threads.c (mono_thread_detach): Fix reference counting when
17069         detaching threads.
17071 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17073         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17074         #78155.
17076 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17078         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17079         (mono_type_to_stind): Ditto.
17081         * marshal.c: Use the new helper functions to simplify code.
17083         * image.c (mono_image_close): Add some code for help debug assembly unloading
17084         problems.
17086         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17087         image mempool.
17089         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17090         assembly was already loaded in another appdomain. Fixes #78083.
17092 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17094         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17095         referenced assemblies.
17096         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17098         * domain.c (mono_domain_free): Add a trace message.
17100         * appdomain.c (add_assemblies_to_domain): Ditto.        
17102         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17103         field.  
17105 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17107         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17109 2006-04-12  Martin Baulig  <martin@ximian.com>
17111         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17112         `USE_INCLUDED_LIBGC'.   
17114 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17116         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17117         the patch contains ../ and a small directory name later. Hopefully fixes
17118         #78035.
17120 2006-04-10  Martin Baulig  <martin@ximian.com>
17122         Clean up the debugger's thread-handling code.
17124         The debugger's thread-handling code has been moved from
17125         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17126         over the `threads' hash, keep track of exiting threads and also
17127         use proper locking.
17129         We can now debug XSP and XSP based applications with the debugger.
17131         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17133         * threads.h
17134         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17135         (mono_install_thread_callbacks): Likewise.      
17137         * threads.c (mono_thread_callbacks): Removed.
17138         (debugger_thread_created, debugger_thread_exited): New static functions.
17139         (start_wrapper): Call debugger_thread_created().
17140         (thread_cleanup): Call debugger_thread_exited().
17141         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17142         (mono_debugger_init_threads): New public function.
17143         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17144         iterate directly over the `threads' hash and also use proper locking.
17146         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17148         * mono-debug-debugger.h
17149         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17151 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17153         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17154         argument type=array. Fixes #78057.
17156 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17158         * culture-info-table.h : regenerated. Fixed bug #69652.
17160 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17162         * loader.c metadata.c: Reapply a variant r59116.
17163         
17164         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17166         * class.c (mono_class_setup_interface_offsets): New internal function.
17168         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17169         interfaces too. Fixes #77398.
17171         * reflection.c (encode_cattr_value): Add support for 
17172         parameter type=object, argument type=array.
17173         (load_cattr_value): Ditto. Fixes #77916.
17175         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17176         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17178         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17179         a byval char array and CharSet is Ansi.
17181         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17183 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17185         * metadata.c: Add some locking comments.
17186         
17187         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17188         mempool.
17189         (mono_metadata_free_method_signature): Don't free the signature itself.
17191         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17193         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17194         reference the same MonoImage.
17195         (mono_assembly_load_from_full): Add an assert.
17197 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17199         * image.c (mono_image_close): Don't put the image we are about to free into the
17200         loaded_images_guid_hash.
17202         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17203         to reduce code duplication.
17205         * marshal.c: Register the native functions called by this module as icalls, to
17206         somewhat centralize the creation of MonoMethodSignature's.
17208         * loader.c (mono_method_signature): Add a cache for method signatures.
17210         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17211         the parameter attributes of a method.
17212         (mono_metadata_parse_method_signature_full): Refactored the computation of
17213         parameter attributes into a separate function. Also avoid one allocation in
17214         most cases.
17216         * assembly.c (mono_assembly_close): Ditto.
17218         * image.c (mono_image_close): Log trace messages with INFO level.
17220         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17222         * image.c reflection.c: Correct reference counting of image modules.
17223         
17224         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17225         of this function from the image mempool.
17226         
17227         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17228         to allow more cached types to be used.
17230         * mono-debug.c (mono_debug_add_method): Appled patch from
17231         David S. Miller  <davem@sunset.davemloft.net>: Access 
17232         minfo->lexical_blocks[] entry elements using read32().
17234 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17236         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17237         methods as it is allocated from the mempool.
17239         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17240         image mempool.
17242         * metadata-internals.h: Add comments describing the reference counting scheme
17243         used for MonoImage and MonoAssembly.
17245         * image.c assembly.c reflection.c: Rework reference counting of images and 
17246         assemblies so they are freed when the runtime is shut down. Free some 
17247         additional memory structures when an image is unloaded.
17248         
17249 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17251         * class.c loader.c reflection.c: Allocate more data structures in
17252         the image mempool.
17254 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17256         * icall.c
17257         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17258         build on pre glib 2.4 systems.
17260 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17262         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17264         * icall.c: Fix some warnings.
17266 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17268         * culture-info-table.h : regenerated.
17270 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17272         * threads.c, object-internals.h, verify.c: changed the culture caching
17273         code to use a normal MonoArray for storage so the GC can keep track of
17274         them easily. Fixed bits of the cache logic, too and simplified the
17275         code.
17277 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17279         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17280         thread for non-Boehm GCs.
17282 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17284         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17285         needed to keep track of the data for static fields.
17287 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17289         Fix #75172
17290         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17291         for interface classes.  Use 'num_methods' instead.
17292         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17293         before using '->vtable_size' field.
17295 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17297         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17298         doesn't contain managed pointers, so use a normal hashtable.
17300 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17302         * reflection.c, class-internals.h, domain.c: fixed handling of types
17303         used as values for objects in custom attributes (bug #77915):
17305 2006-03-24  Martin Baulig  <martin@ximian.com>
17307         * class.c (mono_class_setup_fields): Added support for generic
17308         instances; fixes #77580.
17310 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17312         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17314 2006-03-24  Dick Porter  <dick@ximian.com>
17316         * file-io.c (get_file_attributes): More stat macro breakage.
17317         Fixes bug 77759.
17319 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17321         * profiler.c: added the file=filename option in the default profiler
17322         to output the profile data to filename.
17324 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17326         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17327         bug #77877.
17329 2006-03-22  Martin Baulig  <martin@ximian.com>
17331         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17332         allocated `MonoClassField *' in `fb->handle'.
17334 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17336         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17337         allocate interface ID to save memory and allow better ID reuse on
17338         appdomain unload. setup_generic_vtable () removal from Martin.
17340 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17342         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17343         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17344         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17345         write barriers for reference stores with managed objects accessed with
17346         C structures in the runtime and in embedding programs.
17348 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17350         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17351         'interface_id' and 'max_interface_id' fields of MonoClasses
17352         representing open generic types.
17354 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17356         * object.h, object.c, icall.c: added functions to deal with
17357         storing valuetypes that contain references in managed objects.
17358         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17359         fixes and comments around uses of mono_array_addr ().
17361 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17363         * object.h, icall.c, monitor.c: object.GetHashCode ()
17364         implementation that supports the moving garbage collector.
17366 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17368         * icall.c, threads-types.h, threads.c: implemented finalizer for
17369         LocalDataStoreSlot.
17371 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17373         * metadata.c (mono_type_size): Add a fixme.
17374         (mono_type_stack_size): Ditto.
17376         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17377         'type_forwarders' field.
17379         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17380         attribute from net 2.0.
17382         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17383         from class.c.
17385         * class.c (mono_class_setup_fields): Fix a warning.
17386         
17387         * class.c (mono_class_from_name): Add support for assemblyref entries
17388         in the EXPORTEDTYPE table.
17390         * reflection.c: Add support for handling type forwarders under net 2.0.
17392         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17393         
17394 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17396         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17397         overwriting entries in ModuleBuild->types, also clean up the code
17398         a little. Fixes #77774.
17400 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17402         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17403         load friend assembly info when present.
17405 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17407         Fix crasher on gtest-158.cs.
17408         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17409         the return value if the MonoClass we want is yet in an
17410         inconsistent state.
17411         * class.c (mono_class_create_from_typedef): Add an comment
17412         explaining an order dependency between mono_class_setup_parent and
17413         mono_class_setup_mono_type.
17415 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17417         * class.c: documentation updates and events bug fix.
17419 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17421         * class.c: some cleanup, locking fixes.
17423 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17425         * class.c: fix the generics code to setup nested
17426         type info to the instantiated type (bug #77770).
17428 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17430         * marshal.c: fixed a few type correctness issues.
17432 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17434         * loader.c: the Set/Get/Addrtess array methods should be public.
17436 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17438         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17439         
17440         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17441         info->wrapper.
17443 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17445         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17447         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17449         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17450         (mono_mempool_alloc0): Ditto.
17452 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17454         * socket-io.c:
17455         (create_object_from_sockaddr): it was allocating 4 extra bytes
17456         for the AF_UNIX data. Fixes bug #77747.
17458 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17460         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17462 2006-03-09  Dick Porter  <dick@ximian.com>
17464         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17465         Fixes bug 76966 again.
17467 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17469         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17470         names from r57532
17471         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17473 2006-03-07  Martin Baulig  <martin@ximian.com>
17475         * object.c
17476         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17478 2006-03-07  Martin Baulig  <martin@ximian.com>
17480         * class.c
17481         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17482         regression introduced in r56970; see gtest-252.cs.
17484         * loader.c (mono_get_method_constrained): Correctly handle generic
17485         methods; see gtest-253.cs.
17487 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17489         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17491 2006-03-04  Martin Baulig  <martin@ximian.com>
17493         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17494         compute the parent type at runtime, just like we're already doing
17495         it for interfaces.
17497         * reflection.c
17498         (mono_reflection_bind_generic_parameters): Don't compute the
17499         parent type anymore.
17501         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17503 2006-03-04  Martin Baulig  <martin@ximian.com>
17505         * mono-debug-debugger.h
17506         (mono_debugger_create_notification_function): Allocate memory at
17507         runtime and return a pointer to it.
17509 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17511         * assembly.c: Fix windows build.
17512         
17513         * assembly.c: Fix build.
17515         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17517         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17518         
17519 2006-03-03  Dick Porter  <dick@ximian.com>
17521         * process.c
17522         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17523         Check parameters before dereferencing them.  Fixes Aaron's part of
17524         bug 77393.
17526 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17528         Fix performance regression.
17529         * loader.c (find_method_in_class): Add 'from_class' argument.
17530         Rename 'klass' argument to 'in_class'.  The signature is compared
17531         against the method in 'in_class', and the corresponding method is
17532         returned from 'from_class'.
17533         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17534         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17535         type definition and generic instantiation in parallel.
17536         (mono_get_method_constrained): Update to changes.
17538 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17540         * threads.c: make sure the domain is correct, too when doing
17541         mono_thread_attach ().
17543 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17545         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17546         windows. Fixes #77683.
17548 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17550         * object.h, *: introduced specific way to set elements of an array
17551         of references to be used as write barrier. Still need to audit the
17552         uses of mono_array_addr.
17554 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17556         * object-internals.h: New field to cache the assmebly name, patch
17557         from Tambet Ingo (tambet@ximian.com)
17559 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17561         * decimal.h, class-internals.h, metadata-internals.h,
17562         file-io.h: mark a few function declarations as internal, to
17563         reduce the number of PLT entries.
17565 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17567         * file-io.c: fix typo in warning message.
17569 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17571         * loader.c: on unix, lookup the "*A" version of a function
17572         if charset is auto as a second option before failing.
17574 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17576         * class.h (mono_class_inflate_generic_method): Revert to two
17577         argument version.
17578         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17579         (mono_class_inflate_generic_method_full): Add.
17580         * class.c (mono_class_inflate_generic_method_full): Rename from
17581         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17582         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17583         * loader.c, reflection.c: Update to changes.
17585 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17587         * icall.c: const fixes and small improvements.
17589 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17591         * threadpool.c: for asynchronous connect(), enable the same workaround
17592         for BSD 6 as for the Mac. Fixes bug #77637.
17594 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17596         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17597         formatted classes. Fixes #77524.
17599 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17601         * class.c (inflate_generic_type): Add a couple more
17602         micro-optimizations.
17603         (inflate_generic_context): Don't use the 'gmethod' from
17604         'inflate_with'.
17605         (mono_class_inflate_generic_method): If the method has generic
17606         parameters, but the passed-in context doesn't have a 'gmethod',
17607         create one.  Use the possibly simplified generic instantiation
17608         from the declaring class instead of the one passed in.
17610 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17612         Make generic method signature and method header handling lazy.
17613         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17614         (inflate_generic_header): Likewise.
17615         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17616         parameter to avoid inflating types.
17617         (mono_get_inflated_method): Empty out.
17618         * class.h (mono_class_inflate_generic_method): Update to changes.
17619         * loader.c (mono_get_method_from_token): Don't parse signature for
17620         generic methods, nor methods of generic classes.
17621         (mono_method_signature): Rename from 'mono_method_signature'.
17622         Inflate signature on demand.
17623         (mono_method_get_header): Inflate method header on demand.
17624         * reflection.c: Update to changes.
17626 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17628         * metadata.c (mono_metadata_inflate_generic_inst): If the
17629         instantiation is closed, don't bother expanding it in the new
17630         context.
17631         * class.c (inflate_generic_class): If the generic instantiation
17632         doesn't change after inflation, return the argument itself.
17633         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17634         Add bounds checks.
17635         (inflate_generic_context): If neither the generic class nor the
17636         generic method instantiations change, return the original context.
17637         * reflection.c (mono_method_get_object): Do
17638         'mono_get_inflated_method' before accessing the ->klass field.
17639         (inflate_mono_method): Don't create a MonoGenericMethod unless
17640         necessary.
17641         (inflate_method): Don't pass a constructed type as the declaring
17642         type of a methodbuilder.
17644 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17646         * object.c: fix memory overwrite.
17648 2006-02-22  Dick Porter  <dick@ximian.com>
17650         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17651         it doesn't work any more.
17652         (mono_threads_request_thread_dump): Fix unused variable warnings.
17654 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17656         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17657         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17658         the public header file.
17660 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17662         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17664 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17666         * class-internals.h, object.c: reduce the size of MonoVTable
17667         and store the interface_offsets array at negative offsets.
17669 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17671         * metadata.c: tweak table descriptors data structures to reduce
17672         size and runtime relocations.
17674 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17676         * marshal.c: fix some types and opcodes to be type-safe
17677         in marshaling wrappers.
17679 2006-02-21  Ankit Jain  <jankit@novell.com>
17681         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17683 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17685         * metadata.c (get_constraints): Relax debugging checks for monodis.
17687 2006-02-21  Ankit Jain  <jankit@novell.com>
17689         * metadata.c (mono_metadata_load_generic_params): Move the code
17690         checking for ambiguous generic params from here to mono/dis/get.c
17691         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17693 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17695         Fix assertion triggered when compiling nemerle.
17696         * class.c (mono_get_shared_generic_inst): Rename from
17697         get_shared_inst and make non-static.
17698         * loader.c (mono_get_shared_generic_method): New.  Used to create
17699         the MonoGenericContext-equivalent of a MonoGenericContainer.
17700         (mono_get_method_from_token): Initialize the 'context' field of
17701         the created MonoGenericContainer.
17702         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17703         * metadata.c (get_constraints): Add sanity check.
17704         * class-internals.h: Add new internal methods.
17706         * reflection.c (verify_safe_for_managed_space): New sanity check.
17707         Currently checks that owner-less generic parameters aren't allowed
17708         in managed space.
17709         (mono_type_get_object): Use it.
17710         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17711         that are now in mono_type_get_object.
17712         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17714 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17716         * metadata.c (mono_type_create_from_typespec): Rename from
17717         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17718         argument and caching of types in the generic container.
17719         (unwrap_arrays, find_generic_param): Remove.
17720         * metadata-internals.h: Update.
17721         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17723 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17725         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17727         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17728         return values. Fixes #77581.
17730         * class.c (mono_fnptr_class_get): Switch name and name_space.
17732         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17733         classes and add support for [In, Out] attributes.
17734         (mono_marshal_free_asany): Ditto. Fixes #77524.
17736 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17738         * class.c (mono_class_from_generic_parameter): Make more robust to
17739         incomplete MonoGenericContainers from monodis.
17741 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17743         * class-internals.h: added some more exception types.
17744         * class.c, metadata.c: added a few checks to handle missing
17745         types.
17747 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17749         Use owner-less generic-params some more.
17750         * class.c (my_mono_class_from_generic_parameter): Remove.
17751         (mono_class_from_generic_parameter): Handle null image,
17752         param->name and param->owner.
17753         (mono_class_from_mono_type): Update.
17754         (mono_class_create_from_typespec): Remove 'container' parameter.
17755         If that parameter is non-null, the result is always inflated by
17756         'mono_class_get_full' anyway.
17757         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17758         parameter.
17759         (mono_class_get_full): Update.
17761         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17762         instance is not open, don't bother inflating.
17763         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17764         parse metadata for inflated classes.
17765         (_mono_class_get): Change GenericContext* parameter to
17766         GenericContainer*.
17767         (mono_class_create_from_typespec): Likewise.  Simplify, and
17768         implement trivially.  All the cases are handled in
17769         mono_class_from_mono_type.  Don't inflate returned class.
17770         (mono_class_get_full): Delegate GENERICINST optimization to
17771         inflate_generic_type.
17772         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17774 2006-02-16  Dick Porter  <dick@ximian.com>
17776         * socket-io.c (create_object_from_sockaddr): Fix typo.
17777         (create_sockaddr_from_object): Check array lengths before
17778         potentially accessing items off the end.
17779         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17780         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17781         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17782         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17783         length checks to avoid wraparound overflows.
17784         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17785         contents of the array of sockets
17786         (hostent_to_IPHostEntry2)
17787         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17788         Check return value of inet_ntop ().
17789         (addrinfo_to_IPHostEntry): Fix typo
17791 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17793         Type metadata parsing doesn't use generic-instantiation information.
17794         * metadata.c (mono_metadata_parse_array_full): Change
17795         MonoGenericContext* parameter to MonoGenericContainer*.
17796         (mono_metadata_parse_type_full): Likewise.
17797         (mono_type_create_from_typespec_full): Likewise.
17798         (mono_metadata_parse_mh_full): Likewise.
17799         (mono_metadata_parse_generic_inst): Likewise.
17800         (do_mono_metadata_parse_generic_class): Likewise.
17801         (do_mono_metadata_parse_type): Likewise.
17802         * metadata-internals.h: Update to changes.
17803         * class.c (mono_class_find_enum_basetype): Likewise.
17804         (mono_class_setup_fields): Likewise.
17805         (mono_class_create_from_typespec): Likewise.
17806         * loader.c (method_from_methodspec): Likewise.
17807         (mono_get_method_from_token): Likewise.
17808         (mono_method_get_header): Likewise.
17810 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17812         * marshal.c: handle additional GENERICINST case (patch from
17813         Thong Nguyen <tum@veridicus.com>).
17814         Fix a few cases where LDIND_I/STIND_I was used for references.
17816 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17818         * reflection.c (mono_reflection_get_token): Remove unused variable.
17820 2006-02-16  Martin Baulig  <martin@ximian.com>
17822         * reflection.c (mono_reflection_get_token): Add support for fields
17823         in instantiated generic types.
17825         * icall.c
17826         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17828 2006-02-15  Martin Baulig  <martin@ximian.com>
17830         * icall.c
17831         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17832         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17833         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17834         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17836 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17838         * class.c, metadata.c, metadata.h, object.c, icall.c,
17839         marshal.c: changed mono_type_get_underlying_type () to do
17840         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17841         Fixed handling of instantiated generic valuetypes (bug #75479).
17843 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17845         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17846         Delegate to mono_metadata_decode_value, and work on the returned value.
17848         * icall.c (ves_icall_MonoType_GetGenericArguments):
17849         Add consistency check here too.
17850         
17851 2006-02-15  Ankit Jain  <jankit@novell.com>
17853         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17854         char/short etc.
17856 2006-02-15  Ankit Jain  <jankit@novell.com>
17858         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17859         signed values, used only for representing lower bounds of arrays.
17860         (mono_metadata_parse_array_full): Use new
17861         mono_metadata_decode_signed_value to decode lower bounds.
17863 2006-02-14  Martin Baulig  <martin@ximian.com>
17865         * reflection.c
17866         (mono_reflection_get_token): Support "MonoGenericMethod" and
17867         "MonoGenericCMethod" and allow generic instances / methods.
17869 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17871         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17872         to obtain the terminal size using an ioctl.
17874         * object.c (mono_nullable_init): Revert this as nullable reference
17875         types are not valid.
17876         (mono_nullable_box): Ditto.
17878 2006-02-09  Dick Porter  <dick@ximian.com>
17880         * threads.c (mono_thread_detach): Drop a reference to the thread
17881         we're detaching.
17883 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17885         * object.c (mono_nullable_init): Handle nullable reference types.
17886         (mono_nullable_box): Ditto. Fixes #77446.
17888 2006-02-07  Martin Baulig  <martin@ximian.com>
17890         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17892 2006-02-07  Ankit Jain  <jankit@novell.com>
17894         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17895         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17896         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17897         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17898         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17899         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17901 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17903         * class.c (mono_class_create_generic): Set type_token as well.
17905         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17906         compatible with MS.
17908 2006-02-02  Martin Baulig  <martin@ximian.com>
17910         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17911         has never been used so far.
17913 2006-02-02  Martin Baulig  <martin@ximian.com>
17915         * mono-debug-debugger.h: Changed comment at the top of this file;
17916         the header is not installed, but it's safe to #include it from
17917         within the JIT.
17919         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17920         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17922 2006-02-02  Martin Baulig  <martin@ximian.com>
17924         * mono-debug.h
17925         (MonoSymbolTable): Removed the `metadata_info' field.
17927         * mono-debug.c
17928         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17930         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17931         (mono_debugger_add_builtin_types): Removed.
17932         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17933         (mono_debugger_create_notification_function): We now operate on a
17934         pre-allocated area; take a `gpointer' and return `void'.
17936         * mono-debug-debugger.c
17937         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17938         (mono_debugger_add_builtin_types): Removed.
17940 2006-02-02  Martin Baulig  <martin@ximian.com>
17942         * threads.c (mono_debugger_create_all_threads): New public method.
17944 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17946         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17947         breaks on several platforms.
17949 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17951         * assembly.c: the VS.NET build doesn't supply default values for
17952         MONO_ASSEMBLIES and MONO_CFG_DIR.
17954 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17956         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17957         helper function.
17959         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17961         * loader.c (method_from_memberref): Fix a warning.
17963         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17965         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17966         with explicit layout. Fixes #77433.
17968 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17970         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17971         max_interface_id is initialized before using it. Fixes #77398.
17972         (ves_icall_Type_GetInterfaces): Ditto.
17974 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17976         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17977         allocate memory for parameter attributes when parsing memberref
17978         signatures.
17979         * loader.c (mono_loader_set_error_method_load): Don't warn.
17980         (method_from_memberref): Ensure MissingMethodException gets thrown
17981         if method is not found.  Make warning more informative.
17983 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17985         Fix #77397
17986         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17987         return true if is byref.
17988         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17989         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17990         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17992 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17994         Fix tests/find-method.2.il
17995         * loader.c (find_method, find_method_in_class): Remove is_inflated
17996         argument.  Revert 2006-01-18 change.
17997         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17998         is generic, search for method in its generic definition.
17999         * class.c (mono_class_setup_vtable_general): Print generic
18000         arguments of generic types in debugging printf.
18002 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18004         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18006         * threads.c (mono_threads_request_thread_dump): New helper function.
18008 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18010         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18012 2006-01-25  Ankit Jain  <jankit@novell.com>
18014         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18015         move definition to ..
18016         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18017         
18018 2006-01-25  Ankit Jain  <jankit@novell.com>
18019             Raja R Harinath  <rharinath@novell.com>
18021         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18022         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18023         as necessary.
18025 2006-01-25  Martin Baulig  <martin@ximian.com>
18027         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18028         `MonoDebuggerThread' into debug-debugger.c.
18030 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18032         * profiler.c: fix printing of data.
18034 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18036         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18037           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18039 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18041         * object.c: fix deadlock related to string interning.
18043 2006-01-23  Martin Baulig  <martin@ximian.com>
18045         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18047         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18049 2006-01-23  Martin Baulig  <martin@ximian.com>
18051         * mono-debug.h: Moved the prototypes of some functions which are
18052         used by the JIT here from mono-debug-debugger.h.
18054 2006-01-21  Martin Baulig  <martin@ximian.com>
18056         * Makefile.am: Don't install mono-debug-debugger.h.
18058 2006-01-21  Martin Baulig  <martin@ximian.com>
18060         * mono-debug-debugger.h: Enforce the private status of this header
18061         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18062         Moved some stuff from mono-debugger-jit-wrapper.h here.
18064 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18066         * class.c (mono_class_from_typeref): Add a sanity test to help
18067         catch lack of assembly load/search hooks.
18069 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18071         * marshal.c (emit_struct_conv): Relax the fields with same offset
18072         check even more. Fixes #77230.
18074 2006-01-18  Martin Baulig  <martin@ximian.com>
18076         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18077         argument; if false, we compare the uninstantiated signatures.
18078         (method_from_memberref): Compare the uninstantiated signatures;
18079         fixes #76417.
18081 2006-01-18  Robert Jordan  <robertj@gmx.net>
18083         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18084         Clear the weak link. Fixes bug #77170.
18086         * gc.c (mono_gchandle_free):
18087         Reflect *-gc.c changes (tiny optimization).
18089 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18091         * metadata.c (mono_metadata_signature_dup): Applied patch from
18092         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18093         Fixes #77288.
18095 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18097         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18098         marshalling from native to managed code. Fixes #77230.
18100 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18102         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18103         connect. Fixes bug #77020.
18105 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18107         * class.c: fixed id assignement for nested interfaces (bug #77275).
18108         Added also better info for --print-vtable debugging.
18110 2006-01-12  Martin Baulig  <martin@ximian.com>
18112         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18113         interfaces on-the-fly; fixes #76625.
18115         * class-internals.h
18116         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18117         don't need that anymore.
18119 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18121         * socket-io.c
18122         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18123         To avoid initing the nested_classes when not needed I turned the
18124         PeerCredData as a toplevel internal class, as it has to be shared
18125         anyways. 
18127         Fixes the CASA issue.
18129 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18131         * domain.c: Accessors for MonoJitInfo
18133         * profiler-private.h: Add jitinfo to the end jit hook
18135         * profiler.[ch]: Define new hooks, called after jitting which give
18136         the MonoJitInfo that was compiled
18138 2006-01-10  Martin Baulig  <martin@ximian.com>
18140         * class.c (mono_class_setup_events): Add support for generic
18141         classes; fixes #76440.
18143 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18145         Fix #77160.
18146         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18147         on passed-in method.
18149 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18151         * object.c (mono_runtime_invoke_array): Add Nullable support.
18153         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18155 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18157         * file-io.c: Don't consider sockets as directory and avoid an endless
18158         loop. Fix bug #76966.
18160 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18162         * object.c (mono_nullable_init): New helper function.
18163         (mono_nullable_box): Ditto.
18165         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18167         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18169         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18170         
18171 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18173         * class.c (mono_class_is_assignable_from): Make T assignable to 
18174         Nullable<T>.
18176 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18178         * appdomain.c: Bump corlib version to 46.
18179         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18180         serialization purpose) and changed ves_icall_System_Reflection_
18181         Assembly_get_code_base signature to accept a boolean (to escape, or 
18182         not, the assembly code base).
18184 2005-12-23  Dick Porter  <dick@ximian.com>
18186         * icall.c: 
18187         * threads-types.h: 
18188         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18189         CreateEvent icall now returns "created" boolean parameter.
18191 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18193         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18194         #76967.
18196         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18197         when attr_klass is an interface. Fixes #77045.
18199 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18201         * marshal.c (emit_struct_conv): Fix previous patch.
18202         
18203         * marshal.c (emit_struct_conv): Add a check for fields with the same
18204         offset.
18206 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18208         Fix regression in Mono.C5.
18209         * class.c (mono_class_create_generic): If 'klass' is an interface
18210         set up the interface offsets.
18211         (mono_class_is_assignable_from): Don't throw away generic arguments.
18213 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18215         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18216         type parameters.
18218 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18220         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18221         dead store.
18222         (do_mono_metadata_parse_generic_class): Don't pass the current
18223         generic context when parsing the type being instantiated: it
18224         cannot use it, anyway.
18226         * loader.c (method_from_memberref): Don't inflate a signature if
18227         it doesn't contain any type parameters.
18229 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18231         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18233 2005-12-14  Martin Baulig  <martin@ximian.com>
18235         * class.c
18236         (mono_type_get_name_recurse): Don't return null for type
18237         parameters and open generic classes.
18238         (mono_class_setup_methods): Don't exclude generic instances.
18239         (mono_get_unique_iid): Use different IDs for different
18240         instantiations of the same generic type.
18241         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18242         open generic instances; create a normal vtable for closed generic
18243         instances.
18244         (mono_class_setup_vtable_general): We're now also called for
18245         closed generic instances.
18247         * reflection.c
18248         (mono_reflection_bind_generic_parameters): Correctly use
18249         mono_metadata_lookup_generic_inst() everywhere.
18251 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18253         * object.c (mono_class_create_runtime_vtable): Call 
18254         mono_class_setup_vtable ().
18256         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18257         function.
18258         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18259         #76959.
18261         * loader.c (mono_loader_set_error_type_load): Print the type load
18262         warnings to the console so they are more visible to the user.
18263         (mono_loader_set_error_method_load): Ditto.
18265         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18266         is still broken.
18267         
18268         * reflection.c (ensure_runtime_vtable): Fix build.
18270         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18271         doesn't work in all cases.
18273 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18275         * object.c (mono_array_new_full): Treat a single dimensional array
18276         with 0 lower bounds as an szarray. Fixes #76973.
18278         * reflection.c (custom_attr_visible): Really fix this.
18280 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18282         * reflection.c (custom_attr_visible): Allow nested public attributes
18283         as well.
18285         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18286         interface check.
18288 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18290         * class.c (set_generic_param_owner): Delete.
18291         (mono_class_create_from_typedef): Don't set ->owner field of
18292         generic parameters to "param containers" of enclosing classes.
18293         * reflection.c (mono_reflection_initialize_generic_parameter):
18294         Likewise.
18296 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18298         * reflection.c (custom_attr_visible): Fix build.
18300 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18302         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18303         private attributes.
18304         
18305         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18306         handling of null parameter defaults.
18308 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18310         * class.c (mono_class_from_generic_parameter): Don't set
18311         klass->generic_container.
18312         (my_mono_class_from_generic_parameter): Likewise.
18314 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18316         * reflection.c (load_public_key): Fix a warning.
18317         (method_encode_code): Fix unaligned accesses.
18319 2005-12-07  Martin Baulig  <martin@ximian.com>
18321         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18323         * reflection.c
18324         (write_generic_param_entry): Encode our custom attrs.
18326         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18328 2005-12-07  Martin Baulig  <martin@ximian.com>
18330         * reflection.c (encode_new_constraint): Removed; we don't use the
18331         `NewConstraintAttribute' anymore.
18333 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18335         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18336         not fire a TypeResolve event when Assembly.GetType () is called.
18338 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18340         Beginning of support for nullable types in the runtime. Parts of
18341         this patch are from Martin.
18343         * appdomain.c (MONO_CORLIB_VERSION): Bump
18345         * domain.c (mono_init_internal): get the nullable type
18347         * class.c (mono_class_is_nullable): New method
18348         (mono_class_get_nullable_param): New mehod
18349         (mono_class_create_generic): In types T? set cast_class to T
18351         * class-internals.h (MonoDefaults): new nullable default class
18352         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18353         new methods.
18355 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18357         * metadata.c (select_container): New.  Refactor code to select the
18358         appropriate GenericContainer given the type of generic parameter
18359         we are looking for.
18360         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18361         not a MonoGenericContext.  Use select_container.  Update parameters.
18362         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18363         and MONO_TYPE_MVAR.
18364         (unwrap_arrays): Remove duplicate tests.
18365         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18366         generic instantiated class to find any arguments that are generic
18367         parameters.
18368         (mono_type_create_from_typespec_full): Use find_generic_param to
18369         avoid evicting some generic instantiations from the typespec
18370         cache.
18372 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18374         * reflection.c: fixed writing of doubles on ARM FPA.
18376 2005-12-02  Robert Jordan  <robertj@gmx.net>
18378         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18380 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18382         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18383         least on SUSE 10 they are not the same (on debian, they are just the
18384         same thing).
18386 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18388         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18389         DeclaringType for VARs and MVARs.
18390         * class.c (set_generic_param_owner): Fix initialization of owner
18391         fields.
18393 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18395         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18397 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18399         * threadpool.c: workaround for a bug that shows up on the Mac:
18400         select()+connect() on a blocking socket is not like it should
18401         be, so we proceed to connect() in that case, wasting the I/O
18402         threadpool thread until connect succeedes. Fixes bug #75436.
18404 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406         * threadpool.c: fix typo when setting file descriptor states.
18408 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18410         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18411         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18412         create a temporary signature container.
18413         (mono_metadata_parse_generic_param): Update to changes.
18414         (mono_type_create_from_typespec_full): Update to changes.
18415         * loader.c (method_from_memberref): Don't use a
18416         MonoGenericContainer while parsing a memberref signature.
18417         (method_from_methodspec): Remove dead-store of the 'container'
18418         variable.  It's overwritten before use.
18420         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18421         checks tighter.
18422         (mono_metadata_parse_generic_param): Likewise.
18423         * loader.c (find_method_in_class): Does not need a
18424         MonoGenericContainer.  Use 'mono_method_signature' rather than
18425         'mono_method_signature_full'.
18426         (find_method, mono_get_method_constrained, method_from_memberref):
18427         Update to changes.
18429         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18430         owner-less generic-parameters are never evicted from the typespec
18431         cache.
18433         * loader.c (method_from_memberref): Don't use the current context
18434         when parsing signatures.
18435         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18437         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18438         side-effects in g_assert.
18439         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18440         that we don't potentially lose information.
18442 2005-11-26  Dick Porter  <dick@ximian.com>
18444         * icall.c:
18445         * threads.c: icalls to implement basic (ie, not named)
18446         System.Threading.Semaphore.
18448 2005-11-24  Dick Porter  <dick@ximian.com>
18450         * process.c
18451         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18452         Use GetProcessId() if it's available.
18454 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18456         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18458 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18459             Ankit Jain  <jankit@novell.com>
18461         * loader.c (mono_get_method_from_token): Initialize 'method' field
18462         of all generic parameters before parsing the signature.  Remove
18463         code that "fixed"-up MVAR references.
18465 2005-11-23  Ankit Jain  <jankit@novell.com>
18467         * metadata.c (mono_metadata_has_generic_params):
18468         (mono_metadata_load_generic_param_constraints):
18469         (mono_metadata_load_generic_params): Move duplicate code ...
18470         (mono_metadata_get_generic_param_row): ... here. Returns the
18471         first row-id in GenericParam table for a given owner (token).
18472         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18473         prototype.
18475 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18476             Ankit Jain  <jankit@novell.com>
18478         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18479         comparing VARs too.
18480         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18481         type->data.generic_param only if the type is an MVAR.
18482         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18483         leak owner-less VARs and MVARs into managed space.
18485 2005-11-21  Martin Baulig  <martin@ximian.com>
18487         * class-internals.h
18488         (MonoMethod): Moved the `generic_container' here from
18489         `MonoMethodNormal' since we now also need it for
18490         `MonoMethodPInvoke';
18491         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18492         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18493         an union containing both `MonoMethodNormal' and
18494         `MonoMethodPInvoke'.
18496         * loader.c
18497         (mono_get_method_from_token): Allow implementing generic methods
18498         as interncalls.
18500         * threads.c
18501         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18502         icall.
18504 2005-11-17  Dick Porter  <dick@ximian.com>
18506         * icall.c: 
18507         * process.h: 
18508         * process.c: Split the Process Start_internal icall into
18509         ShellExecuteEx_internal and CreateProcess_internal, which are
18510         called depending on whether UseShellExecute is true.  Fixes bug
18511         76670.
18513         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18515 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18517         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18518         'msize' parameters, use the information in 'mspec' instead.
18519         (emit_object_to_ptr_conv): Ditto.
18521         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18522         fields out of order. Fixes #76733.
18524 2005-11-17  Ankit Jain  <jankit@novell.com>
18526         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18528 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18530         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18531           bug #76575.
18533 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18535         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18536         for types with non-auto layout. Fixes #76717.
18538 2005-11-16  Ankit Jain  <jankit@novell.com>
18540         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18541         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18542         if generic_context is null.
18543           (mono_metadata_generic_param_equal): param->owner can be null.
18544           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18545         null.
18547 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18549         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18550         the correct value.
18552 2005-11-15  Martin Baulig  <martin@ximian.com>
18554         * object.c (set_value): Use mono_class_from_mono_type() instead of
18555         the hack for generic instances; fixes #76136.
18557 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18559         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18560         fields.
18562         * image.c (load_metadata_ptrs): Initialize the new fields.
18564         * reflection.c (create_dynamic_mono_image): Ditto.
18566         * reflection.c (build_compressed_metadata): Use the new fields.
18568         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18569         icall.
18571         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18572         icall.
18573         
18574 2005-11-15  Ankit Jain  <jankit@novell.com>
18575             Raja R Harinath  <harinath@gmail.com>
18577         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18578         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18579         new per-generic_container cache if the cached MonoType's context matches
18580         the current context.
18581           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18582         to the expected context.
18583           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18585 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18587         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18588         we changed the signature of an icall.
18589         * icall.c: Modify to mono_double_ParseImpl return true/false 
18590         depending on the success, instead of throwing the exception. This will
18591         help us in Double.TryParse methods.
18592         
18593 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18595         * marshal.c (emit_marshal_object): Throw an exception when
18596         marshalling 'object' instead of crashing. Fixes #76696.
18598 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18600         * class-internals.h: Add prototype for mono_type_get_full_name ().
18602 2005-11-11  Dick Porter  <dick@ximian.com>
18604         * threads.c (mono_thread_manage): Make sure the main thread has
18605         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18607 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18609         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18610         console about the missing type.
18611         (mono_loader_set_error_method_load): Ditto.
18613 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18615         * mono-config.c (mono_get_config_dir): Set the system defaults if
18616         none is specified.
18618         * assembly.c (mono_set_dirs): New API entry point to set the
18619         assembly and the config directory in one call
18621 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18623         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18624         the ftnptr was created from a delegate in a domain other than the
18625         current domain. Fixes #75377.
18627         * exception.h exception.c: Add mono_get_exception_not_supported ().
18629 2005-11-08  Martin Baulig  <martin@ximian.com>
18631         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18633 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18635         * security-manager.h: Added definitions to deal with strongname key 
18636         pairs bigger (and smaller) than 1024 bits.
18637         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18638         adjust wrt the public key length being used.
18640 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18642         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18643           Windows build (r51396-51397).
18645 2005-11-03  Martin Baulig  <martin@ximian.com>
18647         * class.c (mono_class_setup_vtable_general): Also add generic
18648         methods to the vtable; fixes #76581.
18650 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18652         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18653         sure that we lookup GetString method from the System.Text.Encoding
18654         class, not the derived class or we get an empty method.
18656         Fixed class #76612.
18658 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18660         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18661         if it has been previously set (embedders). 
18663         Make mono_set_rootdir available also on Unix.
18665 005-10-24  Robert Jordan  <robertj@gmx.net>
18667         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18669 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18671         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18672         only calls which are made to native code use this flag.
18674         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18676 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18678         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18679         Add support for FieldBuilders.
18681 2005-10-29  Martin Baulig  <martin@ximian.com>
18683         * mono-debug.c
18684         (mono_debug_using_mono_debugger): New public method; returns
18685         whether we're running inside the debugger.
18687 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18689         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18690         for Method/Constructor/FieldBuilders.
18692 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18694         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18695         and fields as well.
18697 2005-10-26  Martin Baulig  <martin@ximian.com>
18699         * mono-debug-debugger.c
18700         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18702 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18704         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18705         integer to isspace.
18707 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18709         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18710         when passing valuetypes byref. Fixes #76502.
18712 2005-10-19  Jackson Harper  <jackson@ximian.com>
18714         * profiler.c: Don't put a . in front of types that are not in a
18715         namespace.
18717 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18719         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18721 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18723         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18724         #76436.
18725         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18727 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18729         * assembly.c metadata-internals.h icall.c: Define an additional
18730         parameter for mono_assembly_name_parse_full, so we can avoid creating
18731         S.R.AssemblyName.Version when no version info wasn't passed.
18732         
18733 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18735         * class.c (mono_type_get_full_name): Reimplement method that was
18736         removed. 
18738         * image.c: Some docs
18740 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18742         * profiler.c (output_newobj_profile): Fix printing of Total memory
18743         on x86.
18745 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18747         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18749 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18751         * threads.c: remove debug output.
18753 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18755         * threads.c (mono_thread_manage): Fix crashes if more than 64
18756         threads need to be aborted. Hopefully fixes #75899.
18758         * assembly.c (mono_stringify_assembly_name): New helper function.
18760         * class.c: Use mono_stringify_assembly_name instead of the similar
18761         static function.
18763         * assembly.h assembly.c: Add support for calling a postload search 
18764         hook if an assembly cannot be loaded.
18766         * appdomain.c: Register new search hooks which call the AssemblyResolve
18767         events in AppDomain. Fixes #75231
18769 2005-10-07  Martin Baulig  <martin@ximian.com>
18771         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18772         methods without debug info.
18774 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18776         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18777         wrappers.
18779 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18781         * file-io.c: now that we return symlinks, use lstat and, when the file
18782         is a symbolic link, stat, to get the file attributes. Also avoid the
18783         conversion to/from utf16/external.
18785 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18787         * class.c (mono_class_layout_fields): Compute klass->has_references
18788         correctly if an embedded valuetype is not yet initialized. Fixes
18789         #76331.
18791 2005-10-04  Martin Baulig  <martin@ximian.com>
18793         * metadata.c
18794         (mono_metadata_load_generic_param_constraints): New public
18795         function; splitted the constraints loading out from
18796         mono_metadata_load_generic_params().
18798         * class.c (mono_class_create_from_typedef): Call
18799         mono_metadata_load_generic_param_constraints() after setting up
18800         the type and creating our parent; fixes #75329.
18802 2005-10-04  Martin Baulig  <martin@ximian.com>
18804         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18805         non-dynamic parent classes.
18807 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18809         * file-io.c : win32 build fix (ETXTBSY seems not found).
18811 2005-10-04  Martin Baulig  <martin@ximian.com>
18813         * reflection.c
18814         (mono_image_get_methodspec_token): Make the cache actually work;
18815         fixes #75974.
18817 2005-10-04  Martin Baulig  <martin@ximian.com>
18819         * class.c (mono_class_name_from_token): Removed the unneccessary
18820         `MonoGenericContext *' argument.
18822 2005-10-04  Martin Baulig  <martin@ximian.com>
18824         * loader.c
18825         (method_from_methodspec): Make the caching work again; fixes the
18826         performance regression from #76262.
18828 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18830         * file-io.c:
18831         * file-io.h:
18832         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18833         GetFileSystemEntries that performs the same work but without going
18834         into io-layer, locking, etc.
18836 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18838         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18839         ThreadState_Stopped as well. Fixes #76047.
18841 2005-09-29  Martin Baulig  <martin@ximian.com>
18843         * class.c
18844         (inflate_generic_context): If the new context has a `gmethod', set
18845         its `container' that that gmethod's `container'.
18847         * metadata.c
18848         (mono_metadata_parse_generic_param): Simplify things;
18849         `generic_container = generic_context->container;' is just fine.
18851         * loader.c (method_from_methodspec): Code cleanups.
18853 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18855         * decimal.c: fix warning (and let gcc generate correct
18856         code on ARM with optimizations).
18858 2005-09-28  Martin Baulig  <martin@ximian.com>
18860         * loader.c
18861         (method_from_memberref): Added `MonoGenericContext *class_context'
18862         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18863         (method_from_methodspec): If we're a memberref, use the enclosing
18864         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18866 2005-09-28  Martin Baulig  <martin@ximian.com>
18868         * object.c (mono_runtime_invoke_array): Added support for
18869         MONO_TYPE_GENERICINST; fixes #75917.
18871 2005-09-27  Martin Baulig  <martin@ximian.com>
18873         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18874         `k->byval_arg.type' to determine the actual type.
18876         * loader.c (method_from_methodspec): Removed some hacks.
18878 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18880         * class-internals.h (mono_field_is_deleted): Do the test for
18881         rtspecialname before we check the actual name of the field. This
18882         prevents us from dereferencing a pointer into the string table,
18883         saving us from accessing a few pages
18885         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18886         macros. This will allow a deadlock debugger to easily be plugged
18887         in.
18889 2005-09-27  Martin Baulig  <martin@ximian.com>
18891         * loader.c (method_from_methodspec): Create a "signature"
18892         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18894 2005-09-27  Martin Baulig  <martin@ximian.com>
18896         * class.c
18897         (inflate_generic_class): Correctly set the new context's
18898         container.
18900         * loader.c
18901         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18902         instead of a `MonoGenericContext *'.
18903         (mono_method_signature_full): Take a `MonoGenericContainer *'
18904         instead of a `MonoGenericContext *'.
18906         * metadata.c
18907         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18908         instead of a `MonoGenericContext *'.
18909         (mono_metadata_parse_method_signature_full): Likewise.
18911 2005-09-26  Martin Baulig  <martin@ximian.com>
18913         * class.c
18914         (mono_class_from_generic_parameter): Set `klass->generic_container'
18915         (mono_class_from_generic_parameter): Likewise.
18916         (mono_bounded_array_class_get): We inherit the generic container
18917         from the element class.
18919         * loader.c
18920         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18921         argument rather than computing it here.
18922         (method_from_memberref): Correctly set the generic context before
18923         parsing the signature.  Fixes #75681.
18925 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18927         * object.c (mono_class_has_special_static_fields): Fix warnings.
18929 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18931         * assembly.c: Add parse_public_key function, to
18932         par the public keys. Also added mono_assembly_name_parse_full,
18933         to define it the parsed key should be freed or not.
18934         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18935         to parse a long format assembly name.
18936         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18937         private, since calling it to preserve the key requires
18938         freeing it manually.
18939         
18940 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18942         * locales.c : removed HAVE_ICU part.
18944 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18946         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18947         field_is_special_static if the klass has no special static fields.
18949         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18950         (MonoCachedClassInfo): Likewise.
18952         * object.c (mono_class_has_special_static_fields): New helper function.
18954 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18956         * class.c (mono_class_create_from_typedef): Don't call 
18957         interfaces_from_typedef_full for enums.
18958         (mono_class_create_from_typedef): Compute the base types of enums directly
18959         without calling mono_class_setup_fields ().
18960         (mono_class_find_enum_basetype): New helper function.
18962         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18963         one place inside the string heap.
18964         
18965 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18967         * class.c: locking fixes, code cleanups, some docs added.
18968         Allocate some data structures in the image mempool.
18970 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18972         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18973         the example code.
18974         
18975 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18977         * class-internals.h, class.c, reflection.c: reduce memory taken by
18978         MonoClass.
18980 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18982         * metadata.c, metadata.h, loader.h: documentation updates, code and
18983         API cleanups.
18985 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18987         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18988         the example code.
18990         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18991         page faults caused by the runtime while reading metadata.
18993 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18995         * socket-io.c: the field names were changed 3 months ago and no one
18996         realized until bug #76077 got filed!
18998 2005-09-20  Martin Baulig  <martin@ximian.com>
19000         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19002 2005-09-20  Martin Baulig  <martin@ximian.com>
19004         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19005         write the rank into the class entry.
19007 2005-09-20  Martin Baulig  <martin@ximian.com>
19009         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19011 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19013         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19015         * icall.c (custom_attrs_defined_internal): New icall.
19017         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19018         function.
19019         (mono_custom_attrs_construct_by_type): New helper function.
19021 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19023         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19024         terminate the resulting string. Fixes #76123.
19026 2005-09-16  Martin Baulig  <martin@ximian.com>
19028         * mono-debug.c
19029         (mono_debug_add_method): Ignore inflated methods for the moment.
19031 2005-09-14  Martin Baulig  <martin@ximian.com>
19033         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19035 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19037         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19038         return a success/failure indication.
19039         (mono_metadata_interfaces_from_typedef_full): Ditto.
19040         (get_constraints): Ditto.
19042 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19044         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19045         
19046         * marshal.c (emit_marshal_array): Add support for returning string
19047         arrays from delegates. Fixes #76063.
19049         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19051 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19053         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19054         icall.
19056 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19058         * reflection.c icall.c: Fix after mono_get_exception_type_load
19059         signature change.
19061         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19062         (mono_assembly_load_reference): Use the new helper.
19064         * class-internals.h (MonoLoaderError): New structure containing 
19065         information about type loading errors.
19067         * class-internals.h loader.c: Add APIs to store per-thread loader
19068         error information.
19070         * loader.c class.c: Set the loader error if needed.
19072         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19074 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19076         * decimal.c: fixed to handle the broken ARM fp format.
19078 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19080         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19081         broken.
19083 2005-09-06  Martin Baulig  <martin@ximian.com>
19085         * domain.c (supported_runtimes): Added v2.0.50727.
19087 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19089         * culture-info.h: reduce the size of some structures.
19091 2005-09-05  Martin Baulig  <martin@ximian.com>
19093         Reflect latest API changes in the August CTP.
19095         * icall.c
19096         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19097         ("MonoType.HasGenericArguments"): Removed.
19098         ("MonoMethod.BindGenericParameters"): Renamed to
19099         "MakeGenericMethod".
19100         ("MethodBuilder.BindGenericParameters"): Renamed to
19101         "MakeGenericMethod".    
19103 2005-09-05  Martin Baulig  <martin@ximian.com>
19105         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19107 2005-09-05  Martin Baulig  <martin@ximian.com>
19109         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19111         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19112         generic_container is non-NULL.
19114 2005-09-05  Martin Baulig  <martin@ximian.com>
19116         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19118         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19120 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19122         * reflection.c (encode_locals,
19123         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19124         for large generic types.
19126 2005-09-05  Martin Baulig  <martin@ximian.com>
19128         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19130         * class.c (mono_dup_array_type): New public method.
19131         (mono_metadata_signature_deep_dup): New public method.
19132         (dup_type): Correctly duplicate array and function types.
19134 2005-09-05  Martin Baulig  <martin@ximian.com>
19136         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19138         * reflection.c (get_default_param_value_blobs): Handle generic types
19139         and generic methods.
19141 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19143         * class.c: Fixed error reporting (method/class were inversed) for 
19144         inheritance demands.
19145         * security-manager.c|h: Added the AppDomain when calling the managed
19146         System.Security.SecurityManager.InheritanceDemand method.
19148 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19150         * reflection.c (encode_marshal_blob): 'marshaltype' and
19151         'marshaltyperef' are alternate sources for the custom marshaler
19152         name.
19154 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19156         * class.c: fix creation of array classes with rank == 1
19157         (patch by Ankit Jain <jankit@novell.com>).
19159 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19161         * object.c: fix check for creating the bound data for arrays vs
19162         szarrays.
19164 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19166         * object.c: configuration file name is now based on the executable name,
19167         not the image name. Fixes bug #75931.
19169 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19171         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19172         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19174 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19176         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19178 2005-08-24  Ankit Jain  <jankit@novell.com>
19179             Raja R Harinath  <rharinath@novell.com>
19181         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19182           called by it recursively.
19183           (mono_class_init): Remove special case in pending_init handling, since it's
19184           superseded by the fix to mono_class_from_typeref.
19186 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19188         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19189         BROKEN_THREAD_START stuff.
19191 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19193         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19194         trampoline.
19196         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19197         
19198         * object.c (mono_delegate_ctor): Replace the original function address with
19199         a delegate trampoline.
19201 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19203         * icall.c: add boolean argument to base64_to_byte_array and 
19204         InternalFromBase64String to control whether a whitespace-only string
19205         is allowed (or should casue a FormatException to be thrown). We need
19206         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19207         to match the MS behaviour in both profiles.
19208         * appdomain.c: Bump corlib version.
19210 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19212         This patch implements a big portion of publisher policy
19213         support, used to bind assembly versions and redirect
19214         one assembly from version A to version B.
19216         * assembly.c:
19217         New GSList loaded_assembly_bindings, for storing the cached
19218         assembly bindings.
19219         (assembly_binding_maps_name): New static function for checking if a 
19220         assembly binding information maps an assembly name.
19221         (mono_assembly_binding_info_free): New function for freeing
19222         assembly binding information resources.
19223         (get_publisher_policy_info): New static function for retrieving 
19224         assembly binding information from a MonoImage.
19225         (compare_versions): New static function for comparing an assembly
19226         binding information data and the version of an assembly name.
19227         (check_policy_versions): New static function for checking if an
19228         assembly binding info mapping an assembly name is valid for it.
19229         (mono_assembly_load_publisher_policy): New static function for
19230         loading the 'policy.major.minor.MyAssembly' image for an assembly
19231         with an assembly name 'aname'.
19232         (mono_assembly_bind_version): New static function for updating
19233         assembly redirection.
19234         (mono_assembly_apply_binding): New static function for applying
19235         assembly binding.
19236         (search_binding_loaded): New static function for searching 
19237         loaded assembly binding infos in the cache domain.
19238         (mono_assembly_load_full): Don't apply assembly binding for
19239         reflection only assemblies.
19241         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19242         which contains information about assembly binding. Also
19243         declare signature for mono_config_parse_publisher_policy ()
19244         function, used to retrieve pub policy info.
19245         
19246         * mono-config.c:
19247         (publisher_policy_start): New static function used to parse publisher 
19248         policy config files.
19249         (publisher_policy_parser): New static MonoParseHandler containing 
19250         the functions used when parsing config files.
19251         (mono_config_parse_publisher_policy): New function for parsing
19252         publisher policy files.
19253         
19254 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19256         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19258         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19260         * object.c (mono_get_addr_from_ftnptr): New helper function.
19262         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19264         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19266 2005-08-19  Dick Porter  <dick@ximian.com>
19268         * threads.c, threads.h, appdomain.c, appdomain.h,
19269         profiler-private.h, monitor.c, object.c, object-internals.h,
19270         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19271         store the thread ID, so it can hold a 64 bit value if needed.
19273 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19275         * reflection.c (mono_reflection_create_dynamic_method): Store the
19276         handle class into the method references as well so ldtoken works in
19277         dynamic methods.
19279         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19280         types.
19282 2005-08-19  Ankit Jain <jankit@novell.com>
19284         Fix #75847.
19285         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19286           here rather than using the method signature of a arbitrary function
19287           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19288           two arguments.
19289           Hack done with Harinath.
19291 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19293         * threadpool.c: disable printing stack traces when we get a exception
19294         in a threadpool thread. I need to do more testing to figure out which
19295         cases actually print this. Fixes bug #75828.
19297 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19299         * icall.c: there might be ignored whitespace after the last '='. This
19300         fixes length computation and bug #75840.
19302 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19304         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19305         well. Fixes #75809.
19307         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19308         #75784.
19309         
19310         * reflection.c (create_custom_attr_data): Ditto.
19312 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19314         * locales.c, culture-info.h : removed RegionLCIDMap.
19315         * culture-info-tables.h : regenerated.
19317 2005-08-16  Martin Baulig  <martin@ximian.com>
19319         * class.c (mono_type_get_name_recurse): Small fix.
19321 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19323         * locales.c : indentation fixie.
19325 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19327         * object-internals.h,
19328           locales.h,
19329           locales.c,
19330           culture-info.h,
19331           icall.c : added RegionInfo table support.
19332         * culture-info-table.h : regenerated for region support.
19334 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19336         * reflection.c (resolve_object): handle all kinds of MonoMethod
19337         including generic ones
19339 2005-08-12  Ankit Jain <jankit@novell.com>
19341         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19342           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19344 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19346         * process.c: Don't close a thread handle when it's NULL. This is a
19347         workaround for bug #75733.
19349 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19351         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19353 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19355         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19357 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19359         * threadpool.c: if a work item in the thread pool has a callback that
19360         catches a exception, don't propagate it after invoking the callback.
19361         Fixes bug #75336.
19363 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19365         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19367         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19369         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19371         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19373 2005-08-03  Ankit Jain  <jankit@novell.com>
19375         Fix #75683.
19376         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19377           PInvoke calling convention is 0.
19379 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19381         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19382         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19384 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19386         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19387         to handle threads not started by the GC (patch by Michael Meeks
19388         <michael.meeks@novell.com>).
19390 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19392         * reflection.c: Make buffer used in emitting types larger for some
19393         big generic types (patch by Michal Moskal).
19395 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19397         * mono-debug.c: Fix some (not all) alignment problems.
19399 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19401         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19402         Invoke mono_image_load_from_data_full passing the refonly
19403         parameter.
19405         * assembly.c
19406         (mono_assembly_open_from_bundle): Add the refonly argument, 
19407         in order to pass it to other methods it calls to.
19408         (do_mono_assembly_open): Add the refonly argument, in order 
19409         to pass it to other methods it calls to.
19410         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19411         the refonly parameter to it.
19413         * image.c: Add loaded_images_refonly_hash and
19414         loaded_images_refonly_guid_hash to cache the reflection
19415         only loaded images.
19416         (mono_images_init): Initialize the hash tables used for
19417         caching the reflection only images.
19418         (load_modules): Invoke mono_image_open_full passing the refonly
19419         parameter to load the modules the correct way.
19420         (build_guid_table): Add the refonly argument, to re-build the 
19421         correct hash table.
19422         (do_mono_image_open): Added the refonly argument, in order to
19423         define it for the loaded image.
19424         (mono_image_loaded_full): New function, which receives an
19425         additional parameter to look for the image in the refonly or
19426         non-refonly section.
19427         (mono_image_loaded): Updated, using mono_image_loaded_full.
19428         (mono_image_loaded_by_guid_full): The same case that happens
19429         with mono_image_loaded_full.
19430         (mono_image_loaded_by_guid): Likewise.
19431         (register_image): Use the ref_only variable inside MonoImage
19432         to decide in which hash table store the current image.
19433         (mono_image_open_from_data_full): Rename
19434         mono_image_open_from_data to mono_image_open_from_data_full,
19435         adding the refonly argument, to define the ref_only variable 
19436         inside MonoImage.
19437         (mono_image_open_from_data): Return 
19438         mono_image_open_from_data_full.
19439         (mono_image_open_full): Rename mono_image_open to
19440         mono_image_open_full, receiving the new refonly argument,
19441         to pass it to inner methods.
19442         (mono_pe_file_open): Update this function, to open
19443         a MonoImage as a non-refonly image.
19444         (mono_image_close): Use the refonly variable inside
19445         MonoImage to remove the image from the correct caches.
19447         * image.h: Add the signatures of mono_image_open_full,
19448         mono_image_open_from_data_full, mono_image_loaded_full,
19449         mono_image_loaded_by_guid_full.
19451         * metadata-internals.h: Add the ref_only field to 
19452         MonoImage.
19453         
19454 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19456         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19457         Fix the last behavior, which used to load the assemblies and
19458         extract MonoReflectionAssemblyName information, instead of
19459         extract it from the metadata tables. Needed for Reflection
19460         Only assemblies.
19461         
19462 2005-07-29  Martin Baulig  <martin@ximian.com>
19464         * mono-debug-debugger.c
19465         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19466         not initialized.
19468         * mono-debug.c
19469         (mono_debug_address_from_il_offset): Check whether we have
19470         debugging support before attempting to take the lock.
19471         (mono_debug_source_location_from_address): Likewise.
19472         (mono_debug_source_location_from_il_offset): Likewise.
19473         (mono_debug_il_offset_from_address): Likewise.
19474         (mono_debug_address_from_il_offset): Likewise.
19476 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19478         * class.c (mono_class_from_name_case): Add support for dynamic images.
19479         Fixes #75650.
19481         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19482         for #75479.
19484 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19485         
19486         * reflection.c (mono_method_get_object): Fix warning.
19488 2005-07-28  Martin Baulig  <martin@ximian.com>
19490         * mono-debug.c
19491         (mono_debug_add_wrapper): Also write the wrapper type.
19493 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19495         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19496         
19497         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19498         data indicates the class has none.
19500 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19502         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19503         loader lock with the debugger lock. Prevents deadlocks for beagle.
19505         Beagle can now run on an smp box for a weekend without any
19506         issues. Woohoo!
19508 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19510         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19511         in a module. Fixes #75629.
19513 2005-07-26  Martin Baulig  <martin@ximian.com>
19515         * mono-debug.c (mono_debug_add_wrapper): New static method.
19516         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19517         interncall or a wrapper.
19519         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19520         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19521         (MONO_DEBUGGER_VERSION): Bump to 51.
19523         * mono-debug-debugger.c
19524         (mono_debugger_add_type): Removed this empty function.
19525         (mono_debugger_add_method): Likewise.
19527 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19529         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19530         before accessing method->slot.
19532 2005-07-21  Jb Evain  <jbevain@gmail.com>
19534         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19535         Fixes #75010.
19537 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19539         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19540         #75587.
19542 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19544         * image.h image.c: Add mono_image_get_guid () API function.
19546 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19548         There were issues when multiple threads tried to load
19549         assemblies. A deadlock was created between assemblies_mutex and
19550         mono_domain_assemblies_lock. This fixes the issue by making the
19551         assembly ref counting be lock free. See bug 75586.
19552         
19553         * image.c (mono_image_close): The add ref function here was using
19554         Interlocked operations while the unref was using a mutex and a
19555         --. I don't think this was ever a bug that would be exposed in a
19556         non-pendantic way (ie, by an embedder doing a ref on one thread
19557         and an unref on another), but for the sake of correctness, this is
19558         now Interlocked.
19560         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19561         (mono_assembly_load_reference): Call mono_assembly_addref rather
19562         than touching the refcount ourselves.
19563         (mono_assembly_close): Use InterlockedDecrement to unref the
19564         assembly. Don't acquire the lock unless it is actually needed.
19566 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19568         * class.c (mono_class_layout_fields): Fix calculation of has_references
19569         for generic types.
19571 2005-07-12  Martin Baulig  <martin@ximian.com>
19573         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19575         * metadata.c
19576         (mono_type_hash): Provide better hashing for generic instances.
19577         (mono_generic_inst_hash): Improve hashing.
19578         (mono_generic_class_hash): Likewise.
19580         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19581         generic instances.
19583 2005-07-12  Martin Baulig  <martin@ximian.com>
19585         * reflection.c (mono_reflection_create_runtime_class): Remove the
19586         hack for generic type definitions and non-`Run' assemblies.
19587         (mono_reflection_bind_generic_parameters): Also use
19588         `klass->wastypebuilder' to check for TypeBuilders.
19590 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19592         * class.c (mono_class_layout_fields): Fix calculation of has_references
19593         for generic types.
19595         * class.c (inflate_generic_class): Fix a leak.
19596         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19597         for generic types.
19599 2005-07-11  Martin Baulig  <martin@ximian.com>
19601         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19602         on error.
19604 2005-07-11  Martin Baulig  <martin@ximian.com>
19606         * loader.c (find_method): Also lookup in
19607         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19609 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19611         * appdomain.c (mono_domain_unload): Don't free the error message
19612         before passing it to mono_get_exception_...
19614         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19615         
19616 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19618         * threads.c: try to better guess an available RT signal (bug #75387).
19620 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19622         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19623         and CACHE_OBJECT.
19625 2005-07-07  Martin Baulig  <martin@ximian.com>
19627         * class.c (mono_type_get_name_full): Return NULL for
19628         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19629         fixes #75408.
19631 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19633         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19634         exit the appdomain as well being aborted.
19636         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19637         change back to the root domain after calling managed code. This enables
19638         appdomains using threadpools to be unloaded.
19640 2005-07-07  Martin Baulig  <martin@ximian.com>
19642         * class-internals.h
19643         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19644         into `MonoDynamicGenericClass' since we only need it for dynamic
19645         types.
19647         * reflection.c (mono_class_bind_generic_parameters): We don't need
19648         to compute the `parent' here.
19650 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19652         * culture-info-table.h : regenerated.
19654 2005-07-06  Martin Baulig  <martin@ximian.com>
19656         * icall.c
19657         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19659         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19661 2005-07-06  Martin Baulig  <martin@ximian.com>
19663         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19664         we're doing a signature-only comparision; fixes #74945.
19666 2005-07-06  Martin Baulig  <martin@ximian.com>
19668         * class-internals.h (MonoGenericClass): Moved some things out into
19669         a new `MonoInflatedGenericClass' type.  
19670         (MonoInflatedGenericClass): New type; the `klass' of a
19671         `MonoGenericClass' is now computed lazyly in
19672         mono_get_inflated_generic_class().      
19674         * class.c (mono_get_inflated_generic_class): New public function.
19675         (mono_class_inflate_generic_method): Removed the unused
19676         `MonoClass *' argument.
19677         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19678         all the methods.
19679         (mono_class_create_generic): Make this static and merge it with
19680         mono_class_create_generic_2(); we're now called automatically from
19681         mono_get_inflated_generic_class().
19683         * loader.c (mono_method_signature): Call
19684         mono_get_inflated_method() here.
19686 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19688         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19689         type of fields with RVA.
19691         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19692         for this pseudo class.
19693         (my_mono_class_from_generic_parameter): Likewise.
19694         (mono_class_init): Allow interfaces to have cctors.
19696 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19698         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19699         lazily for AOT methods.
19701 2005-07-05  Martin Baulig  <martin@ximian.com>
19703         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19704         returns FALSE for a successful match, not TRUE.
19706 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19708         * loader.c (mono_method_get_index): Optimize this a bit.
19710 2005-07-04  Martin Baulig  <martin@ximian.com>
19712         * class.c
19713         (class_compute_field_layout): Move the check for generic type
19714         definitions into mono_class_layout_fields().  Fixes #74684.
19715         (mono_class_from_generic_parameter): Correctly compute
19716         `klass->parent'; fixes #75457.
19718         * reflection.c (register_assembly, register_module): Make sure
19719         `domain->rejobject_hash' is already created.
19721 2005-07-02  Martin Baulig  <martin@ximian.com>
19723         * class-internals.h
19724         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19725         `MonoDynamicGenericClass'.      
19727 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19729         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19730         returned by a field getter is null, since null is a valid value.
19732 2005-07-01  Martin Baulig  <martin@ximian.com>
19734         * reflection.c (mono_reflection_generic_class_initialize): Update
19735         the `dgclass->fields [i].parent' to the correct class.
19736         (mono_image_get_fieldref_token): Use the declaring type, not the
19737         reflected type.
19739 2005-07-01  Martin Baulig  <martin@ximian.com>
19741         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19743 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19745         * threads.c (thread_cleanup): assert that thread != NULL
19746         (wait_for_tids_or_state_change): We were using the wrong variable
19747         when accessing wait->threads. `i' was always out of the bounds of
19748         the array.
19750 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19752         * loader.c: map user32 and kernel32 to libMonoSupportW
19754 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19756         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19758 2005-06-28  Martin Baulig  <martin@ximian.com>
19760         * loader.c (method_from_methodspec): Fix #75334.
19762 2005-06-28  Martin Baulig  <martin@ximian.com>
19764         Fix #74953 - Arrays now implement the generic IList<T> interface
19765         on the 2.0 platform.
19767         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19769         * reflection.c (mono_class_bind_generic_parameters): New public
19770         function; similar to mono_reflection_bind_generic_parameters(),
19771         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19773         * domain.c (mono_init_internal): Try to initialize.
19774         `mono_defaults.generic_array_class' here; this'll only succeed if
19775         we're using the 2.0 corlib.
19777         * icall.c
19778         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19779         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19780         (mono_lookup_internal_call): Added support for nested classes.
19782         * loader.c
19783         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19784         we're an interncall and have generic arguments.
19786         * class.c
19787         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19788         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19789         instance of System.Array.InternalArray<T> for arrays, so they
19790         implement the generic IList<T> interface.
19792 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19794         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19795         (chastamar@yahoo.com). Fixes #75374.    
19797 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19799         * culture-info-table.h: regenerated.
19801 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19803         * icall.c: handle spaces correctly for base64 strings.
19805 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19807         * *.c: Kill some warnings.
19809 2005-06-23  Duncan Mak  <duncan@novell.com>
19811         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19812         that this builds on Solaris 10 (x86).
19814 2005-06-23  Martin Baulig  <martin@ximian.com>
19816         * class.c
19817         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19818         generic type definitions.
19820 2005-06-23  Martin Baulig  <martin@ximian.com>
19822         Fix #75331.
19824         * metadata.c (mono_class_get_overrides): Renamed to
19825         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19826         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19827         pass it to mono_get_method_full().
19829 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19831         * reflection.c (mono_reflection_create_runtime_class): take the
19832         mono_domain_lock in this method. Prevents deadlocks
19834 2005-06-22  Martin Baulig  <martin@ximian.com>
19836         * loader.c (method_from_methodspec): Fix #75330.
19838 2005-06-22  Martin Baulig  <martin@ximian.com>
19840         * reflection.c (type_get_qualified_name): Use
19841         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19842         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19843         argument; use it if we don't have an assembly name.
19845 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19847         * object.c: In mono_message_init, set "copy out" flag for in
19848         parameters with the [Out] flag.
19850 2005-06-21  Martin Baulig  <martin@ximian.com>
19852         * class.c
19853         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19854         and MONO_TYPE_PTR.
19856 2005-06-21  Martin Baulig  <martin@ximian.com>
19858         * class.c (mono_class_init): Don't initialize `class->fields' for
19859         generic instances since they're initialized again in
19860         compute_field_layout(). 
19861         (compute_field_layout): Set the field's `generic_info' here; fix
19862         #75320. 
19864 2005-06-21  Martin Baulig  <martin@ximian.com>
19866         * class-internals.h
19867         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19869         * metadata.c (mono_metadata_generic_method_equal): Also
19870         distinguish the `generic_class'; fixes #75334.
19872 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19874         * domain.c:
19875         * appdomain.c:
19876         * domain-internals.h:
19877         * reflection.c: 'domain_assemblies' field is now protected by its own
19878         lock. Don't call into managed code to run the AssemblyLoad event if we
19879         now there are no registered delegates for it.
19881 2005-06-20  Martin Baulig  <martin@ximian.com>
19883         * class.c (mono_class_is_assignable_from): Use a custom version of
19884         mono_class_has_parent() to make things work for generic instances;
19885         fix #75300.
19887 2005-06-20  Martin Baulig  <martin@ximian.com>
19889         * loader.c (method_from_methodspec): Apply a patch from
19890         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19892 2005-06-20  Martin Baulig  <martin@ximian.com>
19894         * class.c (mono_class_init): Reverted Zoltan's last change; it
19895         breaks generics.
19897 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19899         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19901 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19903         * socket-io.c: fix the index in the socket array for writable/error
19904         sockets. Fixes bug #75306.
19906 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19908         * class.c (mono_class_init): Allow interfaces to have static ctors.
19910 2005-06-17  Martin Baulig  <martin@ximian.com>
19912         * loader.c (method_from_methodspec): Use `context->container' when
19913         parsing the `gmethod->inst'.
19915 2005-06-17  Martin Baulig  <martin@ximian.com>
19917         * class.c (mono_type_get_name_recurse): Don't add the assembly
19918         name for type arguments.
19920 2005-06-15  Martin Baulig  <martin@ximian.com>
19922         * reflection.c (mono_image_get_inflated_method_token): Encode
19923         correct klass; fixes #75260.
19925 2005-06-13 Michal Moskal <malekith@nemerle.org>
19927         * icall.c: Make GetCorrespondingMethod/Constructor take
19928         MonoReflectionMethod method not MonoMethod. Removed
19929         MonoType.GetCorrespondingField, and make
19930         MonoGenericType.GetCorrespondingField take name not
19931         MonoClassField.
19933 2005-06-13  Michal Moskal <malekith@nemerle.org>
19935         * reflection.c (field_encode_signature, encode_locals):
19936          Make sizes of buffers for types larger (for big generic types).
19937          (create_generic_typespec,
19938          mono_reflection_sighelper_get_signature_local,
19939          mono_reflection_sighelper_get_signature_field):
19940          Add asserts for too small buffers.
19942 2005-06-15  Martin Baulig  <martin@ximian.com>
19944         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19945         if our parent is not a dynamic type.
19947 2005-06-15  Martin Baulig  <martin@ximian.com>
19949         * class-internals.h (MonoTypeNameFormat): New enum.
19951         * class.c
19952         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19953         (mono_type_get_full_name): Removed.
19954         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19955         argument instead of the boolean's.
19957         * icall.c (ves_icall_System_MonoType_getFullName):
19958         Added `gboolean assembly_qualified'.    
19960         * reflection.h
19961         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19963         * reflection.c (mono_reflection_parse_type): Parse the new type
19964         name format.
19966 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19968         * icall.c: no need to convert from utf16 to utf8 and then back again
19969         after the call to GetLogicalDrives.
19971 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19973         * icall.c: frombase64. Fix problems exposed by new tests.
19975 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19977         * icall.c: added internal calls for converting char [] and strings in
19978         base64 into byte [].
19980 2005-06-10  Martin Baulig  <martin@ximian.com>
19982         * class.c (mono_class_create_generic_2): Read the nested classes
19983         from the metadata rather than from `gklass->nested_classes' since
19984         `gklass' might not be initialized yet.
19986 2005-06-09  Duncan Mak  <duncan@novell.com>
19988         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19989         all public headers. Fixes #74919.
19991 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19993         * domain.c: The key for proxy_vtable_hash is now a pointer
19994         array. Added new GHashFunc and GCompareFunc functions for this.
19996         * class.h: The list of interfaces in MonoRemoteClass is known in
19997         advance and can't grow (we create a new MonoRemoteClass if needed),
19998         so now the interface array can be allocated together with
19999         MonoRemoteClass.
20000         
20001         * object.c: Added a new method create_remote_class_key.
20002         Fixed mono_remote_class so it does not depend on
20003         mono_upgrade_remote_class.
20004         Removed extend_interface_array.
20005         Added new method clone_remote_class(), which makes a copy of a remote
20006         class and adds a new interface or class to it.
20007         mono_upgrade_remote_class() now creates a new remote class (or gets
20008         it from the cache) if an vtable upgrade is needed. In this way
20009         we make sure that other objects sharing the same remote class
20010         don't get the new vtable with unwanted interfaces.
20011         
20012         * object-internals.h:
20013         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20014         
20015         * marshal.c: Track changes in mono_upgrade_remote_class().
20017 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20018         * icall.c: Add runtime methods for obtaining members of inflated
20019         class, which were created from supplied non-inflated members. It
20020         is used in internal Get{Method,Constructor,Field} methods in
20021         System.Type
20023 2005-06-09  Martin Baulig  <martin@ximian.com>
20025         * reflection.c
20026         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20028 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20029         * reflection.c (mono_image_basic_init): Define
20030         Version in MonoDynamicAssembly. 
20031         
20032 2005-06-08  Martin Baulig  <martin@ximian.com>
20034         Fix #75136.
20036         * loader.c
20037         (mono_method_signature_full): New public method; takes a
20038         `MonoGenericContext *'.
20039         (find_method): Use mono_method_signature_full() and pass the
20040         klass'es context to it.
20042         * class.c (mono_class_is_inflated_method): Use
20043         mono_method_signature_full() and pass the context to it.
20045 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20047         * object.c: add proper locking in mono_remote_class_vtable(),
20048         fixes possible memory corruption.
20050 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20052         * marshal.c (mono_remoting_marshal_init): set
20053         initialized after initialization.
20055 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20057         * locales.c : hush.
20059 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20061         * object.c (extend_interface_array): fix really silly
20062         memory corrupting / comparison bug.
20064 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20066         * reflection.c: Functions added to support the creation
20067         of CustomAttributeData, which includes Attribute data
20068         used by ReflectionOnly methods.
20070         * reflection.h:  mono_reflection_get_custom_attrs_data and
20071          mono_custom_attrs_data_construct added (functions exposed).
20073          * icall.c: Added mono_reflection_get_custom_attrs_data
20074          as icall.
20075         
20076 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20078         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20079         lupus's request.
20081 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20083         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20085         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20086         dynamic DllImportAttribute.
20088         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20089         dynamic DllImportAttribute.
20091         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20092         Fixes #75162.
20094 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20096         * threads.c: avoid segfault when an unstarted thread is aborted.
20098 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20100         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20101         Returns the name and version of the runtime for reporting.
20103 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20105         * appdomain.c: bump corlib version.
20106         * object-internals.h: new field in MonoReflectionAssembly.
20108 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20110         * object-internals.h: Carlos forgot to add this field.
20112 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20114         * icall.c: Added create_version to create instances
20115         of Version of MonoReflectionAssemblyName. This change helps
20116         the AssemblyName tests to keep running fine.
20117         
20118 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20119   
20120         * object.c (mono_method_return_message_restore): A somehow less
20121         intrusive fix for #75138.
20123 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20125         * object.c (mono_method_return_message_restore): Fix computation
20126         of expected number of out args.
20128 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20130         * reflection.c (mono_image_get_method_info): Fix the case when the
20131         charset is empty.
20133 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20135         * object.c: Added missing null check in
20136           mono_method_return_message_restore.
20138 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20140         * reflection.c (mono_image_get_method_info): Handle the case when
20141         dllentry is empty.
20143 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20145         * object.c: When creating the vtable for a proxy, take into account
20146         all inherited interfaces, not only the ones registered in
20147         iclass->interfaces. This fixs bug #74996.
20148         Also, in mono_method_return_message_restore, verify that the array
20149         of out args has the expected lengh.
20151 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20153         * socket-io.c: update the timeout in Poll when the call is interrupte.
20155 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20157         * socket-io.c: support abort/suspend in Select_internal after last
20158         change.
20160 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20162         * threadpool.c: remove warning.
20164 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20166         * icall.c:
20167         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20168         removing the 1024 limit from select(). Runtime part of the fix for
20169         bug #71203.
20171 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20173         * socket-io.c: when resolving the addresses for the same
20174         host returned by gethostname(), get the local IPs from the interface
20175         list. Loopback addresses are discarded if the are interfaces up with
20176         non-loopback ones. Fixes bug #63265.
20178 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20180         * appdomain.c, verify.c, object-internals.h, reflection.c:
20181         bumped corlib number to 36, and added new extra_flags field
20182         to ReflectionMethodBuilder and friends.  Fixes #75060.
20184 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20186         * gc.c: register a new weak link only if the object is non-null
20187         (fixes bug#75047).
20189 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20191         * culture-info.h : short time pattern too.
20193 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20195         * culture-info.h : expand long time pattern string length.
20197 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20199         * culture-info-table.h : update (more French date format; #72788).
20201 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20203         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20204         the method is static. Fixes #75029.
20206 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20208         * reflection.c: Update the table_idx field of method builders after
20209         saving the module, since it can change. This is a workaround for
20210         bug #74914. 
20212 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20214         * culture-info-table.h : update (additional French date format).
20216 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20218         * icall.c (ves_icall_type_Equals): Revert last change.
20219         
20220         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20222         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20224 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20226         * class-internals.h: Added executioncontext_class field to 
20227         MonoDefaults structure.
20228         * domain.c: Cache System.Threading.ExecutionContext class in 
20229         mono_defaults.
20230         * object.c: Capture the ExecutionContext for asynchroneous calls in
20231          mono_async_result_new.
20232         * object-internals.h: Added execution_context and original_context 
20233         fields to MonoAsyncResult. Added execution_context to MonoThread.
20234         * security-manager.c|.h: Added mono_get_context_capture_method to 
20235         return the capture method (if required by the security manager or by
20236         the framework version used).
20237         * threadpool.c: Apply capture (if present) ExecutionContext in 
20238         mono_async_invoke and revert to original context after it completes.
20240 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20242         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20244 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20246         * culture-info-table.h : zh-CHT related workaround.
20248 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20250         * marshal.c (emit_marshal_custom): Add some error checking and call the
20251         methods in the ICustomMarshaler interface. Fixes #74875.
20252         
20253         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20254         native->managed wrappers.
20256 2005-05-12  Martin Baulig  <martin@ximian.com>
20258         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20259         here and use the loader lock.
20261         * mono-debug.c: Properly lock when the debugger is not attached.
20262         (mono_debug_init): Release the initial lock if we're not running
20263         in the debugger.
20265 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20267         * marshal.c (emit_marshal_custom): Pass through NULL values without
20268         calling the custom marshalling routines.
20270         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20271         conversion in structures. Fixes #74882.
20273 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20275         * culture-info-table.h : zh-* cultures were missing.
20277 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20279         * threads.c: Added a new event background_change_event which is signaled
20280         when a thread changes its background mode.
20281         Moved here several checks previously done in managed code. The checks
20282         require the thread lock, and using the thread lock in managed code
20283         can result in deadlocks.
20284         Merged Start_internal and Thread_internal into a single method. Now 
20285         Thread_internal does all work of creating and starting a thread.
20286         Added icalls for setting and getting the state of the object. Moved from
20287         managed code to avoid locking there.
20288         Added wait_for_tids_or_state_change() which is called instad of
20289         wait_for_tids when waiting for non-backround threads to end. This method
20290         will return if one of the threads ends or the background_change_event
20291         is signaled.
20292         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20293         the background mode. This method signals the background_change_event
20294         event.
20295         * icall.c:
20296         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20297         removed Start_internal.
20298         
20299 2005-05-11  Martin Baulig  <martin@ximian.com>
20301         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20302         to order of some fields to get proper alignment on 64-bit machines.
20304 2005-05-11  Martin Baulig  <martin@ximian.com>
20306         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20307         changes as they're broken and completely fuck up the debugger.
20309         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20311 2005-05-10  Martin Baulig  <martin@ximian.com>
20313         * reflection.c (mono_reflection_generic_class_initialize): Don't
20314         call mono_class_setup_parent() here.
20316 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20318         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20319         send/receive timeout use an integer in milliseconds. We were using a
20320         struct timeval.
20322 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20324         * locales.c:
20325         (internal_get_cultures): reserve the first slot of the array for the
20326         InvariantCulture, which will be filled in managed code.
20328 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20330         * reflection.c (mono_image_fill_module_table): Initialize the
20331         GENERATION field as well.
20333 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20335         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20336         Monitor.Enter on the object.
20338 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20340         * threads.c: Enable the wait for running threads when exiting.
20341         * icall.c: Suspend all threads before exiting.
20343 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20345         * assembly.c (mono_assembly_load_reference): Fix warning.
20347 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20349         * threadpool.c: changed the default number of threads per cpu. From now
20350         on, the default will be 20 + (5 * number of cpus) instead of 50.
20352 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20354         * loader.c (mono_method_get_signature_full): Add locking here.
20356 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20358         * appdomain.c: Moved methods for parsing and freeing assembly
20359         names to assembly.c.
20360         * assembly.c, domain-internals.h: Created public methods for parsing
20361         assembly names. Fixed mono_assembly_load_with_partial_name:
20362         it now finds the best match, taking into account the version,
20363         token and culture specified in the partial name. Also return
20364         the latest version if no version information is specified.
20366 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20368         * threadpool.c: replace check for SocketAsyncCall class.
20370 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20372         * threadpool-internals.h:
20373         * Makefile.am: added threadpool-internals.h
20375         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20376         that happen in threadpool threads (tested on MS).
20377         (mono_thread_pool_remove_socket): new function that dispatch any pending
20378         AIO call on a socket that is closing. By now only epoll really needs it,
20379         as select/poll wake up when the socket closes.
20382         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20384 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20386         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20388 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20390         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20392 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20394         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20395         has an abort request, convert it into a suspend request.
20397 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20399         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20400         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20401         is not supported yet.
20403 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20405         * image.c: register assemblies loaded from data (bundles) in the loaded
20406         assemblies hash. Fixes bug #74772.
20408 2005-04-29  Martin Baulig  <martin@ximian.com>
20410         * class.c (mono_type_get_name_recurse): Update to the new naming
20411         schema from the latest .NET 2.x beta2.
20412         (mono_class_setup_vtable_general): If we're a generic instance,
20413         copy the vtable from our generic type definition and inflate all
20414         the methods in it.
20416         * loader.c (find_method): Update to the new naming schema from the
20417         latest .NET 2.x beta2.
20419 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20421         * class.c (mono_class_init): Add a mono_loader_unlock to the
20422         #74734 fix.
20424 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20426         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20427         suspend_all_other_threads () call for the time being, since it can hang.
20429         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20430         the background threads to exit, since it can also hang.
20432         * class.c (mono_class_init): Applied patch from Ankit Jain 
20433         (radical@gmail.com). Avoid pending init errors when a field refers
20434         to a nested class using a typeref. Fixes #74734.
20436         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20437         this for dynamic modules.
20439 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20441         * threads.c: don't wait for threads that are in the process of aborting
20442         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20443         and waiting for background threads to finish. This makes xsp and
20444         mod-mono-server exit without random length delays and/or hangs.
20446 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20448         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20450 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20452         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20453         dynamic types to prevent infinite loops. Fixes #74727.
20455         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20456         ..._is_assignable_to.
20458 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20460         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20462 2005-04-25  Martin Baulig  <martin@ximian.com>
20464         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20466         * domain.c
20467         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20469         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20471         * reflection.c (build_compressed_metadata): Set metadata header
20472         version to 2.0.
20474 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20476         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20477         number into an integral and a decimal part. Fixes #70473.
20479         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20481 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20483         * culture-info-table.h : reflected the latest locale-builder output.
20485 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20487         * threadpool.c: check for SuspendRequested too when deciding if
20488         mono_thread_interruption_checkpoint should be called.
20490 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20492         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20493         * threads.c: remove interruption_mutex and use Interlocked instead. When
20494         suspending all the threads, wait for all the suspended events at once.
20495         If we're shutting down and get an APC that is going to be queued,
20496         call mono_thread_execute_interruption immediately, as the thread might
20497         be sleeping on a pthread condition or mutex.
20499         * icall.c: call mono_runtime_set_shutting_down before suspending the
20500         threads.
20502         Fixes bug #74693. And now xsp is happier when exiting.
20504 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20506         * loader.c (mono_stack_walk): Fix #74690.
20508 2005-04-22  Martin Baulig  <martin@ximian.com>
20510         * mono-debug.h (MonoDebugMethodJitInfo): Added
20511         `MonoDebugMethodJitInfo *jit'.
20513         * mono-debug.c (mono_debug_read_method): Cache the
20514         MonoDebugMethodJitInfo in `address->jit'.
20515         (mono_debug_free_method_jit_info): New public method.
20517 2005-04-22  Martin Baulig  <martin@ximian.com>
20519         * class.c (mono_class_is_assignable_from): Disallow
20520         type parameter -> interface.
20522 2005-04-21  Dick Porter  <dick@ximian.com>
20524         * threads.c (mono_thread_create): Turn an assertion into an error.
20526 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20528         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20529         
20530         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20531         Fix some gcc 4.0 warnings.
20533 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20535         * file-io.c: fix alt dir separator char on unix systems
20536         and cleanup (fixes bug #71214).
20538 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20540         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20541         a call to a remote domain, since the method may be an
20542         interface method in the client domain. This fixes bug #74192.
20544 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20546         * threadpool.c: recv/send are now performed before going back to managed
20547         code to save one transition.
20549 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20551         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20553         * metadata/threadpool.c: removed hack to workaround the bug above.
20555         Fixes bug #74618.
20557 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20559         * reflection.c reflection.h: Fix handling of parameter defaults in
20560         dynamic methods. Also fixes handling of parameter attributes.
20561         Fixes #74609.
20563         * mono-debug.c (mono_debug_close_image): Fix warning.
20565 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20567         * socket-io.h: replaced old unused field with new 'blocking'.
20568         * threadpool.c: restore socket blocking state on windows(tm).
20570 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20572         * icall.c: don't return the codebase in the AssemblyName[] returned by
20573         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20574         * object-internals.h: Removed FIXME (fields were presents) and fixed
20575         versioncompat declaration.
20577 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20579         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20580         not closed, so don't cleanup when it happens.
20582 2005-04-13  Chris Toshok  <toshok@ximian.com>
20584         * mono-debug-debugger.h: change prototype for
20585         mono_debugger_lookup_type.
20587         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20588         this function, although it should probably be named
20589         mono_debugger_init_type.
20591 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20593         * threadpool.c: fix non-AIO case.
20595 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20597         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20598         the built-in profiler to measure just JIT compilation times.
20600 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20602         * threadpool.c: the epollfd might be closed by another thread at
20603         any time, so ignore EBADF at treat it as a "we're closing" sign.
20605 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20607         * threadpool.c: release the semaphores with a count equals to the number
20608         of working threads in both IO and regular pools. Fixed typo that messed
20609         up the count of IO pool threads. Don't initialize the pipe handles if
20610         we're using epoll.
20612 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20614         * threadpool.c: some systems don't like a NULL when deleting the socket
20615         from epoll.
20617 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20619         * threadpool.c: fix semaphore allocation.
20621 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20623         * threadpool.c: added epoll() based implementation for asynchronous IO
20624         that is used instead of the default poll() when available.
20625         It can be disabled by setting MONO_DISABLE_AIO.
20627 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20629         * threadpool.c: windows needs 'closesocket' and instead of returning
20630         0 when the stream is closed while in select, it returns -1. Fixes bug
20631         #74573.
20633 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20635         * class.c (class_compute_field_layout): Fix the regression caused by
20636         the previous try.
20638 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20640         * threadpool.c: separate pool for socket async. IO.
20641         * threadpool.h: mono_max_worker_threads is not a global any more.
20643 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20645         * class.c (class_compute_field_layout): Fix #74549.
20647 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20649         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20650         use 2 connected sockets instead.
20652 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20654         * mono-config.c: Add new entry point for mkbundle
20655         mono_config_parse_memory. 
20657 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20659         * threadpool.c: removed another unused function.
20661 2005-04-08  Ankit Jain  <radical@corewars.org>
20663         * reflection.c (get_default_param_value_blobs): Add 'types'
20664         parameter to get the types encoded in the constant table.
20665         (mono_param_get_objects): Use the type from the constant table,
20666         not the type of the parameter, when creating default values.
20667         Handle null default values correctly.
20669 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20671         * file-io.c:
20672         * file-io.h:
20673         * threadpool.c:
20674         * threadpool.h:
20675         * icall.c:
20676         * socket-io.c: removed dead code for async IO.
20678 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20680         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20682         * threadpool.c: intercept socket async. calls and pass them to a thread
20683         that is polling and dispatching the job items to the threadpool as
20684         socket become ready. Fixes bugs #71217, #71933.
20686         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20687         between char and short/ushort arrays.
20689         * socket-io.c: remove dead code.
20691 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20693         * locales.c,
20694           icall.c : removed InternalToUpper_Comp() and
20695           InternalToLower_Comp().
20697 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20699         * char-conversions.h : The tables were incorrectly generated. Should
20700           be generated against invariant culture.
20702 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20704         * object.c (mono_runtime_invoke_array): Fix return value when 
20705         passing pre-created valuetype objects to ctors.
20707         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20708         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20709         Fixes #74338.
20711 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20713         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20714         only used with --security and hides the wrong corlib version error.
20716 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20718         * class.c: Changed mono_class_name_from_token so that types
20719         outside of a namespace don't have an initial period.  Improved
20720         the g_warning message used in _mono_class_get when loading
20721         fails.
20722         * assembly.c: In mono_assembly_load_reference, when an assembly
20723         can't be found, "No such file or directory" is misleading and
20724         unhelpful because a few paths were checked for the presence of
20725         the assembly.  When that happens (ENOENT), display a nicer
20726         message indicating the directories that were searched.  In all
20727         cases, the warning is made easier to read for non-hackers.
20729 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20731         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20732         project/solution.
20733         * appdomain.h|domain.c: Removed inline from functions.
20734         * appdomain.c: Reduced warnings when compiling on windows.
20735         * icall.c: Fixed output_debug declaration to gunichar2*.
20736         * mono-config.c: Reduced warnings when compiling on windows.
20737         * rand.c: Added missing "windows.h". Added missing return value.
20738         * rawbuffer.c: Added missing winsock2.h for windows.
20739         * sysmath.h: Added mono-compiler.h header to allow/ease 
20740         compilation with non-GCC compilers.
20741         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20742         Removed cast warnings.
20744         Adapted from the work of J Lothian (for VC6).
20746 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20748         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20749         from default_path.
20751 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20753         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20754         the 2.0 profile.
20756 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20758         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20759         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20760         stuff, and it would probably use $(prefix)/share rather than
20761         $(prefix)/lib.
20763 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20765         * console-io.c: added 2 includes that might be missing.
20767 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20769         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20770         profile.
20772         * reflection.c (create_custom_attr): Allocate the params array using
20773         alloca so it gets GC tracking.
20775 2005-03-23  Chris Toshok  <toshok@ximian.com>
20777         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20778         out some spew.
20780 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20782         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20783         changes to pick up any changes in prefix, etc.
20785 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20787         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20788         
20789         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20790         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20792 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20794         * class-internals.h object-internals.h class.c reflection.c: Extend the
20795         mono_lookup_dynamic_token () function to return the class of the
20796         token as well. 
20798         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20799         well. Fixes #73848.
20801 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20803         * security-manager.c: Skip inheritance checks for intra-corlib
20804         class inheritance and method overrides. This skips a lot of checks
20805         and (anyway) permissions cannot work until corlib is loaded.
20807 2005-03-23  Martin Baulig  <martin@ximian.com>
20809         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20810         MONO_TYPE_GENERICINST.  
20812 2005-03-23  Martin Baulig  <martin@ximian.com>
20814         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20816 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20818         * class.c: added locking comments to some functions.
20819         Cache the interface offsets arrays (saves about 20 KB
20820         of runtime memory in a typical app).
20821         Reduce the time overhead in mono_class_setup_supertypes ().
20823 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20825         * icall.c: speedup and fix leaks in GetMethodsByName and
20826         GetPropertiesByName.
20828 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20830         * reflection.c: some locking fixes.
20832 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20834         * metadata.c: added missing break in case statement.
20836 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20838         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20839         typedbyref return values. Fixes #73941.
20841 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20843         * security-manager.c|h: Added demandunmanaged method and 
20844         suppressunmanagedcodesecurity class to MonoSecurityManager.
20845         Renamed aptc class to allowpartiallytrustedcallers.
20847 2005-03-17  Martin Baulig  <martin@ximian.com>
20849         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20851 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20853         * file-io.c: disabled file async. IO using aio_*. It uses the
20854         threadpool now. Workaround for bug #73718.
20856 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20858         * assembly.h, mono-config.c: added code to deal with bundled configs
20859         for bundled assemblies.
20861 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20863         * *.c, private.h: cleanup, removing old private.h header file.
20865 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20867         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20868         and throw_on_unmappable_char attributes.
20870 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20872         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20873         _ProcessName_internal.
20875 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20877         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20878         #73631.
20880         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20881         are no longer used.
20883 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20885         * object.c (compute_class_bitmap): Add support for generics. Fixes
20886         #73527.
20888 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20890         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20892 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20894         * filewatcher.c: commented out the code for windows watcher, as we don't
20895         use it (we use the managed implementation instead).
20897 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20899         * object-internals.h (MonoThread): Remove 'unused1' field.
20901         * appdomain.c: Bump corlib version.
20903         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20905         * reflection.c (mono_reflection_create_runtime_class): Remove the
20906         AssemblyBuilder.Save optimization since it causes too many problems.
20908 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20910         * exception.c|h: Added mono_get_exception_reflection_type_load to
20911         create a ReflectionTypeLoadException object.
20912         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20913         to return NULL is a InheritanceDemand fails during reflection. Updated
20914         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20915         ReflectionTypeLoadException if an InheritanceDemand fails during 
20916         reflection. Added icall mapping for GetLinkDemandSecurity.
20917         * security-manager.c|h: Added ves_icall_System_Security_
20918         SecurityManager_GetLinkDemandSecurity internal call to return the
20919         class and methods permissions set for a LinkDemand. Removed unused
20920         fields in MonoSecurityManager.
20922 2005-03-10  Martin Baulig  <martin@ximian.com>
20924         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20925         it's a generic instance.
20927 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20929         * reflection.c (mono_get_object_from_blob): Applied patch from
20930         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20932         * class.c (mono_class_is_assignable_from): Another try at fixing 
20933         #73469 without breaking anything.
20935 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20937         * class.c: (mono_class_is_assignable_from): Revert the last changes
20938         since they don't work with generics.
20939         
20940         * class.c (mono_class_is_assignable_from): Fix build bustage.
20942         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20943         the managed IsAssignableFrom method. Fixes #73469.
20945         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20946         function.
20948 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20950         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20951         memory when the remoting callback does not sets the out arguments.
20952         Fixes #73007.
20954         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20955         by mistake.
20957         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20959         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20961         * appdomain.c: Bump corlib version.
20963 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20965         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20966         function.
20968         * threads.c (mono_thread_attach): Detect threads which are not started
20969         by the GC pthread wrappers.
20971 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20973         * icall.c: Added new icall for RNG.
20974         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20975         single handle on Linux to access /dev/urandom and fix #73183.
20977 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20979         * object.c: setting the new vtable in a transparent proxy object must
20980         not change the GC descriptor.
20982 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20984         * object.c: fixed compilation without GCJ support.
20985         * reflection.c: for runtime-created types ensure klass->has_references
20986         is correct (bug #73215).
20988 2005-03-02  Martin Baulig  <martin@ximian.com>
20990         * class.c (mono_class_is_assignable_from): Make this work if
20991         `oklass' is a generic instance; fixes #72831.
20993 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20995         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20996         with hasthis set.
20997         
20998         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21000         * marshal.c: Reorganize native->managed marshalling code to also use
21001         the emit_marshal_... functions.
21003 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21005         * object.c: typed allocs have issues with bitmap sizes > 30,
21006         so check for max_set >= 30.
21008 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21010         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21011         managed code. Fixes #73012.
21013         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21015         * metadata.c reflection.c: Load/Emit elem_mult as well.
21016         
21017         * metadata.h (MonoMarshalSpec): Add comment.
21019         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21021         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21022         num_elem to -1 if not given.
21024         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21026         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21027         given values.
21029 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21031         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21033 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21035         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21037         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21039 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21041         * object.c: generalized the reference bitmap creation
21042         and added hooks for the new GC.
21043         * class-internals.c: removed the gc_bitmap field from MonoClass.
21045 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21047         * domain.c: help the compiler to produce better code
21048         in mono_jit_info_table_find ().
21050 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21052         * object.c: make all allocations look typed.
21054 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21056         * socket-io.c: load Mono.Posix if it's not loaded already
21057         (fixes bug#73033).
21059 2005-02-24  Martin Baulig  <martin@ximian.com>
21061         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21062         * reflection.c (dup_type): Likewise.
21064 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21066         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21067         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21069 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21071         * domain.c, threads.c, object-internals.h: make the critical thread
21072         local vars use the fast access mode (even when we're compiled in
21073         a lib). Provide accessors to be used by the jit during codegen.
21075 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21077         * appdomain.c: Changed hook functios behavior to include
21078         support for the reflection only assemblies. Some icalls were changed
21079         to support the mentioned assemblies too. Signatures of static methods
21080         try_assembly_resolve and real_load now have an additional parameter:
21081         refonly.
21083         * assembly.c: General changes to mono_assembly_ methods to support
21084         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21085         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21086         suffix, to support an additional gbool parameter to specify whether
21087         the assembli is reflection only or not. Created some new hook functions 
21088         to add support for reflection only assemblies. Signatures of static 
21089         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21090         have now an additional parameter: refonly.
21092         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21093         indicating whether the assembly is reflection only or not.
21095         * exception.c: Add mono_get_exception_invalid_operation.
21097         * icall.c: Throw an InvalidOperationException when trying to invoke
21098         a property/method/event, or trying to set/get the value of a field.
21099         Also add an icall to retrieve the ref_only flag to the
21100         MonoReflectionAssembly.
21102 2005-02-23  Chris Toshok  <toshok@ximian.com>
21104         Part of fix for #72827.
21105         * mono-debug.c (mono_debug_add_method): add lexical block data to
21106         the info we write.  Kind of a hack at the moment - we copy the
21107         lexical block info from the MonoDebugMethodInfo to the
21108         MonoDebugMethodJitInfo here, before writing it.
21109         (mono_debug_read_method): read the lexical block info.
21111         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21113         * debug-mono-symfile.h: add lexical block support.
21115         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21116         support.
21118 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21120         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21122         * object.c (mono_runtime_free_method): Call mono_free_method () and
21123         put the TODOs there.
21125         * loader.c (mono_free_method): Free up most memory allocated for 
21126         dynamic methods.
21128 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21130         * reflection.c: properly flag a Type argument to a
21131         named custom attr value (bug #72248).
21133 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21135         * reflection.c: reduce code duplication in named custom
21136         attribute encoding.
21138 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21140         * reflection.c: properly encode custom attrs of type object
21141         (bug #72649).
21143 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21145         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21147 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21149         * socket-io.c: load System.dll if it's not loaded already
21150         (bug #72850 and #70477).
21152 2005-02-21  Martin Baulig  <martin@ximian.com>
21154         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21155         generic instances.
21157 2005-02-21  Martin Baulig  <martin@ximian.com>
21159         * reflection.c (mono_image_build_metadata): We also need to
21160         "fixup" the MethodImpl table after we computed the final method
21161         indices.  Call fixup_methodimpl() to do that.
21162         (fixup_methodimpl): New private method.
21164 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21166         * assembly.c: special case mscorlib.dll (bug#72536),
21167         patch from Carlos Alberto Cortez.
21169 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21171         * threads-types.h threads.c: Fix build bustage.
21173         * threads.c: Use a union for long<->double conversions.
21175         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21176         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21178         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21179         containing the checkpoint call with NOT_TAKEN.
21180         
21181         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21182         checkpoint before pushing the arguments, so they won't have to be
21183         spilled to stack.
21185 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21187         * domain.c, assembly.c, domain-internals.h: make some data
21188         const and relocation-free.
21190 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21192         * object.c, appdomain.c, class-internals.h: introduce the
21193         MonoClassRuntimeInfo structure to hold the info needed to
21194         use a class at runtime. Made mono_class_vtable() lock-free
21195         for all the appdomains.
21197 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21199         * metadata-internals.h, image.c: introduce a per-image mempool to
21200         be used for memory that has the same lifetime as the image.
21202 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21204         * domain.c: In mono_init_internal(), instead of selecting the first
21205         runtime version supported by an executable, get a list of all
21206         supported versions and select the one for which an mscorlib exists
21207         (since even if the runtime supports a given version, it doesn't mean
21208         that the framework for that version is installed).
21209         Modified get_runtimes_from_exe to support this behavior.
21210         In supported_runtimes, added information about additional system
21211         assembly versions.
21212         
21213         * assembly.c: Added support for more than one system assembly version
21214         per runtime version. Updated the assembly list.
21215         In mono_assembly_remap_version, removed the initial version check,
21216         since we don't know to which version we need to compare until we
21217         get the version set on which the assembly is based.
21218         Moved the code for loading corlib into the new method
21219         mono_assembly_load_corlib(), so it can be used by the initialization
21220         code.
21221         
21222         * domain-internals.h: Updated data structures and added declaration
21223         for mono_assembly_load_corlib.
21225 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21227         * reflection.c (resolve_object): Fix the creation of the signature in 
21228         the SignatureHelper case.
21230         * assembly.c (mono_assembly_remap_version): Fix binary search.
21231         
21232 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21234         * class.c: Added inheritance check when a method is overloaded (from a
21235         virtual method or when implementing an interface) and when a class is
21236         inherited. Added functions to set a failure for a class and to 
21237         retreive the exception from a failure.
21238         * class-internals.h: Added fields to MonoClass to keep the exception
21239         information status for inheritance (or other exceptions) to be thrown
21240         later (i.e. not at load time).
21241         * object.c: Throw the inheritance SecurityException when a type is to 
21242         be created with either class or method inheritance violations.
21243         * reflection.c|h: Fix when getting declsec from a class. Removed 
21244         unrequired code for class. Improved sanity in parameter naming.
21245         * security-manager.c|h: Added functions to check for class and method
21246         inheritance.
21248 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21250         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21251         and has_finalize in dynamic types as well.
21253 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21255         * culture-info-table.h : fixed currency format for en-GB (and so on).
21257 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21259         * gc.c: ensure the GC handles never have 0 as a value.
21261 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21263         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21264         a pointer to a struct to unmanaged code. Fixes #72625.
21266 2005-02-16  Martin Baulig  <martin@ximian.com>
21268         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21270 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21272         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21274 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21276         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21278         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21279         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21280         etc. Fixes #71471.
21282         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21284         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21286 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21288         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21289         changes to make the current context a field in MonoThread.
21291 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21293         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21294         the last change.
21295         
21296         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21297         extracted from mono_marshal_get_native_wrapper.
21299         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21300         to create wrappers around native functions.
21302         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21303         delegates for arbitrary function pointers. Fixes #71472.
21305 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21307         * threads.c: cleaned up the code a little.
21309 2005-02-15  Martin Baulig  <martin@ximian.com>
21311         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21312         the data table.
21314         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21315         allocate larger chunks if needed.
21317 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21319         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21320         in by mistake.
21322 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21324         * domain.c: keep the domains in an array and ensure the domain ids
21325         are kept small, so they can be used as indexes to domain-specific data
21326         with a small memory overhead.
21328 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21330         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21332 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21334         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21336 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21338         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21340         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21341         values.
21343         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21344         
21345 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21347         * domain-internals.h: add the hashtable here.
21349         * class-internals.h: Remove `info' from MonoMethod
21351         * domain.c: Add a new hashtable, jit_trampoline_hash
21353 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21355         * object.c: don't set the value of static fields
21356         (fixes bug#72494).
21358 2005-02-11  Martin Baulig  <martin@ximian.com>
21360         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21361         (mono_debug_add_method): Silently ignore the method if it's too big.
21362         (mono_debug_add_type): Likewise.
21364 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21366         * threads.c, appdomain.c: remove #ifdefs from the code.
21368 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21370         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21371         common security informations. This allows us to stay in unmanaged code
21372         when doing LinkDemand and it's special cases (except for the first 
21373         time for initialization). The flags a very much used with --security.
21374         * reflection.c|h: Added code to get declarative security attributes 
21375         for LinkDemand and InheritanceDemand. This required to refactor the
21376         existing code for Demand.
21377         * security-manager.c|h: Added new method fields for the special cases
21378         of LinkDemand.
21380 2005-02-10  Martin Baulig  <martin@ximian.com>
21382         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21383         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21385 2005-02-10  Martin Baulig  <martin@ximian.com>
21387         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21388         debugging code; this is almost a complete rewrite.
21390         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21392 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21394         * domain.c, object.h: expose mono_string_equal () and 
21395         mono_string_hash ().
21396         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21397         it's implemented in managed code.
21399 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21401         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21402         lo leak objects between appdomains.
21404 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21406         * assembly.c: old compilers compilation fix from 
21407         robertj@gmx.net (Robert Jordan).
21409 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21411         * class-internals.h: Little reminder for the future.
21413         * debug-helpers.c: Fix up wrapper_type_names
21415 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21417         * image.c, metadata-internals.h: when loading an image from a file,
21418         mmap all of it and use the same codepaths as when using a
21419         in-memory image: the code is simpler and we use less memory
21420         (both writable and readonly).
21422 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21424         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21425         API to alloc runtime data structures that need to be tracked by the
21426         GC and contain pointers.
21427         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21428         make the code more readable and eventually use a different GC.
21430 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21432         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21433         for out arguments.
21434         
21435 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21437         * object.c: In release_type_locks(), don't release the cctor lock
21438         if it has already been released. This fixes a crash in the
21439         thread5 test.
21441 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21443         * gc.c, marshal.c, icall.c: register a delegate for finalization
21444         only when the native function pointer has been allocated for it.
21446 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21448         * object.c: cleaned up some code, allocate objects that are
21449         pointer free with the atomic malloc variant. Allocate memory
21450         for static data from the mempool if it's pointer-free.
21451         Allocate the bounds array at the end of the array data, when needed.
21452         * object-internals.h, object.h: move a private function in a private
21453         header.
21454         * class.c: handle missing case in tracking references in fields.
21456 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21458         * class.c, class-internals.h: keep track if a type has
21459         reference fields in either the instance or static fields.
21461 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21463         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21464         and renamed to MonoRuntimeInfo. Added fields to store the expected
21465         framework assembly version. Changed mono_get_framework_version and
21466         mono_get_runtime_version for a single mono_get_runtime_info method.
21467         
21468         * assembly.c: Added method to remap system assembly versions to the
21469         current executing runtime version. Removed old mapping code.
21470         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21471         
21472         * icall.c, reflection.c: Track api changes.
21474 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21476         * loader.c (method_from_memberref): Improve error reporting,
21477         produce the class name instead of the typeref/typedef index. 
21479 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21481         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21483 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21485         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21486         stdcall and charset name mangling.  Reorganize the code and add
21487         some tracing stuff.
21489 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21491         * monodiet.c: More iters!
21493         * marshal.c: Iter usage.
21495         * icall.c: Iter usage.
21497         * object.c: Use iters.
21499         * debug-helpers.c: More iters
21501 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21503         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21504         under win32.
21506 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21508         * mono-debug-debugger.c: use iters
21510         * class.c, class-internals.h: mono_class_setup_events is static
21511         now
21513         * All callers: use iters
21515 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21517         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21518         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21520 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21522         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21524         * marshal.h: Add prototypes for ldfld/stfld_remote.
21526         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21527         this is called during startup.
21528         
21529 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21531         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21532         MonoThreadsSync struct private in monitor.c. Changed the way
21533         MonoThreadsSync is allocated so it's faster and there is no
21534         need to keep track of it with a finalizer and it uses less memory.
21535         This also finally allows us to allocate mono objects as ptrfree when
21536         there are no reference fields.
21538 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21540         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21541         disappearing link to the GC interface and use them to simplify
21542         the gchandles code.
21544 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21546         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21547         stfld_remote which call mono_load/store_field_new. This allows methods
21548         calling ldfld/stfld wrappers to be AOTed.
21550         * console-io.c: Include sys/filio.h under solaris.
21551         
21552         * console-io.c: Include curses.h if needed correctly.
21554 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21555         
21556         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21557         method->klass as well.
21559         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21561         * class.c (mono_class_init): Switch on lazy initialization of 
21562         methods.
21564         * class.c (mono_class_get_finalizer): Handle the case when the 
21565         finalizer is inherited.
21567 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21569         * console-io.c: <curses.h> is needed by term.h on solaris.
21571 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21573         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21574         mono_class_setup_properties where possible. Remove this ftn from
21575         the header file, and make it static.
21577 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21579         * loader.c: Add missing setup_... call.
21581         * class.c: Add missing setup_... calls.
21583         * class.c (mono_class_init): Switch on lazy initialization of 
21584         the generic vtable.
21585         
21586         * class.c (mono_class_init): Fix generics broken by the recent changes.
21588         * monodiet.c (handle_type): Add missing setup_... calls.
21590         * class.c: Back out garbage in previous patch.
21591         
21592         * class.c: Add missing setup_... calls.
21594         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21595         mono_class_setup_methods () if possible.
21597         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21599         * class-internals.h (MonoCachedClassInfo): New structure.
21601         * class.c: Initialize properties and events fields of MonoClass lazily.
21603         * class.c: Add infrastructure for lazily initializing the methods and
21604         vtable fields of MonoClass. Not yet used.
21606         * class.c (mono_class_get_finalizer): New helper function.
21608         * class.c: Add infrastructure for loading some class related data from
21609         an AOT file.
21611         * object.c: Add infrastructure for initializing the vtable from data
21612         in the AOT file.
21614         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21616         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21617         appropriate initialization function before accessing parts of the
21618         MonoClass structure.
21620         * marshal.c: Fix warnings.
21621         
21622         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21624         * mono-debug-debugger.c (get_exception_message): Use 
21625         mono_class_get_method_from_name_flags ().
21627 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21629         * reflection.c, appdomain.c: Replace a few manual searches that
21630         Zoltan missed. (Paolo approved this part of my initial patch).
21632 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21634         * profiler.c: disable recording statistical events at report time.
21636 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21638         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21639         to byteswap arrays of enum values, too (bug #72080).
21641 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21643         * appdomain.c (set_domain_search_path): Allow this to be called if
21644         domain->setup is not yet set.
21646         * loader.c (mono_method_get_index): New helper function.
21648         * loader.c reflection.c: Use mono_method_get_index ().
21650         * class.c (mono_class_get_method_from_name_flags): New helper method.
21652         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21653         this.
21655         * class.c (mono_class_get_cctor): New helper method.
21657         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21658         mono_class_get_method () to look up methods.
21660 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21662         * console-io.c: Fix the build, this should work on Windows.
21664 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21666         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21667         be set to null to keep things valid
21669 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21671         * icall.c: added Console 2.0 icalls.
21672         * Makefile.am: added console-io.[ch]
21673         * console-io.[ch]: internal calls for Console 2.0 API.
21675 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21677         * class.c: make sure we consider all the interfaces
21678         when calculating max_interface_id (bug found by
21679         Jeroen Frijters running ikvm).
21681 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21683         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21684         valuetype fields to null.
21686         * object.c (set_value): Ditto. Fixes #71669.    
21688 2005-01-31  Martin Baulig  <martin@ximian.com>
21690         * metadata.c (mono_metadata_has_generic_params): New public
21691         function; checks whether something is a generic method.
21693 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21695         * appdomain.c: fix infinite recursion when adding assemblies.
21697 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21699         * object.c: Fix small typo to return all items for Environment.
21700         GetCommandLineArgs.
21702 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21704         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21705         reflection.c: more domain and assembly-unload related fixes
21706         and memory leaks plugs.
21708 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21710         * 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.
21712 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21714         * loader.c (mono_method_signature): Make this method lazy
21715         (mono_get_method_from_token): Don't computate the signature here.
21717         Doing this saves quite a bit of memory. I got 90 kb on starting up
21718         monodoc. It should also save some disk reads on startup.
21720         * *: MonoMethod->signature might be NULL now. You *MUST* use
21721         mono_method_signature.
21723 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21725         * object.c (mono_runtime_get_main_args): Return an array from the
21726         current domain here. Fixes #71938.
21728 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21730         * monitor.c: formatting changes to comply with the
21731         mono coding style and remove #ifdefs from the code.
21733 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21735         * metadata.c, private.h: remove some unneeded data
21736         and use a more compact representation for table schemas.
21738 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21740         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21741         to get a better distribution in hash tables.
21742         * *.c: use mono_aligned_addr_hash() where appropriate.
21743         * assembly.c: make var static.
21745 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21747         * domain-internals.h: Put MonoJitInfo on a diet.
21749         * domain.c: Fix a warning.
21751 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21753         * gc.c: rework the gc handles code to reuse handles
21754         when freed.
21756 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21758         * domain.c: fixed long standing bug in mono_string_equal() which
21759         was brought to light with the ldstr changes.
21761 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21763         * reflection.c: Remove warning by adding missing include for marshal.h
21765 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21767         * domain.c, object.c: change the ldstr_table to hold
21768         MonoString* as keys: makes the runtime isinterned lookup
21769         faster and simplifies memory management.
21771 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21773         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21774         possible to add imperative security checks before calling the icall.
21775         * reflection.c: Return security attributes on the original MonoMethod
21776         (and not the wrapped one). This fix permissions on icalls.
21778 2005-01-25  Dick Porter  <dick@ximian.com>
21780         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21781         the check for mktime() support actually test the mktime() return
21782         value.  "Fixes" bug 71682, though the output is still different to
21783         MS.
21785 2005-01-25  Martin Baulig  <martin@ximian.com>
21787         * class.c (mono_class_is_assignable_from): Make this work for
21788         generic instances.
21790 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21792         * marshal.c (mono_string_utf8_to_builder)
21793         (mono_string_builder_to_utf16): We might not have ownership of the
21794         string. In thise case, we need to create a new buffer.
21796         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21797         be null, in which case, use the default capacity.
21799 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21801         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21802         GC events to the profiler.
21804 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21806         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21807         if you don't want the GC to run.
21809 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21811         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21812         start providing a GC API and keeping different implementations in
21813         their own file.
21814         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21816 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21818         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21819         mmap rather than allocating a huge buffer.
21820         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21821         above.
21823 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21825         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21826         and CheckExecutionRights.
21827         * reflection.c|h: Keep the index of the declarative security to be 
21828         used, instead of the pointer, when AOT compiler is used. Also add 
21829         class initialization when requesting demands.
21830         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21831         CheckExecutionRights. Both properties are now FALSE by default, and
21832         unmodifiable, unless the --security option is used.
21834 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21836         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21837         reflection.c: properly refcount images and assemblies, many leaks fixed.
21839 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21841         * threadpool.c: increase the timeout for threads in the thread pool to
21842         10s.  Fixes bug #67159.
21844 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21846         * class-internals.h: Sun's compiler insists on explicit
21847         signed on bit fields to handle then correctly.
21849 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21851         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21852         Make the size of the array fit only the number of invalid path
21853         chars that we have.
21855         * class.c (_mono_class_get): Improve the error reporting when a
21856         class referenced is not found, to assist debugging. 
21858 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21860         * threads.c: fix off-by-one error.
21861         * domain.c: free data allocated in the domain.
21863 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21865         * reflection.c (mono_method_body_get_object): Fill out exception info
21866         as well.
21868         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21869         structure.
21870         
21871 2005-01-19  Martin Baulig  <martin@ximian.com>
21873         * loader.c (mono_get_method_constrained): Make this work again.
21875 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21877         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21878         guint16 to match the managed side.
21880         * reflection.c (mono_reflection_body_get_object): Fill out local
21881         variables array.
21883         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21884         as well.
21886         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21887         'local_var_sig_token'.
21889 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21891         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21892         System.Drawing.
21894         * reflection.c (mono_method_body_get_object): Handle abstract and
21895         runtime methods.
21897 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21899         * marshal.c, loader.c, class-internals.h, reflection.c:
21900         store the emthod data for a wrapper in an array instead of a list.
21902 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21904         * marshal.c: change the code to allocate memory more
21905         conservatively for method wrappers.
21907 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21909         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21910         fields from MonoClass to the marshal info structure where they belong.
21912 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21914         * class.c, object.c, class-internals.h, marshal.c: rearrange
21915         some fields and tweak some types to lower memory usage.
21917 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21919         * threads.c (signal_thread_state_change): Handle the case when the
21920         target thread is the current thread.
21922         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21924         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21925         emit_ptr_to_object_conv. 
21927         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21928         marshalling. Fixes #71352.
21930 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21932         * metadata.h, blob.h: move table enum to blob.h so it can be included
21933         in any header.
21934         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21935         cut the size of MonoImage/MonoDynamicImage.
21937 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21939         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21941 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21943         * reflection.c, reflection.h, icall.c: add a function to check
21944         if an attribute type is defined for a metadata object.
21946 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21948         * object-internals.h: Added some needed fields from StringBuilder class.
21949         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21951 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21953         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21954         threads before shutting down the runtime.
21956         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21958 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21960         * object-internal.h, threads.c: implement stacksize and 
21961         parameterized thread start functionality (requires
21962         matching corlib). Marked broken code for later removal.
21964 2005-01-12  Martin Baulig  <martin@ximian.com>
21966         * class-internals.h (MonoGenericClass): Moved the `initialized'
21967         flag to MonoDynamicGenericClass, removed `init_pending'.
21968         (MonoGenericInst): Added `is_reference' flag.
21970 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21972         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21973         inside the MSDOS header. Fixes #71201.
21975         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21976         gc thread.
21977         (mono_domain_finalize): Ditto.
21979 2005-01-12  Martin Baulig  <martin@ximian.com>
21981         * class.c (mono_get_shared_generic_class): Use the cache for
21982         non-dynamic generic classes.
21984         * class-internals.h (mono_class_create_generic_2): Removed
21985         function prototype, this function is now static inside class.c.
21987         * class.c (mono_class_create_generic_2): Made this static, only
21988         call it from mono_class_init() and mono_class_setup_parent().
21989         (collect_implemented_interfaces_aux): Call mono_class_init() on
21990         the interfaces we collect.
21991         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21993 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21995         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21996         it a real thread handle.
21998         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21999         MonoJitExceptionInfo, since each catch clause needs its own variable.
22000         
22001 2005-01-11  Dick Porter  <dick@ximian.com>
22003         * image.c (mono_pe_file_open): New variant on mono_image_open()
22004         that does not set up the CLI metadata; used for FileVersionInfo so
22005         it can get the data for windows binaries too.
22006         
22007         * process.c (process_read_string_block): Don't read off the end of
22008         the StringTable block.
22010         These both fix bug 70766.
22012 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22014         * gc.c: set some fields to NULL at GC cleanup time.
22015         * threads.c: if we quit the main thread, call exit ().
22017 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22019         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22021 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22023         * threads.h, threads.c, object.c: added accessor and settor for
22024         main_thread. Handle it specially when exiting from it: wait
22025         for other foreground threads to exit.
22027 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22029         * process.c, verify.c: remove some bloat.
22031 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22033         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22034         the calling convention to cdecl under win32.
22036 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22038         * object.c (mono_object_get_size): New function to get the size of
22039         an object instance.
22041         * profiler.c (simple_allocation): Use above.
22043 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22045         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22046         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22047         get an appdomain by it's id and we can't assume the root's id is 0).
22048         * domain-internals.h: Change the function prototype to match.
22049         * icall.c: Change the icall table for AppDomain.
22051 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22053         * locales.c (string_invariant_compare_char): Only compute
22054         GUnicodeTypes in the case where we need them.  Test for ordinality
22055         first and return if so.
22057         From the commit:
22059                 /*
22060                  * FIXME: here we must use the information from c1type and c2type
22061                  * to find out the proper collation, even on the InvariantCulture, the
22062                  * sorting is not done by computing the unicode values, but their
22063                  * actual sort order.
22064                  */
22066 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22068         * loader.c: for P/Invoke methods, allow the "Internal" shared
22069         library name to refer to the calling process symbol namespace.
22071 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22073         * Makefile.am: Add the security manager to the build.
22074         * security-manager.c|h: New. Initialization of the security manager.
22076 2005-01-07  Dick Porter  <dick@ximian.com>
22078         * threads.c: 
22079         * monitor.c: Update thread state during Monitor and WaitHandle
22080         waits.  Fixes bug 71031.
22082 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22084         * reflection.c (property_encode_signature): Correctly handle when the
22085         property has no methods.
22087 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22089         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22090         
22091         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22092         fields from mb, not rmb. Fixes #71017.
22094         * marshal.c (emit_ptr_to_str_conv): Add support for 
22095         ByValTStr -> string conversion. Fixes #71015.
22097         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22099         * mempool.c (mono_mempool_contains_addr): New helper function.
22101 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22103         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22104         HasSematics encoded fields.
22105         
22106         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22107         invalid string marshalling.
22109         * metadata.c: Fix warnings.
22110         
22111 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22113         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22114         profiler support.
22116 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22118         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22119         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22120         tests.
22122 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22124         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22125         so methods containing these can be AOTed.
22127 2005-01-03  Martin Baulig  <martin@ximian.com>
22129         * loader.c (find_method): Removed the hack for generic instances.
22130         (method_from_memberref): If our parent is a generic instance, pass
22131         its generic type definition to find_method() and then inflate the
22132         method.
22133         (mono_get_method_constrained): Pass the generic type definition to
22134         find_method() and inflate the method later.
22136         * class-internals.h (MonoStats): Added `generic_class_count'.
22138         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22139         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22141         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22142         generic type definitions.
22144 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22146         * loader.c icall.c: Fix warnings.
22148 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22150         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22151         blittable types. Fixes #70864.
22153 2004-12-29  Martin Baulig  <martin@ximian.com>
22155         * icall.c
22156         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22158         * reflection.c (mono_method_get_object): Create a
22159         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22160         call mono_get_inflated_method().
22162         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22164 2004-12-27  Martin Baulig  <martin@ximian.com>
22166         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22167         (MonoMethodInflated): Added `inflated' field.
22169         * class.c (mono_class_inflate_generic_method): Don't really
22170         inflate the method here; just set the `is_inflated' flag in the
22171         MonoMethod.
22172         (mono_class_get_inflated_method): Actually inflate the method here
22173         if it's not already inflated; we use the MonoMethodInflated's new
22174         `inflated' field as a cache.
22176 2004-12-26  Martin Baulig  <martin@ximian.com>
22178         * class.c
22179         (inflate_generic_class): Moved some code out of inflate_generic_type().
22180         (mono_class_inflate_generic_method): If we're already inflated,
22181         inflate the context and use the declaring method; ie. make sure
22182         the declaring method of an inflated method is always the generic
22183         method definition.
22184         (mono_class_create_from_typedef): Create
22185         `class->generic_container->context->gclass'.
22187 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22189         * metadata-internals.h, marshal.c, reflection.c: More
22190         MonoGHashTable->GHashTable.
22192         * domain-internals.h, class.c: Change MonoGHashTable's into
22193         GHashTables for some cases where no gc stuff is used
22195         All users: update apis
22197 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22199         * metadata.c (builtin_types): Make this `const'. Makes this get
22200         put into the shareable section.
22201         (mono_metadata_init): Casts to make gcc happy.
22203 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22205         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22207 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22209         * icall.c: Added an internal call to retrieve the position and length
22210         of assembly-level declarative security attributes (RequestMinimum, 
22211         RequestOptional and RequestRefuse). This is used by the Assembly class
22212         to re-create the corresponding permission sets.
22214 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22216         * marshal.c: fix the stelemref wrapper to be type correct
22217         (and faster).
22219 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22221         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22222         to do key & 0x7fffffff. Hashtable already does this. It just
22223         results in longer code.
22225 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22227         * appdomain.c: Bump corlib version.
22228         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22229         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22230         * reflection.c|h: Add functions to get declarative security infos
22231         (blob position and length) for assemblies, classes and methods.
22233 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22235         * reflection.c: sort the constant table (bug #70693).
22237 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22239         * object-internals.h, threads.c, domain.c: add accessors for
22240         the MonoThread and MonoDomain tls keys.
22242 2004-12-18  Martin Baulig  <martin@ximian.com>
22244         * class.c (inflate_generic_type): If we're inflating a generic
22245         instance, set `ngclass->context->container = context->container';
22246         ie. the container we inflated into.
22248         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22249         inflate_generic_type() changes.
22251 2004-12-17  Martin Baulig  <martin@ximian.com>
22253         * class-internals.h
22254         (MonoGenericClass): Replaced `MonoType *generic_type' with
22255         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22256         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22257         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22259 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22261         * exception.c (mono_exception_from_token): New helper function.
22263 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22265         * assembly.c (mono_assembly_load_with_partial_name): Call 
22266         mono_assembly_loaded before invoking the preload hooks. Fixes
22267         #70564.
22269         * object-internals.h (MonoThread): Change culture_info and 
22270         ui_culture_info into an array.
22272         * threads.c: Cache culture info objects from more than one appdomain.
22274         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22275         current UI culture.
22277 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22279         * threads.h threads.c appdomain.c: Clear the culture_info field of
22280         all threads during unloading if they point to an object in the dying
22281         appdomain.
22283 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22285         * culture-info.h (TextInfoEntry): New struct
22286         * object-internals.h: sync with managed
22287         * locales.c: fill the `text_info_data' field
22288         * culture-info-tables.h: update
22290 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22292         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22293         collector.
22295 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22297         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22298         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22300 2004-12-12  Martin Baulig  <martin@ximian.com>
22302         * mono-debug-debugger.c (write_type): If we're an enum and the
22303         builtin types have already been initialized, call mono_class_init().
22305 2004-12-11  Martin Baulig  <martin@ximian.com>
22307         * metadata.c (mono_metadata_load_generic_params): Added
22308         `MonoGenericContainer *parent_container' argument; automatically
22309         compute `container->is_method'; pass the correct owner to
22310         get_constraints().      
22312         * reflection.c (compare_genericparam): Sort the GenericParam table
22313         according to increasing owners. 
22315 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22317         * profiler.c: allow disabling the default profiler.
22319 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22321         * decimal.c, icall.c: allow disabling System.Decimal support.
22323 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22325         * reflection.c: Add support for null attribute arguments.
22327 2004-12-09  Martin Baulig  <martin@ximian.com>
22329         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22330         names to get rid of compiler warnings.
22332 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22334         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22335         mono_marshal_load_type_info (). Fixes #69625.
22336         (mono_marshal_get_ptr_to_struct): Likewise.
22338 2004-12-08  Martin Baulig  <martin@ximian.com>
22340         * mono-debug.h: Bumped version number to 47.
22342         * mono-debug-debugger.c
22343         (mono_debugger_event_handler, mono_debugger_event): Take two
22344         guint64 arguments insteed of a gpointer and a guint32.  
22346 2004-12-08  Martin Baulig  <martin@ximian.com>
22348         * debug-mono-symfile.h
22349         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22350         `address' to `native_offset'.
22352 2004-12-08  Martin Baulig  <martin@ximian.com>
22354         * class.c (mono_class_create_from_typespec): Only inflate if we
22355         either have `context->gclass' or `context->gmethod'.
22357 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22359         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22361         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22363         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22365         * reflection.c (mono_assembly_get_object): Remove the workaround put
22366         in for the release.
22367         
22368         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22370         * appdomain.c: Bump corlib version.
22372         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22373         be visible in other appdomains.
22375 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22377         * threads.c: Interlocked inc and dec for longs were messed up,
22378         use a KISS based impl for this. Fixes 70234
22380 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22382         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22384 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22386         * icall.c: fix to follow policy not to allow struct
22387         arguments in icalls.
22389 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22391         * process.c: make the patch that handles spaces in file paths work
22392         on mono/windows too.
22394 2004-12-06  Martin Baulig  <martin@ximian.com>
22396         * class.c (mono_class_create_generic): Call
22397         mono_class_setup_supertypes() if we're dynamic.
22398         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22400 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22402         * object-internals.h: Add new fields to MonoThread.
22404         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22406         * icall.c threads-types.h threads.c: Add new icalls.
22408         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22410         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22411         managed side.
22413         * appdomain.c: Bump corlib version.
22415         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22416         internal assemblies. Fixes #69181.
22418 2004-12-05  Martin Baulig  <martin@ximian.com>
22420         * class.c (mono_class_inflate_generic_signature): Make this a
22421         no-op if `context' is NULL or we don't have any type parameters;
22422         also copy `sentinelpos'.        
22424 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22426         * image.c: Add unbox_wrapper_cache.
22428         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22430         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22431         function generator.
22432         
22433         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22434         Fixes #70173.
22436         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22437         
22438 2004-12-04  Martin Baulig  <martin@ximian.com>
22440         * loader.c (mono_method_get_signature_full): New public function;
22441         like mono_method_get_signature(), but with an additional
22442         `MonoGenericContext *' argument.
22444         * class.c (mono_class_inflate_generic_signature): Formerly known
22445         as inflate_generic_signature(); make this public.
22447 2004-12-04  Martin Baulig  <martin@ximian.com>
22449         * metadata.c
22450         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22451         instead of a `MonoGenericContainer *'.  
22452         (mono_metadata_parse_array_full): Likewise.
22453         (mono_metadata_parse_signature_full): Likewise.
22454         (mono_metadata_parse_method_signature_full): Likewise.
22455         (mono_metadata_parse_generic_inst): Likewise.
22456         (mono_metadata_parse_generic_param): Likewise.
22457         (mono_metadata_parse_mh_full): Likewise.
22458         (mono_type_create_from_typespec_full): Likewise.
22460 2004-12-03  Martin Baulig  <martin@ximian.com>
22462         * class-internals.h (MonoGenericContainer): Replaced the
22463         `MonoGenericContext * pointer with a `MonoGenericContext'
22464         structure and made it the first element.
22466 2004-12-03  Martin Baulig  <martin@ximian.com>
22468         * class.c
22469         (inflate_generic_type): Set the `context->container' when creating
22470         a new MonoGenericContext.
22471         (mono_class_inflate_generic_method): Likewise.
22472         (mono_class_create_from_typespec): Just use `context->container'
22473         to get the container.
22475         * loader.c (method_from_methodspec): Set `context->parent' from
22476         `context->container' - and if that's a method container, use its
22477         parent.  Also set the `context->container' when creating a new
22478         MonoGenericContext.
22479         (mono_get_method_from_token): Use just `context->container' to get
22480         the container.
22482         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22483         `gclass->context->container'.
22485         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22486         the `context->container' when creating a new MonoGenericContext.
22488 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22490         * reflection.c (compare_genericparam): Sort params with identical
22491         owner by their number. Fixes gen-111 on sparc.
22493 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22495         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22496         around the domain changes.
22498         * appdomain.c (mono_domain_unload): Handle the case when the thread
22499         calling Unload is itself being aborted during unloading. Fixes #70022.
22501         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22503         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22504         checkpoint_func as an icall so it gets a wrapper.
22505         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22506         in the cross-appdomain wrappers too.
22508         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22510         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22512         * reflection.c: Fix some memory leaks.
22513         
22514 2004-12-02  Martin Baulig  <martin@ximian.com>
22516         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22518         * metadata.c (generic_class_cache): New static hashtable.
22519         (mono_metadata_lookup_generic_class): New public method.
22521 2004-12-02  Martin Baulig  <martin@ximian.com>
22523         * class.c (mono_class_create_from_typedef): Call
22524         mono_class_setup_parent() and mono_class_create_mono_type() before
22525         parsing the interfaces.
22527 2004-12-02  Martin Baulig  <martin@ximian.com>
22529         * metadata.c (generic_inst_cache): New static hashtable.
22530         (mono_metadata_lookup_generic_inst): New public function.
22531         (mono_metadata_inflate_generic_inst): New public function.
22532         (mono_metadata_parse_generic_inst): New public function.
22533         (do_mono_metadata_parse_generic_class): Use the new
22534         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22535         since this'll also use the cache.
22537         * reflection.c (mono_reflection_bind_generic_method_parameters):
22538         Use mono_metadata_lookup_generic_inst() to use the new cache.
22540         * class.c (inflate_mono_type): Use
22541         mono_metadata_inflate_generic_inst() to inflate a generic
22542         instance; this'll also use the new cache.
22544         * loader.c (method_from_methodspec): Use
22545         mono_metadata_parse_generic_inst() and
22546         mono_metadata_inflate_generic_inst() rather than parsing it
22547         manually, so we can use the new cache.
22549 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22551         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22552         the wait times out.
22554 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22556         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22557         iter->args based on whether parameters are passed in registers (i.e.
22558         MONO_ARCH_REGPARMS is defined)
22560 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22562         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22563         the exception message. Fixes #70070.
22564         (method_from_methodspec): Fix warnings.
22566 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22568         * process.c: (complete_path) return the path quoted
22570 2004-12-01  Martin Baulig  <martin@ximian.com>
22572         * class-internals.h (MonoGenericInst): New structure.
22573         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22574         `is_open' with `MonoGenericInst *inst'.
22575         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22576         `is_open' with `MonoGenericInst *inst'.
22578 2004-11-30  Martin Baulig  <martin@ximian.com>
22580         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22582         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22583         to `generic_class_cache'.
22585         * metadata.c
22586         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22587         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22588         (mono_generic_inst_is_valuetype): Renamed to
22589         mono_generic_class_is_valuetype().
22591         * class-internals.h
22592         (MonoGenericInst): Renamed to MonoGenericClass.
22593         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22594         (MonoClass): Renamed `generic_inst' to `generic_class'.
22595         (MonoGenericContext): Renamed `ginst' to `gclass'.
22597         * object-internals.h
22598         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22600         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22601         mono_reflection_generic_class_initialize().
22603         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22604         now known as "System.Reflection.MonoGenericClass".
22605         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22607 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22609         * class-internals.h: Added a flag field to MonoClass to cache the
22610         declarative security attributes actions associated with the class.
22611         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22612         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22613         applicable to the JITted method.
22614         * reflection.c|h: Added functions to extract (as flags) which security
22615         actions are available (declaratively) for a method, class or assembly.
22616         * metadata.c|h: Added functions to search the declarative security
22617         table in the metadata.
22618         
22619 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22621         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22622         EXPORTEDTYPES are already in the class name cache, so there is no
22623         need to add extra code here to look at them. Just removes a bit of
22624         cruft.
22626         (ves_icall_System_Environment_get_TickCount): No need for #if
22627         WINDOWS. We already have the code in io-layer.
22629 2004-11-28  Martin Baulig  <martin@ximian.com>
22631         * loader.c
22632         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22633         Fixes gen-112.cs.
22635 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22637         * assembly.c (do_mono_assembly_open): Instead of having a
22638         conditional WITH_BUNDLE, incorporate support for bundles here, by
22639         having a global `bundles' variable holding a pointer to the actual
22640         bundles. 
22642         (mono_register_bundled_assemblies): New API call used by the
22643         bundle code. 
22645         See mkbundle.1 for details.
22646         
22647 2004-11-27  Martin Baulig  <martin@ximian.com>
22649         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22650         the vtable for generic methods.
22652 2004-11-26  Martin Baulig  <martin@ximian.com>
22654         * metadata.c
22655         (mono_metadata_generic_method_hash): New public function.
22656         (mono_metadata_generic_method_equal): Likewise.
22658         * class-internals.h
22659         (MonoGenericContainer): Added `GHashTable *method_hash'.
22661         * reflection.c (ReflectionMethodBuilder): Added
22662         `MonoGenericContainer *generic_container'.
22663         (reflection_methodbuilder_to_mono_method): Don't create a new
22664         MonoGenericContainer each time we're called.
22665         (mono_reflection_bind_generic_method_parameters): Use
22666         `container->method_hash' to cache the results so we don't create a
22667         different method if we're called several times with the same
22668         arguments.
22670         * loader.c (method_from_methodspec): Use the new
22671         `container->method_hash' here, too.
22673 2004-11-26  Martin Baulig  <martin@ximian.com>
22675         * class.c (inflate_generic_signature): Correctly compute
22676         `res->has_type_parameters'.
22677         (mono_class_vtable): Use the `has_type_parameters' flag to
22678         determine whether we're a generic method.
22680         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22682 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22684         * object.c (mono_runtime_run_main): Fix a small memory leak.
22686 2004-11-25  Martin Baulig  <martin@ximian.com>
22688         * class.c (set_generic_param_owner): Fixed the loop.
22690 2004-11-25  Martin Baulig  <martin@ximian.com>
22692         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22693         generic methods.
22695 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22697         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22698         names. Fixes #69787.
22700 2004-11-24  Martin Baulig  <martin@ximian.com>
22702         * class.c (mono_class_create_generic_2): If we don't have a
22703         `ginst->parent', inflate `gklass->parent' to get our parent.
22705 2004-11-24  Martin Baulig  <martin@ximian.com>
22707         * reflection.c (compare_genericparam): Correctly sort the
22708         GenericParam table; fixes #69779.
22710 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22712         * reflection.c: When writing a PE file, don't create a huge
22713         buffer in memory. Just write the arrays we have to the file.
22714         This reduces memory usage.
22716         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22717         globally.
22719 2004-11-17  Martin Baulig  <martin@ximian.com>
22721         * class.c (mono_class_init): Don't setup `class->parent' for
22722         dynamic instances; moved this to mono_class_generic_2().
22723         (mono_class_create_generic): Also set `klass->inited' for dynamic
22724         generic instances.
22725         (mono_class_create_generic_2): Don't do anything for dynamic
22726         generic instances.  Set `klass->parent' here and also call
22727         mono_class_setup_parent() here. 
22729         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22730         `MonoType *parent' argument; set `ginst->parent' before calling
22731         mono_class_create_generic_2(), so we set the correct parent.
22733 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22735         * reflection.c: allow getting attributes from ModuleBuilder
22736         (used by ikvm).
22738 2004-11-17  Martin Baulig  <martin@ximian.com>
22740         * class.c (mono_class_create_from_typedef): If a type parameter is
22741         inherited from an outer class, set its owner to that class.
22743 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22745         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22746           for (int*) written size. This fixes bug #69592.
22748 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22750         * icall.c: Added IsAuthenticodePresnet internal call.
22751         * image.c|h: New function that check a MonoImage for an Authenticode
22752         signature in the certificate PE data directory.
22753         * security.c|h: New internal call to ask the runtime if an 
22754         Authenticode signature seems referenced in the PE header.
22756 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22758         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22760         * reflection.c (mono_image_create_pefile): Free the assembly streams
22761         after writing out the assembly file.
22763         * object.c (mono_runtime_run_main): Fix small memory leak.
22765         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22766         property access modifiers. Fixes #69389.
22768 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22770         * domain.c, object.c, object-internals.h, domain-internals.h,
22771         object.h, marshal.c: keep dynamic code info per domain.
22773 2004-11-15  Martin Baulig  <martin@ximian.com>
22775         * class.c (mono_type_get_name_recurse): Put type arguments in
22776         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22777         see bug #68387.
22779 2004-11-15  Martin Baulig  <martin@ximian.com>
22781         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22782         (mono_class_setup_vtable): When computing `the_cname' for a
22783         generic instance, don't include the namespace since we'd otherwise
22784         add it twice.
22786 2004-11-15  Martin Baulig  <martin@ximian.com>
22788         * class.c (mono_class_create_generic): Changed return type to void.
22789         (mono_class_create_generic_2): New public function; setup
22790         `class->method', `class->field' and `class->interfaces' here
22791         instead of in mono_class_init().
22793         * class.h (mono_class_create_generic): Moved to class-internals.h.
22795 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22797         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22798         rather than writing to memory, write to this file. Right now,
22799         we are just writting into a buffer, and copying that. However
22800         we can avoid the buffer later.
22802         (mono_dynamic_stream_reset): new function
22804         * icall.c, object-internals.h: update for the above.
22806 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22808         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22809         have been using gc'd memory. First it is slower, unlikely
22810         the comment in the source code said, secondly, it increases
22811         our footprint to do it in the gc.
22813         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22814         the method so that it does not have to copy to managed code.
22816 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22818         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22820 2004-11-12  Martin Baulig  <martin@localhost>
22822         * reflection.c (mono_image_create_token): Allow generic method
22823         definitions here, since they may appear in an `.override'; see
22824         gen-98/gen-99 for an example.
22826 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22828         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22829         #69365.
22831         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22832         descriptive.
22834 2004-11-11  Martin Baulig  <martin@ximian.com>
22836         * class.c (mono_class_setup_vtable): In an explicit interface
22837         implementation, the method name now includes the arity.
22839 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22841         * object.c (mono_array_full_copy): Fix warning.
22843 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22845         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22846         mono_class_get_method_from_name() instead.
22847         
22848         * class-internals.h: Added two new types of wrappers. 
22849         Added MonoRemotingTarget enum. Added new trampoline function type, which
22850         takes an additional MonoRemotingTarget value as parameter, so it is
22851         possible to request a trampoline for a specific target.
22852         
22853         * class.c: Added new mono_class_get_method_from_name() method.
22854         
22855         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22856         general remoting sinks and one specific for cross domain calls.
22857         
22858         * debug-helpers.c: Added new wrapper names.
22859         
22860         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22861         of a remote class.
22862         
22863         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22864         
22865         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22866         with several other methods (mono_marshal_get_xappdomain_dispatch,
22867         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22868         and others) can generate a fast remoting wrapper for cross domain calls.
22869         More information can be found in docs/remoting.
22870         Other changes: Removed mono_find_method_by_name, and used
22871         mono_class_get_method_from_name instead.
22872         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22873         is stored in the remoting invoke hashtable.
22874         
22875         * marshal.h: published the new method for getting the xdomain wrapper,
22876         and also added a method for getting the adequate wrapper for a given
22877         method and target.
22878         
22879         * object-internals.h, object.c: Added a couple of methods for capying and
22880         cloning arrays.
22881         Modified mono_install_remoting_trampoline, which takes the new remoting
22882         trampoline that has a remoting target as parameter.
22883         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22884         will return the most suitable vtable for the target.
22885         Added mono_remote_class_vtable, which returns the vtable of a remote class
22886         (which can be the normal remoting vtable or the xdomain vtable).
22887         
22888         * threads.c: the xdomain invoke and dispatch wrappers must also be
22889         protected against interruptions.
22891 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22893         * icall.c: use memmove in BlockCopyInternal when the source and
22894         destination arrays are the same.
22896 2004-11-09  Martin Baulig  <martin@ximian.com>
22898         * class-internals.h (MonoGenericContainer): Removed `method' and
22899         `signature', replaced them with `is_method' and `is_signature'
22900         flags.  Added `context'.
22902         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22903         instead of a `MonoGenericContainer *'.
22905         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22906         for dynamic type parameters.
22907         (mono_metadata_load_generic_params): Setup `container->context'.
22909         * reflection.c (mono_reflection_setup_generic_class): Setup
22910         `tb->generic_container->context'.
22911         (do_mono_reflection_bind_generic_parameters): Use
22912         mono_class_inflate_generic_type() to correctly inflate types,
22913         rather than using our own hack just for MONO_TYPE_VAR.
22915 2004-11-09  Martin Baulig  <martin@ximian.com>
22917         * class.c (mono_class_inflate_generic_method): Small fix; don't
22918         crash here.
22920         * icall.c
22921         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22922         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22923         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22924         (ves_icall_Type_BindGenericParameters): Likewise.
22925         (ves_icall_Type_get_IsGenericInstance): Likewise.
22926         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22927         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22928         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22929         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22931 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22933         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22934         assembly versions and public key tokens. Fixes #69113.
22936 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22938         * metadata.c: fix bug introduced with the type cache changes
22939         on 2004-11-06.
22941 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22943         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22944         the MonoClass pointer instead of the token in exception clauses.
22945         * reflection.c: updates for the above and make the code not depend
22946         on the structure of MonoExceptionClause.
22948 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22950         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22951         Add support for dynamic assemblies. Fixes #69114.
22953         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22955 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22957         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22958         since most only those methods use it. the code member of
22959         MonoMethodPInvoke was dead, so that can be removed too. Also,
22960         remove inline_count (again, not used), and move slot so that it
22961         can share bits with some other flags. This saves 8 bytes in the
22962         structure and gives us about 50 kb back for mcs helloworld.cs
22964         * *.[ch]: Do naming changes for the above.
22966         * loader.c (mono_method_get_header): Lazily init the header
22967         on first access.
22968         (mono_get_method_from_token): don't init the header here
22969         (mono_free_method): the header may never be allocated
22971         Overall, this saves 150 kb of unmanaged allocations
22972         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22973         memory at runtime.
22974         
22975         * loader.c, loader.h (mono_method_get_header): new accessor.
22977         * *.[ch]: use the above method. Prepares us to lazily load
22978         the header.
22980         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22981         three warnings, which are actual bugs (see 69206).
22983         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22984         unused. Saves a cool 4 bytes / method.
22986 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22988         * metadata.c (builtin_types): Add types for System.Object here.
22989         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22990         for a class or valuetype from klass->this_arg or klass->byval_arg.
22992         On mcs for a hello world, this gets us down from 21836 MonoType's
22993         to 14560.
22995         (mono_metadata_free_type): Account for the above change.
22997 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22999         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23000         exception instead of asserting if name is null.
23001         (ves_icall_System_AppDomain_GetData): Ditto.
23003 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23005         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23006         EnumBuilder.
23008         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23009         Return NULL when the domain does not have entry_assembly set.
23011         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23012         Add a 'resource_modules' argument.
23013         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23015         * reflection.c (mono_reflection_create_runtime_class): Move setting
23016         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23017         for enums too.
23019         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23020         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23021         Throw an ArgumentNullException if 'ptr' is null.
23023         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23024         assemblies here. Fixes #69020.
23026 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23028         * reflection.c (build_compressed_metadata): Fix the previous patch for
23029         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23030         the stack.
23032 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23034         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23035         the cultures is false. Fixes #69090.
23037         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23038         detected by valgrind.
23039         
23040         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23041         TypeResolve multiple times for the same type. Fixes #65577.
23043 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23045         * marshal.c: Avoid using ldftn to call managed functions. It is
23046         much slower than just a call.
23048         * reflection.c (mono_module_get_object): free the basename we
23049         allocate here from glib.
23050         
23051         * reflection.c (ensure_runtime_vtable): make sure to free
23052         overrides.  Also, we were allocating an array of MonoMethod not an
23053         array of MonoMethod*.
23055         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23057         * image.c (mono_image_close): free image->guid here.
23059 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23061         * reflection.c: Fix some spec conformance issues with the PE file
23062         structures so mcs compiled apps run on the Net 2.0 beta.
23064 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23066         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23067         Implement this. Fixes #67264.
23069         * debug-helpers.h debug-helpers.c marshal.c: Move 
23070         mono_find_method_by_name to debug-helpers.c.
23072 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23074         * object.c (mono_release_type_locks): type_initialization_hash is
23075         a GHashTable.
23077         * reflection.c object.c object-internals.h: Fix warnings.
23079         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23080         without accessors. Fixes #61561.
23082         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23083         application base from the root domain if not set. Fixes #65641.
23084         (mono_runtime_init): Fix warning.
23086 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23088         * appdomain.c: call mono_thread_pool_init.
23089         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23090         of worker threads based on the number of CPUs and the environment
23091         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23092         for non-windows (windows) systems.
23094 2004-10-27  Chris Toshok  <toshok@ximian.com>
23096         * mono-debug-debugger.c (write_class): don't call mono_class_init
23097         here, as even with the check for (!klass->init_pending), we get
23098         into a situation where we're hitting cycles in class
23099         initialization.  Fixes #68816.
23101 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23103         * image.c: Avoid overwriting values in the loaded_images_hash when an
23104         assembly is loaded multiple times. Fixes #61152.
23106         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23107         so multiple satellite assemblies for the same name can be loaded.
23108         Fixes #68259.
23110         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23111         not NULL.
23113         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23114         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23116         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23117         pending finalizers are not invoked after the appdomain has been 
23118         unloaded. Fixes #67862.
23120 2004-10-22  Martin Baulig  <martin@ximian.com>
23122         * mono-debug-debugger.c
23123         (mono_debugger_runtime_invoke): Don't box valuetypes.
23125 2004-10-22  Chris Toshok  <toshok@ximian.com>
23127         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23128         don't hide private methods.
23130 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23132         * icall.c: Allows the runtime to "share" (when known) the public key
23133         token of an assembly. This avoid the need to recalculate the token 
23134         (from the public key) in managed code.
23136 2004-10-21  Chris Toshok  <toshok@ximian.com>
23138         * debug-helpers.c (append_class_name): argh, revert last patch.
23139         
23140 2004-10-21  Chris Toshok  <toshok@ximian.com>
23142         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23143         not '/', so that it matches what the debugger uses to look up
23144         methods.
23146 2004-10-21  Martin Baulig  <martin@ximian.com>
23148         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23149         public method; this is called each time an exception is thrown and
23150         allows the debugger to use exception catch points.
23152 2004-10-21  Martin Baulig  <martin@ximian.com>
23154         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23155         the stack pointer and the exception object in some struct and pass
23156         that to the debugger.
23158 2004-10-21  Chris Toshok  <toshok@ximian.com>
23160         * mono-debug-debugger.c (do_write_class): add instance/static
23161         event support.  We don't expose "raise" or "other" yet.
23162         (event_is_static): new method.
23164 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23166         * mono-debug-debugger.c
23167         (mono_debugger_handle_exception): Remove
23168         bogus return value for fussy compilers.
23170 2004-10-20  Martin Baulig  <martin@ximian.com>
23172         * mono-debug-debugger.c
23173         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23174         (mono_debugger_handled_exception): Likewise.
23176 2004-10-20  Martin Baulig  <martin@ximian.com>
23178         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23179         MONO_DEBUGGER_EVENT_EXCEPTION.
23181         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23182         public function to send the debugger a notification for an
23183         exception and inform it about a catch/finally clause.
23185 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23187         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23188         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23189         fix 2.95 build. 
23191         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23193 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23195         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23196         marshalled as [In,Out]. Fixes #58325.
23198 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23200         * reflection.c (mono_method_body_get_object): Implement some fields.
23202 2004-10-12  Martin Baulig  <martin@ximian.com>
23204         * reflection.c (mono_reflection_bind_generic_parameters): Small
23205         fix, correctly retrieve our parent from a generic instance.
23207 2004-10-12  Martin Baulig  <martin@ximian.com>
23209         * metadata.c (mono_metadata_generic_param_equal): We always have
23210         an owner.
23212         * class.c
23213         (mono_class_from_generic_parameter): We need to have an owner.
23214         (my_mono_class_from_generic_parameter): Likewise.
23216         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23217         mono_reflection_create_generic_class() and added a new
23218         mono_reflection_setup_generic_class().  
23219         (mono_reflection_initialize_generic_param): If we're a nested
23220         generic type and inherited from the containing class, set our
23221         owner to the outer class.
23223 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23225         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23227         * reflection.c (mono_method_body_get_object): New function to create
23228         a MethodBody object.
23230         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23232 2004-10-11  Martin Baulig  <martin@ximian.com>
23234         * metadata.c (_mono_metadata_type_equal): Renamed to
23235         do_mono_metadata_type_equal() and made static.
23237 2004-10-11  Martin Baulig  <martin@ximian.com>
23239         * appdomain.c: Bump corlib version number to 28.
23241 2004-10-10  Martin Baulig  <martin@ximian.com>
23243         * class-internals.h
23244         (MonoGenericInst): Added `MonoGenericContainer *container'.
23245         (MonoGenericMethod): Likewise.
23246         (MonoGenericContext): Likewise.
23247         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23249         * metadata.c
23250         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23251         (do_mono_metadata_parse_generic_inst): Likewise.
23252         (mono_metadata_parse_type_full): New public method.  This is the actual
23253         mono_metadata_parse_type() implementation - with an additional
23254         `MonoGenericContainer *' argument.
23255         (mono_metadata_parse_array_full): Likewise.
23256         (mono_metadata_parse_signature_full): Likewise.
23257         (mono_metadata_parse_method_signature_full): Likewise.
23258         (mono_metadata_parse_mh_full): Likewise.
23259         (mono_type_create_from_typespec): Likewise.
23260         (mono_metadata_interfaces_from_typedef_full): New public method;
23261         this is similar to the other _full() methods, but we take a
23262         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23263         (mono_metadata_parse_generic_param): Take an additional
23264         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23265         from that container.
23266         (mono_metadata_generic_param_equal): New static method to compare
23267         two type parameters.
23268         (_mono_metadata_type_equal): New static method; takes an
23269         additional `gboolean signature_only' argument - if true, we don't
23270         compare the owners of generic parameters.
23271         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23272         with a TRUE argument - do a signature-only comparision.
23274         * loader.c: Use the new _full() methods and pass the
23275         MonoGenericContainer to them.
23277         * object-internals.h (MonoReflectionTypeBuilder): Added
23278         `MonoGenericContainer *generic_container' field.
23279         (MonoReflectionMethodBuilder): Likewise.
23281 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23283         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23284         case initial images of dynamic assemblies.
23286         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23288         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23290         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23291         length of event->other array.
23292         (typebuilder_setup_events): Ditto.
23294         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23295         'assembly_by_name' and add an 'assemblies' list.
23297         * assembly.h assembly.c: Add a new search hook for determining whenever
23298         an assembly is already loaded. Use this instead of searching in the
23299         loaded_assemblies list.
23301         * domain.c appdomain.c: Implement the new search hook so loaded 
23302         assemblies are now scoped by appdomain. Fixes #67727.
23304 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23306         * threads.c (mono_thread_attach): Initialize synch_lock field so
23307         mono_thread_detach works again.
23309         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23310         'lib' too. Fixes #63130.
23312 2004-10-06  Jackson Harper  <jackson@ximian.com>
23314         * culture-info-tables.h: regenerated.
23316 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23318         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23319         implemented by other interfaces in the result. Fixes #65764.
23320         
23321         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23322         Handle unloadable modules without crashing.
23324         * image.c (load_modules): Revert the previous patch since modules must
23325         have a fixed index inside the array.
23326         
23327         * image.c (load_modules): Don't include native modules in the modules
23328         array.
23330 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23332         * reflection.h: Add param_defaults field.
23334         * reflection.c: Add support for parameter defaults in dynamic methods.
23335         Fixes #64595.
23337         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23338         an empty string when a type has no namespace. Fixes #64230.
23340 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23342         * tabledefs.h: Added "internal" security actions to support non-CAS
23343         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23344         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23346 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23348         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23349         constructor of abstract class. Fixes #61689.
23351 2004-10-04  Martin Baulig  <martin@ximian.com>
23353         * class-internals.h (MonoGenericContainer): New type.
23354         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23355         `MonoGenericContainer *generic_container'.
23356         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23357         `MonoGenericContainer *generic_container'.
23359         * metadata.c (mono_metadata_load_generic_params): Return a
23360         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23361         removed the `num' argument.
23363 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23365         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23366         for dynamic images.
23368         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23369         machine fields.
23371         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23373         * reflection.c: Save pe_kind and machine values into the generated
23374         image file.
23376         * appdomain.c: Bump corlib version number.
23378         * object-internals.h: Reorganize layout of LocalBuilder.
23380         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23381         New helper function.
23383         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23384         created MonoType for dynamic types. Fixes #66180.
23386 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23388         * threadpool.c: the ares hashtable needs a critical section around it.
23389         this prevents some nasty segfaults
23391 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23393         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23394         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23395         bug 67324).
23396         
23397 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23399         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23400         
23401 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23403         * image.c: Always canonicalize image file names, to avoid loading
23404         the same assembly twice when referenced using a relative path.
23406 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23408         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23410         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23412         * marshal.c: Fix warnings.
23414 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23416         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23417         attempting to marshal the delegate_trampoline as the method_addr.
23418         This patch has a static hashtable of marshalled delegates so that 
23419         we can map delegate_trampoline addresses back to delegates.  This
23420         allows a delegate passed to managed code to be passed back into native
23421         code.  Fixes #67039
23423 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23425         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23427         * reflection.c (method_encode_code): Align method headers properly.
23428         Fixes #66025.
23430 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23432         * marshal.c: In the runtime invoke wrapper, reset the abort
23433         exception if it is cached. This avoids the automatic rethrowal of 
23434         the exception after the catch of the wrapper. Also check for pending
23435         interruptions before calling the managed method. This is done using
23436         the new method emit_thread_force_interrupt_checkpoint, since the
23437         normal checkpoint method is ignored when running the invoke wrapper.
23438         * object.c: If the abort exception is rethrown, set the abort_exc
23439         field of the thread, so it will be rethrown aftere every catch.
23440         * threadpool.c: Only run an interruption checkpoint if what has been
23441         requested is a stop of the thread (aborts will be ignored).
23442         * threads.c: By default, a thread will now never be interrumped while
23443         running the runtime invoke wrapper (this ensures that runtime_invoke
23444         will always return to the caller if an exception pointer is provided).
23445         There is a new special method mono_thread_force_interruption_checkpoint()
23446         to force an interruption checkpoint even if running a protected
23447         wrapper, which is used by the same runtime invoke wrapper to do a check
23448         at a safe point.
23450 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23452         * object.c, object-internals.h: Implemented mono_release_type_locks,
23453         which releases the cctor locks held by a thread.
23454         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23455         by a thread. Added mono_thread_exit() method to be used to safely stop
23456         a thread.
23458 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23460         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23461         Move null check before dereference.  Avoid indexing beyond the end
23462         of the 'modules' array.
23464 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23466         * metadata-internals.h (MonoImage): Add module_count field.
23467         * image.c (load_modules): Set image->module_count.
23468         (mono_image_load_file_for_image): Use image->module_count.
23469         * reflection.c (mono_image_load_module): Append to image->modules array 
23470         of dynamic assembly.
23471         (mono_module_get_object): Fix loop to actually increment index.
23472         Use image->module_count.
23473         * assembly.c (mono_assembly_load_references): Use image->module_count.
23474         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23475         Likewise.
23477 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23479         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23480         Avoid assert on generic types.
23482 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23484         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23486         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23488         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23489         function to convert a MarshalSpec structure to its managed counterpart.
23491         * reflection.c: Fix warnings.
23492         
23493         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23494         field.
23496         * icall.c (mono_create_icall_signature): Fix build.
23498 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23500         * icall.c: Add MakePointType icall.
23502         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23503         warnings.
23505 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23507         * threadpool.c: reuse allocated slots in the queue.
23509 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23511         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23513         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23515         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23516         previous change.
23518         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23519         ThrowOnUnmappableChar.
23521         * icall.c (ves_icall_Type_GetPacking): New icall.
23523 2004-09-24  Martin Baulig  <martin@ximian.com>
23525         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23527 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23529         * appdomain.c:
23530         (mono_domain_set): allow setting a domain that is being unloaded.
23531         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23532         being unloaded.
23534 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23536         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23537         the GetCustomAttributes icall.
23539 2004-09-23  Martin Baulig  <martin@ximian.com>
23541         * object-internals.h (MonoReflectionGenericParam): Replaced
23542         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23543         with `guint32 attrs'.
23545 2004-09-23  Martin Baulig  <martin@ximian.com>
23547         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23549 2004-09-23  Martin Baulig  <martin@ximian.com>
23551         * object-internals.h (GenericParameterAttributes): New enum.
23553 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23555         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23556         
23557         * class.c (init_events): Fill out event->other field.
23559         * class.c: Fix warnings.
23561         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23563 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23565         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23566         walk which doesn't supply the IL offset.
23568 2004-09-22  Martin Baulig  <martin@ximian.com>
23570         * reflection.c (mono_reflection_setup_internal_class): If we're
23571         System.ValueType, System.Object or System.Enum, set
23572         `klass->instance_size' and create the vtable.
23573         (mono_reflection_create_internal_class): If we're an enum type,
23574         get the base class from our current corlib.
23576 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23578         * reflection.h (MonoResolveTokenError): New type.
23580         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23581         icall.
23583         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23585 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23587         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23588         Support also calling constructors, but only for already allocated objects.
23590 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23592         * reflection.c (type_get_qualified_name): If the klass is null
23593         return the typename to avoid a NullRefEx.
23594         (encode_cattr_value): Get the qualified name of the boxed type,
23595         not the underlying enumtype.  Fixes #62984.
23597 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23599         * marshal.c: Fix problems with previous checkin.
23601 2004-09-21    <vargaz@freemail.hu>
23603         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23604         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23606         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23608 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23610         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23611         should only return a type for pointers, arrays, and passbyref types.
23612         Fixes bug #63841.
23614 2004-09-21  Martin Baulig  <martin@ximian.com>
23616         * domain.c (mono_debugger_check_runtime_version): New public
23617         function.
23619         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23621 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23623         * reflection.c: Added missing sort to the declarative security 
23624         attributes table. MS implementation stops seeing the attributes if the
23625         token number regress in the table (as shown by ildasm and permview).
23627 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23629         * object-internals.h (MonoReflectionModule): Add 'token' field.
23630         
23631         * reflection.c (mono_reflection_get_token): Add support for Module
23632         and Assembly.
23633         (mono_module_get_object): Set 'token' field.
23634         (mono_module_file_get_object): Set 'token' field.
23636         * icall.c: Add new Assembly and Module icalls.
23638         * appdomain.c: Bump corlib version.
23640 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23642         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23643         tokens of metadata objects.
23645         * reflection.h reflection.c (mono_reflection_get_token): New function
23646         to obtain the token of a metadata object.
23648         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23650 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23652         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23653         
23654         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23656 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23658         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23659         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23660         AssemblyBuilder to access the permissions set in the class lib.
23661         * reflection.c: Added security attributes encoding step in 
23662         mono_image_build_metadata.
23663         * tabledefs.h: Added new security actions defined in 2.0:
23664         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23666 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23668         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23669         macro parameter.
23671 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23673         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23674           finalized. There where random SIGSEVs at program termination, when
23675           an object being finalized was trying to do a string comparison and
23676           the current culture was already finalized.
23678 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23680         * threads.c: call thread_cleanup before finishing the thread if we get
23681         there.
23683 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23685         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23686         assemblies from the parent. Fixes #65665.
23688 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23690         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23691         modifiers.
23693 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23695         * reflection.h: add prototype for mono_get_dbnull_object
23696         * reflection.c: add prototypes for get_default_param_value_blobs 
23697         and mono_get_object_from_blob for fussier compilers
23699 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23701         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23702         false deadlock checks in class initialization.
23704 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23706         * image.c (mono_image_addref): Fix comment.
23708         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23709         possible.
23711 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23713         * reflection.c (mono_param_get_objects): Modified to return
23714         ParameterInfo.DefaultValue object.
23716         (get_default_param_value_blobs):
23717         (mono_get_object_from_blob):
23718         (mono_get_dbnull_object): New helper routines. 
23720         * object.c (mono_get_constant_value_from_blob): New helper routine
23721         carved out from get_default_field_value ()
23723         * object-internals.h (mono_get_constant_value_from_blob): Added
23724         function declaration.
23726 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23728         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23729         referenced assemblies. Fixes #62135.
23731         * exception.h exception.c (mono_get_exception_file_not_found2): New
23732         helper function.
23734 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23736         * class.h class.c: Add mono_type_get_underlying_type ().
23738 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23740         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23741         Fix GetTypes() to support dynamically created assemblies.
23743 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23745         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23746         
23747         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23748         previous patch.
23750         * reflection.h reflection.c loader.c: Allow dynamic construction of
23751         pinvoke methods. Fixes #65571.
23752         
23753         * reflection.c (mono_reflection_get_type): Revert previous change since
23754         it causes regressions.
23756 2004-09-08  Martin Baulig  <martin@ximian.com>
23758         * class.c (class_compute_field_layout): Don't call
23759         mono_class_layout_fields() for open generic instances.
23761 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23762         * threads.c appdomain.c: fix typo in GC macro
23764 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23766         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23767         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23769 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23771         * image.c (mono_image_close): Applied patch from 
23772         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23773         assembly is loaded multiple times from data.
23774         
23775         * image.c (mono_image_open): Fix warning.
23777 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23779         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23780         once. Fixes #58334.
23781         
23782         * reflection.c (mono_reflection_create_runtime_class): Initialize
23783         klass->nested_classes. Fixes #61224.
23785 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23787         * threads.c: sched_yield() on exit, to allow threads to quit.
23789 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23791         * object.c (mono_unhandled_exception): Remove leftover debug code.
23793 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23795         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23797 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23799         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23800         
23801         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23803 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23805         * marshal.c (emit_marshal_array): Null terminate string arrays.
23806         
23807         * marshal.c (raise_auto_layout_exception): Fix warning.
23809         * reflection.c (mono_param_get_objects): Initialize the default value
23810         with DBNull.Value, not null. Fixes #62123.
23812 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23814         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23815         throw an exception with a cute explanation.
23817 2004-09-06  Dick Porter  <dick@ximian.com>
23819         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23820         Close the new process's thread handle, as we don't use it.  The
23821         handle stays around forever otherwise.
23823 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23825         * object.c (arith_overflow): Fix warning.
23827         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23828         calling conventions in method refs. Fixes #65352.
23830         * reflection.c: Fix warnings.
23832 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23834         * icall.c: Add a new icall for Array.Clear
23836 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23838         * object.c: When allocating an array, we have to throw
23839         an overflow exception if any of the lengths are < 0.
23841 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23843         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23844         properly. Also move implementation of string array marshalling to 
23845         managed code. Fixes #42316.
23847 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23849         * assembly.c: provide more information when loading an assembly fails.
23851 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23853         * filewatcher.c: don't expect the development fam package to be
23854         installed.
23856 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23858         * marshal.c: Make a copy of the signature cookie since it will be
23859         freed by the caller.
23860         
23861         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23863         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23865         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23866         marshal specs.
23868         * marshal.c: More refactoring.
23869         
23870         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23871         smaller functions.
23873 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23875         * object.c: In mono_message_invoke, fill the output parameter array after
23876           calling the managed method (it was done before the call). This fixes
23877           bug #59299.
23879 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23881         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23882         as well.
23884 2004-09-02  Martin Baulig  <martin@ximian.com>
23886         * class.c (mono_class_instance_size): Don't allow generic type
23887         definitions or open generic instances.
23888         (mono_class_array_element_size): If we're a value type, call
23889         mono_class_instance_size() on the original class.
23891         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23892         handle generic instances.
23894         * mono-debug-debugger.c (write_type): Handle generic instances
23895         like classes.
23897 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23899         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23900         the allocation request fails. Fixes #65089.
23902         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23903         
23904         * object.c (mono_runtime_free_method): New function to free a dynamic
23905         method.
23907         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23908         delegate trampoline.
23910         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23911         with hasthis as dynamic,
23913         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23915         * domain.c (mono_jit_info_table_remove): New function to remove an
23916         entry from the jit info table.
23918         * class-internals.h (MonoMethod): Add 'dynamic' field.
23920         * loader.c: Fix warnings.
23922 2004-09-01  Martin Baulig  <martin@ximian.com>
23924         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23925         instead of mono_debugger_lock() because the latter one is a no-op
23926         unless running in the debugger.
23928 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23930         * class.c (class_compute_field_layout): Classes with auto-layout or
23931         reference fields are not blittable.
23932         
23933 2004-09-01  Dick Porter  <dick@ximian.com>
23935         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23936         mono_image_get_filename() to get the assembly location.
23938         * icall.c:
23939         * metadata.h: Fix compile warnings
23941 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23943         * class.c (class_compute_field_layout): System.Object is blittable.
23945         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23946         as in/out. Fixes #59909.
23948 2004-09-01  Martin Baulig  <martin@ximian.com>
23950         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23951         mono_metadata_generic_inst_is_valuetype() if we're a generic
23952         instance to check whether our underlying type is a reference type.
23954 2004-09-01  Martin Baulig  <martin@ximian.com>
23956         * metadata.c (mono_type_size): If we're a generic instance, call
23957         mono_class_value_size() for value types.
23959 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23961         * marshal.c: Implement more custom marshalling functionality. Fixes
23962         #64915.
23964 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23966         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23968 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23970         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23972         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23974         * icall.c: Fix some warnings.
23976         * threads.c (abort_appdomain_thread): Fix unref errors.
23977         (mono_thread_current): Fix THREAD_DEBUG define.
23979 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23981         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23983         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23985 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23987         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23988         string arrays.
23990 2004-08-28  Martin Baulig  <martin@ximian.com>
23992         * metadata.c
23993         (mono_metadata_generic_inst_is_valuetype): New public function.
23995         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23996         mono_metadata_generic_inst_is_valuetype() if we're a generic
23997         instance to check whether our underlying type is a valuetype.
23999 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24001         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24002         #63768.
24004 2004-08-25  Martin Baulig  <martin@ximian.com>
24006         * loader.c (mono_get_method_from_token): Abstract methods can also
24007         be generic and thus have type parameters.
24009         * metadata-internals.h
24010         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24012         * reflection.c (mono_image_get_generic_param_info): Don't create a
24013         metadata row, just add an entry to the `gen_params' array.
24014         (build_compressed_metadata): Sort the `gen_params' array and then
24015         actually create the metadata.
24017 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24019         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24021 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24023         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24025 2004-08-24  Martin Baulig  <martin@ximian.com>
24027         * class.cs (mono_class_is_subclass_of): Like an interface, a
24028         generic instance also derives from System.Object.
24030 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24032         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24033         custom modifiers to be in any order. Fixes #61990.
24035 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24037         * object.c: Register mono_object_new_fast icall.
24038         
24039         * object.c (mono_class_get_allocation_ftn): Return to calling
24040         mono_object_new_fast, since it seems faster to compute the object 
24041         size in unmanaged code than passing it as a parameter.
24043         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24045         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24046         this function with Boehm as the oom handler, so we don't have to check
24047         the result of GC_malloc.
24049         * object.c: Remove checks for oom.
24051         * object.h object.c (mono_class_get_allocation_ftn): New function to
24052         return the icall which can be used to allocate an instance of a given
24053         class. 
24055         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24057         * class-internals.h: Add 'enabled' field.
24059 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24061         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24063 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24064         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24065         value 0x0010.
24067 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24069         * appdomain.c: use the Tls function for appdomain too,
24070         at Zoltan's request. Actually return in mono_context_get
24072         * appdomain.c, profiler.c, threads.c: use __thread
24074 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24076         * appdomain.c threads.c: Call GC_CreateThread on windows.
24078         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24079         multiple libraries since this don't work on windows.
24081 2004-08-18  Martin Baulig  <martin@ximian.com>
24083         * class-internals.h
24084         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24085         MonoMethodHeader.
24087         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24088         MonoMethodNormal since we also need it for abstract and interface
24089         methods.
24091         * reflection.c
24092         (build_compressed_metadata): Sort the GenericParam table.
24093         (mono_image_create_token): Added `gboolean create_methodspec'
24094         argument; this is false when generating a MethodImpl token.
24095         (reflection_methodbuilder_to_mono_method): Abstract and interface
24096         methods may also have generic parameters.
24098 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24100         * appdomain.c: thread local alloc
24102 2004-08-17  Martin Baulig  <martin@ximian.com>
24104         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24106         * icall.c
24107         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24108         argument.
24110         * class.c (mono_type_get_full_name): New public function.
24111         (mono_type_get_name): Don't include the type arguments.
24113 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24115         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24116         for inclusion into the mono executable.
24118 2004-08-16  Martin Baulig  <martin@ximian.com>
24120         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24121         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24123 2004-08-14  Martin Baulig  <martin@ximian.com>
24125         * class.c (dup_type): Also copy the `byref' field.
24127 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24129         * reflection.c (create_dynamic_mono_image): Revert the last change 
24130         since it breaks bootstrap.
24132 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24134         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24136         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24137         not free them with g_free.
24139 2004-08-11  Martin Baulig  <martin@ximian.com>
24141         * reflection.c (mono_reflection_setup_internal_class): Also call
24142         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24144 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24146         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24147         called during default (first) AppDomain creation. Keep track of
24148         Evidence when loading assemblies.
24150 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24152         * opcodes.c, opcodes.h: reduce runtime relocations.
24154 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24156         * culture-info.h, locales.c: fixes and chages to sue the new
24157         optimized format of the locale data.
24158         * culture-info-tables.h: regenerated.
24160 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24161         
24162         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24164 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24166         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24167         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24168         * domain-internals.h: icall declaration.
24169         * icall.c: icall registration.
24170         * object-internals.h: New fields in MonoAssembly for CAS.
24172 2004-08-05  Duncan Mak  <duncan@ximian.com>
24174         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24175         CEE_LDELEM_ANY.
24177 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24179         * reflection.c: fix to deal with object[] arrays in custom ctors
24180         (bug #62550).
24182 2004-08-05  Martin Baulig  <martin@ximian.com>
24184         * class.c (mono_class_array_element_size): Added support for
24185         generic instances and correctly handle "recursive" types.
24187 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24189         * assembly.c: Fix warnings.
24191 2004-08-04  Martin Baulig  <martin@ximian.com>
24193         * class.c
24194         (mono_type_get_name_recurse): Added `gboolean include_arity'
24195         argument specifying whether or not we should include the generic
24196         arity in the type name.
24197         (_mono_type_get_name): New static function.
24198         (mono_class_setup_vtable): If we're a generic instance, don't
24199         include the generic arity in the names of explicit method
24200         implementations.        
24202 2004-08-03  Martin Baulig  <martin@ximian.com>
24204         * class.c (mono_type_get_name_recurse): Enclose the generic type
24205         arguments in `<', '>'.
24207 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24209         * gc.c: make GC warning messages use the trace API, they are just
24210         noise to most of the users.
24212 2004-08-03  Martin Baulig  <martin@ximian.com>
24214         * debug-mono-symfile.c (read_string): Correctly read the string.
24216 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24218         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24219         
24220         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24221         icalls.
24222         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24224 2004-07-30  Martin Baulig  <martin@ximian.com>
24226         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24227         Reflect latest symbol writer changes.   
24229 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24231         * object.c: always create an object if null is passed
24232         to Invoke() where a valuetype is expected.
24234 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24236         * marshal.c (mono_marshal_init): make managed
24237         signatures match native ones better for 64bits.
24239 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24241         * appdomain.c: hack to build correctly the private bin path on windows.
24242         Fixes bug #61991.
24244 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24246         * assembly.c: Load mscorlib from the correct framework directory
24247           (mono/<version>/mscorlib.dll).
24248         * appdomain.h: Added prototypes for new functions.
24249         * internals.h: Added some prototypes.
24250         * domain.c: When initializing the runtime, get from the executable and
24251           the configuration files the runtime version that the app supports.
24252           Added support methods for reading app.exe.config. Added list of versions
24253           supported by the JIT. Added two new methods: mono_init_from_assembly,
24254           which initializes the runtime and determines the required version from
24255           the provided exe file, and mono_init_version, which initializes
24256           the runtime using the provided version.
24257         * icall.c: Get machine.config from version-specific directory.
24258         * reflection.c: When generating an image, embed the version number
24259           of the current runtime.
24261 2004-07-28  Dick Porter  <dick@ximian.com>
24263         * socket-io.c
24264         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24265         returned sockaddr size before creating the remote address object.
24266         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24267         61608.
24269 2004-07-28  Dick Porter  <dick@ximian.com>
24271         * locales.c (string_invariant_compare_char): Fix invariant char
24272         compares between upper and lower cases.  Fixes bug 61458.
24274 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24275         
24276         * marshal.c: actually cache stelem.ref wrappers.
24277         
24278 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24280         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24281         sections and remove the mono_cli_rva_map () function.
24283 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24285         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24286         by Geoff Norton (<gnorton@customerdna.com>).
24288 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24290         * class.c: fix class loads for pointer types (typeof(int) !=
24291         typeof(int*)).
24293 2004-07-27  Martin Baulig  <martin@ximian.com>
24295         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24296         reading the debugging information from an external ".mdb" file.
24298 2004-07-24  Martin Baulig  <martin@ximian.com>
24300         * reflection.c (mono_image_get_type_info): Only write a class
24301         layout entry if we actually have a size or a packing size.
24303 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24305         * reflection.c (type_get_fully_qualified_name): 
24306         insert cast to get type checking of ?: with non-gcc compilers
24308 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24310         * rand.c: use g_getenv for both lookups of
24311         MONO_EGD_SOCKET
24313 2004-07-17  Martin Baulig  <martin@ximian.com>
24315         * reflection.c (mono_reflection_bind_generic_method_parameters):
24316         Set `gmethod->reflection_info'.
24318 2004-07-17  Martin Baulig  <martin@ximian.com>
24320         * class.c (mono_class_create_from_typedef): Insert the newly
24321         created class into the hash table before computing the interfaces
24322         since we could be called recursively.
24324 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24326         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24327         function to implement stelem.ref in managed code
24328         * class-internals.h, debug-helpers.c: a new wrapper type
24329         for the above.
24331 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24333         * gc.c: allow GC handles to work even when no GC is compiled in.
24334         Fix part of bug #61134 (GetAddrOfPinnedObject).
24336 2004-07-13  Peter Williams  <peter@newton.cx>
24338         * process.c (complete_path): Make sure we don't attempt to execute
24339         directories.
24341 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24343         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24344           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24345           and will add/subtract the hour if needed
24347 2004-07-12  Martin Baulig  <martin@ximian.com>
24349         * reflection.c (mono_field_get_object): If we have
24350         `field->generic_info', take the attributes from
24351         `field->generic_info->generic_type'.    
24353 2004-07-12  Martin Baulig  <martin@ximian.com>
24355         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24356         This function must be called before initializing the runtime.
24357         (mono_debug_init_1): New function; call this after initializing
24358         the runtime, but before loading the assembly.  It tells the
24359         debugger to load corlib and the builtin types.
24361         * mono-debug-debugger.c: Did some larger changes in the debugging
24362         code; support recursive class declarations, make sure we actually
24363         add all classes.
24365 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24367         * debug-helpers.c: undo my previous patch and fixed the real issue in
24368         ../mini/exceptions-x86.c
24370 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24372         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24373         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24374         called from other .cctors.
24376 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24378         * loader.c: Removed the mono_loader_wine_init hack now that we are
24379         doing a managed version of Windows.Forms.
24381 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24383         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24384         threadpool.c, threads.c: remove static data from rootset.
24386 2004-07-09  Dick Porter  <dick@ximian.com>
24388         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24389         Don't do any more processing if the matched length was 0.  It was
24390         increasing the size of the string before.  Fixes bug 61167.
24392 2004-07-09  Dick Porter  <dick@ximian.com>
24394         * socket-io.h:
24395         * socket-io.c
24396         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24397         Add support for SO_PEERCRED if its available.
24399 2004-07-09  Peter Bartok <pbartok@novell.com>
24400         * loader.c: winelib.exe.so error message is now only displayed if
24401         MONO_DEBUG is set. To help us avoid questions when people are trying
24402         out the new Managed.Windows.Forms.
24404 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24406         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24407         for isinst and castclass wrappers.
24409         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24410         to libmetadata from the JIT, so they could be used by the marshalling
24411         code and the interpreter.
24413         * marshal.c: Register marshalling related JIT icalls here instead of
24414         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24415         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24417         * metadata.h: Remove unneeded marshalling conversions.
24419         * opcodes.c: Update for new opcodes.
24420         
24421 2004-07-08  Martin Baulig  <martin@ximian.com>
24423         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24424         (mono_debug_get_domain_data): Make this function static.
24426 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24428         * gc.c, object.h: add nice GC handle API for embedders.
24430 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24432         * reflection.c: more changes for the new api
24434         * object.c: When we reflect on a field w/ a constant value, it
24435         will not have a memory location, so we must access metadata. Also,
24436         allow easier reading of strings so that we can read them from
24437         the constant data.
24439         * class.c (mono_class_layout_fields): no need for literal fields here.
24441         * class-internals.h: api changes for const fields
24443         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24445 2004-07-06  Martin Baulig  <martin@ximian.com>
24447         * mono-debug.h: Increment version number to 44.
24449         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24450         now a gpointer, rewrote this whole method.
24452         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24453         function.  Add information about the wrapper in a new "misc table".
24455         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24456         for the new misc table.
24458 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24460         * metadata-internals.h image.c: Add a cache for helper signatures.
24462         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24464 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24466         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24467         delegates from a delegate. Fixes #61033.
24468         
24469         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24470         marshalling of stringbuilder arrays. Fixes #59900.
24472 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24474         * icall.c: Add EnumBuilder:setup_enum_type icall.
24476 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24478         * icall.c: Added a new icall for the property version of
24479         OffsetOfStringData.
24481 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24483         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24484         it has a constant size across platforms.
24486         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24487         stack trace.
24489 2004-06-29  Martin Baulig  <martin@ximian.com>
24491         * mono-debug.c (mono_debug_add_method): Protect the whole function
24492         in mono_debugger_lock(), not just parts of it.
24494 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24496         * reflection.c: make sure padding bytes in heaps are zeroed.
24498 2004-06-24  David Waite  <mass@akuma.org>
24500         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24501         image.c, loader.c, locales.c, marshal.c, metadata.c,
24502         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24503         string-icalls.c, threads.c: change to C90-style comments from C99 /
24504         C++ -style
24506 2004-06-24  Dick Porter  <dick@ximian.com>
24508         * threads.c
24509         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24510         return createdNew.  Fixes bug 60412.
24512         * threads-types.h: 
24513         * icall.c: Add createdNew parameter to CreateMutex icall
24515 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24517         * reflection.c, object-internals.h: save default value in params.
24519 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24521         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24522         no need to build a new path combining that with the application base.
24523         Fixes bug #60442.
24525 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24527         * reflection.c: fixed minor standard compliance issues.
24529 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24531         * reflection.c: fixed issue with encoding some custom attributes
24532         (arrays in properties and fields, bug #60411).
24534 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24536         * reflection.c: fix start address when copying the public key token.
24538 2004-06-23  Martin Baulig  <martin@ximian.com>
24540         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24541         the `exc' object in a static object to put it into the GC's root set.
24543 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24545         * reflection.c: make mono_reflection_setup_internal_class ()
24546         callable a second time to setup a new parent class.
24548 2004-06-23  Dick Porter  <dick@ximian.com>
24550         * threads.c: Check for WAIT_IO_COMPLETION return values.
24552 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24554         * appdomain.c: Removed the g_free on the public key token. Now copy 
24555         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24556         * assembly.c: Added public key token string value when loading 
24557         assemblies. Fix bug #60439.
24558         * icall.c: Added missing informations (like public key) in 
24559         GetReferencedAssemblies. Fix #60519.
24560         * image.h: Changed definition for public key token from const char*
24561         public_tok_value to guchar public_key_token [17];
24562         * reflection.c: Updated for changes to public key token.
24564 2004-06-22  Lluis Sanchez Gual
24566         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24567         for the field in base classes.
24569 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24571         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24572         mark headers as not supported, they are installed only for use by the
24573         debugger.
24575 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24577         * *.c, *.h: avoid namespace pollution in public headers.
24579 2004-06-21  Martin Baulig  <martin@ximian.com>
24581         * exception.c (mono_get_exception_security): It's in
24582         "System.Security", not in "System".
24584         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24585         the exception classes.
24587 2004-06-21  Martin Baulig  <martin@ximian.com>
24589         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24590         Protect the exception object from being finalized.
24592 2004-06-21  Martin Baulig  <martin@ximian.com>
24594         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24595         public function.
24597 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24599         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24600         if it was not loaded before. Fix parts of #60439.
24602 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24604         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24605         code that was broken since Ben's change: wrappers are now
24606         dependent on the method signature only again.
24608 2004-06-21  Martin Baulig  <martin@ximian.com>
24610         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24611         added interface support.
24613 2004-06-21  Martin Baulig  <martin@ximian.com>
24615         * class.c (mono_vtable_get_static_field_data): New public method.
24617 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24619         * filewatcher.c : Windows build fix to be compliant with API changes.
24621 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24623         * class.h, class.c: more accessors.
24624         * metadata.h, metadata.c: prepare for hiding MonoType and
24625         MonoMethodSignature: people should use the accessors from now on
24626         outside of the tree.
24628 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24630         * *.c, *.h: more API cleanups.
24632 2004-06-18  Jackson Harper  <jackson@ximian.com>
24634         * assembly.c: Trace loading assemblies.
24635         * loader.c: Trace loading native libraries.
24636         * mono-config.c: Trace loading config files.
24637         
24638 2004-06-18  Dick Porter  <dick@ximian.com>
24640         * locales.c: Tell ICU the lengths of strings, it can cope with
24641         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24643 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24645         * image.c: swapped name/filename;
24647 2004-06-18  Martin Baulig  <martin@ximian.com>
24649         * mono-debug-debugger.c (write_class): Write the parent class at
24650         the end of the header.
24652 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24654         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24656 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24658         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24659         (bundle_obj): New conditional define.
24660         (BUILT_SOURCES): Remove.
24661         ($(bundle_srcs)): Make parallel-make safe.
24662         (libmonoruntime_la_LIBADD): Make unconditional.
24663         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24664         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24666 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24668         * culture-info-tables.h: It was inconsistent with the latest
24669           supp info files.
24671 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24673         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24674         be loaded.
24676         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24677         with gcc 2.95.
24679 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24681         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24682         cleaned up public header threads.h.
24684 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24686         * Makefile.am, *.c, *.h: more API cleanups.
24688 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24690         * Makefile.am: removed monosn from compilation.
24691         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24692         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24693         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24694         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24695         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24696         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24698 2004-06-15  Jackson Harper  <jackson@ximian.com>
24700         * assembly.c: Make locales lower case when searching the GAC for
24701         assemblies. gacutil will always make locales lowercase when
24702         installing so this effectively makes them case insensitive.
24703         
24704 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24706         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24707         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24708           parameter which allows to choose whether the wait can be interrupted or 
24709           not. Also added the method mono_monitor_enter(), which locks the monitor
24710           using an infinite wait and without allowing interruption.
24711           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24712           interrupted.
24713         * object.h: Added new fields in MonoThread. suspend_event holds the event
24714           used to susped/resume the thread. synch_lock is the lock object to use for
24715           modifying the thread state.
24716         * threads.c: Use the new synch_lock object for locking, instead of "this",
24717           which can generate deadlocks.
24718           Moved thread state change in Thread.Sleep and Thread.Join from managed
24719           to unmanaged code. This avoids a deadlock when the thread was suspended
24720           just after acquiring the thread lock.
24721           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24722           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24723           which is not fully implemented in the io-layer.
24724         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24726 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24728         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24729         threads-types.h: more API cleanups.
24731 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24733         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24734         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24735         threadpool.c, threads.c: first pass at the exported API cleanup.
24737 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24739         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24741 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24743         * icall.c: added internalGetHome.
24745 2004-06-14  Dick Porter  <dick@ximian.com>
24747         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24748         possible to return successfully when '.' or '..' were the only
24749         entries in a directory, but were skipped.  The MonoIOStat was not
24750         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24751         Fixes bug 59574.
24753 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24755         * reflection.c: make binaries run on .Net 1.1 by default.
24757 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24759         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24761 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24763         * marshal.c: keep track of struct size with explicit layout
24764         (bug #59979).
24766 2004-06-12  Martin Baulig  <martin@ximian.com>
24768         * mono-debug-debugger.c: Comment out a debugging g_message().
24770 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24772         * reflection.c, reflection.h: do not free custom attrs that are cached.
24773         * icall.c: use braces to make code clearer.
24775 2004-06-11  Martin Baulig  <martin@ximian.com>
24777         * class.h (MonoInflatedField): New type.
24778         (MonoClassField): Replaced `MonoType *generic_type' with
24779         `MonoInflatedField *generic_info'.
24781         * icall.c
24782         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24784 2004-06-11  Martin Baulig  <martin@ximian.com>
24786         * reflection.c (mono_image_create_method_token): Correctly encode
24787         varargs methods.
24789 2004-06-11  Martin Baulig  <martin@ximian.com>
24791         * metadata.c (mono_metadata_parse_method_signature): When parsing
24792         a MethodDef which has VarArgs, also set sentinelpos if we don't
24793         have any parameters.
24795 2004-06-11  Martin Baulig  <martin@ximian.com>
24797         * verify.c (mono_method_verify): In CEE_CALL, use
24798         mono_method_get_signature() to get the method's signature, unless
24799         we're a PInvoke method.
24801 2004-06-10  Jackson Harper  <jackson@ximian.com>
24803         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24804         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24805         logical name as the supplied path is just a prefix to the gac not
24806         the direct path to it.
24807         
24808 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24810         * reflection.c: make the token for a created method match
24811         the token of the MethodBuilder it was created from
24812         (IKVM requires this behaviour now).
24814 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24816         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24817         reflection.c, socket-io.c: leak fixes.
24819 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24821         * icall.c: handle sentinel pos in vararg methods in position different
24822         from 0.
24824 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24826         * culture-info-tables.h: freshly generated.
24828 2004-06-09  Martin Baulig  <martin@ximian.com>
24830         * loader.c (mono_get_method_constrained): Call `mono_class_init
24831         (constrained_class)'.   
24833 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24835         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24836         any methods. Fixes #59629.
24838 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24840         * culture-info-tables.h: reflecting locale-builder updates.
24842 2004-06-08  Dick Porter  <dick@ximian.com>
24844         * object.h:
24845         * locales.c: Fixed compile warnings, including a real bug in
24846         CompareInfo_internal_compare.
24847         
24848 2004-06-08  Dick Porter  <dick@ximian.com>
24850         * locales.c
24851         (ves_icall_System_Globalization_CompareInfo_internal_index):
24852         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24853         Double-check the resuls of usearches, because ICU currently
24854         ignores most of the collator settings here.  Fixes bug 59720.
24855         
24856 2004-06-08  Dick Porter  <dick@ximian.com>
24858         * locales.c
24859         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24860         Fix memory leak and segfault-causing typo.  No idea how this one
24861         lasted so long without being noticed.
24863 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24865         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24866         any methods. Fixes #59629.
24868 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24870         * assembly.c:
24871         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24872         own the critical section before). Removed dead code (that's done
24873         in the preload hook).
24875         (mono_assembly_load_with_partial_name): call the preload hook.
24877 2004-06-08  Martin Baulig  <martin@ximian.com>
24879         * metadata.c (mono_metadata_signature_alloc): Default
24880         `sentinelpos' to -1.
24882         * reflection.c (mono_image_get_array_token): Likewise.
24884 2004-06-08  Martin Baulig  <martin@ximian.com>
24886         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24888         * metadata.c (mono_metadata_parse_method_signature): When parsing
24889         a MethodDef which has VarArgs, set sentinelpos.
24891         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24892         `gint16' since we're using -1 for non-varargs methods.
24894         * reflection.c
24895         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24896         (method_encode_signature): Added varargs support.
24897         (method_builder_encode_signature): Likewise.
24898         (mono_image_get_varargs_method_token): New static method.
24899         (mono_image_create_method_token): New public method; this is
24900         called via an icall instead of mono_image_create_token() when
24901         calling a varargs method.       
24903 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24905         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24907 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24909         * culture-info-tables.h : Reflecting the latest locale-builder that
24910           fixed empty array representation ({} to {0}).
24912 2004-06-07  Jackson Harper  <jackson@ximian.com>
24914         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24915         looking up extra gac paths. This allows MONO_GAC_PATH to act
24916         exactly like a prefix.
24917         
24918 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24920         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24921         type name before modifying it. Fixes #59405.
24923 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24925         * culture-info.h: added fields for "all datetime patterns".
24926         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24927           _construct_datetime_format ()): fill xxx_patterns fields.
24928         * object.h: added fields for "all datetime patterns" to
24929           MonoDateTimeFormatInfo.
24930         * culture-info-tables.h: reflecting locale-builder updates.
24932 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24934         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24935         the event has no add and remove methods. Fixes #59629.
24937 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24939         * object.c: Fixed possible integer overflow when allocating large
24940         strings.
24942 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24944         * culture-info-tables.h: reflecting locale-builder updates.
24946 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24948         * culture-info-tables.h: reflecting locale-builder updates.
24950 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24952         * culture-info-tables.h: reflecting locale-builder updates.
24954 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24956         * threads.c: Made Thread.Sleep abortable.
24958 2004-06-02  Martin Baulig  <martin@ximian.com>
24960         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24962         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24964 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24966         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24968 2004-05-30  Jackson Harper  <jackson@ximian.com>
24970         * reflection.c: Do not hardcode assembly versions or public key
24971         tokens anymore. All of this except the corlib section was dead
24972         code anyways.
24973         
24974 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24976         * object.c (mono_runtime_invoke_array): Automatically create boxed
24977         objects for byref valuetypes if needed. Fixes #59300.
24978         
24979         * object.c (mono_method_return_message_restore): Handle 
24980         MONO_TYPE_OBJECT as well.
24982 2004-05-28  Jackson Harper  <jackson@ximian.com>
24984         * reflection.c: The modified type encoding was causing build
24985         problems. Reverted for now.
24986         
24987 2004-05-28  Jackson Harper  <jackson@ximian.com>
24989         * reflection.c/h: Take an assembly ref so that we dont create
24990         fully qualified names when encoding types in the same assembly as
24991         the custom attribute being emitted.
24992         * appdomain.c: Increment version number.
24993         
24994 2004-05-26  Duncan Mak  <duncan@ximian.com>
24996         * icall.c
24997         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24998         Set the full version number (major, minor, build, revision).
25000 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25002         * marshal.c (emit_struct_conv): increment src/dst after blit
25003         (mono_marshal_get_managed_wrapper,
25004         mono_marshal_get_native_wrapper): make sure we have marshalling
25005         info before marshalling params (info computation affects
25006         blittable)
25008         * class.c (class_compute_field_layout): correctly deal with
25009         blittable
25010         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25011         value types (as per what windows dows by default)
25012         (mono_class_setup_mono_type): System.ValueType is blittable
25013         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25014         blittable
25016         * marshal.c (mono_marshal_load_type_info): flag types  as
25017         non-blittable if the native layout doesn't match the managed
25018         layout
25020 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25022         * appdomain.c: don't add stuff in the private search path that is
25023         above the application base. If application base is not set, there's
25024         no private search path.
25026 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25028         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25029         byref struct arguments in native->managed marshalling.
25031 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25033         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25034         cache methods using signature (special case for methods
25035         that are value type or string class)
25036         
25037         * image.c (mono_image_close): clean up allocated GSList's
25038         in runtime_invoke_cache.
25040 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25042         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25043         there's no MONO_CFG_DIR environment variable defined.
25045 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25047         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25049 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25051         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25052           is interrumped.
25053         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25054           before waiting for it, and call CloseHandle after the wait to unref it.
25055           This will make sure that handles are not disposed too early.
25057 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25059         * appdomain.c:
25060         * appdomain.h:
25061         * icall.c: removed
25062         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25063         needed now.
25065         * object.c: se the application_base only for the domain that runs
25066         Main. Fixes bug #59216,
25068 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25070         * appdomain.c:
25071         * object.c: only the domain in which Main is run have
25072         SetupInformation.ConfigurationFile set, so moved a few lines from
25073         appdomain.c to object.c.
25075 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25077         * appdomain.c: we tried to load [name].(dll|exe), but according
25078         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25079         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25080         There's a test case attached to bug #58922.
25082 2004-05-27  Dick Porter  <dick@ximian.com>
25084         * icall.c:
25085         * file-io.c: Implemented icalls for locking and unlocking regions
25086         in a file.
25087         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25088         FALSE on error (fixes both compiler warning and real bug.)
25090 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25092         * culture-info-tables.h: reflecting locale-builder updates.
25094           (Added missing ChangeLog entry for 05/26)
25096 2004-05-27  Jackson Harper  <jackson@ximian.com>
25098         * locales.c: Fix some cut and paste errors.
25099         
25100 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25102         * mono-config.c: set the correct path for config. directory on windows.
25104 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25106         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25107           on win32.
25109 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25111         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25112         from pinvoke functions.
25113         
25114         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25116 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25118         * culture-info-tables.h: reflecting locale-builder updates.
25120 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25122         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25123         #59086.
25125 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25127         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25128         * icall.c: Modified icalls for RNG.
25129         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25130         Windows (CryptoAPI).
25132 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25134         * locales.c: Fix build.
25136 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25138         * culture-info-tables.h: reflecting locale-builder updates.
25140 2004-05-25  Jackson Harper  <jackson@ximian.com>
25142         * locales.c: When creating the current culture use the $LANGs
25143         specific culture. So DateTimeFormat and NumberFormat entries are created.
25144         
25145 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25147         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25148         a char array as parameter.
25150 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25152         * image.c: In mono_image_open(), always use an absolute path name to
25153           look for already loaded images.
25155 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25157         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25158         missing in the windows build (like older cygwin include files).
25160 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25162         * icall.c: Fixed check for possible integer overflow in Buffer_
25163         BlockCopy icall. Replaced comments style // by /* */.
25165 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25167         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25168         
25169         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25170         check after MONO_VTADDR. Fixes pinvoke2.exe.
25172         * marshal.h marshal.c metadata.h: Add beginnings of support for
25173         ftnptr -> delegate marshalling.
25175 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25177         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25178         * threads.c: Fix warnings.
25180 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25182         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25183         * icall.c: Registered icalls for Suspend and Resume.
25184         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25185           Thread.Abort.
25186         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25187         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25188         * process.c: Use WaitForSingleObjectEx.
25189         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25190           checkpoints.
25191         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25192           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25193           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25194           background threads. Added basic support for Abort in Windows.
25195           Start new threads using a managed delegate invoke wrapper. This wrapper
25196           has an interruption checkpoint that is needed since an interruption
25197           can be requested before the thread leaves the unmanaged code that starts 
25198           the thread.
25199         * marshal.c: Added interruption checkpoint after every native call, and
25200           also before managed calls for wrappers called from unmanaged code to
25201           go into managed code.
25202         * object.h: Added new field in MonoThread to keep track of interruption
25203           requests.
25205 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25207         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25208         calls.
25210 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25212         * appdomain.c:
25213         * assembly.c:
25214         * gc.c:
25215         * locales.c:
25216         * mono-config.c:
25217         * rand.c: getenv -> g_getenv (windows!)
25219         * process.c: complete_path is also used on non-windows platforms.
25221 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25223         * icall.c: new signature for Process_Start.
25225         * process.[ch]: new signature for Process_Start. If we're on windows
25226         and UseShellExecute is false, we have to search for the program by
25227         ourselves if we don't get a full path.
25229 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25231         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25232         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25234 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25236         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25237         Fixes bug #58373.
25239 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25241         * process.c: use double quotes to quote program name and arguments on
25242         windows. Fixes bug #58575.
25244 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25246         * file-io.c: don't return "." and ".." when using windows Find*File.
25248 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25250         * marshal.c: Don't pass wrappers to message init because method 
25251         addressed used to lookup metadata. part of remoting[2|3] fix.
25253 2004-05-15  Jackson Harper  <jackson@ximian.com>
25255         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25256         path is essentially the same as MONO_PATH except that it points to
25257         GACs instead of lib directories.
25258         * loader.h: The user gac is gone so we dont need function to
25259         enable/disable it.
25260         * mono-config.c: user gac option is now gone.
25261         
25262 2004-05-15  Jackson Harper  <jackson@ximian.com>
25264         * culture-info.h: Make defines more consistent, add calendar data
25265         to the culture info table.
25266         * culture-info-tables.h: Add basic calendar data. Basically
25267         everyone gets default gregorian until all the data is
25268         updated.
25269         * locales.c: Use the new consistent defines. Set calendar data for
25270         culture info objects.
25271         * object.h: add a field for calendar data to CultureInfo
25272         
25273 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25275         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25276         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25277         a signature.
25278         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25279         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25280         an extra param that is the pointer of the method to invoke. The IL for
25281         the invoke method is no longer specific to the method, but to the
25282         signature of the method. Thus, we can share the same code for multiple
25283         methods. This reduces the number of methods that have to be compiled.
25285 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25287         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25289         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25291         * icall.c: Optimize Buffer.BlockCopy.
25293 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25295         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25296         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25297         quote). Changed them to "MMMM yyyy".
25299 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25301         * rand.c
25302         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25304 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25306         * reflection.h: Updated after changes to managed structures.
25308         * appdomain.c: Bump corlib version.
25310 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25312         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25313         windows.
25315 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25317         * Makefile.am: link to ../os/libmonoos.la on windows.
25319         * assembly.c:
25320                 -If MONO_DEBUG, warn about non-existing directories in
25321                 MONO_PATH.
25322                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25323                 compile time variable.
25324                 -Removed init_default_path and call mono_set_rootdir from
25325                 libmonoos.a instead (windows only).
25327         * assembly.h: declare mono_assembly_getrootdir().
25329         * domain.c:
25330         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25332         * loader.c: s/getenv/g_getenv/
25334 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25336         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25338         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25340         * metadata.h: Add new marshalling conversions.
25342         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25343         function.
25345         * reflection.c (mono_reflection_get_type): Lookup the type in all
25346         modules of a multi-module assembly. Fixes #58291.
25348 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25350         * threads.c: Before aborting a background, set the StopRequested
25351         state.  This avoids throwing the Abort exception.
25352         In mono_thread_manage, don't continue with the shutdown until all
25353         aborted threads have actually stopped.
25355 2004-05-10  Jackson Harper  <jackson@ximian.com>
25357         * locales.c: Remove the modifier from culture names.
25358         
25359 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25361         * Makefile.am: monosn is not installed any more. It has been deprecated
25362         in favor of sn.
25364 2004-05-07  Jackson Harper  <jackson@ximian.com>
25366         * locales.c
25367         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25368         Fix array construction, add bailout if the length is 0.
25370 2004-05-07  Dick Porter  <dick@ximian.com>
25372         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25373         machine doesn't have a DNS entry.  Patch by Urs Muff
25374         (umuff@quark.com), fixes bug 57928.
25376 2004-05-06  Jackson Harper  <jackson@ximian.com>
25378         * reflection.c: Handle null PublicTokens properly. alloc mem for
25379         assembly names culture so we dont crash when freeing it.
25380         
25381 2004-05-06  Jackson Harper  <jackson@ximian.com>
25383         * assembly.c: Check the usergac when loading with partial names.
25384         
25385 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25387         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25388         does nothing for now (not required for Linux/Windows) but the class
25389         library can call it (and a newer or modified runtime could need it).
25390         * icall.c: Registred icall.
25392 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25394         * loader.c: prints a message on module loading error we set MONO_DEBUG
25395         environment variable.
25397 2004-05-05  Jackson Harper  <jackson@ximian.com>
25399         * appdomain.c: Handle PublicKeyToken=null properly.
25400         
25401 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25403         * environment.c|h: Added icall ves_icall_System_Environment_
25404         GetOSVersionString to get the current OS version as a string.
25405         * icall.c: Registred icall.
25407 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25409         * object.c: in mono_object_get_virtual_method(), take into account that
25410         non-virtual methods don't have a slot in the vtable. Check needed when
25411         the object is a proxy.
25413 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25415         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25416         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25418         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25420         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25421         passed when a valuetype is expected.
25423         * object.c (mono_unhandled_exception): Only set the exit code if the
25424         exception happens in the main thread. Fixes thread5.exe.
25426         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25427         invalid names. Fixes #58047.
25429 2004-05-03  Jackson Harper  <jackson@ximian.com>
25431         * assembly.c: This line was committed accidently and is unneeded.
25432         
25433 2004-05-03  Jackson Harper  <jackson@ximian.com>
25435         * icall.c: Add new icall for Assembly::LoadWithPartialName
25436         * assembly.c/.h: new function that probes the GAC to load partial
25437         assembly names by Paolo Molaro.
25438         
25439 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25441         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25442         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25443         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25444         full type name.
25446 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25448         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25449         * reflection.c: fix bug when parsing a full type name and Version is not
25450         the last thing in the string.
25452 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25454         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25455         crashes when it is freed.
25457 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25459         * assembly.c: print the compat warning to stderr.
25461 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25463         * assembly.c (mono_assembly_load_references): Add a compatibility
25464         hack to run old applications that might be still referencing the
25465         3300-based assemblies, only do this for System.xxx.
25467 2004-05-01  Jackson Harper  <jackson@ximian.com>
25469         * appdomain.c: If the culture is neutral we set it to "".
25470         
25471 2004-04-29  Jackson Harper  <jackson@ximian.com>
25473         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25475 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25477         * string-icalls.c: added low overhead function for copying chars
25478         * icall.c: added needed icall for the above function
25480 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25482         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25483         Environment.GetLogicalDrives.
25485 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25487         * rand.c: try and talk to egd or prngd
25488         for random bytes if opening devices fail.
25490 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25492         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25493         alignment for the type using the native alignment of its members 
25494         instead of using klass->min_align.
25496         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25498 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25500         * file-io.c:
25501         * socket-io.c: added check for sys/aio.h.
25503 2004-04-28  Dick Porter  <dick@ximian.com>
25505         * threads.c: Don't abort a thread thats already aborting, when
25506         terminating everything.
25508 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25510         * icall.c: added 2 new async calls for Socket.
25512         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25513         IO on *nix systems.
25515         * threadpool.c: removed unused variable.
25517 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25519         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25521 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25523         * locales.c: put back string_invariant_tolower () and
25524         string_invariant_toupper ().
25526 2004-04-26 David Waite <mass@akuma.org>
25528         * file-io.h:
25529         * socket-io.h:
25530         * threads.h:
25531         * unicode.h: remove comma from end of enumeration declarations
25533 2004-04-26 David Waite <mass@akuma.org>
25535         * debug-mono-symfile.h:
25536         * decimal.c:
25537         * mono_debug.h:
25538         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25541 2004-04-26  Jackson Harper  <jackson@ximian.com>
25543         * appdomain.c: Increment version number.
25544         
25545 2004-04-26  Jackson Harper  <jackson@ximian.com>
25547         * appdomain.c: Set assembly references public token value when
25548         PublicKeyToken is specified, not the hash_value. Free public token
25549         values when free assembly name data. Previously the public key
25550         token was hex decoded, however we are using hex encoded public key
25551         tokens, so this is not neccasary.
25552         * assembly.c: Lookup assemblies in the gac if their public token
25553         value is set. Add function to allow enabling user gac
25554         lookups. Specify whether or not the assembly was loaded from the
25555         GAC. Compare full assembly names when checking the cache for
25556         assemblies (Temporarily disabled see comment in code). Remove
25557         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25558         specifies trace-loader they get extra info to stdout on the
25559         loading of assemblies.
25560         * image.h: Add a field for an assembly references public token
25561         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25562         whether an assembly has been loaded from the GAC.
25563         * image.c: Remove a corlib -> mscorlib name mapping.
25564         * loader.h: Add function to enable/disable the user gac.
25565         * mono-config.c: Check if the usergac is enabled in the config
25566         file.
25567         * icall.c: New icall to determine whether or not an assembly has
25568         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25569         * tabldefs.h: Add constant for assemblyref flag that specifies a
25570         full public key is used instead of a public token.
25571         * reflection.c: Remove mscorlib -> corlib mappings. Set
25572         PublicTokenValue instead of hash value. This value is a hex
25573         string so it does not need to be expanded.
25575 2004-04-26  Martin Baulig  <martin@ximian.com>
25577         * mono-debug-debugger.c (mono_debugger_initialize): Set
25578         `mono_debugger_initialized' before calling mono_debug_lock().
25580 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25582         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25583           InternalToUpper/InternalToLower.
25584         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25585           removed invariant culture shortcut.  This is now done in managed code.
25586         * locales.c: (string_invariant_toupper/tolower) removed.
25588 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25590         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25591         Added Poll internal call.
25593         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25594         call for Poll. Select was too heavy for polling a single socket.
25596         * threadpool.[ch]: added mono_threadpool_cleanup.
25597         * threads.c: use it. Don't use Thread_Abort on windows.
25599 2004-04-23  Martin Baulig  <martin@ximian.com>
25601         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25603 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25605         * icall.c: Registred new icalls for key pair protection and added an
25606         icall for Environment.GetFolderPath on Windows.
25607         * security.c|h: Added new icalls for key pair protection.
25609 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25611         * socket-io.c: don't display the non-supported family warning for known
25612         families. Now this is not displayed on windows when checking support
25613         for IPv4/IPv6.
25615 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25617         * class.c: don't display the layout warning for static fields.
25619 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25621         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25622         * locales.c, locales.h: Added new icalls for culture-specific
25623         Char.ToLower and Char.ToUpper.
25625 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25627         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25628         by David Waite.
25630 2004-04-20  Martin Baulig  <martin@ximian.com>
25632         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25633         of the type name before passing it to mono_reflection_type_from_name().
25635 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25637         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25638         encodings here. Fixes #56965.
25640 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25642         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25643         fix test on strstr result not that I can see anything that
25644         relies on the result.
25646 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25648         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25649         Fixes #57081.
25651         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25653         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25654         function to determine which marshalling to use for strings. Fixes
25655         #56965.
25657         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25659         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25661 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25663         * icall.c: #include mono-config.h
25665 2004-04-15  Jackson Harper  <jackson@ximian.com>
25667         * culture-info-tables.h: Fix date formats for en-US culture.
25668         
25669 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25671         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25672         ThreadPool.SetMinThreads.
25673         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25674         ThreadPool.SetMinThreads.
25676 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25678         * mono-config.c: also load the .config file in the directory
25679         where the assembly was found.
25681 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25683         * assembly.c: load per-assembly config files.
25684         * icall.c: decrapified code to get the config dir and moved to
25685         mono-config.c.
25686         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25687         per-assembly config files. When doing a dll map lookup give precedence
25688         to the per-assembly data.
25690 2004-04-14  Martin Baulig  <martin@ximian.com>
25692         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25693         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25694         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25696         * mono-debugger-debugger.c: While the debugger is locked, remember
25697         whether the symbol tables have changes and send one single
25698         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25700 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25702         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25704         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25705         function.
25707         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25708         account when marshalling string arrays. Fixes #56965.
25710 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25712         * icall.c: Add new icalls mapping for security.
25713         * security.c|h: Add internal calls for WindowsIdentity,
25714         WindowsImpersonationContext and WindowsPrincipal.
25716 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25718         * class.c: Added comment to ensure the System.MonoDummy class
25719         is removed when no longer necessary
25721 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25723         * appdomain.c: Pass arguments to the bootstraping exceptions to
25724         minimize JITed methods at boot
25726         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25727         second string to be null.
25729         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25730         Change the protocol to minimize the JIT methods at startup.  Now
25731         it Returns the internal codepage, if the value of "int_code_page"
25732         is 1 at entry, and we can not compute a suitable code page
25733         number, returns the code page as a string.
25735 2004-04-13  Jackson Harper  <jackson@ximian.com>
25737         * culture-info-tables.h: Fix number of decimal digits for all
25738         english locales.
25740 2004-04-13  Jackson Harper  <jackson@ximian.com>
25742         * icall.c: Clairfy out of sync error message. It is not always
25743         your corlib that is out of sync.
25745 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25747         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25748         properties when only the set accessor is overriden. Fixes #55874.
25750 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25752         * assembly.c (mono_assembly_load_references): Make this thread safe.
25753         Fixes #56327.
25755 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25757         * monosn.c: Add missing initialization calls.
25759 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25761         * locales.c:
25762         ves_icall_System_Globalization_CultureInfo_construct_number_format
25763         Fix g_assert so it compiles on fussier compilers re int/ptr
25764         mismatch
25766 2004-04-08  Dick Porter  <dick@ximian.com>
25768         * socket-io.h:
25769         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25770         53992.  Also rearrange the code so that the internal calls return
25771         an error value and exceptions are thrown from managed code.
25773         * icall.c: Add type info to the socket icalls.
25775 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25777         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25778         owes me a beer.
25780 2004-04-07  Martin Baulig  <martin@ximian.com>
25782         * class.c (mono_class_from_generic_parameter): Don't default
25783         `klass->parent' to `mono_defaults.object_type'.
25785 2004-04-07  Martin Baulig  <martin@ximian.com>
25787         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25788         `param->pklass->reflection_info'.       
25790 2004-04-07  Jackson Harper  <jackson@ximian.com>
25792         * culture-info-tables.h: Fix date separator symbol.
25793         
25794 2004-04-07  Martin Baulig  <martin@ximian.com>
25796         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25797         from System.Type to System.MonoType.
25799 2004-04-07  Martin Baulig  <martin@ximian.com>
25801         * reflection.h
25802         (MonoReflectionGenericParam): Added `has_reference_type' and
25803         `has_value_type' fields.
25805         * reflection.c (mono_image_get_generic_param_info): Encode the
25806         correct flags if we have the `class' or `struct' constraint.
25808 2004-04-07  Martin Baulig  <martin@ximian.com>
25810         * reflection.h
25811         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25813 2004-04-07  Jackson Harper  <jackson@ximian.com>
25815         * appdomain.c: Revert extra patches, just wanted to bump the
25816         version number.
25817         
25818 2004-04-07  Jackson Harper  <jackson@ximian.com>
25820         * Makefile.am: Add culture-info private headers.
25821         * icall.c: Add new icalls for contructing locales.
25822         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25823         * locales.h: Declare new culture info construction methods.
25824         * object.h: Add new fields used to avoid the CultureMap to
25825         MonoCultureInfo.
25826         * culture-info.h: Definition of structs used in the culture info
25827         tables.
25828         * culture-info-tables.h: Autogenerated tables that contain culture
25829         info data. This file was generated with the locale-builder tool.
25830         * appdomain.c: Incement corlib version number.
25831         
25832 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25834         * appdomain.c: (mono_runtime_init) move mono_thread_init
25835         to before mono_object_new calls so critical sections
25836         are initialized before use.
25838 2004-04-07  Martin Baulig  <martin@ximian.com>
25840         * icall.c
25841         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25842         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25843         (ves_icall_MonoGenericParam_initialize): Removed.
25844         (monogenericparam_icalls): Removed.
25845         (generictypeparambuilder_icalls): Added new table for
25846         System.Reflection.Emit.GenericTypeParameterBuilder.
25848         * reflection.c
25849         (mono_reflection_define_generic_parameter): Removed.
25850         (mono_reflection_initialize_generic_parameter): This is now called
25851         from GenericTypeParameterBuilder's .ctor.
25853 2004-04-06  Martin Baulig  <martin@ximian.com>
25855         * class.c (mono_class_init): Don't inflate nested classes in a
25856         generic instance.
25857         (mono_type_get_name_recurse): Include the generic arguments for
25858         generic instances and generic type declarations.
25859         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25860         (_mono_class_get_instantiation_name): Removed.
25861         (mono_class_create_generic): Always use `gklass->name' as our name.
25863         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25865         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25866         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25867         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25868         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25869         closed generic methods here.
25871         * reflection.c
25872         (mono_reflection_generic_inst_get_nested_types): Removed.
25873         (inflate_mono_method): Copy the generic parameters from the
25874         MonoMethodHeader into out MonoGenericMethod.
25876 2004-04-06  Martin Baulig  <martin@ximian.com>
25878         * row-indexes.h
25879         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25881         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25883         * reflection.c (build_compressed_metadata): If we have any entries
25884         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25885         set the header version to 1.1.
25887 2004-04-06  Martin Baulig  <martin@ximian.com>
25889         * class.c (mono_class_init): If we're a generic instance,
25890         initialize our nested classes, too.
25891         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25892         suffix. 
25894 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25896         * process.c: quote the argument passed to the shell on windows.
25898 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25900         * threads.c (mono_alloc_special_static_data): Allow this to be
25901         called during startup.
25903 2004-04-02  Martin Baulig  <martin@ximian.com>
25905         * icall.c
25906         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25908 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25910         * icall.c: Fix build.
25912 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25914         * Makefile.am: Added security.c|h.
25915         * icall.c: Added icall for get_UserName;
25916         * security.c: New file for security related icalls. Added function
25917         get_UserName for System.Environment (fix #56144).
25918         * security.h: New. Header file for security.c
25920 2004-04-02  Dick Porter  <dick@ximian.com>
25922         * icall.c: Deleted the icalls that were obsoleted some time ago
25923         by the ICU string code, and which were mixed into the icall
25924         rearranging.  Fixes bug 55969.
25926         * string-icalls.h: 
25927         * string-icalls.c: Deleted the code that those icalls reference.
25929 2004-04-01  Martin Baulig  <martin@ximian.com>
25931         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25933         * class.c (mono_class_from_generic_parameter): Don't set 
25934         TYPE_ATTRIBUTE_INTERFACE.
25935         (my_mono_class_from_generic_parameter): Likewise.
25937 2004-04-01  Martin Baulig  <martin@ximian.com>
25939         * loader.c (find_method): Added an optional `MonoClass *ic'
25940         argument to search in a specific interface.
25941         (mono_get_method_constrained): New public function.
25943 2004-04-01  Martin Baulig  <martin@ximian.com>
25945         * reflection.c (mono_image_get_generic_field_token): Use the
25946         `handleref' cache here.
25948 2004-04-01  Martin Baulig  <martin@ximian.com>
25950         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25952         * reflection.c (create_generic_typespec): Use the `typespec' hash
25953         here, not the `typeref' one.    
25955 2004-04-01  Martin Baulig  <martin@ximian.com>
25957         * class.c (mono_class_inflate_generic_type): Moved the
25958         functionality into a new static inflate_generic_type() which
25959         returns NULL if it didn't do anything.  Only increment the
25960         `mono_stats.inflated_type_count' if we actually inflated
25961         something.
25962         (mono_class_get_full): Check the classes type to see whether we
25963         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25965 2004-04-01  Jackson Harper  <jackson@ximian.com>
25967         * reflection.c: Set culture for assembly references.
25968         
25969 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25971         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25973 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25975         * assembly.c:
25976         (do_mono_assembly_open): the critical section also covers
25977         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25979 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25981         * threads.c:
25982         (mono_manage_threads): abort the background threads when finishing.
25983         Fixes bug #47232.
25985 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25987         * gc.c: only close the done_event handle if there was no timeout.
25988         C-ified comments.
25990 2004-03-30  Martin Baulig  <martin@ximian.com>
25992         * icall.c (icall_entries): It's called "System.Activator", not
25993         "System.Activation".    
25995 2004-03-30  Martin Baulig  <martin@ximian.com>
25997         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25998         (mono_class_create_from_typespec): Likewise.
26000 2004-03-30  Martin Baulig  <martin@ximian.com>
26002         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26003         `has_ctor_constraint' and `initialized'.
26005 2004-03-30  Martin Baulig  <martin@ximian.com>
26007         * reflection.c (encode_new_constraint): New static function to add
26008         the constructor constraint attribute to a type parameter.
26009         (encode_constraints): Call encode_new_constraint() if necessary.
26011         * reflection.h
26012         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26014         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26015         
26016 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26018         * reflection.c, icall.c: add support for pinning variables. 
26020 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26022         * marshal.c (mono_marshal_get_managed_wrapper):
26023         init bool local with zero rather than null.
26025 2004-03-29  Martin Baulig  <martin@ximian.com>
26027         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26028         the "official" behavior here.
26029         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26031 2004-03-29  Martin Baulig  <martin@ximian.com>
26033         * icall.c: Reflect latest API changes.
26035 2004-03-29  Martin Baulig  <martin@ximian.com>
26037         * loader.c (mono_get_method_from_token): Also call
26038         mono_metadata_load_generic_params () for abstract and interface
26039         methods; replace the type arguments in the method signature with
26040         the ones which are loaded from the metadata.
26042 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26044         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26045         of the lock is not the current thread. MS.NET don't do it, in spite of
26046         what the documentation says. See bug #56157.
26048 2004-03-28  Martin Baulig  <martin@ximian.com>
26050         * class.c (mono_class_init): Don't call init_properties() and
26051         init_events() for generic instances; set `prop->parent' when
26052         inflating properties.
26054         * reflection.c (mono_generic_inst_get_object): Call
26055         `mono_class_init (ginst->klass)'.
26056         (mono_type_get_object): Only create a MonoGenericInst if your
26057         generic type is a TypeBuilder.
26058         (do_mono_reflection_bind_generic_parameters): Only set
26059         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26061 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26063         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26064         Fixes #56091.
26066 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26068         * icall.c: added Kill_internal icall.
26069         * process.[ch]: added Kill_internal icall.
26071 2004-03-25  Martin Baulig  <martin@ximian.com>
26073         * class.h (MonoStats): Added `generic_instance_count',
26074         `inflated_method_count', `inflated_type_count' and
26075         `generics_metadata_size'.       
26077 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26079         * reflection.c: no warnings now.
26081 2004-03-25  Martin Baulig  <martin@ximian.com>
26083         * class.c (mono_class_get_full): New public function; does a
26084         mono_class_get(), but also takes a `MonoGenericContext *'.
26086         * loader.c (mono_field_from_memberref): Renamed to
26087         `field_from_memberref', made static and added `MonoGenericContext *'
26088         argument.
26089         (mono_field_from_token): Added `MonoGenericInst *' argument.
26090         (method_from_memberef): Likewise.
26091         (mono_get_method_from_token): Likewise.
26092         (mono_get_method_full): New public function; does a
26093         mono_get_method(), but also takes a `MonoGenericContext *'.
26095         * verify.c (mono_method_verify): Get the method's generic context
26096         and pass it to mono_field_from_token(), mono_get_method_full() and
26097         mono_class_get_full().
26099 2004-03-25  Martin Baulig  <martin@ximian.com>
26101         * class.c (mono_class_inflate_generic_type): Take a
26102         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26103         `MonoGenericMethod *'.
26105 2004-03-25  Martin Baulig  <martin@ximian.com>
26107         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26108         instead of the MonoGenericMethod here.
26110 2004-03-25  Martin Baulig  <martin@ximian.com>
26112         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26113         each time we create a new MonoGenericInst, we also create a new
26114         context which points back to us.
26116         * class.c (inflate_method): Use `ginst->context' instead of
26117         creating a new context.
26119         * loader.c (method_from_memberref): Use
26120         `klass->generic_inst->context' instead of creating a new context.
26122 2004-03-25  Martin Baulig  <martin@ximian.com>
26124         * class.h (MonoGenericContext): New struct.
26125         (MonoGenericMethod): Removed `generic_inst'.
26127         * class.c (mono_class_inflate_generic_method): Take a
26128         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26130 2004-03-25  Martin Baulig  <martin@ximian.com>
26132         * loader.h (MonoMethodInflated): New typedef.
26134         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26135         `generic_param_count' consume just 30 bits, added `is_inflated'
26136         and `has_type_parameters' flags (one bit each).
26138         * class.c (mono_class_inflate_generic_method): Create a
26139         MonoMethodInflated instead of a MonoMethodNormal and set
26140         `is_inflated' in the method signature.
26142         * class.h (MonoGenericMethod): Removed `generic_method'.
26144 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26146         * image.c: Make sure the name of a MonoImage is always an absolute path.
26147           This fixes bug #54415.
26149 2004-03-24  Martin Baulig  <martin@ximian.com>
26151         * class.c (mono_class_setup_vtable): If we're a generic instance,
26152         use our generic type's vtable size.
26154 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26156         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26157         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26158         problems.
26160 2004-03-23  Martin Baulig  <martin@ximian.com>
26162         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26163         `MonoEvent *events'.
26165         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26166         (typebuilder_icalls): Added "get_event_info"; calls
26167         mono_reflection_event_builder_get_event_info(). 
26169         * reflection.c (mono_reflection_generic_inst_initialize): Added
26170         `MonoArray *events'.
26171         (mono_reflection_event_builder_get_event_info): New function.
26173 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26175         * object.h: add mono_type_initialization_init
26177         * object.c (mono_runtime_class_init): 
26178         implement class constructor synchronization rules
26179         to cope with threading issues.  
26180         add mono_type_initialization_init
26182         * appdomain.c (mono_runtime_init): call 
26183         mono_type_initialization_init
26185         * class.h: removing initializing field from MonoVTable
26187 2004-03-23  Martin Baulig  <martin@ximian.com>
26189         * class.c (my_mono_class_from_generic_parameter): Use
26190         `param->name' if it's not NULL. 
26192 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26194         * class.c: do not insert non-virtual methods in the vtable.
26195         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26196         that means the method is non-virtual. This never would have
26197         happened before.
26199 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26201         * profiler.c: Added lock for accessing coverage_hash.
26203 2004-03-22  Martin Baulig  <martin@ximian.com>
26205         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26206         `method->method->signature->generic_param_count != 0' to make it
26207         work for interface methods.
26209 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26211         * process.c: quote the string passed to the shell using g_shell_quote.
26213 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26215         * threads.c:
26216         (mono_threads_manage): don't remove the finalizer thread and self
26217         from the threads hash table so that mono_thread_manage can be called
26218         more than once.
26220 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26222         * process.c: quote the arguments when UseShellExecute is true. Fixes
26223         bug #55790.
26225 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26227         * threads.c: set mono_thread_detach as a cleanup routine for every
26228         thread. This way it's always executed upon thread termination, either
26229         aborted or finished normally. No more xsp hangs!
26231 2004-03-17  Martin Baulig  <martin@ximian.com>
26233         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26234         `int count_nested' and a `MonoType **nested'.
26236         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26237         most of the functionality into a new static
26238         do_mono_reflection_bind_generic_parameters() and don't take a
26239         `MonoType *nested_in' argument any more.  Don't compute nested
26240         types here.
26241         (mono_reflection_generic_inst_get_nested_types): New public method
26242         to get nested types.
26244         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26245         we're a nested class.
26247         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26248         mono_reflection_generic_inst_get_nested_types() to compute the
26249         nested types.
26251 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26253         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26254         descriptive error message under windows.
26255         
26256 2004-03-17  Martin Baulig  <martin@ximian.com>
26258         * class.c (dup_type): Added `const MonoType *original' argument;
26259         copy the attrs from the original type.
26261 2004-03-17  Martin Baulig  <martin@ximian.com>
26263         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26264         `m->generic_inst_cache' here.
26266 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26268         * exception.h exception.c: Add stack_overflow_exception.
26270 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26272         * threadpool.c:
26273         (overlapped_callback): call SetEvent *after* invoking the callback.
26274         No need to call CloseHandle.
26276 2004-03-16  Martin Baulig  <martin@ximian.com>
26278         * reflection.c (mono_image_get_fieldref_token): Take a
26279         `MonoReflectionField *' instead of a `MonoClassField *' and a
26280         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26282 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26284         * appdomain.c: don't add the culture to the filename we're looking for
26285         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26287 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26289         * locales.c: don't ignore symbols when doing case insensitive compares.
26290         Thanks Dick! Fixes bug #54046.
26292         * threads.c: surround 'threads' usage with enter/leave in
26293         mono_thread_manage.
26295 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26297         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26298         implicitly marshalled as [Out]. Fixes #55450.
26300         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26301         an exception.
26303 2004-03-16  Martin Baulig  <martin@ximian.com>
26305         * class.c (mono_class_from_generic_parameter): Use the actual
26306         parameter name. 
26308 2004-03-16  Martin Baulig  <martin@ximian.com>
26310         * reflection.c (type_get_signature_size): New static function.
26311         Compues the size of the type in a method signature.
26312         (method_get_signature_size): New static function; calls
26313         type_get_signature_size() to compute the actual size of the
26314         method's signature.
26315         (method_encode_signature): Use method_get_signature_size() to get
26316         the signature's size rather than using `nparams * 10'.
26318 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26320         * file-io.h: define here WapiOverlapped on windows. I don't want the
26321         regular OVERLAPPED one.
26323         * file-io.c:
26324         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26325         Disabling AIO on windows.
26327 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26329         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26330         bug #55385.
26332 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26334         * appdomain.c: upgraded corlib version.
26336         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26337         and BeginWrite. Allow opening files for asynchrnous operations.
26339         * file-io.h: new struct that maps FileStreamAsyncResult.
26340         * icall.c: added new icalls.
26341         * process.[ch]: support setting child process environment variables
26342         and use the SHELL or COMSPEC when UseShellExecute is true.
26344         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26345         callback for async. IO is here and also BindHandle.
26347         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26348         from here.
26350 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26352         * reflection.c (create_custom_attr): Allow len == 0.
26354         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26355         computation on big-endian machines.
26357 2004-03-13  Martin Baulig  <martin@ximian.com>
26359         * class.h (MonoGenericInst): Added `int count_ifaces'.
26361         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26362         `ginst->count_ifaces' instead `klass->interface_count' since we
26363         may get called before the vtable is created.
26365         * loader.c (mono_method_get_param_names): If we're a generic
26366         instance, return and don't initialize the class.
26368         * reflection.c (mono_reflection_setup_generic_class): Don't call
26369         ensure_runtime_vtable().
26370         (mono_reflection_bind_generic_parameters): Set
26371         `ginst->count_ifaces'.
26373 2004-03-11  Jackson Harper <jackson@ximian.com>
26375         * icall.c:
26376         * unicode.c:
26377         * unicode.h: Remove unused System.Char icalls.
26378         
26379 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26381         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26382         code when we P/Invoke the first library in Windows.Forms, instead
26383         of when we first open the assembly.
26385         * assembly.c: Drop the lookup from here.
26387 2004-03-10  Martin Baulig  <martin@ximian.com>
26389         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26390         class for properties, fields and events.  Finally fixes #54945.
26392 2004-03-10  Martin Baulig  <martin@ximian.com>
26394         * metadata.c (mono_metadata_class_equal): New static function;
26395         checks whether two generic instances or two generic parameters are
26396         equal.
26397         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26398         compare classes.        
26400 2004-03-10  Martin Baulig  <martin@ximian.com>
26402         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26404         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26405         argument and write it into the `reflection_info' field.
26407         * icall.c
26408         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26409         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26411 2004-03-09  Jackson Harper  <jackson@ximian.com>
26413         * char-conversions.h: use 8 bits for numeric data its all we need
26414         * icall.c: numeric data is only 8 bits now.
26416 2004-03-09  Martin Baulig  <martin@ximian.com>
26418         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26420         * class.c (init_properties, init_events): Initialize the new
26421         `parent' field.
26423         * reflection.c (typebuilder_setup_properties): Likewise.
26424         (typebuilder_setup_events): Likewise.
26426         * reflection.h (MonoEventInfo): Replaced `parent with
26427         `declaring_type' and `reflected_type'.
26429         * icall.c (ves_icall_get_property_info): Distinguish between
26430         declaring and reflected type.
26431         (ves_icall_get_event_info): Likewise.
26433 2004-03-09  Martin Baulig  <martin@ximian.com>
26435         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26436         (ves_icall_Type_GetField): Correctly set field->klass.
26438 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26440         * loader.h: Fix warning.
26442 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26444         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26445         library routine if present.  Notice that it will still continue
26446         executing even if its missing, for those working on the Gtk#
26447         edition of Windows.Forms.
26449         * assembly.c (do_mono_assembly_open): If loading the
26450         System.Windows.Forms call mono_loader_wini_init.
26452 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26454         * class.h: Added MonoRemoteClass struct.
26455         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26456         function for MonoStrings.
26457         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26458         Added internal call for getting the proxy type.
26459         * marshal.c: Get the type of transparent proxies from its remote_class.
26460         Added methods that generate the IL for type checks and casts:
26461         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26462         mono_marshal_get_proxy_cancast.
26463         * marshal.h: Declaration of the previous new methods.
26464         * object.c: Added new moethods for creating and updating MonoRemoteClass
26465         instances: mono_remote_class, mono_upgrade_remote_class, 
26466         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26467         * verify.c: FIx transparent_proxy_fields layout.
26468         * appdomain.c: Bump corlib version.
26470 2004-03-04  Jackson Harper  <jackson@ximian.com>
26472         * icall.c: Add icall to access char conversion tables.
26473         * char-conversions.h: Character conversion tables.
26474         * Makefile.am: Add char-conversions.h private header file.
26475         
26476 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26478         * appdomain.c (unload_thread_main): Increase unloading timeout to
26479         10 sec as a temporary workaround for Nant problems.
26481 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26483         * gc.c: Add checks for GC_enable and GC_disable.
26485         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26486         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26487         (bug #54988).
26488         
26489 2004-02-27  Martin Baulig  <martin@ximian.com>
26491         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26492         `MonoReflectionType *' instead of a `MonoType *'.
26494 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26496         * gc.c (run_finalize): Avoid finalizing the object representing the
26497         finalizer thread.
26498         (finalizer_thread): Fix warning.
26500 2004-02-25  Martin Baulig  <martin@ximian.com>
26502         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26503         argument for nested types.
26504         (mono_class_create_generic): Added support for nested generictypes.
26506         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26507         `GList *nested'.
26509         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26511         * reflection.c (method_encode_signature): Increase the minimum
26512         value of `size' from 10 to 11.
26513         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26514         and `MonoType **types' arguments instead of the `MonoArray
26515         *types'; added `MonoType *nested_in'.  Recursively instantiate
26516         nested classes. 
26518 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26520         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26521         stack_overflow_ex members which are used by exception handling.
26523         * appdomain.c (mono_runtime_init): Initialize the new members.
26525         * gc.c (mono_gc_enable): New helper function.
26526         * gc.c (mono_gc_disable): New helper function.
26528 2004-02-23  Martin Baulig  <martin@ximian.com>
26530         * icall.c: I must have been really stupid - make it actually work
26531         this time ;-)
26533 2004-02-23  Martin Baulig  <martin@ximian.com>
26535         * loader.c (method_from_memberref): Only inflate the method if
26536         it's in another klass.
26538 2004-02-23  Martin Baulig  <martin@ximian.com>
26540         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26541         (mono_class_init): If we're a generic instance and an interface,
26542         compute `class->interface_id'; also create `class->interfaces'
26543         here and inflate them.
26545         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26546         `ginst->is_open'.
26547         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26549         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26551 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26553         * reflection.c (method_encode_code): Improved the error message
26554         generated by the exception.
26556 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26558         * icall.c: Martin did not do what he said in the ChangeLog for
26559         2004-02-18, but put back the changes for properties and events.
26560         Commenting those changes out again and adding comment to bug #54518.
26561         
26562         * process.c: removed warning.
26564 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26566         * marshal.c (emit_struct_conv): Print an error message instead of
26567         asserting when a type does not have the StructLayout attribute.
26569 2004-02-20  Martin Baulig  <martin@ximian.com>
26571         * reflection.c (mono_type_get_object): Also use the cache for
26572         generic instances.
26573         (mono_reflection_bind_generic_parameters): Always compute
26574         `ginst->ifaces'.        
26576 2004-02-20  Martin Baulig  <martin@ximian.com>
26578         * class.h (MonoGenericMethod): Removed `klass'.
26580         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26581         *klass' argument.
26583 2004-02-20  Martin Baulig  <martin@ximian.com>
26585         * reflection.c (method_encode_methodspec): Actually use the
26586         uninflated signature for the memberref.
26588 2004-02-20  Martin Baulig  <martin@ximian.com>
26590         * class.h (MonoGenericMethod): Removed `declaring'.
26592         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26593         is NULL, compute it here.
26595 2004-02-20  Martin Baulig  <martin@ximian.com>
26597         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26599         * metadata.c (mono_metadata_generic_inst_hash): New method.
26600         (mono_metadata_generic_inst_equal): New method.
26602         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26603         `klass->image->generic_inst_cache' cache to avoid creating
26604         duplicate MonoGenericInst's.
26606         * class.c (mono_class_inflate_generic_type): Use the cache.
26608 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26610         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26612 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26614         * icall.c: added Socket.WSAIoctl icall.
26616         * socket-io.[ch]: implemented
26617         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26619 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26621         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26623 2004-02-18  Urs C Muff  <umuff@quark.com>
26625         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26626         this work on PPC and other big-endian architectures.
26628         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26629         fields with an underscore to make sure they're only accessed by
26630         the read32() macro.
26632 2004-02-18  Martin Baulig  <martin@ximian.com>
26634         * icall.c: Put the klass->refclass changes back for methods and
26635         fields, but not for properties and events.  We're currently not
26636         distinguishing between DeclaringType and ReflectedType for
26637         properties and events, that's what caused the regressions.
26639 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26641         * object.c:
26642         (mono_async_result_new): the handle can be NULL.
26644         * threadpool.c: Use an event instead of a semaphore, don't initialize
26645         it until needed. This saves quite a few semaphores from being created
26646         when using the threadpool.
26648 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26650         * object.c (mono_string_is_interned_lookup): Fix interning of long
26651         strings. Fixes #54473.
26653         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26655         * icall.c: Revert the klass->refclass changes since they introduce
26656         regressions (bug #54518).
26658 2004-02-18  Martin Baulig  <martin@ximian.com>
26660         * class.c (mono_class_init): If we're a generic instance and don't
26661         come from a TypeBuilder, inflate our members here.
26662         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26663         (mono_class_create_generic): New public method.
26664         (mono_class_initialize_generic): Removed.
26665         (get_instantiation_name): Renamed to
26666         _mono_class_get_instantiation_name() and made it public.
26668 2004-02-18  Martin Baulig  <martin@ximian.com>
26670         * class.c (mono_class_inflate_generic_type): Clear the new
26671         instance's `nginst->klass' when inflating a generic instance.
26672         (mono_class_is_subclass_of): Added (basic) support for generic
26673         instances.
26675 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26677         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26678         MonoMempool to hold compiled native code.
26680 2004-02-17  Martin Baulig  <martin@ximian.com>
26682         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26683         `properties'.
26685         * reflection.c (mono_reflection_generic_inst_initialize): Added
26686         `MonoArray *properties' argument.
26688         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26690 2004-02-17  Martin Baulig  <martin@ximian.com>
26692         * icall.c (ves_icall_Type_GetFields): Renamed to
26693         ves_icall_Type_GetFields_internal() and added a
26694         `MonoReflectionType *rtype' argument; pass it to
26695         mono_field_get_object() to set the field's "reflected" type.
26696         (ves_icall_Type_GetConstructors): Likewise.
26697         (ves_icall_Type_GetEvents): Likewise.
26698         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26699         argument; pass it to mono_method_get_object() to set the method's
26700         "reflected" type.       
26702 2004-02-17  Martin Baulig  <martin@ximian.com>
26704         * class.h (MonoDynamicGenericInst): New type.
26705         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26707         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26708         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26709         (ves_icall_MonoGenericInst_GetFields): New interncall.
26711         * class.c (mono_class_from_generic): Don't call
26712         mono_class_initialize_generic() if this is a dynamic instance;
26713         ie. it's being created from a TypeBuilder.
26714         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26715         `class->byval_arg.type'.
26717         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26718         to `inflate_method' and made static.
26719         (mono_reflection_inflate_field): Removed.
26720         (mono_reflection_generic_inst_initialize): New public method.
26722         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26723         `ctors' and `fields'; added `initialized'.
26725 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26727         * debug-helpers.c (mono_method_full_name): Fix output for empty
26728         namespaces.
26730 2004-02-12  Martin Baulig  <martin@ximian.com>
26732         * class.h (MonoClassField): Added `MonoType *generic_type'.
26734         * reflection.c (mono_image_get_fieldref_token): Added support for
26735         instantiated generic types.
26736         (field_encode_inflated_field): Removed.
26737         (mono_image_get_inflated_field_token): Removed.
26738         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26740         * reflection.h (MonoReflectionInflatedField): Removed.
26742 2004-02-12  Martin Baulig  <martin@ximian.com>
26744         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26745         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26747         * reflection.c (mono_image_get_methodspec_token): Take a
26748         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26749         (mono_image_create_token): Check whether we have a
26750         `method->signature->gen_method' and call
26751         mono_image_get_methodspec_token() if appropriate.
26752         (inflated_method_get_object): Removed.
26753         (mono_reflection_bind_generic_method_parameters): Return a
26754         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26755         (mono_reflection_inflate_method_or_ctor): Likewise.
26757         * reflection.h (MonoReflectionInflatedMethod): Removed.
26759 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26761         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26762         for custom valuetype marshalling.
26764         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26766 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26768         * icall.c: fixed WSAGetLastError_internal name.
26770 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26772         * threads.c (mono_thread_attach): Allow this to be called multiple
26773         times for a thread.
26774         
26775         * threads.c (build_wait_tids): Do not wait for ourselves.
26777         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26778         appdomain list is empty.
26780         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26781         memory returned by mono_string_builder_to_utf16, since it points into
26782         managed memory. Thanks to Bernie Solomon for noticing this.
26784         * icall.c: Add AppDomainSetup icalls.
26786         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26788         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26789         types.
26791         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26792         custom attributes to the method_aux struct. Also fix array indexes etc.
26794         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26795         
26796 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26798         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26799         (both static and runtime) and reduce startup time.
26801 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26803         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26804         AsAny marshalling conversion instead of crashing.
26806         * marshal.c: Fix warnings.
26808 2004-02-09  Martin Baulig  <martin@ximian.com>
26810         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26812         * reflection.h (MonoReflectionInflatedMethod): Removed the
26813         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26815         * reflection.c (method_encode_methodspec): Removed the `method'
26816         argument; we get it from `gmethod->declaring'.
26817         (inflated_method_get_object): Removed the `declaring' argument.
26819 2004-02-09  Martin Baulig  <martin@ximian.com>
26821         * class.h (MonoGenericMethod): New type.
26822         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26823         `generic_method'.
26825         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26826         a `MonoGenericMethod *gen_method' one.
26828         * class.c (mono_class_inflate_generic_type): Take an additional
26829         `MonoGenericMethod * argument.  This is only non-NULL if we're
26830         inflating types for a generic method.   
26831         (mono_class_inflate_generic_signature): Renamed to
26832         inflate_generic_signature() and made static; take a
26833         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26834         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26835         instead of a `MonoGenericInst *' one.
26836         (mono_class_inflate_generic_method): Likewise.
26838         * reflection.c (encode_generic_method_sig): Take a
26839         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26840         (method_encode_methodspec): Likewise.
26841         (inflated_method_get_object): Likewise. 
26843         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26844         field with a `MonoGenericMethod *gmethod' one.  
26846 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26848         * class.h (mono_class_has_parent): add parens to expansion
26849         so you can ! this.
26851 2004-02-08  Martin Baulig  <martin@ximian.com>
26853         * image.h (MonoImage): Removed `generics_cache'.
26855         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26856         instead of a `MonoType *' argument; removed the `inflate_methods'
26857         argument.  Don't inflate methods here.
26859         * loader.c (find_method): If it's a generic instance, call
26860         mono_class_init() on the `sclass->generic_inst->generic_type'.
26862         * metadata.c (mono_type_size): Make this work on uninitialized
26863         generic instances; call it on the `ginst->generic_type's class.
26865         * reflection.c (mono_reflection_bind_generic_parameters): Call
26866         mono_class_from_generic() to create the `ginst->klass'.
26868 2004-02-08  Martin Baulig  <martin@ximian.com>
26870         * class.h (MonoClass): Changed type of `generic_inst' from
26871         `MonoType *' to `MonoGenericInst *'.
26873 2004-02-08  Martin Baulig  <martin@ximian.com>
26875         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26876         mono_type_get_object(), this is now creating a `MonoGenericInst'
26877         for MONO_TYPE_GENERICINST.
26878         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26879         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26881         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26882         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26883         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26884         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26885         and reflected type.
26887         * reflection.h (MonoReflectionInflatedMethod): Removed
26888         `declaring_type' and `reflected_type'.
26890 2004-02-08  Martin Baulig  <martin@ximian.com>
26892         * class.h (MonoGenericInst): Added `MonoType *parent' and
26893         `MonoType **ifaces'.
26895         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26896         `parent' and `interfaces'.
26898         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26899         `MonoType *' argument and return a `MonoType *'.
26901         * icall.c
26902         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26903         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26905 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26907         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26908         valuetype marshalling.
26910 2004-02-06  Martin Baulig  <martin@ximian.com>
26912         * class.c
26913         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26914         (my_mono_class_from_generic_parameter): Likewise.
26916 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26918         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26919         contents of the symbol files lazily.
26921         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26923         * threads.h threads.c icall.c: New icalls for getting and setting the
26924         threads name.
26926 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26928         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26929         Raise an exception when the domain is not found.
26931 2004-02-03  Martin Baulig  <martin@ximian.com>
26933         * reflection.c (mono_image_get_methodspec_token): Use the
26934         uninflated signature; fixes gen-33.
26936 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26938         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26939         the finalizer code can use thread functionality.
26941         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26942         the finalizer thread.
26944         * threads.c: Make some functions more robust.
26946         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26948         * metadata.h: Add new marshalling conventions.
26950         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26951         stringbuilder marshalling. Fixes #53700.
26953         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26955         * reflection.c (mono_image_get_type_info): Save declarative security
26956         info.
26958         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26959         unmanaged fields as well.
26961         * appdomain.c: Bump corlib version.
26963 2004-02-01  Martin Baulig  <martin@ximian.com>
26965         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26966         method type arguments.  
26968 2004-01-30  Duncan Mak  <duncan@ximian.com>
26970         * marshal.h: Add prototype for
26971         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26972         and
26973         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26974         fix the build.
26976 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26978         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26979         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26981 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26983         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26984         custom marshalling of valuetypes.
26986         * marshal.c: Fix some warnings.
26988 2004-01-29  Martin Baulig  <martin@ximian.com>
26990         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26991         for generic method parameters.
26993         * reflection.c (method_encode_methodspec): Write the uninflated
26994         signature into the methodspec table.
26995         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26996         is always the uninflated method.
26997         (reflection_methodbuilder_to_mono_method): Copy the generic
26998         parameters from the MethodBuilder into `header->gen_params'.
27000 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27002         * class.c (mono_class_from_generic_parameter): Fix warning.
27004 2004-01-27  Martin Baulig  <martin@ximian.com>
27006         * class.c (mono_class_from_generic_parameter): Don't create
27007         `klass->methods' here.  
27009 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27011         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27012         extension since it does not work with libraries named lib<FOO>.dll.so.
27014 2004-01-25  Martin Baulig  <martin@ximian.com>
27016         * class.c (mono_class_inflate_generic_type): Added support for
27017         MONO_TYPE_GENERICINST.
27019         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27020         inflate methods on open constructed types.      
27022 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27024         * object.c: fire ProcessExit event in the root AppDomain after running
27025         Main. Fixes bug #53299.
27027 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27029         * socket-io.c: include the new socket-wrappers.h header.
27030         Use the wrappers instead of the unix socket functions to make the code
27031         more clear.
27033 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27035         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27037         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27038         Fixes #22532.
27040 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27042         * reflection.c (mono_image_create_pefile): Handle the case when the
27043         entry point is not a MethodBuilder.
27045         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27046         field to ReflectionMethod since it is not allways a builder.
27048         * reflection.c (type_get_fully_qualified_name): New helper function to
27049         return the fully qualified name of a type.
27051         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27052         type name for custom marshallers.
27054         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27056         * class.c (mono_class_setup_vtable): If a parent class already 
27057         implements an interface, use the implementing methods from that class.
27058         Fixes #53148.
27060 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27062         * threadpool.c: just return instead of ExitThread to allow for thread
27063         clean up earlier.
27065 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27067         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27068         when closing resource modules.
27070         * reflection.c (mono_image_create_pefile): Handle the case when the
27071         entry point is not a MethodBuilder.
27073         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27074         field to ReflectionMethod since it is not allways a builder.
27076 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27078         * marshal.c (mono_marshal_get_managed_wrapper): 
27079         mono_marshal_alloc takes native int so CONV_I
27080         the arg for 64bits.
27082 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27084         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27085         tokens in the cattr table. Fixes #53108.
27087 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27089         * loader.c: don't trim ".dll" before looking up in the config file.
27090         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27092 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27094         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27095         Return the module which contains the resource as well.
27096         (ves_icall_System_Reflection_Module_Close): New icall.
27098         * appdomain.c: Bump corlib version number.
27100         * image.c (mono_image_addref): New public function.
27102         * assembly.c: Call mono_image_addref.
27104         * reflection.c (mono_module_get_object): Increase reference count of 
27105         the image.
27107         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27108         Fixes #22532.
27110         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27111         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27112         proper exceptions on DllImport problems.
27114 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27116         * class.c, metadata.c: eliminate CSIZE macro.
27118 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27120         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27121         * object.h: Added async_callback field in MonoAsyncResult.
27122         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27123         * verify.c: Added async_callback in MonoAsyncResult layout.
27125 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27127         * reflection.c (mono_reflection_get_custom_attrs): Add support
27128         for Modules.
27130 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27132         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27133         marshalling.
27134         (mono_marshal_method_from_wrapper): Add null pointer check.
27136 2004-01-16  Martin Baulig  <martin@ximian.com>
27138         * debug-mono-symfile.h: Set version number to 36 and reflect
27139         latest symbol writer changes.
27141 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27143         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27144         multi-dimensional arrays.
27145         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27146         (mono_class_from_mono_type): Use bounded_array_class_get.
27147         
27148         * class.c (mono_bounded_array_class_get): New function which takes
27149         a 'bounded' bool argument to distinguish vectors from one dimensional
27150         arrays.
27152         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27153         bounded_array_class_get if the array has bounds.
27155         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27156         Search modules loaded using AssemblyBuilder:AddModule as well.
27158 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27160         * appdomain.c: increased corlib version.
27161         * filewatcher.c: removed g_print.
27162         * icall.c:
27163         (get_property_info): only allocate what is actually requested.
27164         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27166 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27168         * Makefile.am: added filewatcher.[ch]
27169         * filewatcher.[ch]: FileSystemWatcher runtime support.
27170         * icall.c: added new FSW icalls.
27172 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27174         * string-icalls.c: fix stringbuilder regression as suggested by
27175         Iain McCoy <iain@mccoy.id.au>.
27177 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27179         * process.c (process_read_stringtable_block): Recognize '007f' as
27180         a language neutral stringtable block.
27182 2004-01-12  Patrik Torstensson
27184         * object.h (MonoStringBuilder) : Changed layout to support our
27185         new stringbuilder class.
27186         * marshal.c: Change marshalling to support the new layout of 
27187         string builder.
27188         * appdomain.c: increased version number because new layout of
27189         string builder.
27191 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27193         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27194         assembly name as an string instead of an AssemblyName, since it is
27195         easier to extract info from it.
27197         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27198         the culture subdirectories too. Fixes #52231.
27200 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27202         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27203         It takes 2 new parameters with an optional name for the method to look
27204         for and case ignoring info.
27206         * threadpool.c: removed unused variable.
27208 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27210         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27211         It takes 2 new parameters with an optional name for the property to look
27212         for and case ignoring info.
27213         Fixes bug #52753.
27215 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27217         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27218         Fix #52451.
27220 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27222         * appdomain.c:
27223         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27224         Fixes bug #52630.
27226 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27228         * reflection.c: Add support for more than one unmanaged resource.
27230         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27231         in field->def_value, as done in all other cases.
27233         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27234         TypeBuilders.
27236         * reflection.c (mono_reflection_create_runtime_class): Remove 
27237         errorneous assignment to klass->element_class, since it is already
27238         done in mono_reflection_setup_internal_class.
27240 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27242         * gc.c: added missing LeaveCriticalSection.
27243         * icall.c: indented a couple of lines.
27244         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27245         if we call EndInvoke inside a callback. Fixes bug #52601.
27247 2004-01-07  Martin Baulig  <martin@ximian.com>
27249         * mono-debug-debugger.h
27250         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27252 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27254         * appdomain.c: Use messages in NotImplementedException.
27256         * exception.c (mono_get_exception_not_implemented): Now this takes
27257         a message argument.
27259         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27260         exception instead of g_asserting an aborting when something is not
27261         implemented.
27263         Add some inline docs.
27265 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27267         * reflection.h: Update after changes to object layout.
27269         * reflection.c: Implement saving of unmanaged aka win32 resources.
27271         * appdomain.c: Bump version number.
27273         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27274         Handle missing domains gracefully.
27276 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27278         * file-io.c : On Windows, there are much more invalid_path_chars.
27280 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27282         * class.h, object.c: prepare for GetType () speedup.
27284 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27286         * profiler.c: workaround for --profile null reference exception on
27287           cygwin. Patch by Patrik Torstensson.
27289 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27291         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27292         make work for unaligned access.
27294 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27296         * class.c: small cleanup (class->fields [i] -> field).
27297         * image.c: check address of metadata is valid.
27299 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27301         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27302         search the list of loaded assemblies.
27304         * reflection.c (mono_reflection_type_from_name): Use 
27305         mono_assembly_loaded instead of mono_image_loaded.
27307         * reflection.c: Fix warnings.
27309 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27311         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27312         is dynamic. This is needed since an assembly can contain both dynamic and
27313         non-dynamic images.
27315         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27316         assembly->dynamic.
27318         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27320         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27321         to store modules loaded using AddModule.
27323         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27324         on Modules.
27326         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27328         * reflection.c (mono_image_fill_export_table_from_module): New function to
27329         fill out the EXPORTEDTYPES table from a module.
27331         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27332         into a separate function. Also handle loaded non-dynamic modules.
27334         * reflection.c (mono_image_basic_init): Fix memory allocation.
27336         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27338         * assembly.c (mono_assembly_load_references): Make this public.
27340 2003-12-19  Martin Baulig  <martin@ximian.com>
27342         * class.c (mono_class_initialize_generic): Made this static, take
27343         a `MonoGenericInst *' instead of a `MonoClass *'.
27344         (mono_class_from_generic): Call mono_class_initialize_generic()
27345         unless we're already initialized or being called from
27346         do_mono_metadata_parse_generic_inst().
27348         * class.h (MonoGenericInst): Added `initialized' and
27349         `init_pending' flags.
27351         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27352         `mono_class_init (gklass)' or mono_class_initialize_generic()
27353         here; set `generic_inst->init_pending' while parsing the
27354         `type_argv'.
27356 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27358         * locales.c: include string.h for memxxx prototypes
27360 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27362         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27363         constructor when accessing literal fields.
27365 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27367         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27369         * reflection.c (assembly_add_resource_manifest): New function to fill
27370         the MANIFESTRESOURCE table.
27372         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27374         * reflection.h: Update to changes in class layout.
27376         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27377         Reenable call to mono_runtime_is_shutting_down ().
27379         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27380         determine if the runtime is shutting down.
27382 2003-12-16  Jackson Harper <jackson@ximian.com>
27384         * icall.c: comment out call to mono_runtime_is_shutting_down to
27385         fix build.
27386         
27387 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27389         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27390         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27392 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27394         * reflection.c: move definition of swap_with_size
27395         to before its first call
27397 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27399         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27401         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27402         icall.
27404         * object.c: Fix warnings.
27406         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27407         members if FlattenHierarchy is set.
27409         * reflection.c (mono_image_add_decl_security): New function to emit
27410         declarative security.
27412         * reflection.h reflection.c: Add support for declarative security.
27414         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27415         
27416 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27418         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27419         
27420         * appdomain.c verify.c: Moved corlib version checking into its own
27421         function in appdomain.c since it needs to create vtables etc.
27423 2003-12-13  Patrik Torstensson <p@rxc.se>
27425         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27426         instead of unwrapped server.
27428 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27430         * verify.c (check_corlib): Fix field index.
27432 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27434         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27435         GetGacPath icall.
27437 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27439         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27440         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27441         cope with sizeof(size_t) != sizeof(guint32).
27443 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27445         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27446         in case of failure.
27448 2003-12-10  Mark Crichton <crichton@gimp.org>
27450         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27451         in managed code.
27453         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27455 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27457         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27458         marked as deleted.
27460 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27462         * verify.c (check_corlib): Handle the case when the version field is 
27463         initialized by a static constructor.
27465 2003-12-08  Patrik Torstensson  <p@rxc.se>
27467     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27469 2003-12-08  Martin Baulig  <martin@ximian.com>
27471         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27472         a MonoReflectionGenericParameter, also take the parameter index
27473         and name as arguments.
27474         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27475         (ves_icall_MonoGenericParam_initialize): New interncall.
27476         (ves_icall_Type_make_byref_type): New interncall.
27478         * reflection.h (MonoReflectionGenericParam): Derive from
27479         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27480         `index' fields.
27482         * reflection.c (mono_reflection_define_generic_parameter): Create
27483         and return a new MonoReflectionGenericParam; don't initialize the
27484         constraints here.
27485         (mono_reflection_initialize_generic_parameter): New public method;
27486         initializes the constraints and creates the `param->pklass'.
27488 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27490         * reflection.h reflection.c: Use the new fields 'num_types', 
27491         'num_fields' and 'num_methods' to track the number of types etc.
27493         * verify.c (check_corlib): Check corlib version number.
27495 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27497         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27498         function works on all methods.
27500 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27502         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27503         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27504         the custom_type_info flag of the transparent proxy.
27505         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27506         objects that supports IRemotingTypeInfo.
27507         * object.h: Added custom_type_info field in transparent proxy.
27509 2003-12-06  Martin Baulig  <martin@ximian.com>
27511         * class.c (mono_class_create_from_generic): Removed.
27512         (mono_class_from_generic): Check `ginst->klass' before doing
27513         anything else.  This is important to fully support "recursive"
27514         generic types.
27516         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27517         empty `generic_inst->klass' before doing anything else.
27519 2003-12-06  Dick Porter  <dick@ximian.com>
27521         * verify.c: 
27522         * object.h:
27523         * icall.c:
27524         * locales.c: Use C structs to access class fields.  Don't do a
27525         conversion between MonoString and UChar because both are
27526         platform-endian UTF-16.  Compare now takes startindex and count
27527         parameters.  Add a char overload for IndexOf.  Speed up the
27528         invariant string IndexOf.
27530 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27532         * Makefile.am (monosn_LDADD): Fix parallel build.
27534 2003-12-04  Martin Baulig  <martin@ximian.com>
27536         * icall.c
27537         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27538         (ves_icall_Type_make_array_type): New interncall.       
27540 2003-12-04  Martin Baulig  <martin@ximian.com>
27542         * locales.c: also change it in the !HAVE_ICU case.
27544 2003-12-04  Dick Porter  <dick@ximian.com>
27546         * icall.c:
27547         * locales.c: construct_compareinfo is now in CompareInfo, not
27548         CultureInfo.
27550 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27552         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27553         image->files array.
27555         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27556         table as well.
27558         * assembly.c (mono_assembly_load_references): Only load references
27559         once.
27561         * class.c (mono_class_from_name): Avoid linear search of the 
27562         EXPORTEDTYPE table.
27564         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27566 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27568         * image.h (MonoImage): Add 'field_cache' field.
27570         * loader.c (mono_field_from_token): Cache field lookups.
27571         
27572         * reflection.c (mono_module_get_object): Fix name property.
27574         * icall.c (ves_icall_get_enum_info): Update after changes to 
27575         mono_metadata_get_constant_index ().
27577         * icall.c: Get rid of get_type_info icall, use a separate icall for
27578         each type property to avoid needless memory allocations. Fixes #51514.
27580         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27581         to avoid needless binary searches.
27583         * class.c (class_compute_field_layout): Move the initialization of
27584         field->def_value to mono_class_vtable ().
27586         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27587         non-corlib types.
27589         * object.c (mono_object_allocate): Make it inline.
27591         * object.c (mono_object_allocate_spec): Make it inline.
27592         
27593 2003-12-02  Dick Porter  <dick@ximian.com>
27595         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27596         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27598 2003-12-01  Dick Porter  <dick@ximian.com>
27600         * threads.c: Fix signature and call in CreateMutex and
27601         CreateEvent.
27603 2003-12-01  Dick Porter  <dick@ximian.com>
27605         * icall.c: 
27606         * locales.c: Implement string compares and searching
27608         * object.h: Add extra Thread field
27610 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27612         * reflection.c (fixup_method): Add support for MonoCMethod.
27614 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27616         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27618         * reflection.c (assembly_name_to_aname): Allow extra characters in
27619         assembly names. Fixes #51468.
27621 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27623         * exception.c (mono_exception_from_name_domain): New helper function.
27625         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27626         exception object in the correct domain.
27628         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27629         formatting + make a copy a the input data.
27631         * loader.c (mono_get_method_from_token): Methods which contain
27632         native code do not have entries in the ImplMap.
27634         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27635         Thanks to Gonzalo for spotting this.
27636         
27637         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27638         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27640         * assembly.h (mono_assembly_load_from): Split the second part of 
27641         assembly loading into a new public function.
27643         * exception.h (mono_get_exception_bad_image_format): New function.
27645 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27647         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27648         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27649         
27650         * icall.c: Add new icall for creating dynamic methods.
27652         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27654         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27656         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27657         create a dynamic method.
27659         * reflection.c (resolve_object): New helper function.
27661         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27662         which manipulate it so they can also work on dynamic methods.
27664         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27665         creating the MonoReflectionMethodAux structure if it is not needed.
27666         
27667         * reflection.h verify.c: Update after changes to object layout.
27669         * reflection.c (method_builder_encode_signature): Fix compilation on
27670         gcc 2.95.x.
27672 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27674         * appdomain.h: Added support for context static fields. Added static_data
27675           field to MonoAppContext and renamed thread_static_fields to a more
27676           generic special_static_fields in MonoAppDomain, since it can now contain
27677           context static fields.
27678         * domain.c: Updated hashtable name.
27679         * object.c: Replaced field_is_thread_static() for a more generic
27680           field_is_special_static() which also checks for context static attribute.
27681           In mono_class_vtable(), added support for static context fields.
27682         * threads.c: Changed methods that manage thread static fields to more
27683           generic methods so they can be reused both for thread and context static
27684           data.
27685         * threads.h: Declared some new methods.
27687 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27689         * reflection.h: Update after changes to the managed types.
27691         * reflection.c (encode_custom_modifiers): New helper function.
27693         * reflection.c (method_encode_signature): Emit custom modifiers.
27695         * reflection.c (field_encode_signature): Emit custom modifiers.
27697 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27699         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27701         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27702         implementation.
27704         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27705         icall.
27707         * object.c (mono_field_get_value_object): New function.
27709         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27710         specific.
27712 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27714         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27715         return a preallocated out-of-memory exception instance.
27717         * object.c (out_of_memory): Use the new function.
27719         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27720         flag is before the custom modifiers. Fixes #49802.
27722 2003-11-16  Martin Baulig  <martin@ximian.com>
27724         * class.c (mono_class_is_open_constructed_type): Implemented the
27725         MONO_TYPE_GENERICINST case.
27727 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27729         * assembly.c (mono_assembly_fill_assembly_name): New function to
27730         fill out the MonoAssemblyName structure.
27731         (mono_assembly_open): Use the new function.
27733         * icall.c (fill_reflection_assembly_name): New helper function.
27735         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27736         new function.
27738         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27740 2003-11-15  Martin Baulig  <martin@ximian.com>
27742         * class.c (mono_class_is_open_constructed_type): New public
27743         function; checks whether a type is an open constructed type,
27744         ie. whether it still contains type parameters.
27745         (mono_class_inflate_generic_type): If we're a type parameter and
27746         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27747         type.
27749         * class.h (MonoGenericInst): Added `guint32 is_open'.
27751         * loader.c (method_from_methodspec): Check whether we're an open
27752         or closed constructed type and set `ginst->is_open'.
27754         * reflection.c (mono_reflection_bind_generic_parameters): Check
27755         whether we're an open or closed constructed type and set
27756         `ginst->is_open'.
27757         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27758         from open constructed types.
27760 2003-11-15  Martin Baulig  <martin@ximian.com>
27762         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27763         a generic instance (instead of a generic type declaration) with
27764         unbound generic parameters, bind them to our actual types.
27766 2003-11-14  Martin Baulig  <martin@ximian.com>
27768         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27770         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27771         an interface type, populate `res->interfaces' with instantiated
27772         versions of all the interfaces we inherit.
27774 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27776         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27777         when MONO_PATH is set but doesn't contain the install dir.
27779 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27781         * icall.c:
27782         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27783         it's also implemented in base classes. Fixes bug #50927.
27785 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27787         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27788         if this method is called from a finalizer. Fixes #50913.
27790 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27792         * threads.c: Implement VolatileRead/VolatileWrite
27794         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27796 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27798         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27799         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27800         2.95.3.
27802         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27803         from Peter Ross (pro@missioncriticalit.com).
27804         
27805 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27807         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27809 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27811         * assembly.c (mono_assembly_load_references): Disable check because it
27812         triggers on older corlibs which lots of people have.
27814 2003-11-12  Jackson Harper  <jackson@ximian.com>
27816         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27817         load corlib.dll if mscorlib.dll is not found.
27818         * assembly.h: Remove corlib name define.
27819         * class.c:
27820         * domain.c:
27821         * image.c: Change corlib name to mscorlib.
27822         
27823 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27825         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27827 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27829         * appdomain.h: Added loader_optimization here to sync with the C#
27830         code, and add disallow_binding_redirects field.
27832 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27834         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27836         * reflection.c (mono_image_build_metadata): Fix crash on modules
27837         with no types.
27839         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27841         * icall.c (ves_icall_get_method_info): Return callingConvention as
27842         well.
27844         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27845         namespaces from the EXPORTEDTYPE table as well.
27847         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27848         from all modules inside the assembly.
27849         
27850 2003-11-11  Martin Baulig  <martin@ximian.com>
27852         * reflection.c (mono_reflection_bind_generic_parameters): Make
27853         this work for interfaces.
27855 2003-11-11  Martin Baulig  <martin@ximian.com>
27857         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27859 2003-11-11  Martin Baulig  <martin@ximian.com>
27861         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27862         "MonoInflatedMethod" and "MonoInflatedCtor".
27864 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27866         * reflection.c (resolution_scope_from_image): Use the assembly table
27867         from the manifest module, since other modules don't have it.
27869         * debug-helpers.c (mono_type_full_name): New helper function.
27871         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27873         * image.c (mono_image_load_file_for_image): New public function which
27874         is a replacement for the load_file_for_image in class.c.
27876         * assembly.c (mono_assembly_load_module): A wrapper for the function
27877         above which does assembly association and reference loading too.
27879         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27881 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27883         * appdomain.c: not all of the attributes for the full assembly name
27884         are required and the order doesn't matter. Fixes bug #50787.
27886 2003-11-10  Dick Porter  <dick@ximian.com>
27888         * locales.c: Use platform-endian UTF16
27890 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27892         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27893         
27894 2003-11-10  Martin Baulig  <martin@ximian.com>
27896         * metadata.c
27897         (mono_metadata_load_generic_params): Make this actually work.
27899         * reflection.c (mono_reflection_bind_generic_parameters): If our
27900         parent is a generic instance, pass all the `types' to it, no
27901         matter whether it has the same number of type parameters or not.
27903 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27905         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27907         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27908         assignment code to this function so it gets called recursively for all
27909         modules.
27911         * image.c (load_modules): Remove the assembly assignment since it is
27912         now done by mono_assembly_load_references.
27913         
27914         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27915         Add 'module' argument.
27916         (mono_module_get_types): New helper function.
27917         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27919 2003-11-08  Martin Baulig  <martin@ximian.com>
27921         * class.c (mono_class_inflate_generic_method): Interface method
27922         don't have a header.
27924         * reflection.c (mono_image_get_methodspec_token): Take an
27925         additional `MonoGenericInst *' argument instead of reading it from
27926         the header; this is necessary to support interfaces.
27927         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27928         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27929         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27930         argument.
27932         * reflection.h (MonoReflectionInflatedMethod): Added
27933         `MonoGenericInst *ginst'.
27935 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27937         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27939 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27941         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27943 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27945         * reflection.c 
27946         (reflection_methodbuilder_from_method_builder):
27947         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27948         initialize a ReflectionMethodBuilder structure.
27949         (mono_image_get_methodbuilder_token):
27950         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27951         tokens which point to types in another module inside the same assembly.
27953         * reflection.c: Use the new helper functions.
27954         
27955         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27957         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27958         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27960         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27961         neccesary.
27963         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27964         current module. Emit the manifest only for the main module.
27966         * reflection.c (mono_image_create_token): Add assertion when a 
27967         memberref needs to be created.
27969         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27971         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27972         larger buffer for the custom attribute blob. Fixes #50637.
27973         
27974 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27976         * threadpool.c: notify listener on async processing handles after
27977         invoking the async callback. Thanks to Zoltan.
27979 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27981         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27982         avoid code duplication.
27984         * reflection.h (MonoDynamicImage): New type which is currently unused,
27985         but will be used through the ref.emit code in place of 
27986         MonoDynamicAssembly.
27988         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27989         object layout.
27991         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27992         a MonoDynamicImage instead of just a MonoImage.
27993         
27994         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27995         icalls to ModuleBuilder but keep their semantics, so they will work
27996         with moduleb->assemblyb. This will change later.
27997         
27998 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28000         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28001         object layout.
28003         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28004         main module, since it is now done by the managed code.
28006 2003-11-03  Martin Baulig  <martin@ximian.com>
28008         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28009         `ginst->klass' here.
28010         (method_encode_methodspec): Don't use the `ginst->generic_method's
28011         klass if it's a generic instance, use `ginst->klass' in this case.
28013 2003-11-03  Martin Baulig  <martin@ximian.com>
28015         * reflection.c (mono_image_get_generic_method_param_info):
28016         Removed, use mono_image_get_generic_param_info() instead.
28017         (mono_image_get_type_info): Write the GenericParam table before
28018         the Method table.  This is neccessary because in the GenericParam
28019         table, type parameters of the class (ie. '!0' etc.) must come
28020         before the ones from its generic methods (ie. '!!0' etc).
28022 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28024         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28026 2003-11-02  Martin Baulig  <martin@ximian.com>
28028         * reflection.c (create_generic_typespec): Take a
28029         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28030         the generic parameters from it.
28032 2003-11-02  Martin Baulig  <martin@ximian.com>
28034         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28035         instead of a `MonoClassField *' since we just need the type.
28036         (create_generic_typespec): New static function.  Creates a
28037         TypeSpec token for a generic type declaration.
28038         (mono_image_get_generic_field_token): New static function.
28039         (mono_image_create_token): If we're a FieldBuilder in a generic
28040         type declaration, call mono_image_get_generic_field_token() to get
28041         the token.
28043 2003-11-02  Martin Baulig  <martin@ximian.com>
28045         * reflection.h
28046         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28047         `MonoReflectionGenericInst *declaring_type' and
28048         `MonoReflectionGenericInst *reflected_type' fields.
28050         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28051         `MonoReflectionGenericInst *declaring_type' and a
28052         `MonoReflectionGenericInst *reflected_type' argument instead of a
28053         single `MonoReflectionGenericInst *type' one.  Set
28054         `res->declaring_type' and `res->reflected_type' from them.
28055         (mono_reflection_inflate_field): Likewise.      
28057 2003-11-02  Martin Baulig  <martin@ximian.com>
28059         * class.c (mono_class_setup_vtable): Don't store generic methods
28060         in the vtable.  
28062 2003-11-02  Martin Baulig  <martin@ximian.com>
28064         * reflection.h (MonoReflectionGenericInst): Added
28065         `MonoReflectionType *declaring_type'.
28067         * reflection.c (mono_reflection_bind_generic_parameters): Use
28068         `if (tb->parent)' instead of `klass->parent'.
28070 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28072         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28073         with an empty ASSEMBLY table.
28075         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28076         variable in the inner and outer loops.
28078 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28080         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28081         argument.
28083         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28084         
28085         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28086         icalls. Instead, do everything in managed code. This is needed since
28087         it is hard to restore the original domain etc. in unmanaged code in the
28088         presence of undeniable exceptions.
28090         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28091         New icalls to push and pop appdomain refs.
28093 2003-10-31  Martin Baulig  <martin@ximian.com>
28095         * class.c (inflate_generic_type): Renamed to
28096         mono_class_inflate_generic_type() and made it public.
28098         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28099         New interncall.
28101         * loader.c (mono_field_from_memberref): Also set the retklass for
28102         typespecs.
28104         * fielder.c (mono_image_get_inflated_field_token): New static
28105         method; creates a metadata token for an inflated field.
28106         (mono_image_create_token, fixup_method): Added support for
28107         "MonoInflatedField".
28108         (fieldbuilder_to_mono_class_field): New static function.
28109         (mono_reflection_inflate_field): New public function.
28111         * reflection.h
28112         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28113         (MonoReflectionInflatedField): New typedef.     
28115 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28117         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28118         for Solaris and other platforms without s6_addr16
28120 2003-10-30  Martin Baulig  <martin@ximian.com>
28122         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28123         argument instead of two.
28124         (mono_class_inflate_generic_signature): Likewise.
28125         (inflate_generic_header): Likewise.
28126         (mono_class_inflate_generic_method): Likewise.  In addition, if
28127         `ginst->klass' is set, it becomes the new `method->klass'.
28129         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28130         field.
28132         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28133         first byte. [FIXME]
28134         (method_encode_methodspec): If we have generic parameters, create
28135         a MethodSpec instead of a MethodRef.
28136         (fixup_method): Added support for "MonoInflatedMethod" and
28137         "MonoInflatedCtor".
28138         (mono_image_create_token): Added support for "MonoInflatedMethod"
28139         and "MonoInflatedCtor".
28140         (inflated_method_get_object): New static function; returns a
28141         managed "System.Reflection.MonoInflatedMethod" object.
28142         (mono_reflection_bind_generic_method_parameters): Return a
28143         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28144         (mono_reflection_inflate_method_or_ctor): Likewise.
28145         (mono_image_get_generic_method_param_info): Initialize unused
28146         fields to zero.
28147         (mono_image_get_generic_param_info): Likewise.
28149         * reflection.h (MonoReflectionInflatedMethod): New public
28150         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28151         "S.R.MonoInflatedCtor" classes.
28153         * loader.c (method_from_memberref): If we're a TypeSpec and it
28154         resolves to a generic instance, inflate the method.
28156 2003-10-28  Dick Porter  <dick@ximian.com>
28158         * object.c (mono_runtime_run_main): Convert command-line arguments
28159         into utf8, falling back to the user's locale encoding to do so.
28161 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28163         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28164         at this time.
28166         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28168         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28169         up icalls at method definition time. Partially fixes #33569.
28171 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28173         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28174         marshalling of arrays. Fixes #50116.
28176         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28178         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28179         points to a vtable in the dying appdomain.
28181         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28182         listeners into unmanaged code inside the lock.
28184         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28185         domains and add some comments.
28187 2003-10-25  Martin Baulig  <martin@ximian.com>
28189         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28191         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28193         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28194         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28195         currently parsing.  Create the generic class and store it in
28196         `generic_inst->klass' before parsing the type arguments.  This is
28197         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28198         for an example.
28199         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28200         to support recursive typespec entries.
28202         * class.c (mono_class_setup_parent): If our parent is a generic
28203         instance, we may get called before it has its name set.
28204         (mono_class_from_generic): Splitted into
28205         mono_class_create_from_generic() and mono_class_initialize_generic().
28207 2003-10-25  Martin Baulig  <martin@ximian.com>
28209         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28210         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28211         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28212         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28214         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28215         (create_typespec): Likewise.
28216         (mono_reflection_bind_generic_parameters): Return a
28217         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28218         (mono_reflection_inflate_method_or_ctor): New public function.
28220         * reflection.h (MonoReflectionGenericInst): New typedef.        
28222 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28224         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28225         inside the domain lock. Fixes #49993.
28226         
28227         * object.c (mono_class_vtable): When typed allocation is used, 
28228         allocate vtables in the GC heap instead of in the mempool, since the
28229         vtables contain GC descriptors which are used by the collector even
28230         after the domain owning the mempool is unloaded.
28232         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28234         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28235         reflect what it does. Also invalidate mempools instead of freeing
28236         them if a define is set.
28238         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28239         of the appdomain.
28240         
28241         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28242         hold the finalizable objects in this domain.
28244         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28245         appdomain.
28247         * appdomain.c (mono_domain_set): New function to set the current
28248         appdomain, but only if it is not being unloaded.
28250         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28251         appdomain which is being unloaded.
28252         
28253         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28254         unloading of the root appdomain.
28256         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28257         icall to execute a method in another appdomain. Intended as a 
28258         replacement for InternalSetDomain, which can confuse the code 
28259         generation in the JIT.
28261         * appdomain.c (mono_domain_is_unloading): New function to determine
28262         whenever an appdomain is unloading.
28264         * appdomain.c (mono_domain_unload): New function to correctly unload
28265         an appdomain.
28267         * assembly.c (mono_assembly_load_references): Check that an assembly
28268         does not references itself.
28270         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28271         domain manually, it asks the finalizer thread to do it, then waits for
28272         the result. Also added a timeout.
28274         * icall.c: Register the new icalls.
28276         * threads.h threads.c: Export the mono_gc_stop_world and 
28277         mono_gc_start_world functions.
28278         
28279         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28280         function to fill out the mempool with 0x2a.
28282 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28284         * reflection.h (MonoReflectionMethodAux): New structure to store
28285         information which is rarely used, thus is not in the MonoMethod
28286         structure.
28288         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28289         store the aux info.
28291         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28292         and marshalling info into the aux structure.
28294         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28295         from the aux structure.
28297         * loader.c (mono_method_get_param_names): Retrieve the param names from
28298         the aux structure.
28299         
28300 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28302         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28303         warning.
28305 2003-10-21  Dick Porter  <dick@ximian.com>
28307         * socket-io.c
28308         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28309         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28311 2003-10-21  Martin Baulig  <martin@ximian.com>
28313         * reflection.c (mono_reflection_bind_generic_parameters):
28314         `klass->parent' is NULL for interfaces.
28316 2003-10-21  Martin Baulig  <martin@ximian.com>
28318         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28320 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28322         * exception.c (mono_exception_from_name_msg): New helper function for
28323         creating exceptions and initializing their message field.
28325         * exception.c: Simplify functions using the new helper.
28327         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28328         New function.
28330         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28331         mono_raise_exception, since otherwise gcc doesn't generate the function
28332         epilog for raise_exception, confusing the stack unwinding in the JIT.
28333         Fixes #45043.
28335         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28336         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28337         Fixes #49499.
28339 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28341         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28342         utf8.
28344 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28346         * icall.c: Removed GetUninitializedObject method because
28347           AllocateUninitializedClassInstance does the same.
28349 2003-10-18  Martin Baulig  <martin@ximian.com>
28351         * class.c (inflate_generic_signature): Renamed to
28352         mono_class_inflate_generic_signature() and made it public.
28353         (my_mono_class_from_generic_parameter): New static function; if we
28354         don't already have the generic parameter's MonoClass, create a
28355         very simple one which is just used internally in the runtime and
28356         not passed back to managed code.
28358         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28360         * metadata.h (MonoMethodSignature): Moved the
28361         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28362         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28364         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28365         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28366         interncall on the MonoMethod class, not on MethodInfo.
28367         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28368         calling mono_reflection_bind_generic_method_parameters() directly.
28370         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28371         return the already computed `method->signature'.
28372         (method_from_methodspec): New static function to load a method
28373         from a MethodSpec entry.
28374         (mono_get_method_from_token): Call the new method_from_methodspec()
28375         for MethodSpec tokens.  
28376         (mono_get_method_from_token): If we're a generic method, load the
28377         type parameters.
28379         * reflection.c (mono_image_get_memberref_token): Allow
28380         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28381         table.
28382         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28383         (mono_image_create_token): First check whether it's a generic
28384         method (so we'd need to create a MethodSpec), then do the other
28385         two alternatives.
28386         (mono_reflection_bind_generic_method_parameters): Return a
28387         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28388         called directly from the interncall.
28390 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28392         * reflection.c (load_public_key): Move loading of the public key
28393         into managed code.
28395         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28397         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28398         fields.
28400         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28401         culture, hash_alg and public_key. Fixes #49555.
28403 2003-10-17  Martin Baulig  <martin@ximian.com>
28405         * class.h (MonoGenericInst): Moved this declaration here and added
28406         `MonoMethod *generic_method'.
28408         * icall.c
28409         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28410         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28412         * metadata.c (mono_metadata_type_equal): Two types of
28413         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28414         index; ie. don't compare the address of the `MonoGenericParam'
28415         structure.
28416         (mono_metadata_load_generic_params): Removed the `MonoMethod
28417         *method' argument.
28419         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28420         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28422         * reflection.c (method_encode_signature): Encode the number of
28423         generic parameters.
28424         (encode_generic_method_sig): New static function.
28425         (method_encode_methodspec): New static function; creates an entry
28426         in the MethodSpec table for a generic method.
28427         (mono_image_get_methodspec_token): New static function.
28428         (mono_image_create_token): Call mono_image_get_methodspec_token()
28429         for generic methods.
28430         (mono_reflection_bind_generic_method_parameters): New public
28431         function.  Instantiates a generic method.
28433 2003-10-16  Martin Baulig  <martin@ximian.com>
28435         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28436         *gen_params' here from MonoMethodHeader.
28438         * metadata.c (mono_metadata_parse_method_signature): If we have
28439         generic parameters, initialize `method->gen_params' and then set
28440         the correct `type->data.generic_param' in all the parameters.
28442 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28444         * threads.c (mono_threads_get_default_stacksize): New function to 
28445         return the default stacksize.
28447         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28448         termination of the finalizer thread, since the previous method had
28449         race conditions. Fixes #49628.
28451         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28452         as for the other managed threads.
28454 2003-10-16  Martin Baulig  <martin@ximian.com>
28456         * class.c (inflate_generic_signature): Copy `generic_param_count'
28457         and `gen_params'.
28459         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28460         New interncall.
28462         * metadata.c (mono_metadata_parse_method_signature): Actually set
28463         the `method->generic_param_count' here.
28464         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28466 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28468         * object.h: Add a new field to TypedRef to simplify the implementation
28469         of the REFANY opcodes in the JIT.
28471         * icall.c: Make use of the new field.
28473         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28474         dynamically.
28476 2003-10-15  Martin Baulig  <martin@ximian.com>
28478         * class.c (mono_class_from_gen_param): Renamed to
28479         mono_class_from_generic_parameter() and moved most of the
28480         functionality from mono_reflection_define_generic_parameter()
28481         here; ie. we create a "real" class here.
28482         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28483         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28484         previously been called.
28486         * class.h (MonoGenericParam): Moved the declaration of this struct
28487         here from metadata.h and added `MonoMethod *method'.
28489         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28490         interncall.
28492         * loader.c (mono_get_method_from_token): If we have any generic
28493         parameters, call mono_metadata_load_generic_params() to read them
28494         from the MONO_TABLE_GENERICPAR.
28496         * metadata.c (mono_metadata_load_generic_params): Added
28497         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28499         * metadata.h (MonoMethodSignature): Replaced
28500         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28501         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28503         * reflection.c (mono_reflection_define_generic_parameter): Moved
28504         most of the functionality into the new
28505         mono_class_from_generic_parameter(); set the `method' field if
28506         we're a method parameter.       
28508 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28510         * marshal.c (emit_struct_conv): if native size is 0
28511         emit no code.
28513 2003-10-14  Martin Baulig  <martin@ximian.com>
28515         * icall.c: The generics API has changed in the spec since it was
28516         added to System.Type; these modifications make it match the spec
28517         again.
28518         (ves_icall_Type_GetGenericParameters): Renamed to
28519         `ves_icall_Type_GetGenericArguments'.
28520         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28521         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28522         `ves_icall_MonoType_get_HasGenericArguments'.
28523         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28524         `ves_icall_MonoType_get_IsGenericParameter'.
28525         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28526         this is no interncall anymore.
28527         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28528         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28530 2003-10-14  Martin Baulig  <martin@ximian.com>
28532         * reflection.c (mono_reflection_bind_generic_parameters): Also
28533         inflate generic methods if we're reading the class from IL.
28535 2003-10-13  Martin Baulig  <martin@ximian.com>
28537         * reflection.c (mono_reflection_define_generic_parameter): This
28538         method isn't called directly from the icall anymore; take a
28539         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28540         method generic parameters.
28541         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28542         (method_builder_encode_signature): Encode generic parameters.
28543         (mono_image_get_method_info): Write generic params to the
28544         MONO_TABLE_GENERICPARAM table.
28546         * reflection.h (MonoReflectionMethodBuilder): Added
28547         `MonoArray *generic_params'.
28549         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28551         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28552         wrapper for mono_reflection_define_generic_parameter().
28553         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28555 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28557         * marshal.h: Add missing function to fix build.
28559         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28560         the SetLastError pinvoke attribute.
28562         * marshal.c (mono_marshal_set_last_error): New helper function called
28563         by the generated code.
28564         
28565         * marshal.c (mono_mb_emit_branch): New helper function.
28567         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28569         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28570         classes as parameters and return values of delegates. Fixes #29256. 
28572 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28574         * locales.c: use gint32 in non HAVE_ICU case
28576 2003-10-11  Martin Baulig  <martin@ximian.com>
28578         * mono-debug.c (mono_debug_add_method): Added a workaround for
28579         bug #48591.
28581 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28583         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28584         delegates passed to native code must use the STDCALL calling 
28585         convention. Fixes #35987.
28587 2003-10-10  Martin Baulig  <martin@ximian.com>
28589         * class.c (inflate_generic_type): If we're inflating for a generic
28590         type instance (and not for a generic method), return
28591         MONO_TYPE_MVAR unchanged.
28593 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28595         * string-icalls.c: Join ignores null strings in the source array.
28596         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28597         * threads.c: GetAvailableTheads is slightly more accurate.
28599 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28601         * threads.h threads.c : add mono_threads_set_default_stacksize
28602         and pass default to CreateThread calls.
28604 2003-10-09  Dick Porter  <dick@ximian.com>
28606         * icall.c:
28607         * locales.h:
28608         * locales.c: Internal calls for constructing CultureInfo and
28609         related objects from libicu (if its available.)
28611 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28613         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28615 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28617         * threadpool.c: added an argument to async_invoke_thread that is the
28618         item to process, pass the MonoAsyncResult to the thread start function
28619         when creating a new thread. This way we don't need to acquire any lock
28620         when we're creating a new thread. Readded a semaphore for faster
28621         response times (instead of that Sleep i added).
28623 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28625         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28626         get daylight change dates better on Windows, fix handling
28627         of platforms without tm_gmtoff.
28629 2003-10-06  Martin Baulig  <martin@ximian.com>
28631         * class.c (inflate_generic_method): Renamed to
28632         mono_class_inflate_generic_method() and made public.
28633         (mono_class_init): Don't inflate the generic methods here.
28634         (mono_class_from_generic): Added `gboolean inflate_methods'
28635         argument.  Inflate the methods here.
28637         * loader.c (mono_method_get_param_names): Ignore instances of
28638         generic types for the moment.
28640         * reflection.c (fixup_method): Added support for inflated methods.
28641         (mono_image_create_token): Use mono_image_get_methodref_token()
28642         for inflated methods.
28643         (mono_custom_attrs_from_param): Ignore instances of generic types
28644         for the moment.
28645         (mono_reflection_bind_generic_parameters): New public function.
28646         Moved all the functionality from
28647         ves_icall_Type_BindGenericParameters() here and added support for
28648         dynamic types.
28649         (mono_reflection_define_generic_parameter): Initialize
28650         `klass->methods' here.
28652         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28653         functionality into mono_reflection_define_generic_parameter().
28654         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28655         TypeBuilder, return that TypeBuilder.
28657 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28659         * appdomain.c: removed mono_delegate_semaphore.
28661         * threadpool.c:
28662         (mono_thread_pool_add): moved hash table creation inside and the thread 
28663         creation outside of the critical region.
28664         (mono_thread_pool_finish): removed obsolete code.
28665         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28666         continue or exit the thread depending on the queue.
28668 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28670         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28671         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28672         handle more bool marshalling options
28674 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28676         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28677         arrays of structs. Also add a more descriptive error message when
28678         a structure member is marshalled as LPArray.
28680 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28682         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28683         marshalling arrays of complex types. Fixes #29098. Also remove an
28684         usused and incomplete function.
28686 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28688         * gc.c: report heap_size - free_bytes as total memory allocated
28689         (bug#49362).
28691 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28693         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28694         fix timezone handling problems on Windows.
28695         
28696         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28697         asserts when the year is outside the range handled by ms the functions.
28699         * class.c (setup_interface_offsets): If the class is an interface,
28700         fill out its interface_offsets slot.
28702 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28704         * threadpool.c: mark threadpool threads as background.
28706 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28708         * decimal.c - define DECINLINE to nothing if not using GCC
28710 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28712         * assembly.c: More refcount fixes.
28714 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28716         * string-icalls.c: if we're not trimming, return the same string.
28717         When not splitting, don't create a new string.
28719 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28721         * image.c:
28722         (mono_image_open): increment the ref_count inside the critical section.
28724 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28726         * image.c (mono_image_open): Fix reference counting bug.
28728 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28730         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28731         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28732         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28733         mono_lookup_pinvoke_call throws.        
28735 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28737         * reflection.c (mono_reflection_parse_type): Fix #49114.
28739         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28740         temporary workaround for cygwin header problem.
28742         * object.c (mono_object_isinst): Synchronize this with the code
28743         generated by the JIT for casts.
28745 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28747         * reflection.c (encode_type): Fix #38332.
28749 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28751         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28752         the original method from the wrapper method.
28754 2003-09-25  Martin Baulig  <martin@ximian.com>
28756         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28757         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28758         (ves_icall_Type_get_IsGenericInstance): New interncall.
28760 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28762         * object.c: fix cast warning in big endian code.
28764 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28766         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28767         
28768 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28770         * assembly.c: don't call check_env from mono_assembly_load. It's
28771         already done once in mono_assemblies_init and may cause headaches when
28772         multiple threads are loading assemblies.
28774 2003-09-19  Martin Baulig  <martin@ximian.com>
28776         * reflection.c (mono_reflection_define_generic_parameter): Don't
28777         allocate `klass->methods', set `klass->flags' to
28778         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28780 2003-09-18  Martin Baulig  <martin@ximian.com>
28782         * class.c (mono_class_init): Don't create `class->methods' if it's
28783         already initialized.
28785         * metadata.c (mono_metadata_load_generic_params): Make this
28786         actually work.
28788         * reflection.c (mono_reflection_define_generic_parameter): Set
28789         parent class and interfaces from the constraints.
28791         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28792         to keep this struct in sync with the declaration in TypeBuilder.cs.
28794 2003-09-17  Martin Baulig  <martin@ximian.com>
28796         * metadata.h (MonoType): Replaced the data's `int type_param'
28797         field with `MonoGenericParam *generic_param'.
28798         (MonoGenericParam): Added `MonoClass *klass'.
28800         * class.c (mono_class_from_gen_param): Removed the
28801         `MonoImage *image' and `int type_num' arguments.
28803         * metadata.c (mono_metadata_parse_generic_param): New static
28804         method; creates a MonoGenericParam which just contains the index.
28805         (do_mono_metadata_parse_type): Call
28806         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28807         MONO_TYPE_MVAR.
28809         * reflection.c (mono_image_typedef_or_ref): Generic type
28810         parameters may be in the same assembly, but never use a typedef
28811         for them.
28812         (mono_reflection_define_generic_parameter): We're now creating a
28813         "real" class for the type parameter; it's now safe to call
28814         mono_class_from_mono_type() on the class'es type, it'll do the
28815         right thing.
28817 2003-09-16  Martin Baulig  <martin@ximian.com>
28819         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28820         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28821         the `symfile' data structure must be fully initialized before it
28822         gets added to the table.
28824 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28826         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28828         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28829         class init trampolines.
28831 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28833         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28834         to the built-in profiler to turn off time and allocation profiling
28835         respectively.
28837 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28839         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28840         g_direct_equal.
28842         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28843         in human readable form.
28845 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28847         * reflection.c icall.c: Fixed warnings.
28849         * image.c (load_class_names): Use a temporary hash table to hold the
28850         namespaces in order to avoid doing many string comparisons.
28852         * image.h: Fix typo.
28854         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28855         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28856         since the NULL case is short-circuited inside g_hash_table_lookup, 
28857         leading to better performance.  
28859         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28860         obtain the first custom attribute for a given index. Depends on the
28861         CustomAttribute table being sorted by the parent field.
28863         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28864         for better performance.
28866 2003-09-07  Martin Baulig  <martin@ximian.com>
28868         * class.c (mono_class_init): If we're a generic instance, inflate
28869         all our methods instead of loading them from the image.
28870         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28872 2003-09-07  Martin Baulig  <martin@ximian.com>
28874         * mono-debug-debugger.c: Added support for constructors.
28876 2003-09-06  Martin Baulig  <martin@ximian.com>
28878         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28879         New interncall.
28881         * reflection.c (mono_reflection_setup_generic_class): Call
28882         ensure_runtime_vtable() to create the vtable.
28884 2003-09-05  Martin Baulig  <martin@ximian.com>
28886         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28887         MONO_TYPE_MVAR.
28889 2003-09-04  Martin Baulig  <martin@ximian.com>
28891         * reflection.c (mono_reflection_define_generic_parameter): Generic
28892         parameters start with zero.
28894 2003-09-04  Martin Baulig  <martin@ximian.com>
28896         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28898         * reflection.h (MonoReflectionGenericParam): New typedef.
28899         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28900         the generic parameters from the managed TypeBuilder.
28902         * reflection.c (mono_reflection_define_generic_parameter): New function.
28903         (mono_reflection_create_runtime_class): Encode generic parameters.
28904         (mono_reflection_setup_generic_class): New function; this is
28905         called after adding adding all generic params to the TypeBuilder.
28906         (encode_type): Added MONO_TYPE_VAR.
28908 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28910         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28911         here from the JIT.
28913         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28914         load hook.
28916 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28918         * reflection.h reflection.c class.h class.c: Delete duplicate 
28919         definition of mono_type_get_name () from reflection.c and export the
28920         one in class.c.
28922         * class.c: Class loading fixes from Bernie Solomon 
28923         (bernard@ugsolutions.com).
28925         * reflection.c: Endianness fixes from Bernie Solomon 
28926         (bernard@ugsolutions.com).
28927         
28928 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28930         * assembly.h assembly.c: Define a file format version for AOT
28931         libraries.
28932         
28933         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28935         * appdomain.h (MonoJitInfo): New field to determine whenever the
28936         code is domain neutral.
28937         
28938 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28940         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28942 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28944         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28945         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28946         Avoid caching the result since strings must be domain specific. Fixes
28947         #48050.
28949 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28951         * marshal.c (mono_marshal_init): Make this callable multiple times
28952         since it is hard to find a correct place to call it.
28954         * object.c (mono_runtime_class_init): Execute static constructors in
28955         the correct appdomain.
28957         * image.c (build_guid_table): Handle the case when multiple images have
28958         the same GUID.
28960 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28962         * icall.c: added a couple of icalls for System.Web.
28964 2003-08-28  Martin Baulig  <martin@ximian.com>
28966         * icall.c (ves_icall_Type_BindGenericParameters): Use
28967         `klass->generic_inst' instead of `&klass->byval_arg' in the
28968         mono_type_get_object() call.  The returned type must be
28969         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28971 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28973         * NOTES: New file.
28975         * object.c (mono_class_proxy_vtable): Make it thread safe.
28977         * pedump.c: Fix warning.
28979         * object.c appdomain.h: Get rid of metadata_section. 
28980         It is no longer needed and it was causing deadlocks with domain->lock.
28982         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28984 2003-08-26  Martin Baulig  <martin@ximian.com>
28986         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28988 2003-08-26  Martin Baulig  <martin@ximian.com>
28990         * pedump.c (main): Call mono_metadata_init(),
28991         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28992         and mono_loader_init().
28994 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28996         * loader.h: Add missing include to fix build.
28998         * image.h: mono_image_load_references is no more.
29000         * assembly.c: Reworked assembly loading to make it really thread safe.
29001         After these changes, the assembly returned by mono_assembly_open is
29002         fully initialized, i.e. all its references assemblies are loaded.
29004         * assembly.c (mono_image_load_references): Renamed to 
29005         mono_assembly_load_references, and made private, since clients no
29006         longer need to call it.
29008         * class.c: Removed calls to mono_assembly_load_references, since it was
29009         a source of deadlocks.
29011         * loader.h loader.c class.h class.c: Protect data structures using a 
29012         new lock, the loader lock.
29014         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29015         GPtrArrays only when needed.
29017         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29018         into empty structures by mcs. Fixes pinvoke7.cs.
29019         
29020         * domain.c (mono_init): Call a new initialization function.
29022         * appdomain.c (mono_runtime_init): Call the new initializer function
29023         of the marshal module.
29025         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29026         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29028         * marshal.h marshal.c: Added locks around the wrapper caches to make
29029         this module thread safe.
29031         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29032         this argument. Fixes pinvoke1.exe.
29034 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29036         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29037         enumeration of values. Removed fields to store remote call output values in
29038         MonoAsyncResult. Not needed any more.
29039         * object.c: Initialize call_type and async_result fields in mono_message_init.
29040         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29041         dispatching the message.
29042         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29043         async call to finish. To do it use a message with EndInvoke call type.
29045 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29047         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29048         determines whenever a method has marshalling info.
29050 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29052         * assembly.c: fix the build on windows.
29054 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29056         * object.cs: Fixed bug #47785.
29058 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29060         * string-icalls.c (StringReplace): If their are no occurances of
29061         the old string found return a reference to the supplied
29062         string. This saves some memory and matches MS behavoir.
29063         
29064 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29066         * socket-io.c: fixed compilation for systems that define AF_INET6
29067         and don't define SOL_IP/SOL_IPV6.
29069 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29071         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29072         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29074         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29076         * domain.c: Make this module thread safe.
29078         * domain.c (mono_init): Call new initialization function.
29080         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29081         reference types too. Fixes #38812.
29083         * image.c (mono_image_init): Fixed warnings.
29085         * class.c (mono_class_from_typeref): Handle assembly load failure
29086         correctly.
29088         * appdomain.c (add_assemblies_to_domain): Handle the case when
29089         the references of an assembly are not yet loaded.
29091         * metadata.c image.c assembly.c: Moved initialization of global
29092         variables to a separate function called at startup since lazy 
29093         initialization of these variables is not thread safe.
29094         
29095         * image.c assembly.c: Made this module thread safe by adding locks in 
29096         the appropriate places.
29098         * domain.c (mono_init): Call the new initialization functions of the
29099         three modules.
29101 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29103         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29104           make a direct call. It is proxy's work to make the call asynchronous.
29105           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29106           the return values.
29107         * object.cs: mono_method_call_message_new(): read AsyncResult and
29108           state object from parameters list, if this info is requested.
29109         * object.h: Added fields to store remote call output values in
29110           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29112 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29114         * object.h: add needed fields to MonoThread.
29115         * threads.c, threads.h: allow registering a function to cleanup data
29116         allocated per thread by the JIT.
29118 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29120         * loader.h: portability fix by Bernie Solomon
29121         * <bernard@ugsolutions.com>.
29123 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29125         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29126         return a MonoArray. This simplifies the code and also ensures that
29127         the cache allways contains an object reference as a value.
29129         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29130         function.
29132 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29134         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29135         fixes a problem with byte ordering when getting the address family for
29136         a socket.
29138 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29140         * .cvsignore: Added monosn.
29142         * reflection.h reflection.c loader.c: Added support for parameter
29143         marshalling to dynamically created types. Fixes #47295.
29145 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29147         * rand.c: remove useless warnings.
29149 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29151         * class.c: implemented ldtoken for methods and fieldrefs.
29153 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29155         * threadpool.c: when mono_async_invoke was called, no one took care of
29156         monitoring the queue. So if the method invoked took some time and we
29157         got new async invoke requests after 500 ms (the thread created waited
29158         that long in WaitForSingleObject), the new async invoke was not called
29159         until the previous one finished.
29161         This is fixed now. Thanks to Totte for helping with it.
29163 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29165         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29167 2003-08-11  Martin Baulig  <martin@ximian.com>
29169         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29171 2003-08-06  Martin Baulig  <martin@ximian.com>
29173         * mono-debug-debugger.c: Added support for static fields,
29174         properties and methods.
29176 2003-08-06  Martin Baulig  <martin@ximian.com>
29178         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29179         make this work for applications with multiple application domains.
29181 2003-08-04  Martin Baulig  <martin@ximian.com>
29183         * mono-debug-debugger.c: Completely reworked the type support; the
29184         most important thing is that we're now just using one single
29185         `MonoType' instance per type.
29187 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29189         * mono-endian.h, mono-endian.c, icall.c: Added icall
29190         ves_icall_System_Double_AssertEndianity to assert double word endianity
29191         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29193 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29195         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29196         support, icalls and fixes.
29198 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29200         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29201         classes that are a punctuation character in .NET is not the same a
29202         g_unichar_ispunct.
29204 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29206         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29208 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29210         * icall.c: Add new MemCopy internalcall.
29211         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29212         Simplified code; It is not necessary to handle all the cases here,
29213         as the C# code takes care of it.  Only handle the case of the name
29214         resource embedded into the assembly.
29216         Changed signature to return the data pointer and the size of the
29217         data. 
29219 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29221         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29222         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29224 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29226         * socket-io.c: ignore EINTR error in select.
29228 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29230         * class.h, class.c: removed unused subclasses field in MonoClass.
29232 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29234         * icall.c: improve fix of get_base_definition(). If the parent class
29235           doesn't have the mehod, look at the parent of the parent.
29236         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29237           to check if a parameter is an in or out parameter
29238           (PARAM_ATTRIBUTE_IN is not set by default).
29239           mono_method_return_message_restore(): Use mono_class_value_size to
29240           get the size of a value type. mono_type_stack_size (parameterType)
29241           does not return the correct value if parameterType is byRef.
29242           mono_load_remote_field(), mono_load_remote_field_new(),
29243           mono_store_remote_field(), mono_store_remote_field_new():
29244           raise exception if the remote call returns an exception.
29246 2003-07-28  Martin Baulig  <martin@ximian.com>
29248         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29249         method.  This is a wrapper around mono_runtime_invoke() which
29250         boxes the instance object if neccessary.
29252 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29254         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29255         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29257 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29259         * icall.c: disable mcs bug workaround.
29261 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29263         * object.c (mono_runtime_class_init): Take the metadata_section
29264         mutex before obtaining the domain mutex.
29266         * appdomain.h: Added definition of metadata_section mutex here. 
29268         * object.c: define metadata_mutex here.
29270 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29272         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29273         fixed.
29275 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29277         * reflection.c: Fix bug #46669
29279 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29281         * exception.c:
29282         * exception.h:
29283         * icall.c:
29284         * object.h: fill in the type name for TypeLoadException.
29286 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29288         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29289         relationship between TypeBuilders while compiling corlib) and bug
29290         45993 (Array types returned from the runtime while compiling
29291         corlib were from the loaded corlib).
29293 2003-07-22  Martin Baulig  <martin@ximian.com>
29295         * mono-debug-debugger.c: Reworked the type support a bit more;
29296         distinguish between types and classes.
29298 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29300         * icall.c: add IsArrayImpl icall.
29302 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29304         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29305         initializing real_size only once. Also fix bug #46602.
29307 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29309         * object.c: Renamed mono_metadata_section to metadata_section.
29311 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29313         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29314           empty array if the type is an array. Fixed.
29315           ves_icall_MonoMethod_get_base_definition: if the base method
29316           is abstract, get the MethodInfo from the list of methods of
29317           the class.
29318         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29319           and it was 1-based. Fixed in mono_param_get_objects.
29321 2003-07-20  Martin Baulig  <martin@ximian.com>
29323         * mono-debug.h: Set version number to 31.
29324         (mono_debug_init): Added `MonoDomain *' argument.
29326         * mono-debug-debugger.c: Reworked the type support; explicitly
29327         tell the debugger about builtin types; pass the `klass' address to
29328         the debugger.
29330 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29332         * image.c: Allow new metadata tables to be loaded without a
29333         warning. Also update the warning message to give the new constant value.
29334                 
29335 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29337         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29338         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29339         array type representation changes.
29341 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29343         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29344         on Environment.Exit () call.
29346 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29348         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29349         requires a matching corlib.
29351 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29353         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29354           Committed again without the CRs.
29355         
29356 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29358         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29359           getting it from the "this" socket instance. Did not work
29360           if the socket is a subclass of Socket.
29361           Also fixed bug #35371.
29363 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29365         * metadata.c: fixed size for TypedByRef.
29366         * loader.c: when searching for a method, consider the vararg amrker.
29367         * unicode.c, decimal.c: constify some arrays.
29369 2003-07-15  Dick Porter  <dick@ximian.com>
29371         * socket-io.c: Fixed compilation for gcc < 3.2.
29373         Fixed compilation for machines that don't have AF_INET6 (thanks to
29374         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29376         Fixed compile warnings.
29377         
29378         Fixed formatting and line endings.
29380 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29382         * socket-io.h:
29383         * socket-io.c: Added IPv6 support.
29385 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29387         * class.c (mono_class_is_assignable_from): New function to implement
29388         the is_assignable_from logic. Used by mono_object_isinst, 
29389         Type::IsAssignableFrom () and the interpreter.
29391         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29392         Object, even interfaces.
29393         
29394         * object.c (mono_object_isinst): Implement in terms of 
29395         is_assignable_from.
29397         * icall.c (ves_icall_type_is_assignable_from): New icall.
29399 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29401         * domain.c (foreach_domain): fix compiler warning.
29403 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29405         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29406         not available on all plattforms
29408 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29410         * image.h image.c: Store the metadata version string in MonoImage.
29411         * icall.c: New icall to retrieve the image version.
29412         * reflection.c (create_dynamic_image): Fill in the image version field
29413         * reflection.c (build_compressed_metadata): Use the image version
29414         from the image structure.
29416 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29418         * appdomain.c: modified comment.
29419         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29420         That will be its last iteration when mono_gc_cleanup is called from
29421         mono_runtime_cleanup and before the domain is unloaded.
29423         Fixes bug #45962.
29425 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29427         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29428         attributes.
29430 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29432         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29433         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29434         Bernie Solomon <bernard@ugsolutions.com>.
29436 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29438         * object.c, object.h: provide mono_object_new_fast() for faster
29439         allocation in some special cases.
29441 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29443         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29444         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29446 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29448         * threadpool.c: fix leaks.
29450 2003-07-01  Dick Porter  <dick@ximian.com>
29452         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29453         using MonoGHashTables.  Fixes threadpool bug posted to list.
29455 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29457         * image.h, image.c: added support to load an assembly from a byte array.
29458         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29459         assembly bundle support.
29461 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29463         * threadpool.c (mono_thread_pool_add): keep a reference to the
29464         AsyncResult to prevent GC
29466 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29468         * class.c: leak fix.
29470 2003-06-25  Dick Porter  <dick@ximian.com>
29472         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29473         for the async object, the WaitHandle object will close the handle.
29474         Fixes bug 45321.
29476 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29478         * class.c: in mono_array_class_get (), lookup from the hash with the
29479         same type we insert: this works around a bug in
29480         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29481         lluis. The real fix will have to wait for after the release.
29483 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29485         * icall.c: fix memory leak when getting type members.
29487 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29489         * reflection.c: added more pubtoken special cases.
29491 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29493         * class.c: handle field offset correctly when class size
29494         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29496 2003-06-20  Martin Baulig  <martin@ximian.com>
29498         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29499         *image' field.
29501 2003-06-20  Martin Baulig  <martin@ximian.com>
29503         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29505 2003-06-20  Martin Baulig  <martin@ximian.com>
29507         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29508         just distinguish between variables in registers and variables at
29509         an offset relative to a register.
29511 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29513         * icall.c: #ifdef out latest changes until mcs is fixed.
29515 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29517         * icall.c: return members in metadata order.
29519 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29521         * icall.c: avoid infinite loop in GetTimeZoneData.
29523 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29525         * icall.c: added Marshal.Prelink/All icalls.
29527 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29529         * object.c, object.h: fix warnings and do some overflow checking
29530         when creating arrays.
29532 2003-06-17  Dick Porter  <dick@ximian.com>
29534         * file-io.h:
29535         * file-io.c: File attributes need to be tweaked slightly when
29536         passed from the managed to the w32 world.
29538 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29539         * profiler.h profiler-private.h profiler.c: Rework last patch
29540         based on suggestion by Paolo.
29541         
29542 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29544         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29545         instruction level coverage data collection.
29546         * profiler.h profiler.c (: Added new callback function which can be
29547         used by the profiler to limit which functions should have coverage
29548         instrumentation.
29549         * profiler.c (mono_profiler_load): Call g_module_build_path to
29550         generate the file name of the profiler library.
29552 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29554         * profiler.c, profiler.h, profiler-private.h: added basic block 
29555         coverage profiling API.
29557 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29559         * reflection.c (mono_reflection_create_runtime_class): Add support
29560         for events in dynamically generated code.
29562         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29563         not allocated.
29565 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29567         * icall.c: when getting timezone info, return reasonable values if we
29568         can't get the actual data.
29570 2003-06-14  Dick Porter  <dick@ximian.com>
29572         * threads.c (start_wrapper): Remove the reference to the thread
29573         object in the TLS data, so the thread object can be finalized.
29574         This won't be reached if the thread threw an uncaught exception,
29575         so those thread handles will stay referenced :-( (This is due to
29576         missing support for scanning thread-specific data in the Boehm GC
29577         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29579 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29581         * reflection.c: ensure streams and tables are first allocated with
29582         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29584 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29586         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29588 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29590         * reflection.c (mono_reflection_create_runtime_class): Add support for
29591         properties to dynamically created classes.
29592         * reflection.c: Fix a few places where non-MonoObjects were inserted
29593         into the tokens hashtable.
29595 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29597         * object.c: some support to handle out of memory exceptions.
29599 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29601         * marshal.c (mono_marshal_get_native_wrapper): support reference
29602         return types
29604 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29606         * object.h, object.c: more portability stuff from Bernie Solomon.
29607         Unexport mono_object_allocate(). Added mono_object_unbox ().
29608         Set exitcode when an unhandled exception is thrown.
29610 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29612         * marshal.c (mono_marshal_get_native_wrapper): use custom
29613         marshaler for return types.
29615 2003-06-10  Dick Porter  <dick@ximian.com>
29617         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29618         ip_mreq is available
29620 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29622         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29623         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29624         by Bernie Solomon <bernard@ugsolutions.com>.
29626 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29628         * gc.c (mono_gc_init): Avoid error message on shutdown when
29629         GC_DONT_GC=1 is used.
29631         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29632         New icall to return the GUID of a module.
29634 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29636         * class.c: ensure instance size always includes the parent's size
29637         even whem class size is set explicitly (fixes bug#44294).
29639 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29641         * profiler.h, profiler.c: made the simple profiler thread-safe,
29642         get more accurate timing info. Allow the loading of an
29643         externally-developed profiler module.
29645 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29647         * marshal.c (mono_marshal_get_native_wrapper): improved
29648         class/byref arguments.
29649         (mono_marshal_get_native_wrapper): better string marshaling support.
29651 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29653         * class.c: ensure .pack and .size are handled correctly and
29654         simplified layout of static fields.
29656 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29658         * appdomain.c
29659         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29661         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29662         current directory (fix bug 44008)
29664 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29666         * marshal.c (mono_marshal_get_native_wrapper): started support for
29667         custom marshalers.
29668         (mono_delegate_to_ftnptr): consider marshalling specifications
29670 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29672         * reflection.c, reflection.h: emit custom marshal info.
29674 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29676         * object.c: free the GError.
29677         * icall.c: added CloseEvent_internal.
29678         * threads.[ch]:
29679         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29680         call.
29682 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29684         * loader.c (mono_method_get_signature): Add support for dynamic
29685         assemblies.
29687 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29689         * reflection.c: fixed bug #43905.
29691 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29693         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29694         handling TypedReference and ArgIterator.
29695         * loader.c, loader.h: added function to get signature at call site.
29697 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29699         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29700         data readonly. Buglets and warning fixes. Some MethodSpec support.
29702 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29704         * class.h, class.c, object.c: remove relative numbering support.
29706 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29708         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29709         free the string, until we get a chance to fix Gtk#
29711 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29713         * marshal.c: revert last patch.
29715 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29717         * icall.c: updates for new mono_class_vtable() not calling
29718         the type constructor anymore.
29720 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29722         * object.h, object.c: separate vtable creation from type
29723         initialization. Make running the .cctor thread safe.
29725 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29727         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29729 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29731         * loader.c (mono_get_method): consider calling convention
29733 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29735         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29736         to return the invisible global type for a module.
29738         * reflection.c (mono_image_build_metadata): Emit global fields too.
29740 2003-05-20  Peter Williams  <peterw@ximian.com>
29742         * loader.c (mono_lookup_internal_call): Add a few newlines.
29744 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29746         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29747         literal strings.
29749         * appdomain.c (set_domain_search_path): Recalculate search path when
29750         AppDomainSetup.PrivateBinPath changes.
29752         * object.c (mono_class_compute_gc_descriptor): It turns out some
29753         parts of the class libs (like System.Thread) holds pointers to
29754         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29755         to treat native int a pointer type here.
29756         
29757 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29759         * appdomain.h, domain.c: add hashtable for jump target resolution.
29761 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29763         * reflection.h reflection.c icall.c: Added new icalls 
29764         GetManifestResourceInfoInternal, GetModulesInternal and support
29765         infrastructure.
29767 2003-05-16  Dick Porter  <dick@ximian.com>
29769         * icall.c:
29770         * file-io.h:
29771         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29773 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29775         * object.c: mono_store_remote_field: little fix to previous patch.
29777 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29779         * class.c: add constructors to array classes.
29780         * icall.c: special case array construction for InternalInvoke (),
29782 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29784         * class.h class.c reflection.c object.c: Added support for field
29785         defaults in dynamically generated classes.
29787 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29789         * reflection.c: properly encode charset for ddlimport.
29791 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29793         * threads.c: allow compiling without GC.
29795 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29797         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29798         handling of thread static data.
29800 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29802         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29804 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29806         * class.c (mono_array_class_get): always set the serializable flags
29807         (mono_array_class_get): always set the SEALED attribute for array types
29809 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29811         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29812         attributes (fix for bug 42021).
29814 2003-05-12  Dick Porter  <dick@ximian.com>
29816         * gc.c: Don't run finalizers when the finalizer thread is
29817         finishing up, because the default domain has already been
29818         destroyed.
29820 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29822         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29823         value is null, we should throw an exception.   This is slightly
29824         different than the other conventions used for the constructor.
29826 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29828         * socket-io.c: fixed windows build.
29830 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29832         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29834 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29836         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29837         compilers.
29839 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29841         * class.c (mono_class_layout_fields): Add experimental GC aware
29842         auto layout facility. Requires class library changes to work correctly.
29844         (mono_class_setup_vtable): Avoid overriding explicit interface
29845         method implementations. Fixes iface3.exe test.
29847         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29848         object reference.
29849         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29850         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29852         * metadata.h: Add new type classification macro which determines
29853         whenever the type holds an object reference.
29855 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29857         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29859 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29861         * gc.c (finalizer_thread): Work around a GC bug.
29863 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29865         * marshal.c (emit_struct_conv): allow unions
29867         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29869 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29871         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29873 2003-05-06  Martin Baulig  <martin@ximian.com>
29875         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29877 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29879         * socket-io.c:
29880         (Select_internal): allow NULLs, don't create arrays if not needed.
29881         Coupled with Socket.cs changes.
29883         * threadpool.c:
29884         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29885         register a finalizer for it that will close the semaphore handle. This
29886         fixes the leak and make Lupus' test run with > 4080 loops.
29888 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29890         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29891         Jerome Laban (bug #42287)
29893 2003-05-02  Martin Baulig  <martin@ximian.com>
29895         * debug-mono-symfile.h
29896         (MonoSymbolFile): Moved declaration into mono-debug.h.
29897         (MonoDebugMethodJitInfo): Likewise.
29898         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29899         argument.
29900         (_mono_debug_address_from_il_offset): Take a
29901         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29903         * mono-debug.h
29904         (MonoDebugDomainData): New struct.
29905         (mono_debug_get_domain_data): New function.
29906         (mono_debug_add_method): Take an additional `MonoDomain *'
29907         argument.
29908         (mono_debug_source_location_from_address): Likewise.
29909         (mono_debug_il_offset_from_address): Likewise.
29910         (mono_debug_address_from_il_offset): Likewise.
29912 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29914         * reflection.c: one more check for null type in custom attrs.
29916 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29918         * reflection.c: avoid warning (comparison is always false due to limited
29919         range of data type).
29921 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29923         * icall.c: throw an exception in Type.GetField if the argument 'name'
29924         is NULL.
29926 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29928         * reflection.c: fixed handling of enums in named arguments to custom
29929         attributes (bug #42123).
29931 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29933         * reflection.c: use the right array element type and handle
29934         a null for a Type argument, too.
29936 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29938         * reflection.c: handle arrays as arguments to custom attributes.
29940 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29942         * reflection.c: handle a string value in a custom attr
29943         ctor that takes an object.
29945 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29947         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29948         (fix bug #42063)
29950 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29952         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29954 2003-04-27  Martin Baulig  <martin@ximian.com>
29956         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29957         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29958         MONO_DEBUGGER_EVENT_BREAKPOINT.
29959         (mono_breakpoint_trampoline_code): Removed.
29960         (mono_debugger_event_handler): The last argument is now a
29961         `guint32'.
29962         (mono_debugger_insert_breakpoint_full): Removed the
29963         `use_trampoline' argument.
29964         (mono_debugger_method_has_breakpoint): Likewise.
29965         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29966         mono_debugger_breakpoint_callback(); take the method and
29967         breakpoint number as arguments.
29969 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29971         * metadata.c: fix off by one when loading parameters attributes.
29973 2003-04-24  Martin Baulig  <martin@ximian.com>
29975         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29977 2003-04-24  Martin Baulig  <martin@ximian.com>
29979         * mono-debug-debugger.c: Moved all code which interacts with the
29980         Mono Debugger here.
29982         * debug-mono-symfile.c: This code now just deals with the symbol
29983         file itself, the debugger code is now in mono-debug-debugger.c.
29985 2003-04-23  Martin Baulig  <martin@ximian.com>
29987         * mono-debug.c (mono_debug_source_location_from_il_offset):
29988         New method; like mono_debug_source_location_from_address(), but
29989         takes an IL offset instead of a machine address.
29991 2003-04-23  Martin Baulig  <martin@ximian.com>
29993         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29994         `line' field; this is now computed by the debugger.
29996 2003-04-23  Martin Baulig  <martin@ximian.com>
29998         * mono-debug.[ch]: New files.  This is the new debugging interface.
30000         * mono-debug-debugger.[ch]: New files.  Moved all code which
30001         interacts with the Mono Debugger here.
30003 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30005         * domain.c (mono_init): initialize mono_defaults.monitor_class
30007 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30009         * reflection.c (method_encode_code): Add a spicy exception to help
30010         future compiler authors.
30012 2003-04-21  Martin Baulig  <martin@ximian.com>
30014         * icall.c
30015         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30016         Make this work with relative pathnames; g_filename_to_uri() needs
30017         an absolute filename.
30019 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30021         * icall.c: Track name changes in Object and ValueType.
30023 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30025         * metadata.c (mono_type_stack_size): size should be a multiple of
30026         sizeof (gpointer)
30028 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30030         * gc.c:
30031         (internal_domain_finalize): moved into mono_domain_finalize. No need
30032         to create another thread because the finalizers will be run in the
30033         finalizer thread.
30034         
30035         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30036         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30037         to be run (MS does this too).
30039 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30041         * object.c (mono_class_compute_gc_descriptor): Update comment.
30043         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30045         * image.h: Add synchronized wrapper cache.
30047         * image.c (do_mono_image_open): Initialize cache.
30049         * reflection.c (create_dynamic_mono_image): Initialize cache.
30051 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30053         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30054         ves_icall_System_Buffer_ByteLengthInternal.
30056 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30058         * reflection.c: setup klass->nested_in earlier. Allow
30059         a dash in the assembly name.
30061 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30063         * metadata.c (mono_type_to_unmanaged): dont access
30064         type->data.klass for MONO_TYPE_OBJECT
30065         (mono_type_to_unmanaged): consider System.Delegate class
30067 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30069         * class.c: just setup supertypes in the proper place instead of
30070         initializing the full element class for arrays.
30072 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30074         * class.c: ensure the element class of arrays is initialized.
30075         Setup the supertype info for array classes, too.
30077 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30079         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30081 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30083         * Makefile.am: re-added -m option when running cygpath. This way,
30084         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30085         separator.
30086         * mono-config.c: same codepath for locating mono config file for WIN32
30087         and the rest.
30088         * assembly.c: if mono_assembly_setrootdir is called, don't override
30089         the value set.
30091 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30093         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30094         MONO_ASSEMBLIES variable.
30096 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30098         * icall.c: added Assembly::GetNamespaces() icall.
30100 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30102         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30104 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30106         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30107         * object.c: fixed bug in the construction of vtable for proxies
30109 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30111         * object.c (mono_array_new): Mark mono_array_new as an icall.
30113 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30115         * class.c: fixed test for public method when overriding interfaces.
30116         Closes bug #40970.
30118 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30120         * appdomain.h, domain.c: added mono_domain_foreach() to
30121         be able to access the currently loaded appdomains.
30122         * object.c: make string interning work across sppdomains.
30123         Mark some functions for use as icalls.
30125 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30127         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30129         * reflection.h reflection.c: Allocate long living data using 
30130         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30132         * reflection.c: Double the allocation size in streams instead of
30133         increasing it, to prevent unneccesary copying on large assemblies.
30134         
30135         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30136         creation if the assembly does not have the Run flag set.
30138 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30140         * class.h: avoid the C++ keywords in header files (Jerome Laban
30141         spotted and fixed this).
30143 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30145         * object.c:
30146         (mono_unhandled_exception): fill in the arguments for the
30147         UnhandledException event. Only trigger that event for the default
30148         domain (as MS does).
30150 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30152         * object.c: Improve typed allocation stuff based on suggestions from
30153         Paolo. Also turn it on if the GC library supports it.
30155 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30157         * object.c object.h class.h: Added experimental typed allocation
30158         facility using the interfaces in gc_gcj.h.
30160         * os/gc_wrapper.h: Added new include files.
30161         
30162 2003-04-03  Martin Baulig  <martin@ximian.com>
30164         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30165         which is not yet enabled by default.
30167         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30168         functions.
30169         (mono_gc_lock, mono_gc_unlock): New static functions.
30171         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30172         functions; stop/start the world for the garbage collector.  This
30173         is using the windows API; we need to complete the SuspendThread()/
30174         ResumeThread() implementation in the io-layer to make this work on Unix.
30175         (mono_gc_push_all_stacks): New public function; tells the garbage
30176         collector about the stack pointers from all managed threads.
30178 2003-04-03  Martin Baulig  <martin@ximian.com>
30180         * object.h (MonoThread): Added `gpointer stack_ptr'.
30182         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30184 2003-04-03  Martin Baulig  <martin@ximian.com>
30186         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30188 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30190         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30191         field.last.
30193 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30195         * loader.c (mono_lookup_internal_call): Report the corlib that is
30196         out of sync.
30198 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30200         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30201         System.DBNull (it's class not valuetype).
30203 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30205         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30206         if the array method was already assigned a token (fixes bug#40646).
30208 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30210         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30211         if no assembly is given.
30213 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30215         * metadata.h: Added the new tables.
30217         * row-indexes.h: Added definitions for new tables.
30219         * metadata.c: Add schemas for new tables, and add support for
30220         computing the sizes of them.
30222         * class.c: Update for handling the new type cases.
30224 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30226         * metadata.h (MONO_TYPE_IS_VOID): new macro
30228 2003-03-31  Martin Baulig  <martin@ximian.com>
30230         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30232         * threads.c (mono_thread_new_init): Call `thread_created' in the
30233         mono_thread_callbacks.
30235 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30237         * loader.h: added marshalbyrefobject_class to mono_defaults
30238         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30239         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30240           generation of output parameters.
30241           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30242         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30243           contextbound and the target object belongs to the context of the caller.
30244         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30245         * object.c: Implemented support for interfaces and abstract classes
30246           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30247           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30249 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30251         * class.h class.c (mono_class_is_subclass_of): New function.
30252         
30253         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30254         routines for most common case (calls from ArrayList::ToArray).
30256         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30257         routine so programs which call Environment::Exit() can be profiled.
30259         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30260         Added MONO_ARCH_SAVE_REGS.
30262         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30264 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30266         * blob.h: Add a couple of new MonoType types definitions.
30268         * tabledefs.h: Add a couple of new call convs.
30270 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30272         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30273         the layout of the class.
30275         * reflection.c (alloc_table): double the size on overflow to avoid
30276         unnecessary copying.
30278         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30279         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30280         null so it can be garbage collected.
30281         
30282 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30284         * reflection.c (mono_reflection_get_type): Return the resolved type
30285         only if it is in the assembly we searched.
30287         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30289         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30290         method.
30292 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30294         * appdomain.c:
30295         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30296         the right one is 'file:///blah', but MS allows it.
30297         * assembly.c:
30298         (mono_assembly_open): allow 'file://blah'
30300         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30302 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30304         * socket-io.c: fixes bug #40310.
30306 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30308         * reflection.c (mono_reflection_parse_type): handle deeply nested
30309         types correctly.
30311         * reflection.c (mono_image_create_token): Use unique token values
30312         since they will be put into a hash table.
30314         * class.c (mono_class_setup_vtable): If a method occurs in more than
30315         one place in the vtable, and it gets overriden, then change the
30316         other occurances too.
30318         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30319         object as return type.
30321 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30323         * icall.c: Deleted "ToString" implementation for double and float
30324         because they are full implemented in managed code.
30326 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30328         * reflection.c, reflection.h: implemented and exported functions
30329         to retrieve info about custom attributes.
30331 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30333         * appdomain.c: moved Uri handling to assembly.c
30334         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30335         work when using a file Uri in *nix and windows.
30337         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30338         GetReferencedAssemblies.
30340 2003-03-18  Dick Porter  <dick@ximian.com>
30342         * icall.c: Rename a couple of internal calls
30344         * threads.c: Set the thread state to Stopped when a thread exits.
30345         Fixes bug 39377.
30347 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30349         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30350         New icall.
30352         * object.c (mono_class_vtable): fix warning.
30354 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30356         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30358         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30359         memory.
30360         (method_encode_clauses): Create exception info structures in the right
30361         order.
30362         (mono_reflection_setup_internal_class): Initialize supertypes field.
30364         * class.c object.c: Handle interfaces which implement other interfaces 
30365         correctly.
30367         * class.h class.c: Move the supertypes array initialization code into 
30368         a separate function so it can be used for dynamic types too. Also call
30369         it earlier, in mono_class_init(), since it can be used before the
30370         type is initialized.
30372 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30374         * Makefile.am:
30375         * assembly.c:
30376         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30378         * appdomain.c:
30379         * appdomain.h:
30380         * marshal.c:
30381         * object.c: remove warnings.
30383 2003-03-13  Martin Baulig  <martin@ximian.com>
30385         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30386         (MonoDebugLexicalBlockEntry): New types.
30388         * debug-mono-symfile.c
30389         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30391 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30393         * process.c: ret can be any non-zero value accroding to MS doc.
30395 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30397         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30398         fixing a warning for a miss-used prototype, would have cause
30399         random memory corruption.
30401 2003-03-07  Martin Baulig  <martin@ximian.com>
30403         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30404         getting really annoying ....
30406 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30408         * reflection.c (fixup_method): added support for array methods.
30410 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30412         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30413         (pointed out by Michael Adams).
30415 2003-03-04  Dick Porter  <dick@ximian.com>
30417         * icall.c: Temporarily reverted the Double and Single ToString()
30418         change, because it broke nunit.
30420 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30422         * object.h, threads.h: make include files compatible with C++
30423         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30425 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30427         * icall.c: Erased ToString helper functions for Double and Single.
30428         Now, that implementations ar all in managed code (Double and Single
30429         Formatters).
30431 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30433         * appdomain.c: Added method for initializing the default context of
30434         a domain. Added internal call for getting the default context.
30435         * appdomain.h: Added context variable in MonoDomain struct.
30436         * domain.c: mono_domain_set also sets the default context of the domain
30437         * icall.c: Mapped internal method InternalGetDefaultContext.
30438         * object.c: mono_object_get_virtual_method returns always a remoting
30439         wrapper if the object is a transparent proxy.
30440         mono_runtime_invoke_array: when creating an object by calling the
30441         constructor, if the created object is a proxy, then the constructor should
30442         be called using the a remoting wrapper.
30444 2003-03-03  Dick Porter  <dick@ximian.com>
30446         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30447         variable so it compiles on solaris.  Problem spotted by
30448         Christopher Taylor <ct@cs.clemson.edu>
30450 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30452         * appdomain.c:
30453         (get_info_from_assembly_name): don't leak value.
30455         * icall.c:
30456         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30457         result.
30459 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30461         * assembly.c: export mono_image_load_references ().
30462         * class.c: handle function pointers. mono_class_from_name() now
30463         supports nested type names directly.
30465 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30467         * reflection.h reflection.c: Encode already created dynamic methods 
30468         and fields correctly as a DEF instead of a REF.
30470         * reflection.c: Get rid of the force_ref argument to 
30471         mono_image_typedef_or_ref since it was wrong in the first place.
30473         * string-icalls.c: add error checking to string constructors according
30474         to the MSDN docs.
30476         * reflection.c: Emit types in the order their TypeBuilders were 
30477         created. Previously, a new table index was assigned to each type before
30478         the tables were emitted. This was wrong because the signature blob
30479         might already refer to a type by its original table index.
30481 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30483         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30484         change.
30485         
30486 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30488         * Makefile.am: make assemblies dir have \ instead of / on windows.
30490 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30492         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30493         iterate over the NESTEDCLASS table using a linear search since the
30494         table is not guaranteed to be sorted by the secondary key.
30496         * class.c (mono_class_create_from_typedef): fixed up call to
30497         mono_metadata_nesting_typedef.
30498         
30499 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30501         * marshal.c (mono_string_to_byvalstr): clear the memory as
30502         suggested by Jerome Laban <jlaban@wanadoo.fr>
30504 2003-02-26  Dick Porter  <dick@ximian.com>
30506         * process.c: Cope with padding in .rsrc blocks
30508 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30510         * metadata.h: reverted the filter_len change, it breaks reflection
30511         
30512 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30514         * metadata.h: added a new field to store the filter_len
30515         
30517 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30519         * reflection.c: handle custom attributes for types and members
30520         created with Reflection.Emit (bug#38422).
30522 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30524         * reflection.c: define RTSpecialName automatically for constructors for
30525         compatibility with MS.NET.
30527         * reflection.c (mono_reflection_create_runtime_class): initialize
30528         nested_in field of dynamically created classes.
30530 2003-02-22  Martin Baulig  <martin@ximian.com>
30532         * debug-mono-symfile.h: Incremented version number.
30534 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30536         * object.h icall.c process.c: fix warnings.
30538 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30540         * appdomain.h appdomain.c:
30541         (mono_domain_try_type_resolve): split the 
30542         name_or_tb argument into a name and a tb argument.
30543         (mono_domain_has_type_resolve): new function to check whenever the
30544         application has registered a TypeResolve event handler.
30545         
30546         * icall.c reflection.h reflection.c: move the type resolve logic into
30547         mono_reflection_get_type () so it will be invoked when 
30548         Assembly::GetType () is called.
30550         * reflection.c:
30551         (mono_reflection_get_type): renamed to get_type_internal.
30552         (mono_reflection_get_type): fixed type name generation so it works 
30553         for nested types too.
30554         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30555         costly type name generation if there is no resolve event handler.
30557 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30559         * class.c, image.c: load exported types from file references.
30561 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30563         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30564           used to cache the managed methods used to create proxies and make 
30565           remote invocation of methods.
30566         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30567           to be remotely created.
30568         * object.c: Modified the method mono_class_vtable(). It now initializes 
30569           the remote flag of the vtable. Modified mono_object_new_specific(), 
30570           so now it checks the remote flag.
30571         * icall.c: Added a couple of internal methods, one for enabling instance 
30572           creation interception for a type, and one for creating objects bypassing
30573           the remote check.
30575 2003-02-18  Martin Baulig  <martin@ximian.com>
30577         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30578         New interncall to get a method's metadata token.
30580         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30581         New interncall for the debugger.
30583 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30585         * class.c (mono_class_setup_vtable): allocate supertype array
30587 2003-02-18  Martin Baulig  <martin@ximian.com>
30589         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30591 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30593         * reflection.c:
30594         (assembly_name_to_aname): jump over unknown properties (i've found
30595         something like: 'type, assembly, version=xxx, custom=null, public...',
30596         so now will ignore custom=null and still get the rest of the values).
30598 2003-02-17  Dick Porter  <dick@ximian.com>
30600         * threads.c: Have Thread.Start() wait for a semaphore to signal
30601         that the thread has set up all its local data.  This fixes bug
30602         34323, where Abort() raced the new thread's TLS data.
30604         Also removes the handle_store() call from start_wrapper, because
30605         threads are now always created suspended and there is no longer a
30606         race between the parent and child threads to store the info.
30608 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30610         * image.c: explain the #- heap issue in a message, hopefully
30611         avoiding FAQs on mono-list.
30613 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30615         * icall.c:
30616         (GetEntryAssembly): if the domain has not invoked
30617         AppDomain.ExecuteAssembly yet, return the assembly of the default
30618         AppDomain.
30620 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30622         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30624 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30626         * metadata.c, reflection.c: simple speedup to type hash
30627         and equals code.
30629 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30631         * image.c, image.h, class.c, assembly.c: move module loading
30632         to MonoImage. When loading metadata, consider alignemnet from
30633         the start of metadata, not from the metadata address in memory.
30635 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30637         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30638         AssemblyBuilder objects. Factored out custom attribute creation into
30639         a separate function.
30640         (create_custom_attr): new function to create custom attributes.
30642 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30644         * Makefile.am: Got tired of typing the full pathname to pedump.
30645         Until there is another option, am installing this.
30647 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30649         * class.c (class_compute_field_layout): always set field->parent 
30650         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30652 2003-02-11  Dick Porter  <dick@ximian.com>
30654         * threads-types.h:
30655         * monitor.c: Rewrote Monitor, making lock much faster and
30656         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30657         creates them as needed.
30659         * exception.c: Added SynchronizationLockException
30661         * threads.c: Deleted old Monitor implementation.  The new one is
30662         in a new file.
30664 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30666         * class.c: handled TypedReference type code. Set the correct size for
30667         class data. Setup interface_offsets for interface classes, too.
30669 2003-02-09  Martin Baulig  <martin@ximian.com>
30671         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30673 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30675         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30676         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30677         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30678         * verify.c: check for code that runs after the end of the method.
30680 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30682         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30683         "System.Math::Round2".
30684         * sysmath.h: Added Floor, Round and Round2 definitions.
30685         * sysmath.c: Modified certain functions that were not 100% compliant
30686         with MS.NET (math precision) and added the implementation of Floor,
30687         Round and Round2.
30689 2003-02-07  Martin Baulig  <martin@ximian.com>
30691         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30693 2003-02-07  Martin Baulig  <martin@ximian.com>
30695         * debug-mono-symfile.c: Reflected latest symwriter changes.
30696         (mono_debug_create_mono_symbol_file): Removed.
30697         (mono_debug_open_mono_symbol_file): Take an argument which
30698         specifies whether to create a dynamic symbol file.
30700 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30702         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30704 2003-02-05  Martin Baulig  <martin@ximian.com>
30706         * reflection.c (mono_image_build_metadata): Make this public,
30707         protect it against being called multiple times, don't create
30708         resources and don't build the compressed metadata here.
30709         (mono_image_create_pefile): Do this here.
30711         * icall.c
30712         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30714 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30716         * socket-io.c: fixed bug #36322.
30718 2003-02-06  Piers Haken <piersh@friskit.com>
30720         * appdomain.[ch]:
30721         * class.h:
30722         * debug-mono-symfile.c:
30723         * icall.c:
30724         * loader.c:
30725         * mono-config.c:
30726         * monosn.c:
30727         * reflection.c:
30728         * socket-io.c: warning cleanups
30730 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30732         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30733         function. works like remoting invoke, but does a check for the Proxy first.
30735 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30737         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30739 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30741         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30742         array of pointers.
30743         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30744         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30746         * object.c (mono_store_remote_field_new): used by the new jit
30747         instead of mono_store_remote_field
30748         (mono_load_remote_field_new): used by the new jit
30749         instead of mono_load_remote_field
30751 2003-02-05  Patrik Torstensson
30753         * appdomain.c: changed unload to take the domain id instead
30754         of domain
30755         
30756         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30759 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30761         * appdomain.c: don't look for assemblies in ApplicationBase if
30762         PrivateBinPathProbe is set.
30764 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30766         * object.c: make the first argument in main_args contain the absolute
30767         path to the assembly. Fixes bug #37511.
30769 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30771         * icall.c: get correct UTC offset for countries not using daylight
30772         time saving. Fixes bug #30030.
30774 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30776         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30777         and 1 are the family).
30779 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30781         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30783         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30785 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30787         * reflection.c: added support for SignatureHelper tokens, which is
30788         needed by the Calli opcode.
30790         * reflection.h: track changes to SignatureHelper class.
30792         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30794 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30796         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30798 2003-02-03  Patrik Torstensson
30799         * appdomain.[c|h], domain.c : 
30800          - Added support for getting a domain via domain id
30801          - Support for setting and getting domain from System.AppDomain 
30802            (used in cross appdomain channel)
30803          - Added support for get/set for a MonoAppContext on a thread 
30804            (Context class in System.Runtime.Remoting.Contexts),
30805          - Removed hack in Get/SetData and ExecuteAssembly.
30806         
30807         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30808         the managed world to get control when a proxy is created.
30810         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30811         
30812 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30814         * icall.c
30815         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30816         Populate the codebase field as well.
30818 2003-02-02  Martin Baulig  <martin@ximian.com>
30820         * debug-mono-symfile.c
30821         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30822         (mono_debug_symfile_add_method): Allow interncalls.
30824 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30826         * icall.c: throw parse exception if strtod fails or the string is empty.
30828 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30830         * marshal.c: handle object type separately from defined
30831         class types.
30833 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30835         * marshal.c: handle NATIVE_LPSTR for strings when it's
30836         explicitly specified.
30838 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30840         * reflection.c, reflection.h, icall.c: setup the reflection
30841         handle cache for ModuleBuilders and AssemblyBuilders.
30843 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30845         * reflection.c (reflection_methodbuilder_to_mono_method): set
30846         pinvoke flag
30848 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30850         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30852 2003-01-29  Dick Porter  <dick@ximian.com>
30854         * threads.c: No need for the fake_thread kludge now that Thread
30855         doesn't run a class constructor
30856         
30857 2003-01-29  Dick Porter  <dick@ximian.com>
30859         * threads.c: Use g_direct_hash instead of the rather bogus
30860         g_int_hash
30862 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30864         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30865         (fix pinvoke12.exe)
30866         (mono_marshal_get_struct_to_ptr): generate valid IL code
30867         (mono_marshal_get_ptr_to_struct): generate valid IL code
30868         (*): correctly set sig->pinvoke, we need to memdup the signature
30869         to do that
30871 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30873         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30874         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30876 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30878         * profiler.c: provide more callers information.
30880 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30882         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30884         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30886         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30888 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30890         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30891         exception instead of going into an infinite loop on dates which it 
30892         can't yet handle.
30894         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30895         out-of-range exception if needed.
30897         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30898         an implementation for an interface method and to override an inherited
30899         method at the same time. 
30900         Imagine a scenario when a virtual method is used to override a
30901         virtual abstract method in a parent class, and this same method 
30902         provides an implementation for an method inherited from an interface. 
30903         In this case, the interface resolution code will set im->slot, which 
30904         means that the virtual method override pass will skip this method 
30905         which means a pointer to the abstract method inherited from the parent
30906         will remain in the vtable of this non-abstract class.
30908         * class.c: (mono_class_setup_vtable): continue search for a real 
30909         method if only an abstract method is found.     
30911 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30913         * reflection.c: add size to encoding for ByValStr and ByValArray
30914         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30916 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30918         * class.c (mono_class_setup_vtable): pass the override info as an
30919         argument.
30921         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30922         correctly.
30923         
30924         * reflection.c (ensure_runtime_vtable); add support for method 
30925         overrides.
30926         
30927 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30929         * reflection.c (resolution_scope_from_image): Hack to work to work with
30930         dynamic assemblies.
30932         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30933         added a 'force_ref' argument to force this function to allways return 
30934         a TypeRef. This is needed by mono_image_get_memberref_token ().
30935         
30936 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30938         * reflection.c (mono_image_get_type_info): interfaces really don't have
30939         a parent.
30941         * reflection.c (mono_image_basic_init): fill out missing fields of
30942         image structure.
30944         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30945         dynamic assemblies. This is required so dynamic assemblies show up in
30946         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30947         Type::GetType() etc. This is consistent with MS behaviour.
30949         * image.c image.h reflection.c: add newly created classes to the name 
30950         cache so mono_class_get () will find them.      
30952 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30954         First part of changes to get IKVM.NET running under mono.
30955         
30956         * appdomain.h, appdomain.c: added new function 
30957         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30958         This function will call AppDomain::DoTypeResolve to do the actual work.
30960         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30961         moved existing code dealing with dynamic tokens to a new function 
30962         called mono_reflection_lookup_dynamic_token (). This function will 
30963         raise TypeResolve events when appropriate. Since reflection.c is not 
30964         part of libmetadata, a new hook function called 
30965         mono_lookup_dynamic_token() is added to class.c which will call this.
30967         * assembly.h assembly.c: make the invoke_load_hook function public,
30968         so it can be called for dynamic assemblies.
30970         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30972         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30973         type isn't found.
30975         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30976         MonoGHashTable, since it contains pointers to objects which the GC 
30977         needs to track.
30979         * assembly.c (search_loaded): remove unused variable.
30980         
30981 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30983         * object.c: fixed issue exposed by gcc-generated IL programs
30984         that use RVA data for pointers.
30986 2003-01-25  Martin Baulig  <martin@ximian.com>
30988         * threads.c (start_wrapper): Moved the initialization of
30989         `start_func' above the mono_new_thread_init() call to which we
30990         pass it as argument.
30992 2003-01-24  Martin Baulig  <martin@ximian.com>
30994         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30995         the MonoThread pointer.
30997 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30999         * icall.c: Rename `PowImpl' to Pow.
31001 2003-01-23  Dick Porter  <dick@ximian.com>
31003         * threads.c (start_wrapper): Create a Thread object if needed, so
31004         the Main() thread can do the class initialisation in a subthread
31005         that has been set up to allow managed code execution.
31007         Pass the thread ID instead of the MonoThread pointer to the thread
31008         start and attach callbacks.  This change is required, because the
31009         jit thread start callback must be called _before_ the Thread
31010         object can be created.
31011         
31012         (mono_thread_init): Removed much object creation code that is no
31013         longer needed.  No managed code is called from here now.
31015         * object.c (mono_runtime_exec_managed_code): Create a subthread
31016         for Main, and call back to the runtime to use it.
31017         Set the exit code when Main exits.
31019         * gc.c: Make sure domain finalisation happens in a subthread.
31020         Re-enable threaded GC, fixing bug 31333 (again).
31022         * environment.c: System.Environment internall calls (so far just
31023         ExitCode is here, the others are still in icall.c)
31025         * appdomain.c (mono_runtime_cleanup): All threads running managed
31026         code should have finished before mono_runtime_cleanup() is
31027         reached, so no need to clean up threads.
31029 2003-01-22  Martin Baulig  <martin@ximian.com>
31031         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31032         `gpointer func' arguments.      
31033         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31034         but added `MonoThread *thread' argument.
31035         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31037         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31038         and pass it to the mono_thread_start_cb callback.
31039         (mono_install_thread_callbacks): New public function to install a
31040         set of callbacks which are set by the debugger.
31041         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31043 2003-01-22  Martin Baulig  <martin@ximian.com>
31045         * Makefile.am: Install debug-mono-symfile.h.
31047 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31049         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31051 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31053         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31054         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31055         (mono_array_class_get): correctly set access levels of arrays
31057 2003-01-20      Patrik Torstensson
31058         * image.h (MonoAssemblyName): changed major, minor, build, revision
31059         from signed to unsigned.
31061 2003-01-20  sean kasun <skasun@azstarnet.com>
31063         * reflection.c (load_cattr_value): Now this handles
31064         MONO_TYPE_SZARRAY.  Fixes bug #35629
31066 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31068         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31069         integer value
31071 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31073         * decimal.c: fixed bug #26056.
31075 2003-01-17  Martin Baulig  <martin@ximian.com>
31077         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31079 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31081         * exception.[ch]:
31082         (mono_get_exception_type_initialization): new function.
31084         * object.c: throw a TypeInitializationException when an exception is
31085         thrown invoking the class constructor.
31087 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31089         * reflection.c: fixed attribute reading.
31091 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31093         * icall.c:
31094         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31095         provided, look for the type in the calling assembly and then in
31096         mscorlib; if the assembly name is provided, only try that one.
31098 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31100         * object.c: register the vtable before there is a chance it's
31101         queried again recursively.
31103 2003-01-13  Duncan Mak  <duncan@ximian.com>
31105         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31106         gc-internal.h. 
31107         
31108 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31110         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31112 2003-01-11  Martin Baulig  <martin@ximian.com>
31114         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31115         this to 20 for the release.
31117 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31119         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31121         * loader.c (mono_method_get_marshal_info): bug fix
31123         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31124         structures with explicit layout
31126 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31128         * profiler.c: made the output more readable (and sorted). 
31129         Added caller information for the allocation profiler.
31131 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31133         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31135 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31137         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31138         to get value types.
31139         
31140 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31142         * object.c, profiler.h, profiler.c, profiler-private.h:
31143         Added object allocation profiler.
31145 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31147         * reflection.h, reflection.c: handle global methods.
31148         Compress blob entries.
31150 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31152         * marshal.c: fix compilation.
31154 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31156         * loader.c (mono_method_get_marshal_info): impl.
31158         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31160 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31162         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31163         for reference types.
31165 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31167         * loader.c: fixed off by one error in loaded parameter names.
31169 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31171         * marshal.c (mono_marshal_get_icall_wrapper): like
31172         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31173         instead of a MonoMethod.
31175 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31177         * decimal.c: fixed bug #36537.
31179 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31181         * marshal.c: throw a missing method exception if a
31182         P/Invoke method is not found.
31184 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31186         * icall.c: allow a null this for constructors.
31188 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31190         * icall.c: raise the proper exceptions if the arguments to the
31191         internal Invoke are incorrect.
31193 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31195         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31197 2003-01-03  Martin Baulig  <martin@ximian.com>
31199         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31201 2002-12-31  Martin Baulig  <martin@ximian.com>
31203         * debug-mono-symfile.c: Completely rewrote the type section.
31204         Instead of using individual malloc()ed fields, we use one big
31205         continuous memory area and offsets into this area.
31206         See the comments in the source code for details.
31208 2002-12-30  Martin Baulig  <martin@ximian.com>
31210         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31212 2002-12-30  Martin Baulig  <martin@ximian.com>
31214         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31215         line number table in this data blob instead of using an external
31216         pointer.
31218 2002-12-28  Martin Baulig  <martin@ximian.com>
31220         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31222 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31224         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31225         as a boxed return type.
31227 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31229         * appdomain.c
31230         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31231         g_build_filename to properly get separators on the filename created.
31233         * object.h: Small change, introduce MonoMarshalByRefObject to
31234         track the layout of that structure in the C# universe as we make
31235         changes there.
31237 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31239         * object.c: removed assert to allow static fields on interfaces.
31240         * loader.c: a TypeSpec may be used for any type, not just arrays.
31242 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31244         * class.c, class.h: added mono_class_array_element_size ().
31245         Ignore static methods in interfaces.
31247 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31249         * threads.c: fixed the build under cygwin.
31251 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31253         * reflection.c: handle nullref constants. Allocate keys for
31254         reflection handles with the GC.
31256 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31258         * threads.c, threads.h: added mono_thread_get_abort_signal()
31259         to get a suitable signal for thread abort.
31261 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31263         * metadata.c: fix handling of ExportedType table.
31265 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31267         * icall.c: added WriteWindowsDebugString internal call.
31269 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31271         * reflection.h: added fields to match C# implementation.
31273 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31275         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31277 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31279         * gc.h, gc-internal.h: Rename header for GC internal calls to
31280         gc-internal.h from gc.h as to not clash with Boehm GC having its
31281         header installed as <gc.h> in outside include paths.
31282         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31283         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31285 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31287         * icall.c: assign minor, build and revision in FillName.
31289 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31291         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31292         Added support for running code generated by Reflection.Emit.
31294 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31296         * appdomain.c: check for NULL argument in LoadFrom.
31298 2002-12-10  Dick Porter  <dick@ximian.com>
31300         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31302 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31304         * appdomain.c: fix buglet when building exe file name.  Handle full
31305         assembly name (needed after latest changes to AssemblyName).
31306         * image.c:
31307         (mono_image_close): free some hashtables.
31309 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31311         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31312         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31313         on some systems (redhat 7.3) 
31315 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31317         * threads.c: delete the critical section of a sync block,
31318         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31320 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31322         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31324 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31326         * appdomain.[ch]: handle the assembly preload event to try loading the
31327         assemblies using the paths we have in the current domain.
31329         * assembly.[ch]: created an assembly preload hook that is called to try
31330         loading the assembly by other means that the ones provided here.
31332         * domain.c: initialize the domain search path.
31334         From now on, assemblies (TODO: except corlib and System) are loaded
31335         according to these rules when using mono_assembly_load ():
31337                 1. It tries to load the assembly from the ApplicationBase
31338                 of the current domain appending .dll and .exe (TODO: have to
31339                 try loading from name/name.dll and name/name.exe).
31341                 2. It tries the search path specified in PrivateBinPath for the
31342                 current domain (if any).
31344                 3. Previous behavior.
31346 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31348         * icall.c: implemented GetInterfaceMap() related icall.
31349         * domain.c, loader.h: load MethodInfo in mono_defaults.
31351 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31353         * gc.c: disable the finalizer thread for now, untill all the issues
31354         with it are resolved.
31356 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31358         * string-icalls.c: handle embedded nulls in string ctor when the
31359         length is specified.
31361 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31363         * class.c: look for explicit interface implementation in parent
31364         classes, too.
31366 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31368         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31370 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31372         * gc.c: protect handles with a critical section.
31374 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31376         * icall.c:
31377         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31378         parameters. If no assembly specified, try getting the type from all
31379         the assemblies in the current domain, else, load the assembly and get
31380         the type from it.
31382 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31384         * marshal.c: applied patch from Aleksey Demakov that fixes
31385         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31387 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31389         * icall.c: fixed get_location.
31391 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31393         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31394         declarations to make it work with older gcc. 
31396         * loader.c (mono_get_method): set signature->pinvoke for native calls
31398 2002-11-20  Dick Porter  <dick@ximian.com>
31400         * threads.c (mono_thread_init): Set the main thread's handle
31402 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31404         * gc.c: allow compilation without GC support. Changed to match the
31405         mono coding style.
31407 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31409         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31411 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31413         * reflection.c: set a public key token on the core assemblies.
31415 2002-11-18  Dick Porter  <dick@ximian.com>
31417         * threads.c: Split out some thread initialisation so that other
31418         files can set the start callback function.
31420         * gc.c: Run finalisers in a separate thread, to avoid stack
31421         overflow.  Fixes bug 31333.
31423         * appdomain.c: Set up GC finalisation thread.
31425         * reflection.c: 
31426         * object.c: 
31427         * domain.c: Use gc.h macros for GC_malloc
31428         
31429 2002-11-15  Dick Porter  <dick@ximian.com>
31431         * threadpool.c: 
31432         * threads.c:
31433         * appdomain.c: Removed mono_runtime_init_with_attach(),
31434         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31435         merging the extra parameter with the existing function.  Removed
31436         unneeded code in mono_thread_attach().
31438 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31440         * image.c (mono_image_loaded_by_guid): a method to get loaded
31441         images by guid. 
31442         (load_metadata_ptrs): we store the guid as string.
31444 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31446         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31448         * metadata.c (mono_guid_to_string): imported method form Zoltan
31449         Varga (slightly modified)
31451         * assembly.c (mono_assembly_open): load precompiled code
31453         * loader.h (MonoMethod): we store the method token for use in the
31454         aot compiler. 
31456 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31458         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31459         the hook function called when an assembly is loaded.
31460         
31461         * domain.c: Modified file.
31462         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31464         Fixes bug #33196.
31466 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31468         * reflection.c: Map PEFileKind to the value expected by the WinNT
31469         image loader. 
31471 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31473         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31474         Read until the buffer is filled completely.
31476 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31478         * icall.c: implemented MonoType.InternalGetEvent ().
31480 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31482         * appdomain.c: implemented InitAppDomainSetup. Delayed
31483         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31484         the entry_assembly.
31486         * assembly.c: base_dir is now an absolute path ending with
31487         G_DIR_SEPARATOR.
31489         * icall.c: modified get_location according to the above changes.
31491         * object.c: init AppDomain.SetupInformation for the default domain after
31492         we have the entry assembly.
31494         * domain.c: when unloading a domain, setup = NULL.
31496 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31498         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31500 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31502         * object.h, object.c: introduced mono_object_get_virtual_method ()
31503         to lookup the method invoked on an object when a callvirt is done on
31504         a method.
31505         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31507 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31509         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31510         current domain when loaded an assembly and failed to load it.
31512         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31514 2002-10-31  Dick Porter  <dick@ximian.com>
31516         * icall.c: 
31517         * file-io.h: 
31518         * file-io.c: Return the error status in a parameter, as the
31519         GetLastError() value has long since been blown away if we try and
31520         look it up in a subsequent internal call invocation.  Delete the
31521         GetLastError() internal call, because it's useless.
31523 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31525         * class.[ch]: added cast_class to fix bug 29517
31527 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31529         * marshal.c: create valid IL code in the filter clause:
31530         the new JIT is less forgiving:-)
31532 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31534         * icall.c: removed get_property internal call.
31536 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31538         * appdomain.h domain.c: Added an ID to appdomains.
31539         
31540         * threads.c threads.h icall.c: Implement icall
31541         Thread:GetDomainID(), and remove unused icall 
31542         CurrentThreadDomain_internal.
31544 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31546         * icall.c: Don't recurse through the base types in GetConstructor.
31547         Fixes bug #32063. 
31549 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31551         * mempool.h, mempool.c: added mono_mempool_empty() and
31552         mono_mempool_stats().
31554 2002-10-23  Dick Porter  <dick@ximian.com>
31556         * file-io.c: 
31557         * file-io.h: 
31558         * icall.c: Added MonoIO.GetFileType internal call
31560 2002-10-17  Dick Porter  <dick@ximian.com>
31562         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31563         delegate semaphore before waiting for all threads to finish,
31564         because new threads can also call async delegates.  Fixes bug
31565         32004.
31567         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31568         of 3 seconds, in case another async job is queued.  (This part is
31569         needed because the bug fix reintroduced the 3s exit lag.)  This
31570         makes the mono_runtime_shutdown flag superfluous.
31572 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31574         * reflection.c: include ehader size in method section headers.
31575         Really check for suplicated modules entries.
31577 2002-10-17  Martin Baulig  <martin@gnome.org>
31579         * debug-mono-symfile.c: Added back support for locals.
31581 2002-10-14  Martin Baulig  <martin@gnome.org>
31583         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31584         MONO_TYPE_VOID.
31586 2002-10-14  Martin Baulig  <martin@gnome.org>
31588         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31589         mono_class_get() instead of looking in the class cache. 
31591 2002-10-13  Martin Baulig  <martin@gnome.org>
31593         * debug-mono-symfile.c: Set version number to 28, include the
31594         signature in method names.
31596 2002-10-13  Martin Baulig  <martin@gnome.org>
31598         * debug-mono-symfile.h: Set version number to 27.
31600 2002-10-11  Martin Baulig  <martin@gnome.org>
31602         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31604 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31606         * metadata.c, metadata.h: added helper function to allocate signatures.
31608 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31610         * icall.c: added internal call to get the location of machine.config.
31612 2002-10-08  Martin Baulig  <martin@gnome.org>
31614         * debug-mono-symfile.c: Ignore classes with a pending init for the
31615         moment.
31617 2002-10-03  Dick Porter  <dick@ximian.com>
31619         * threads.c: Freebsd pthread_t is a pointer
31621 2002-10-03  Dick Porter  <dick@ximian.com>
31623         * socket-io.c: Implemented GetHostName_internal
31625 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31627         * mono-config.c:
31628         (mono_config_parse_file): don't leak the text.
31630 2002-10-02  Martin Baulig  <martin@gnome.org>
31632         * debug-mono-symfile.c: Added support for methods.
31634 2002-10-01  Martin Baulig  <martin@gnome.org>
31636         * debug-mono-symfile.c: Don't emit methods and line numbers for
31637         the dynamic symbol file, just write the type table.  We can easily
31638         have an external helper program which creates a symbol file for an
31639         IL file.        
31641 2002-10-01  Dick Porter  <dick@ximian.com>
31643         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31644         Only add the handle to the cleanup array when we're about to
31645         launch the thread.  Bug 31425 deadlocked when the test was run on
31646         mono under w32.
31648 2002-10-01  Martin Baulig  <martin@gnome.org>
31650         * debug-mono-symfile.c: Added support for properties.
31652 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31654         * reflection.c: unaligned store fix from Mark Crichton
31655         <crichton@gimp.org>.
31657 2002-09-27  Martin Baulig  <martin@gnome.org>
31659         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31660         New interncall.
31662 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31664         * assembly.h, assembly.c: use a sane API to hook into the assembly
31665         loading process instead of a useless special-purpouse hack
31666         (ngen needs a hook, too, for example).
31668 2002-09-27  Dick Porter  <dick@ximian.com>
31670         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31671         io-layer can set up some process handle info.  Not needed on w32,
31672         but doesn't hurt either.
31674         * process.c: Pass the program name in the second parameter to
31675         CreateProcess, so the path is searched.  Include the working
31676         directory. Implemented process name, process enumeration, and some
31677         process detail internal calls.
31678         
31679         * icall.c: Added internal calls for process lookup, and some
31680         process details
31682 2002-09-26  Martin Baulig  <martin@gnome.org>
31684         * assembly.c (mono_install_open_assembly_hook): New global
31685         function to install a function to be invoked each time a new
31686         assembly is loaded.
31687         (mono_assembly_open): Run this callback function if set.
31689         * debug-mono-symfile.c: Put back line numbers for the dynamic
31690         symbol file and also record the .il file as source file.  This
31691         allows us to install the temporary symbol file as `file.dbg' just
31692         like a compiler-generated one.
31694 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31696         * Corrected typo in gc.c (BOHEM vs BOEHM).
31698 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31700         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31701         GetProperties. Also avoid calling g_slist_length in GetProperties and
31702         GetMethods.
31704 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31706         * reflection.c: avoid unaligned stores (bug spotted by
31707         Mark Crichton  <crichton@gimp.org>).
31709 2002-09-25  Martin Baulig  <martin@gnome.org>
31711         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31712         instead of guint64 for addresses and added prologue/epilogue info.
31714 2002-09-25  Martin Baulig  <martin@gnome.org>
31716         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31717         store line number info.  For the dynamic symbol file, we only need
31718         to provide the JIT generated dynamic line number info for the dynamic
31719         symbol file.
31721 2002-09-25  Martin Baulig  <martin@gnome.org>
31723         * debug-mono-symfile.h: Incremented version number.
31725 2002-09-24  Martin Baulig  <martin@gnome.org>
31727         * class.c (mono_debugger_class_init_func): New global function
31728         pointer variable.
31729         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31730         call it.
31732         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31733         function.  This is called via the mono_debugger_class_init_func
31734         hook to add all types to the dynamic type table.
31735         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31736         from its metadata token.
31738         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31739         New interncall for the debugger.
31741 2002-09-24  Nick Drochak <ndrochak@gol.com>
31743         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31744         before using it in case it is null.
31745         
31746 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31748         * metadata.c: allow custom modifiers in local var signatures
31749         (bug spotted by Zoltan Varga).
31751 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31753         * class.c: deal with the <Module> class that may have a NULL vtable.
31754         Eliminate warnings.
31756 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31758         * image.c, image.h: more strong name helpers.
31759         * monosn.c: more work: convert pem keys to cryptoapi format.
31761 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31763         * string-icalls.c: speedup IndexOf.
31765 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31767         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31769 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31771         * icall.c: cleanup: use mono_object_domain ().
31773 2002-09-23  Martin Baulig  <martin@gnome.org>
31775         * debug-mono-symfile.c: Improved type support.
31777 2002-09-22  Martin Baulig  <martin@gnome.org>
31779         * debug-mono-symfile.c: Added support for reference types and strings.
31781 2002-09-22  Martin Baulig  <martin@gnome.org>
31783         * debug-mono-symfile.c: Started to work on the type table.
31785 2002-09-21  Martin Baulig  <martin@gnome.org>
31787         * debug-mono-symfile.c: Largely reworked the symbol table format.
31788         The symbol table is now incrementally updated each time a new
31789         method is added.  We're now also using our own magic and version
31790         so that you don't need to recompile all your classes if the
31791         dynamic table changes.
31792         (mono_debug_update_mono_symbol_file): Removed.
31793         (mono_debug_symfile_add_method): New function to add a method.
31795 2002-09-21  Martin Baulig  <martin@gnome.org>
31797         * icall.c
31798         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31799         New interncall.
31801         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31802         New interncall to get a method from its metadata token.
31804 2002-09-21  Martin Baulig  <martin@gnome.org>
31806         * debug-mono-symfile.c: Create type table.
31808 2002-09-20  Martin Baulig  <martin@gnome.org>
31810         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31812 2002-09-20  Martin Baulig  <martin@gnome.org>
31814         * debug-mono-symfile.c: Provide information about params and locals.
31816 2002-09-20  Martin Baulig  <martin@gnome.org>
31818         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31819         New interncall.
31821         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31822         interncall to get a method from its metadata token.
31824 2002-09-20  Martin Baulig  <martin@gnome.org>
31826         * debug-mono-symfile.c: Added a few checks for method->header
31827         being non-NULL.  This should never happen, but for the moment
31828         let's use a g_warning() rather than a g_assert().
31830 2002-09-19  Mark Crichton  <crichton@gimp.org>
31832         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31833         even if support for it isn't present.  Added an #ifdef to fix this.
31835         * socket-io.c: Added checks back for Solaris support.
31837 2002-09-19  Martin Baulig  <martin@gnome.org>
31839         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31840         changes in the symbol file format.
31842 2002-09-18  Martin Baulig  <martin@gnome.org>
31844         * debug-mono-symfile.c: Set version number to 21.
31846 2002-09-18  Dick Porter  <dick@ximian.com>
31848         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31849         on netbsd.  Fixes bug 30051.
31851 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31853         * reflection.c:
31854         (set_version_from_string): little fix.
31856 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31858         * monosn.c, Makefile.am: added strong name utility.
31859         * reflection.h, reflection.c: implemented delayed signing,
31860         locale, version and hash id assembly attributes.
31862 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31864         * loader.c, metadata.c: load param attributes in signatures.
31866 2002-09-16  Martin Baulig  <martin@gnome.org>
31868         * debug-mono-symfile.c: Added string table with all method names.
31870 2002-09-14  Martin Baulig  <martin@gnome.org>
31872         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31873         fast method lookup.
31875 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31877         * reflection.c: record the public key token of referenced assemblies.
31879 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31881         * image.c, image.h: added functions to get the strong name and the
31882         public key of an assembly.
31883         * pedump.c: use them.
31885 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31887         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31889 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31891         * marshal.c (mono_marshal_get_managed_wrapper): Added
31892         MONO_TYPE_BOOLEAN 
31894 2002-09-11  Martin Baulig  <martin@gnome.org>
31896         * gc.c: Call GC_unregister_disappearing_link() on all links when
31897         finalizing them, this is necessary to aviod a crash in boehm's
31898         finalize handler.
31900 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31902         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31903         nick@chemlab.org.
31905 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31907         * icall.c: implemented MonoType::Module.
31908         * reflection.c, reflection.h: mono_module_get_object () from
31909         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31911 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31913         * icall.c: ignore overridden methods in GetMethods ().
31914         Fix for FieldInfo::SetValue().
31915         * object.c: handle float/double in runtime invoke.
31917 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31919         * object.c: allow a constructor to be called again on an object.
31921 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31923         * class.h, class.c: move field layout code to it's own function and
31924         export it. Get an interface id earlier. Move fields in MonoClass
31925         so they are more cache friendly and align the bitfields.
31926         * loader.c: temporary handle get_param_names() for a runtime method.
31927         * reflection.c, reflection.h: more code to handle runtime creation of
31928         types.
31930 2002-09-09  Martin Baulig  <martin@gnome.org>
31932         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31933         signature with the pinvoke field being set for the actual call.
31935 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31937         * icall.c: removed some unused icalls. Start of map of glib charsets
31938         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31940 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31942         * debug-helpers.c: break infinite loop (found and fixed by
31943         Holger Arnold <harnold@gmx.de>).
31945 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31947         * icall.c: target may be null in create_delegate.
31949 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31951         * marshal.c: handle a boolean return type.
31953 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31955         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31957 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31959         * gc.c: fix weakreferences.
31961 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31963         * icall.c: added icall to get default codepage.
31965 2002-09-03  Dick Porter  <dick@ximian.com>
31967         * threads.h: 
31968         * threads.c: Use MonoThread instead of MonoObject where
31969         apropriate.
31971         Store running thread objects in a hash table, so that we have all
31972         the info to hand when waiting for them to finish
31973         (means we don't need OpenThread() any more, so mingw builds should
31974         be fully functional again.)
31976         * verify.c:
31977         * object.h: Added thread ID to MonoThread
31979 2002-09-03  Martin Baulig  <martin@gnome.org>
31981         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31983 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31985         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31987 2002-09-03  Martin Baulig  <martin@gnome.org>
31989         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31990         argument to store the end address of the disassembled instruction.
31992         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31993         here from debug-symfile.h.
31994         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31995         JIT into this struct.
31996         (MonoSymbolFile): Added `char *image_file' field.
31997         (MonoDebugGetMethodFunc): Removed.
31998         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31999         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32000         (mono_debug_find_method): New method.
32002         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32003         create a full symbol file.
32004         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32005         and static symbol files.
32006         (mono_debug_find_method): The symbol file keeps an internal method hash,
32007         call this to get a MonoDebugMethodInfo from a MonoMethod.
32009         * debug-symfile.[ch]: Removed.
32011 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32013         * image.c (do_mono_image_open): Remove linker version check.
32015 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32017         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32018         wrappers for instance methods.
32019         
32020 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32022         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32024 2002-08-28  Dick Porter  <dick@ximian.com>
32026         * Makefile.am: Export HOST_CC for w32 builds
32028 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32030         * file-io.c process.c: MonoString are null terminated, no
32031         need for mono_string_to_utf16() anymore.
32033 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32035         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32037 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32039         * icall.c, reflection.h: speedup System.MonoType.
32041 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32043         * reflection.c: allow null as the value of a string argument in
32044         custom attributes constructors.
32046 2002-08-27  Martin Baulig  <martin@gnome.org>
32048         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32049         `trampoline_address' field.
32051 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32053         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32054         check (fixes bug #29486) 
32056 2002-08-27  Martin Baulig  <martin@gnome.org>
32058         * debug-mono-symfile.c: Changed the file format in a way that allows us
32059         open it read-only and to use a specially malloced area for all the
32060         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32061         debugging IL code and there is no MCS generated symbol file for it.
32063 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32065         * object.c: added a define for a good string and array
32066         creation speedup (not enabled by default because we need to deal with
32067         the synch stuff).
32069 2002-08-26  Martin Baulig  <martin@gnome.org>
32071         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32072         function to create a dynamic symbol file.  This is used by the
32073         debugger to create a symbol file for IL code on-the-fly.
32075 2002-08-26  Martin Baulig  <martin@gnome.org>
32077         * loader.c (mono_lookup_pinvoke_call): Include the error message
32078         from g_module_error() in the error message.
32080 2002-08-24  Martin Baulig  <martin@gnome.org>
32082         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32083         function to update the symbol file.  The symbol file is mmap()ed
32084         writable, but private.  This allows us to install the symbol file
32085         together with the assembly.
32087 2002-08-24  Martin Baulig  <martin@gnome.org>
32089         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32090         but they can read the new symbol file format which mcs is now creating.
32092         * debug-symfile.c (mono_debug_find_source_location): Moved to
32093         debug-mono-symfile.c; this is now operating on the new symbol file.
32095 2002-08-23  Martin Baulig  <martin@gnome.org>
32097         * debug-helpers.c (mono_method_desc_from_method): New function to get
32098         a MonoMethodDesc from a MonoMethod.
32100 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32102         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32103         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32105 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32107         * string-icalls.[ch]: make helper methods static.
32109 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32111         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32112         types to it and to SetValueInternal.
32114         * object.c: Moved handle_enum label to its proper place. This was the
32115         f... bug! ;-)
32117         This time i compiled mcs and gtk-sharp and they both work.
32119 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32121         * icall.c: reverted partially my previous patch until 
32122         object.c:set_value handles enums correcly.
32124 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32126         * icall.c:
32127         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32128         (ves_icall_System_Environment_get_MachineName): removed warning when
32129         compiling under cygwin.
32131 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32133         * object.c: fixed field_get_value() for reference types.
32135 2002-08-22  Dick Porter  <dick@ximian.com>
32137         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32138         Don't free a buffer while it's still needed.  Patch from Jonathan
32139         Liger <Jonathan.liger@wanadoo.fr>
32141 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32143         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32144         internal call.
32146 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32148         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32149         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32151         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32152         we call unmanaged code which throws exceptions.
32154 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32156         * appdomain.h: added per-domain entry_assembly.
32157         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32158         arguments.
32159         * icall.c: Assembly::GetEntryAssembly icall.
32160         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32161         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32163 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32165         * appdomain.h, gc.c: added mono_domain_finalize ().
32167 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32169         * object.c:
32170         (mono_print_unhandled_exception): changed g_warning by g_printerr
32171         because g_log has a 1024 characters limit (yeah, i got a big stack
32172         trace). Don't print exception name, that should be in ToString 
32173         returned string.
32175 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32177         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32178         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32180 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32182         * object.c:
32183         (mono_print_unhandled_exception): after previous commit, i realized
32184         that MS calls ToString on the exception. I changed this function to
32185         do that. This way we get stack_trace for free.
32187 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32189         * object.c:
32190         (mono_print_unhandled_exception): invoke Message property instead of
32191         getting 'message' field from Exception. Don't allocate memory for
32192         'trace' and 'message' if not needed.
32194 2002-08-18  Dick Porter  <dick@ximian.com>
32196         * unicode.c: Fix asserts to match Encoder.cs checks
32198 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32200         * marshal.c: fix unaligned store issue and a few wrong
32201         opcode argument types.
32203 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32205         * icall.c: added GetUninitializedObjectInternal internal call.
32207 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32209         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32210         to the right domain.
32212 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32214         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32216         * class.c (class_compute_field_layout): set blittable to false for Strings
32218         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32220 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32222         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32223         first chunk of code to create types at runtime. Code to
32224         handle ReflectedType/DeclaringType. Make reflection handles
32225         domain specific.
32227 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32229         * class.c: set correct name in arrays.
32231 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32233         * appdomain.c (mono_domain_transfer_object): make it work with
32234         valuetypes. bug fixes.
32236 2002-08-12  Dick Porter  <dick@ximian.com>
32238         * object.h: Rename some parameters to avoid c++ keywords (Patch
32239         from Joseph Wenninger <kde@jowenn.at>)
32241 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32243         * icall.c: added icall to implement Assembly.GetFile*.
32245 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32247         * reflection.h, reflection.c: code to embed managed resources.
32249 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32251         * class.c: move all the type size stuff into
32252         class_compute_field_layout().
32254 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32256         * class.c: ensure enums have always the correct instance size.
32257         * unicode.c: remove wrong assert.
32259 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32261         * assembly.c: fix mem corruption issue.
32262         * image.h, image.c: added mono_image_get_resource () to access
32263         managed resources.
32264         * icall.c: implemented Assembly.EntryPoint property and some
32265         Managed Resources related internalcalls.
32268 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32270         * image.c, image.h: impemented mono_image_get_entry_point ().
32271         * appdomain.c: use mono_image_get_entry_point.
32273 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32275         * reflection.c: support the object type argument when loading
32276         custom attributes.
32278 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32280         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32281         String as return type.
32283 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32285         * reflection.c: fix encoding of named args for custom attrs to match
32286         the ms implementation. Read them back when instantiating custom
32287         attributes.
32289 2002-08-02  Radek Doulik  <rodo@ximian.com>
32291         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32292         by Dietmar as quick fix
32293         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32294         16 as stack size, used on more places as quick fix before Dietmar
32295         will fix it properly
32297 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32299         * object.h, object.c: added accessors for fields and properties.
32301 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32303         * class.c, class.h: made mono_class_get_field_from_name ()
32304         loop on parent types.
32305         Added mono_class_get_property_from_name ().
32307 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32309         * class.c, class.h: move the code to setup the type vtable in its own
32310         function so that it can be reused also for types created at runtime.
32311         Eliminate the "class" identifier from the header file.
32312         * reflection.c: setup the vtable for enums so that we can create
32313         objects for use in SetConstant ().
32315 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32317         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32318         instead of the delegate itself as this pointer (bug #28383)
32320 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32322         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32323         conversions.
32325 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32327         * loader.c: don't set the pinvoke bit on icalls.
32329 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32331         * debug-helpers.c (mono_method_full_name): only print a number to
32332         indicate wrapper type (so that the output is more readable in traces).
32334 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32336         * class.c (mono_class_init): include method override patch from Paolo
32338 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32340         * icall.c: fixed GetTypeCode().
32342 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32344         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32345         use real delegate invoke function to make it work with multicast
32346         delegates (fix bug# 28291).
32348 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32350         * object.c: load constant strings.
32352 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32354         * reflection.c: no magic numbers.
32355         * tabledefs.h: security action enum.
32357 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32359         * assembly.c: fix possible memory corruption.
32361 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32363         * reflection.h, reflection.c: added support for linking resources.
32364         * verify.c: check we have an updated corlib.
32366 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32368         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32369         string arrays.
32370         (mono_marshal_string_array): null terminate unmanaged string arrays.
32371         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32373 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32375         * icall.c: Type.GetType () can now return also types from the
32376         calling assembly.
32378 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32380         * loader.h, loader.c: stack walking support.
32381         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32382         GetCallingAssembly.
32384 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32386         * marshal.c: added optimisations for blittable types 
32388         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32389         (mono_class_setup_mono_type): set blittable attribute for single
32390         and double.
32392         * marshal.c (mono_string_utf8_to_builder): impl.
32393         (mono_string_builder_to_utf8): impl.
32394         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32396 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32398         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32399         (mono_marshal_get_managed_wrapper): impl. byref types
32401 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32403         * icall.c:
32404         (search_method): don't display debug message. 
32406 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32408         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32410 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32412         * appdomain.c: set the missing filename when throwing exception.
32414 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32416         * metadata.c (mono_type_size): code cleanup
32417         (mono_type_stack_size): removed some test code
32419 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32421         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32422         mono_get_exception_file_not_found now.
32424         * exception.c (mono_exception_from_name_two_strings): New version
32425         that will call a constructor with two string arguments. 
32426         (mono_get_exception_file_not_found): New helper routine, used to
32427         report file-not-found errors.
32429 2002-07-20  Dick Porter  <dick@ximian.com>
32431         * process.h:
32432         * process.c: Pass file handles to CreateProcess
32433         
32434         * icall.c:
32435         * file-io.h:
32436         * file-io.c: Implemented CreatePipe
32438 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32440         * metadata.c (mono_get_param_info): set alignment for value types
32442 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32444         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32445         Constify mono_domain_assembly_open().
32446         * loader.c: handle null namespace in icalls.
32448 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32450         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32451         (emit_str_to_ptr_conv): marshal object as structs
32453         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32455         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32457 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32459         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32460         (mono_marshal_get_native_wrapper): we an now return value types
32462 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32464         * verify.c: more checks implemented.
32466 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32468         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32469         (fix bug #27695)
32470         (mono_marshal_get_native_wrapper): allow byref arguments
32471         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32472         impl. PtrToStringXXX methods
32473         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32474         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32475         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32476         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32477         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32479 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32481         * reflection.c: fix buglet in parsing an assembly name.
32483 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32485         * marshal.c (emit_ptr_to_str_conv): first impl.
32487 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32489         * object.c, class.h: cache the vtable in the class as suggested by
32490         vargaz@freemail.hu (Zoltan Varga).
32492 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32494         * class.h, loader.c: added mono_field_from_token().
32495         * verify.c: first cut of type checking code.
32497 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32499         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32501 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32503         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32504         (fix bug #27782)
32505         (mono_marshal_get_remoting_invoke): impl.
32506         (mono_delegate_begin_invoke): impl.
32507         (mono_mb_emit_save_args): impl.
32508         (mono_delegate_end_invoke): impl.
32509         (mono_marshal_get_delegate_begin_invoke):
32510         (mono_marshal_get_delegate_end_invoke):
32511         (mono_marshal_get_delegate_invoke): generate a special name for
32512         those methods (including the signature) and associate them whith
32513         the delegate class. 
32515 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32517         * reflection.[ch]: 
32518         (mono_reflection_type_from_name): now it has a MonoImage parameter
32519         which is used as the default image to search the type in. If the image
32520         is NULL or getting the type from it fails, it defaults to corlib.
32522         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32523         new parameter.
32525 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32527         * reflection.c: update the parameter table index.
32529 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32531         * domain.c: don't include the mark byte in the string hash.
32533 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32535         * icall.cs: icall for Type.GetTypeCode ().
32536         * verify: a couple of fixes and disabled local initialization checks.
32538 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32540         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32542         * debug-helpers.c (mono_method_full_name): print the type of the
32543         runtime wrapper
32545         * metadata.c (mono_signature_hash): a hash function for signatures
32546         (mono_signature_hash): better hash algorithm
32548         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32550         * debug-helpers.c (mono_method_full_name): this can now generate
32551         method names with signatures
32553         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32554         method dont have this pointers.
32556 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32558         * reflection.c: fixup typebuilder tokens.
32559         * image.c: fix buglet.
32560         * marshal.h: remove whitespace.
32561         * metadata.h, metadata.c: reinstate code that was removed.
32562         * verify.c: handle catch directives and fix another couple of bugs.
32564 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32566         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32567         (mono_marshal_get_native_wrapper): make it comp. with the old code
32568         (mono_marshal_get_native_wrapper): support boolean
32569         (mono_marshal_get_managed_wrapper): support more types
32571 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32573         * class.c (class_compute_field_layout): compute class->blittable attribute.
32575 2002-07-09  Dick Porter  <dick@ximian.com>
32577         * threads.c: Make the thread cleaning up cope with threads that
32578         call ExitThread()
32580 2002-07-08  Radek Doulik  <rodo@ximian.com>
32582         * reflection.c (method_encode_code): use non-translated values to
32583         compute finally_start, this fixes exception handling on ppc, yay!
32585         * decimal.h (struct signscale): fix endianess
32587 2002-07-07  Radek Doulik  <rodo@ximian.com>
32589         * reflection.c: swap box_val and not val
32591 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32593         * reflection.c, reflection.h: handle full assembly info in type name.
32594         Handle Type arguments when loading custom attributes.
32595         * icall.c: updated to use new mono_reflection_type_from_name () method.
32597 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32599         * loader.c:
32600         (method_from_memberref): also print assembly name when method not found.
32602 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32604         * icall.c:
32605         (ves_icall_TypeGetProperties): fixed bug #27473. 
32607 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32609         * reflection.c: display image name and token when cannot find the
32610         .ctor for an attribute.
32612 2002-07-05  Martin Baulig  <martin@gnome.org>
32614         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32616 2002-07-04  Dick Porter  <dick@ximian.com>
32618         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32619         compile on mingw.  This will cause mingw builds to not wait for
32620         subthreads to terminate after the main thread does.  I've lodged a
32621         bug with the mingw developers for them to wrap OpenThread().
32623 2002-07-03  Dick Porter  <dick@ximian.com>
32625         * threads.c: Store thread IDs instead of handles, because
32626         GetCurrentThread() returns a pseudohandle and therefore stores
32627         useless values.  mono_thread_cleanup() continues checking the
32628         array of threads until it is empty, to cope with subthreads
32629         spawning new threads after the main thread has finished.
32631         * profiler.h:
32632         * profiler.c:
32633         * profiler-private.h: Pass the thread ID to thread profiler
32634         functions, instead of a handle
32636 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32638         * verify.c: fixes to make it more usable.
32639         * pedump.c: added --verify code to verify IL code in an assembly.
32641 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32643         * reflection.c: turn errors into warnings to allow compiling corlib.
32645 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32647         * reflection.c: add special cases to compile corlib.
32649 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32651         * reflection.c: handle properties with only a set method.
32653 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32655         * opcodes.h: add enum with opcodes in opval order.
32657 2002-07-01  Dick Porter  <dick@ximian.com>
32658         
32659         * object.h:
32660         * object.c (mono_runtime_run_main): Removed unneeded argument
32662 2002-06-28  Martin Baulig  <martin@gnome.org>
32664         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32666 2002-06-27  Dick Porter  <dick@ximian.com>
32668         * threads.c: Store the handle in both the parent thread and in the
32669         subthread, to minimise the time between starting a new thread and
32670         storing its ID.
32672 2002-06-26  Dick Porter  <dick@ximian.com>
32674         * appdomain.c (mono_runtime_cleanup): Close the socket library
32675         after all the threads have finished, not before
32677 2002-06-26  Martin Baulig  <martin@gnome.org>
32679         * debug-symfile.c (mono_debug_find_source_location): Added
32680         `guint32 *line_number' argument.  If it's not NULL, store the line number
32681         there and return the file name without the line number.
32683 2002-06-25  Dick Porter  <dick@ximian.com>
32685         * icall.c:
32686         * process.h:
32687         * process.c: Process forking and other support functions
32689 2002-06-25  Dick Porter  <dick@ximian.com>
32691         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32692         things dont happen when the image is closed.
32693         (mono_image_lookup_resource): Walk the resource section looking
32694         for a particular entry
32696         * cil-coff.h: PE resource section decoding
32698 2002-06-25  Dick Porter  <dick@ximian.com>
32699         
32700         * assembly.h:
32701         * assembly.c: 
32702         (mono_assembly_foreach): Accessor functions to walk the list of
32703         loaded assemblies
32704         (mono_assembly_set_main):
32705         (mono_assembly_get_main): Process methods need to know which
32706         assembly is the "main" one
32708         * object.c (mono_runtime_run_main): Record the main assembly
32710         * debug-helpers.c: Fix typo
32712 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32714         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32715         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32717 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32719         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32721 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32723         * image.c (do_mono_image_open): Initialize reference count,
32724         otherwise we leak the MonoImage.
32726 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32728         * reflection.c: small tweak to handle self-hosting.
32730 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32732         * reflection.c: fix type name parse code.
32734 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32736         * reflection.c: break out of the loop.
32737         * image.c: special case corlib.
32739 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32741         * reflection.c: add all the custom attrs at the end to ensure the
32742         ctors have been properly initialized when the attributes are defined
32743         in the current assembly.
32745 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32747         * reflection.c: handle correctly multiple-nested types.
32749 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32751         * row-indexes.h: fix typos.
32752         * reflection.c: adjust for typos and fix method_def_or_ref
32753         encoding in MethodImpl table.
32755 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32757         * reflection.c: fix entry point patching (thanks Serge!).
32759 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32761         * verify.c: add check for System.Exception
32763 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32765         * image.c, class.c: minifix for code just c&p'ed.
32766         * reflection.c: warning fix.
32767         * object.h, loader.h, domain.c: load also StringBuilder.
32769 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32771         * marshal.h, marshal.c: some support code to handle complex marshaling.
32773 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32775         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32776         Better signatures with vtable error dump.
32778 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32780         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32782 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32784         * icall.c (ves_icall_Type_GetField): impl.
32786 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32788         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32789         to retrieve a marshal description blob for a field or param.
32791 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32793         * reflection.h, reflection.c: change order of nested type emission
32794         to avoid table corruption. The NestedTypes table is sorted.
32795         * icall.c: change order of GetConstructor results to workaround mcs bug.
32797 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32799         * reflection.h, reflection.c: handle field and param marshal
32800         information.
32802 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32804         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32806 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32808         * reflection.c: fix call convention.
32810 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32812         * reflection.h, reflection.c: mono_image_get_memberref_token()
32813         takes a type instead of a class, now. Added
32814         mono_image_get_array_token() to create tokens for the special
32815         multi-dim array methods.
32817 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32819         * assembly.c: handle modules (no assembly table). Split
32820         loading references in its own function.
32821         * class.c: handle moduleref resolution scope.
32822         * image.c, image.h: cache module name in image.
32824 2002-06-07  Martin Baulig  <martin@gnome.org>
32826         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32827         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32829 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32831         * icall.c: more signature fixes that used uint instead of int.
32833 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32835         * reflection.c: fixed signature of field refs.
32837 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32839         * class.c, reflection.c: handle typerefs of nested types
32840         (both on read and when writing files).
32842 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32844         * icall.c: fix method signatures that tried to workaround the previous
32845         typo, d'oh!
32847 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32849         * debug-helpers.c: fix typo.
32851 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32853         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32854         rewrote the PE/COFF writing code (our programs are understood by the
32855         ms runtime, now).
32857 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32859         * gc.c, gc.h, icall.c: weakreference support.
32861 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32863         * Makefile.am, mono-config.c: use $(sysconfdir).
32865 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32867         * icall.c: changed default precision of Double.ToString() to 15.
32868         Fixed memory leak. Unified with Single.ToString.
32870 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32872         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32874 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32876         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32877         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32878         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32879         and myself.
32881 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32883         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32885 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32887         * reflection.c, socket-io.c: more compilation fixes.
32889 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32891         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32892         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32893         unicode.c: warning and compiler compatibility fixes.
32895 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32897         * class.h, metadata.c: fixed warnings/compilation errors.
32899 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32901         * Makefile.am, mono-config.c, mono-config.h: configuration file
32902         support routines.
32903         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32904         config file. Export methods to insert and lookup mappings.
32906 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32908         * reflection.c: handle types and boxed objects in custom attr
32909         constructors.
32911 2002-05-30  Martin Baulig  <martin@gnome.org>
32913         * debug-symfile.c
32914         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32916 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32918         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32919         to lookup the implmap row for a P/Invoke method.
32920         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32921         P/Invoke method from the runtime on an as needed basis.
32923 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32925         * metadata.c (mono_metadata_parse_signature): impl.
32927 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32929         * class.c: handle .pack directive.
32931 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32933         * object.c: initialize static fields with RVA data.
32935 2002-05-25  Martin Baulig  <martin@gnome.org>
32937         * debug-symfile.c
32938         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32940 2002-05-24  Martin Baulig  <martin@gnome.org>
32942         * debug-symfile.c
32943         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32944         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32945         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32947 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32949         * object.c: special case string ctros in invoke.
32950         * gc.c: silly whitespace changes.
32952 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32954         * threadpool.[ch]: impl. a threadpool that can
32955         be used by mint and mono.
32957 2002-05-22  Martin Baulig  <martin@gnome.org>
32959         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32960         The first argument is now a `MonoReflectionModuleBuilder *', the return
32961         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32962         `methods' field to get the method builder.  The `token' argument is the
32963         unfixed token.
32965         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32966         invalid characters instead of g_assert_not_reached()ing.  This seems
32967         to be the behaviour of mscorlib.
32969 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32971         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32972         Hestilow to fix bug #25104
32974 2002-05-21  Martin Baulig  <martin@gnome.org>
32976         * debug-symfile.c (mono_debug_find_source_location): New function.
32977         Looks up an IL offset in the line number table and returns the source
32978         location as a string.
32980 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32982         * icall.c:
32983         (mono_double_ToStringImpl): changed %f by %g until we have something
32984         better.
32986 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32988         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32989         parameters first in C#.
32991 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32993         * icall.c, reflection.h: added icall to get info about an event.
32995 2002-05-20  Radek Doulik  <rodo@ximian.com>
32997         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32998         endian
32999         (mono_value_box): don't use memcpy for small sizes on
33000         architectures with unaligned access
33002 2002-05-20  Martin Baulig  <martin@gnome.org>
33004         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33005         if `tb->parent == NULL'.
33006         (mono_reflection_create_internal_class): New function.  This is
33007         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33008         for enum types.
33010         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33011         New interncall.
33013 2002-05-19  Martin Baulig  <martin@gnome.org>
33015         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33016         argument to get the length, don't default to the array length.
33018 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33020         * assembly.c (mono_assembly_setrootdir): New function used to
33021         override the MONO_ASSEMBLIES directory.
33023 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33025         * icall.c: ValueType_GetHashCode() initialize local var.
33027 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33029         * reflection.c: sort custom attributes table.
33031 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33033         * reflection.c: support named args in custom attributes (write support).
33035 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33037         * reflection.c: fix finally position calculation.
33039 2002-05-15  Radek Doulik  <rodo@ximian.com>
33041         * reflection.c: fixed endianess at many places
33043         * icall.c (ves_icall_InitializeArray): comment out debug msg
33045 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33047         * object.c (mono_unhandled_exception): new function to handle
33048         unhandled exceptions.
33049         (mono_unhandled_exception): call the UnhandledException event.
33050         (mono_runtime_delegate_invoke): impl.
33052 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33054         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33055         returns the RVA, not the direct pointer to the data. Handle the case
33056         when the class size is fixed.
33058 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33060         * reflection.c: fix some endianess issues.
33062 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33064         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33066         * threads.c (mono_thread_init): added a callback which is invoked
33067         at thread start.
33069 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33070         
33071         * icall.c: make GetHashCode return non-negative values.
33073 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33075         * object.c, icall.c, gc.c: revert to address-based hashcode.
33077 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33079         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33081 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33083         * icall.c, class.c: special case <Module>.
33085 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33087         * icall.c: fix bug in GetNow().
33089 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33091         * object.c (mono_runtime_class_init): make sure that we call all
33092         static class constructors.
33094 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33096         * reflection.c: sort methodsemantics table.
33098 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33100         * reflection.h, reflection.c: honour init locals setting.
33102 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33104         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33106 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33108         * reflection.c: support ContructorBuilders in attribute blob creation.
33110 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33112         * reflection.c: some changes to build a binary that can be run
33113         directly in windows.
33115 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33117         * loader.c: print a big message when an icall can't be found.
33119 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33121         * string-icalls.c: fix bug 24248.
33123 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33125         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33126         icall.c, reflection.h: separate assembly loading by pathname and by
33127         assembly name. Use the MONO_PATH env var to search for assemblies.
33129 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33131         * assembly.c, image.h: add some support for assemblies
33132         with multiple modules.
33133         * class.c, class.h: export mono_class_from_typeref().
33134         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33135         instead.
33137 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33139         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33140         documentation says (the ECMA one is correct).
33142 2002-05-02  Dick Porter  <dick@ximian.com>
33144         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33145         Don't name the synchronisation mutex.
33147 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33149         * rand.c
33150         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33151         Make the prototypes match.
33152         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33153         Same.
33155         * icall.c
33156         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33157         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33158         all systems have tm.tm_zone, so use strftime() with %Z to print
33159         the timezone abreviation into a temp string.
33161         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33162         rather than mono_array_addr() on a MonoString on Big Endian
33163         machines.
33165 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33167         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33168         fix bug 24041
33170 2002-04-30  Dick Porter  <dick@ximian.com>
33172         * socket-io.c: Cope with SOCKET being an integer rather than a
33173         pointer now.
33175         * threads.c: Added Thread_free_internal, to deal with thread
33176         handle cleanup.  Moved calls to handle_store() and handle_remove()
33177         to start_wrapper(), so each can only be called once.  Allocate
33178         synchronisation blocks with GC_malloc(), and use GC finalisation
33179         to close the handles.
33181         * icall.c: added System.Threading.Thread::Thread_free_internal
33183 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33185         * icall.c: support Environment.Exit, CommandLineArgs().
33187 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33189         * object.c, object.h: added mono_runtime_run_main () and
33190         mono_runtime_get_main_args () for use in System.Environment.
33192 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33194         * gc.c: fix thinko, enable actual finalization since the jit is now
33195         fixed.
33197 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33199         * gc.c, object.c: take into account that an object may be offset wrt the address
33200         returned by GC_malloc().
33202 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33204         * image.c: handle files without entries in the assembly table (modules).
33206 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33208         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33209         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33210         allowed to be null when it's System.Object class setup.
33212 2002-04-27  Martin Baulig  <martin@gnome.org>
33214         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33215         if `tb->parent == NULL' rather than crashing.
33217 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33219         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33220         calling acos() where asin() should have been called.
33222 2002-04-26  Martin Baulig  <martin@gnome.org>
33224         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33225         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33226         there's a subdirectory called `System', but we don't want to read that
33227         subdirectory as an assembly.
33229 2002-04-25  Martin Baulig  <martin@gnome.org>
33231         * debug-symfile.c: Reflect latest MonoString changes.
33233 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33235         * rand.c, rand.h: instance method icalls need to have an explicit
33236         this pointer as first argument in the C implementation.
33238 2002-04-25  Nick Drochak <ndrochak@gol.com>
33240         * icall.c: Fix typo in map for GetNonZeroBytes
33242 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33244         * string-icalls.c : String does now passes unit tests without any 
33245         errors, the following changes has been made:
33246         
33247         Implemented replace methods.
33248         Renaming of methods to (try) follow the standard.
33249         Fixed compare ordinal
33250         Made all memory allocated directly to function instead of via icall function.
33251         Small performance fix in is_in_array function
33252                         
33253  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33255         c (mono_string_Internal_ctor_charp_int_int):
33256         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33257         sindex < 0, throw ArgumentOutOfRangeException instead of
33258         ArgumentNullException.
33260         Added new check for length == 0, however
33261         I need to make it return String.Empty from the C code.
33262         
33263         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33264         that calculate the length for us here.
33265         
33266         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33267         mono_string_new_utf16 with mono_string_new, since value is utf8.
33269 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33271         * object.c: register the object for finalization if needed.
33272         Allocate one more char in the string for the terminating 0 char.
33274 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33276         * class.c, class.h, image.c: check if a type implemenst a destructor.
33277         Use the proper key for array class lookups.
33278         * icall.c: register the icalls in the System.GC class.
33279         * gc.c, gc.h: GC-related functions and icalls.
33281 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33283         * icall.c:
33284         * socket-io.c:
33285         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33286         changed a couple of free () by g_free ().
33288         * decimal.c: one-liner in the comments for decimal2string ().
33290 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33292         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33294 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33296         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33297         * object.c (mono_runtime_invoke_array) : handle null in params
33299 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33301         * string-icalls.c: fixed bug in split (one off bug)
33303 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33305         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33306         * icalls.c: added String::Equals as internal method
33308 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33310         * threads.c: fixed bug in the double interlocked functions
33312 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33314         * threads.c: implemented all of the new interlocked icalls.
33315         * string-icalls.c: fix a bug in insert.
33316         * icalls.c: added the icalls for interlocked, removed old string functions.
33317         
33318 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33320         * loader.c: fix off-by-one error when reading argument names.
33322 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33324         * profiler.c: win32 counter implementation (untested).
33325         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33326         (the latter needs testing and more complete impl. from win32 folks).
33328 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33330         * object.c: mono_array_new_full workaround mono_array_class_get
33331         problem.
33333 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33335         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33336         * object.h (mono_string_chars): Changed casting type.
33338 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33340         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33341                            method signatures to use gunichar2 instead of gint16.
33343 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33345         * object.h, object.c: domain-specific versions of mono_object_new and
33346         mono_array_new.
33348 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33350         * object.c: changed String layout
33352         * string-icalls.c (mono_string_Internal_ctor_chara): added
33353         internal string constructors.
33355 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33357         * threads.c: pass 'this' to the thread start routine.
33359 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33361         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33362         InternalCompareStr don't call twice mono_string_cmp_char for the last
33363         character. Improved performance in mono_string_cmp_char.
33365 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33367         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33368         code into its own library: libmonoruntime.
33370 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33372         * object.h, object.c: changed array format so that szarrays do not
33373         require a bounds structure.
33374         * icall.c, appdomain.c: support for new szarray format.
33376 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33378         * metadata.c: compare also the retuns type when comparing signatures:
33379         we didn't do this as an optimization since really overloaded methods
33380         must differ also in the arguments, but this doesn't work with
33381         low-level IL code (or when using explicit conversion operators: see
33382         bug#23498 for an example).
33384 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33386         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33388 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33390         * icall.c: make MonoType::GetElementType its own icall.
33392 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33394         * icall.c: remove MonoMethod_get_Name().
33395         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33396         object.
33398 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33400         * string-icalls.c: optimized a few methods.
33402 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33404         * icall.c: added all new string internal calls
33405         * string-icalls.c: added, new string internal call implementation.
33406         * object.c: added mono_string_new_size for allocating a string a size
33408 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33410         * object.c (mono_object_isinst): use the same code as in the
33411         optimized x86 version.
33413 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33415         * profiler.c: TSC-based timer code (faster and more accurate).
33416         Not hooked up in configure, yet (set USE_X86TSC to 1).
33418 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33420         * profiler.c, profiler.h: track time spent compiling methods.
33421         * threads.c: track thread creation/destruction.
33423 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33425         * profiler.c, profiler.h, profiler-private.h: profiling interface
33426         and sample implementation. Moved here so that it can be used also by
33427         the jit.
33429 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33431         * reflection.c, reflection.h: keep types and other handles separate in
33432         the hash tables for referred tokens. Add guid for modules.
33434 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33436         * assembly.c: fix bugs found with valgrind.
33437         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33439 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33441         * threads: added icall support for getting current domain for
33442                    the thread.
33444 2002-04-13  Martin Baulig  <martin@gnome.org>
33446         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33447         (MonoDebugVarInfo): Added `index' field for register based addresses.
33448         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33449         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33450         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33451         `MonoDebugVarInfo *this_var'.
33453         * debug-symfile.c (relocate_variable): New static function to write
33454         a location description for a local variable or method parameter.
33456 2002-04-12  Martin Baulig  <martin@gnome.org>
33458         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33459         stack offset and begin/end scope address of a local variable.
33460         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33461         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33462         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33464         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33465         Added new relocation types for start/end scope of a local variable.
33467 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33469         * object.h: add mono_object_domain() macro.
33470         * reflection.c: handle typespecs.
33471         * icall.c: MonoMethod::get_Name() implementation.
33473 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33475         * icall.c: String::GetHashCode() icall implementation.
33477 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33479         * icall.c: String::IndexOfAny icall.
33480         * object.c, object.h: make array->max_length more useful.
33481         Intrduced mono_object_class() and mono_string_length() macros.
33483 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33485         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33486         instead of g_unichar_isdigit.
33488 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33490         * icall.c: Implement a simple Double.ToString().
33492 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33494         * appdomain.h: only io-layer.h is supposed to be included.
33495         * icall.c: explicitly import environ. Fix warning.
33497 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33499         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33500                 return true even if it's not Daylight Savings time.
33501                 Only return false for the case where the function isn't
33502                 implemented for a plaform (read Windows).
33504 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33506         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33507         data with a mutex.
33509 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33511         * mempool.c (mono_mempool_alloc): only use g_malloc when
33512         absolutely necessary.
33514 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33516         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33518         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33519         (mono_class_proxy_vtable): use domain mempool
33521 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33523         * appdomain.h, appdomain.c: split initialization that requires the
33524         execution engine support into mono_runtime_init().
33526 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33528         * class.c (mono_class_init): don't include vtable inside MonoClass
33529         to save some memory, gather some statistics.
33530         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33532 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33534         * icall.c: internalcall implementation for ValueType.Equals().
33536 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33538         * object.c (mono_message_init): moved 
33539         (mono_runtime_exec_main): new arch. independent impl.
33540         (mono_runtime_invoke_array): new method - like
33541         mono_runtime_invoke, but you can pass an array of objects.
33542         (mono_remoting_invoke): new arch. independent impl.
33543         (mono_message_invoke): new arch. independent impl.
33544         (mono_runtime_class_init): new arch. independent impl.
33545         (mono_runtime_object_init): new arch. independent impl.
33547 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33549         * metadata.c, object.c, reflection.c: documented the exported
33550         functions.
33552 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33554         * icall.c: simpler code to pass the assembly builder data to corlib.
33555         Implement GetNestedTypes() internalcall.
33557 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33559         * class.c: warn if a type can't be loaded.
33561 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33563         * image.h: typedef MonoImageOpenStatus
33564         * types.h: removed unused file
33565         
33566 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33568         * icall.c: Enum_ToObject accepts enum value arguments.
33570 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33572         * class.c: move initialization of properties, events and nested
33573         classes, so that they happen for interfaces, too.
33575 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33577         * icall.c: cleanup some ugly casts in Array_SetValue*.
33579 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33581         * icall.c: the values array fro enums is of the correct type, now.
33582         Implement (correctly) getFullName instead of assQualifiedName for
33583         MonoType.
33584         * reflection.h, reflection.c: added mono_type_get_name ().
33586 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33588         * assembly.c, image.h: for each MonoImage, record from wich assembly
33589         it was loaded.
33590         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33591         Make Type.Assembly work.
33593 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33595         * debug-symfile.h: use char* instead of gpointer to avoid
33596         unnecessary casts.
33598         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33600         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33601         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33603 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33605         * icall.c (mono_message_init): impl. (code cleanup)
33606         (ves_icall_InternalExecute): impl. FieldGetter
33608         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33609         defined we call all (non-static)methods through the vtable. 
33611 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33613         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33614         finalizer even though the memory is still referenced (and the chunk of
33615         memory is not freed).
33617 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33619         * assembly.c: fix brokeness.
33621 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33623         * class.c: kill some warnings. Check explicit interface method
33624         implementation also without considering the namespace.
33625         Load also literal strings in static class data.
33627 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33629         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33630         (default_assembly_name_resolver): Make the resolver take the
33631         "base" directory where the assembly was originally defined, so we
33632         can load DLLs that are in the same directory as the assembly that
33633         is being referenced.
33635 2002-03-28  Dick Porter  <dick@ximian.com>
33637         * file-io.h: 
33638         * file-io.c:
33639         * socket-io.c: 
33640         * unicode.h: 
33641         * unicode.c: Warning cleanups
33643 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33645         * object.h, reflection.h: use the correct type instead of MonoObject.
33647 2002-03-28  Martin Baulig  <martin@gnome.org>
33649         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33650         (mono_debug_update_symbol_file): Initialize classes if necessary.
33652 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33654         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33655         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33657 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33659         * assembly.h: fix function prototype.
33660         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33661         * mono-endian.h: use const cast.
33663 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33665         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33667 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33669         * loader.c: don't assert when a typeref can't be loaded, give
33670         a chance to the runtime to trow an exception instead.
33671         * loader.h: fix warning.
33673 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33675         * class.c (mono_class_proxy_vtable): added proxy support
33677 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33679         * icall.c: removed last of PAL calls, added System.Environment
33680         * file-io.h, file-io.c: MonoIO implementation
33681         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33683 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33685         * appdomain.c: do not use the byte marker in ldstr table lookup.
33686         * debug-helpers.c: allow two ':' to separate class and method name.
33687         * object.c: allocate arrays bounds with the GC, too.
33688         * verify: add a few more checks.
33690 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33692         * reflection.c: output also literal strings. Allocate parameter data
33693         with GC_malloc() (thanks, Martin, for catching this!).
33695 2002-03-26  Martin Baulig  <martin@gnome.org>
33697         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33698         include the `this' offset in the `param_offsets'.
33700 2002-03-25  Martin Baulig  <martin@gnome.org>
33702         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33703         mono_debug_get_class() function to get the classes. Added new
33704         relocation types for arrays and strings.
33705         (mono_debug_get_class): New static function to search in all
33706         referenced assemblies for a metadata token.
33708         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33710 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33712         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33713         hold gc-allocated objects. Make the string heap a stream like the
33714         others. Removed duplicated code when writing stream info.
33715         Added asserts to catch possible buffer overflows. Set the sorted map
33716         for tables that need sorting. Added some documentation.
33718 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33720         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33721         for interned strings and vtables.
33723 2002-03-24  Martin Baulig  <martin@gnome.org>
33725         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33726         it in the array since it was created with g_slist_prepend().
33728 2002-03-24  Martin Baulig  <martin@gnome.org>
33730         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33731         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33732         (mono_debug_method_from_token): Renamed to
33733         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33734         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33736         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33737         relocation types.
33739         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33741 2002-03-24  Martin Baulig  <martin@gnome.org>
33743         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33744         (mono_debug_method_from_token): New func.
33746         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33747         New interncall, calls mono_debug_local_type_from_signature().
33748         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33749         calls mono_debug_method_from_token().
33751 2002-03-23  Martin Baulig  <martin@gnome.org>
33753         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33754         specifies the number of bytes to be converted, not the array size.
33755         Return the number of chars, not the number of bytes.
33756         (ves_icall_iconv_get_chars): The `byteCount' argument
33757         specifies the number of bytes to be converted, not the array size.
33759 2002-03-23  Martin Baulig  <martin@gnome.org>
33761         * reflection.h (MonoReflectionSigHelper): New type.
33763         * reflection.c (mono_reflection_sighelper_get_signature_local),
33764         (mono_reflection_sighelper_get_signature_local): New functions.
33766         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33767         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33768         interncalls.
33770 2002-03-23  Martin Baulig  <martin@gnome.org>
33772         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33773         is_writeable is set.
33774         (mono_raw_buffer_update): New function to write the modified map
33775         back to disk.
33777         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33779         * debug-symfile.c (mono_debug_update_symbol_file): Call
33780         mono_raw_buffer_update() when done writing.
33782 2002-03-23  Martin Baulig  <martin@gnome.org>
33784         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33786         * debug-symfile.c: Added support for arguments and local variables.
33788 2002-03-23  Dick Porter  <dick@ximian.com>
33790         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33791         protected by ifdefs, hence breaking the w32 build.
33793 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33795         * object.c: implement is_interned() the right way.
33797 2002-03-21  Martin Baulig  <martin@gnome.org>
33799         * debug-symfile.[ch]: New files to handle debugging information
33800         files. There's also support to dynamically update these symbol
33801         files to include machine dependent information.
33803 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33805         * threads.c (mono_thread_create): new function to create thread
33806         from C
33808 2002-03-20  Martin Baulig  <martin@gnome.org>
33810         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33811         method is a constructor.
33812         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33813         points to ves_icall_InternalInvoke().
33815 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33817         * file-io.c: Flush shouldn't throw exceptions.
33819 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33821         * file-io.c: FileStream flush support; FileSetLength now
33822         restores file pointer.
33824 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33826         * class.c: set image for pointer classes.
33828 2002/03/19  Nick Drochak <ndrochak@gol.com>
33830         * sysmath.c: Forgot one.
33832 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33834         * sysmath.c: Avoid redefining existing names.
33836 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33838         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33839         handled by runtime as icall rather than dllimport from libm.so
33840         * file-io.c, file-io.h: fixed handle argument type.
33842 2002-03-18  Dick Porter  <dick@ximian.com>
33844         * reflection.c (mono_image_get_type_info): rename interface to
33845         iface, because of "#define interface struct" on windows.
33847 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33849         * class.c, class.h: rename and export mono_ptr_class_get().
33850         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33851         * reflection.c, reflection.h, icall.c: better/saner type name
33852         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33853         method signatures.
33855 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33857         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33859         * icall.c (ves_icall_InternalInvoke): impl.
33861 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33863         * reflection.c: output the interface map table, too.
33865 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33867         * class.c (class_compute_field_layout): separate computation of 
33868         static field layout
33870 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33872         * icall.c: added System.Buffer support.
33873         * file-io.c: moved file icalls from PAL to FileStream.
33875 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33877         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33879 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33881         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33883 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33885         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33887 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33889         * debug-helpers.{c,h}: moved here from monograph some useful functions
33890         to locate a method by name/signature in a class or image. Included
33891         also a small and flexible IL disassembler.
33893 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33895         * reflection.c: fixup tokens in methods with small header size, too.
33897 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33899         * object.c (mono_string_to_utf8): remove assert(!error), instead
33900         print a warning. 
33902 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33904         * icall.c: update to the new mono_Array_class_get interface.
33906 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33908         * appdomain.c, object.c: Boehm-GC enable.
33909         * icall.c: make get_data_chunk() support split data requests.
33910         Ensure a class is initialized in more cases. Return only the first
33911         property found in GetProperties() or the compiler gets confused. 
33912         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33913         * reflection.h, reflection.c: add fixup mechanism for field and method
33914         tokens. Initialize assembly->typeref in a single place. Output
33915         properties after events. Support custom attributes for events, too.
33916         Typo fix for paramter custom attrs.
33918 2002-03-07  Martin Baulig  <martin@gnome.org>
33920         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33922 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33924         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33926 2002-03-06  Martin Baulig  <martin@gnome.org>
33928         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33929         non-zero lower bounds. See testcases #F10-#F13.
33931 2002-03-05  Martin Baulig  <martin@gnome.org>
33933         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33935         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33936         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33937         here.
33938         (ves_icall_System_Array_SetValue): Likewise.
33939         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33940         as argument and does the actual work. This function is used when copying a
33941         multi-dimensional array.
33942         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33943         now do all the widening conversions of value types.
33944         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33946 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33948         * class.c: remove some magic numbers and use the smbolic names,
33949         instead. Added init_events() to load event info at class init time.
33950         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33951         and mono_metadata_methods_from_event().
33952         * reflection.h, reflection.c: added support for writing out the evnets
33953         related information.
33955 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33957         * reflection.h, icall.c: use a different method (GetInterfaces)
33958         to gather interface info and add isbyref, isprimitive and
33959         ispointer to the ves_icall_get_type_info() return value.
33961 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33963         * class.h: stared adding support for events.
33964         * icall.c: split find_members implementation. Added debug icall to get
33965         the address of an object.
33966         * reflection.c: handle TypeBuilders in mono_type_get_object().
33968 2002-03-01  Martin Baulig  <martin@gnome.org>
33970         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33971         ArgumentOutOfRangeException(), not an ArgumentException().
33972         (ves_icall_System_Array_GetLowerBound): Likewise.
33973         (ves_icall_System_Array_GetValue): Improved argument checking.
33974         (ves_icall_System_Array_SetValue): Improved argument checking.
33976 2002-03-01  Martin Baulig  <martin@gnome.org>
33978         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33979         called with invalid arguments rather than just dying with g_assert().
33980         (ves_icall_System_Array_SetValue): Likewise.
33981         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33982         raise a NotImplementedException instead.
33983         (ves_icall_System_Array_GetLength): Added argument checking.
33984         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33986 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33988         * object.h (mono_assert): new macros mono_assert and
33989         mono_assert_not_reached
33991 2002-02-28  Martin Baulig  <martin@gnome.org>
33993         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33994         and "System::String::IsInterned" to "System::String::_IsInterned".
33996 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33998         * icall.c: remove hacks for typebuilder. Added icall to create a
33999         modified type from a tybebuilder.
34000         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34001         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34002         to create a backing MonoClass for a TypeBuilder.
34004 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34006         * class.c, class.h: more refactoring of class init.
34007         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34009 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34011         * marshal.c, marshal.h: start of marshaling interface.
34013 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34015         * icall.c: fix order in assembly qualified name icall.
34017 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34019         * class.c: do not free str, since we store it in the hash table.
34020         * reflection.h: add label field to MonoILExceptionInfo.
34021         * reflection.c: handle references to more than one assembly. Handle
34022         case when there isn't a module created in the assembly.
34024 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34026         * class.c: Fix typo. Start refactoring of class init code.
34028 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34030         * appdomain.c: exit with 1 on error.
34031         * class.c: we already have the name in MonoClassField.
34032         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34033         MonoStreamHeader instead of an offset of image->raw_metadata.
34035 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34037         * appdomain.c (mono_init): Be even more descriptive about the error.
34039 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34041         * appdomain.c: give the user an informative message when corlib can't
34042         be loaded.
34044 2002-02-26  Martin Baulig  <martin@gnome.org>
34046         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34047         New icall to get the time zone data.
34049 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34051         * reflection.c: set virtual and raw size of section correctly.
34052         * threads.c: transfer domain information to newly created threads.
34054 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34056         * class.c: when instancing a class in a domain, load the default
34057         vaules for static fields from the constant table. Fix System.Enum to
34058         not be an enum.
34059         * icall.c: implement Object::GetType() internalcall. Implemented
34060         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34061         Fixed checking of binding flags in find_members().
34062         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34063         * reflection.c: handle enumerations when writing to the constant
34064         table. Use a different object cache for types.
34067 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34069         * object.c (mono_object_isinst): fix for arrays
34071         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34073 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34075         * object.c: don't use mprotect ()  and fix intern pool hash table
34076         lookup for big endian systems.
34078 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34080         * icall.c: change type_is_subtype_of () signature.
34082 2002-02-21  Mark Crichton  <crichton@gimp.org>
34084         * rand.c, rand.h: Added random number generator for
34085         System.Security.Cryptography classes.
34087         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34089         * icall.c: Added System.Security.Cryptography calls.
34091 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34093         * class.c, icall.c, metadata.c: better support for pointer types.
34094         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34095         * reflection.c: Add support for getting custom attrs for properties
34096         and simplify some code.
34098 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34100         * icall.c: change getToken () and add custom attribute GetBlob()helper
34101         method.
34102         * reflection.h: add custom attrs array to the reflection builder structures.
34103         * reflection.c: encode and emit custom attributes for all the relevant
34104         reflection objects. Cache fieldref and methodref tokens. Change
34105         mono_image_create_token() interface to take a MonoDynamicAssembly.
34106         More complete custom attributes decoder. Load custom attributes for
34107         Assembly, Field, Method and Constructor objects, too. Make the
34108         returned array an Attribute[] one, not object[]. Added
34109         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34110         custom attribute constructor.
34112 2002-02-20  Dick Porter  <dick@ximian.com>
34114         * icall.c:
34115         * rawbuffer.c:
34116         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34117         problem code out for now).
34119 2002-02-19  Radek Doulik  <rodo@ximian.com>
34121         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34123 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34125         * icall.c: register the GetCustomAttributes method.
34126         * object.c, object.h: add mono_string_new_len ().
34127         * reflection.h, reflection.c: added mono_runtime_invoke(),
34128         mono_install_runtime_invoke(). Added
34129         mono_reflection_get_custom_attrs () to load custom attributes and
34130         create the attribute objects.
34132 2002-02-19  Dick Porter  <dick@ximian.com>
34133         * threads-dummy-types.c:
34134         * threads-dummy-types.h:
34135         * threads-dummy.c:
34136         * threads-dummy.h:
34137         * threads-pthread-types.c:
34138         * threads-pthread-types.h:
34139         * threads-pthread.c:
34140         * threads-pthread.h:  Deleted obsolete files
34142 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34144         * class.c (mono_class_vtable): runtime init the class when we
34145         allocate static class data.
34147         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34149         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34150         and String - but we will need generic marshalling support in the
34151         future. 
34152         (mono_init): set the domain name in a ms compatible way
34154         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34155         String[].
34157 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34159         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34160         for sizes
34162         * appdomain.c (mono_domain_unload): impl.
34164 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34166         * appdomain.c, object.c: fix intern pool implementation.
34167         * class.c: fix alignment code.
34169 2002-02-16  Radek Doulik  <rodo@ximian.com>
34171         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34172         and s2 > s1, just copy lower bytes to be compatible with little
34173         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34174         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34176         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34177         force big_endian to be 1 for big endian machines 
34178         (ves_icall_iconv_new_decoder): ditto
34180 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34182         * socket-io.c (convert_sockopt_level_and_name): If the system
34183         doesn't define SOL_IP or SOL_TCP, get them by hand using
34184         getprotobyname() and caching the values (because this could be a
34185         slow operation).
34186         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34187         Use the appropriate struct when the system does support it. Ie,
34188         not all systems have struct ip_mreqn so use struct ip_mreq when
34189         appropriate.
34191 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34193         * reflection.c: handle finally clauses.
34195 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34197         * socket-io.c: use g_snprintf() instead of snprintf.
34199 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34201         * reflection.c (mono_param_get_objects): Cast second argument to
34202         mono_method_get_param_names to a const char** to silence the
34203         compiler warning.
34205         * appdomain.c (mono_domain_assembly_open): Put parens around the
34206         truth statement in the for-loop.
34208         * unicode.c (iconv_convert): Got rid of a compiler warning about
34209         int i being unused when the system has a new iconv.
34210         (iconv_get_length): Same.
34212         * image.c (load_class_names): Cast the second argument to
34213         g_hash_table_insert() to char* to hush compiler warnings about the
34214         arg being a const.
34215         (mono_image_open): Same here.
34217         * socket-io.c: Don't conditionally include sys/filio.h or
34218         sys/sockio.h here anymore since we now get them from
34219         io-layer/io-layer.h
34220         (inet_pton): If the system doesn't support inet_aton, implement
34221         using inet_addr and also #define INADDR_NONE if it isn't defined
34222         by the system.
34224 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34226         * metadata.c, metadata.h: added function to get packing and size info
34227         of a typedef.
34228         * reflection.h, reflection.c: handle field RVA data. Save info about
34229         the table layout if needed. Assign typedef indexes to all the types
34230         before dumping the info about them to avoid forward reference problems.
34232 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34234         * socket-io.c (convert_sockopt_level_and_name): ifdef
34235         SO_ACCEPTCONN because it is not defined on my system (old debian)
34237 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34239         * opcode.c: use stddef.h to get NULL.
34241 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34243         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34244         for FIONBIO, FIONREAD and SIOCATMARK.
34245         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34246         define INADDR_NONE and besides, inet_addr() is deprecated and
34247         should not be used. Use inet_pton() instead - it also has the
34248         added bonus that it can easily handle IPv6 addresses as well.
34249         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34251 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34253         * decimal.c: remove _MSC_VER conditional.
34255 2002-02-13  Dick Porter  <dick@ximian.com>
34257         * socket-io.c: 
34258         * icall.c: Internal calls for Blocking, Select, Shutdown,
34259         GetSocketOption and SetSocketOption
34261 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34263         * assembly.cs: better resolver: use it instead of some kludgy
34264         code.
34266 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34268         * reflection.c: the best way to speed-up the compiler is to avoid
34269         infinite loops.
34271 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34273         * class.c (mono_class_vtable): changed the object layout
34274         (obj->vtable->class). 
34275         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34277 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34279         * assembly.c: look for assemblies in the assembly dir, too.
34281 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34283         * class.c: fix thinko in mono_class_from_type().
34285 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34287         * exception.h, exception.c: added TypeLoadException.
34288         * object.h, object.c: added mono_array_clone ().
34289         * icall.c: handle throwOnError in AssemblyGetType().
34290         Added Array.Clone().
34291         * opcode.h, opcode.c: use a single value for the opcode val.
34292         Compile fix for non-gcc compilers.
34294 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34296         * opcodes.c, opcodes.h: export interesting info about opcodes.
34298 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34300         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34301         icalls. 
34303         * class.c (class_compute_field_layout): set element_class for enums
34304         (mono_class_create_from_typedef): set element_class for normal classes
34306         * icall.c (ves_icall_System_Enum_get_value): impl.
34308         * class.c (mono_class_create_from_typedef): do not set valuetype
34309         flag for System.ValueType and System.Enum
34311 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34313         * unicode.c (iconv_convert): fix big endian problem.
34315 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34317         * class.c: add asserts if we are ever going to scribble over memory.
34318         * socket-io.c: not all systems have AF_IRDA defined.
34320 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34322         * class.c (class_compute_field_layout): do not consider static
34323         fields to compute alignment
34325 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34327         * appdomain.c (mono_appdomain_get): impl.
34328         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34330 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34332         * icall.c: ignore "file://" prefix when loading an assembly.
34334 2002-01-23  Dick Porter  <dick@ximian.com>
34336         * socket-io.c:
34337         * icall.c:
34338         * Makefile.am: Added socket support
34340 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34342         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34343         code back.  This should return the assemblies that are loaded by
34344         the runtime on behalf of an application domain. 
34346         The current implementation is still broken, it just returns every
34347         assembly loaded, but until we get real applications domain this
34348         will do.
34350 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34352         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34353         AppDomain object.
34355 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34357         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34358         the mono_class_from_name lookup.
34359         (ves_icall_get_parameter_info): ditto.
34360         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34361         method.
34362         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34364 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34366         * class.c: load also nested classes on class init.
34367         System.ValueType instance methods gets passed boxed
34368         values, unless methods in derived classed that get a pointer to the
34369         data.
34370         * icall.c: use better name parsing code in GetType().
34371         * image.c, image.h: add mono_image_loaded ().
34372         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34373         * reflection.c, reflection.h: added mono_reflection_parse_type().
34375 2002-01-22  Veronica De Santis <veron78@interfree.it>
34377         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34378         * threads.c : Added the implementation of internal calls for events
34379         * threads.h : Added prototypes of internal calls for events
34380         
34381 2002-01-21  Radek Doulik  <rodo@ximian.com>
34383         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34385 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34387         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34388         (mono_class_value_size): use min_align
34390 2002-01-20  Dick Porter  <dick@ximian.com>
34392         * threads.h:
34393         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34394         so it compiles on w32.
34396 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34398         * metadata.c (mono_type_stack_size): impl.
34400         * class.c (mono_class_get_field): impl. memberref token
34402 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34404         * icall.h : Added the internal calls mapping for CreateMutex_internal
34405                     and ReleaseMutex_internal.
34406         * threads.h : Added the prototype of mutexes internal calls.
34407         * threads.c : Added the implementations of mutexes internal calls.
34409 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34411         * metaparse.h: removed unused file.
34412         * reflection.c, reflection.h: added stream_data_align () function 
34413         to align data in streams and keep stream aligned. Add support for
34414         exception support in method headers.
34416 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34418         * unicode.c: make iconv_convert () return the number of bytess written
34419         in the output buffer.
34421 2002-01-15  Dick Porter  <dick@ximian.com>
34422         * threads.c: Make the runtime's idea of infinite timeouts coincide
34423         with the class library's
34425         Fix a particularly egregious bug in mono_thread_cleanup(). That
34426         code was so utterly bogus it must have been written on a Monday.
34428 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34430         * reflection.h: add subtypes field to TypeBuilder.
34431         * reflection.c: encode constants for literal fields.
34432         Handle subtypes. Fix user string token (and add a zero byte)
34433         at the end.
34434         
34435 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34437         * class.c (mono_class_init): bug fix: assign slot numbers for
34438         abstract methods.
34440 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34442         * reflection.c: don't try to output a code RVA for abstract methods.
34443         Small fixes for method header format. Output parameter info to the
34444         ParamDef table. Save method overriding info to MethodImpl table.
34445         Fix property support. Allow typedef.extends to be a type in the
34446         building assembly.
34447         * verify.c: fix off-by-one error.
34449 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34451         * class.c: fix mono_class_from_mono_type () for szarray types.
34452         Remove unused cache check in mono_class_from_type_spec().
34453         * icall.c: *type_from_name () functions handle simple arrays and byref.
34454         * reflection.c: handle byref and szarray types. Handle methods without
34455         body (gets P/Invoke compilation working). Handle types and fields in
34456         get_token ().
34457         * reflection.h: add rank to MonoTypeInfo.
34459 2002-01-10  Dick Porter  <dick@ximian.com>
34461         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34462         internal calls
34464 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34466         * icall.c: initialize class in type_from_handle ().
34467         Loop also in parent classes for get_method ().
34468         * reflection.c: properly encode class and valuetype types.
34469         Start on encoding TypeBuilder types. Handle fieldrefs.
34470         Use correct length when registering a user string.
34471         Handle ConstructorBuilder and MonoMethod in get_token ().
34472         Make mono_type_get_object () aware of cached types.
34473         * object.c: back out change to mono_string_new ().
34475 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34476         * object.c: mono_string_new should return a NULL when the string 
34477         passed in is NULL -- not try to deference it.
34478         
34479 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34481         * icall.c: hack to make IsSubType work for TypeBuilders.
34482         * reflection.c: emit constructors before methods.
34483         Retrieve param names in mono_param_get_objects().
34485 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34487         * Makefile.am: fix list of headers and sources so automake 1.5
34488         doesn't complain. Removed \# at end of list.
34490 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34492         * reflection.c: get token for a method ref. Set return type of
34493         constructor to void.
34494         * loader.c: debug message.
34495         * class.c: typo fix.
34497 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34499         * icall.c: fix array init with rank > 1. FindMembers
34500         loops in parent class as well.
34501         * image.c: do not insert nested types in name cache.
34502         * reflection.c: warning fix.
34503         * reflection.h: add override method (for interface impl).
34505 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34507         * metadata.c: fix customattr decoding.
34509 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34511         * rawbuffer.cs: Added native Win32 implementation, avoids using
34512         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34514 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34516         * class.c: make the low-level routines handle the cache.
34518 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34520         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34522 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34524         * class.c: fix mono_array_element_size() for objects.
34525         * class.h, class.c: add properties to MonoClass and load them
34526         at init time.
34527         * icall.c: check with isinst() when assigning a value to an array
34528         instead of requiring the classes to match exactly.
34529         Implemented icall for System.Type::GetType().
34530         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34531         enums. Handle bindingflags when looking for methods and fields.
34532         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34533         and mono_metadata_methods_from_property().
34534         * reflection.h, reflection.c: added structures for propreties,
34535         parameters and enums. Implemented mono_property_get_object() and
34536         mono_param_get_objects().
34538 2001-12-18  Dick Porter  <dick@ximian.com>
34540         * file-io.c: Use mono_string_to_utf16() instead of
34541         mono_string_chars()
34543         * object.c: Added mono_string_to_utf16(), which copies the non
34544         NULL-terminated MonoString into a new double-null-terminated
34545         buffer.
34547 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34549         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34551 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34553         * file-io.c: raise exceptions if handle is invalid.
34555 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34557         * assembly.c: yet another check for mscorlib.
34558         * class.c, class.h: load nesting info for classes.
34559         * icall.c: many new functions to support the Reflection classes.
34560         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34561         * reflection.h, reflection.c: mono_image_create_token(),
34562         mono_assembly_get_object(), mono_type_get_object(),
34563         mono_method_get_object(), mono_field_get_object(): methods to return
34564         objects that parallel the C representation of assemblies, types,
34565         methods, fields.
34567 2001-12-11  Dick Porter  <dick@ximian.com>
34569         * icall.c:
34570         * file-io.c: Internal calls for file IO.
34572 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34574         * tabledefs.h: missing FileAttributes.
34575         * verify.h, verify.c: use is_valid_string () to simplify and check for
34576         valid strings more correctly. Fix warnings and speeling.
34577         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34578         Check code: branches, maxstack, method calls.
34580 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34582         * object.c (mono_object_allocate): removed static, so that the jit
34583         can allocate value types.
34585         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34587 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34589         * class.c: init enum types right away and register the
34590         token->MonoClass map in mono_class_create_from_typedef ().
34591         * verify.h, verify.c: first cut of the verifier.
34592         * pedump.c: add --verify switch to verify metadata tables.
34593         * tabledefs.h: add some missing enums.
34595 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34597         * class.c (mono_install_runtime_class_init): impl.
34598         (mono_class_init): renamed mono_class_metadata_init to
34599         mono_class_init, also removed the metadata_inited flag
34601         * object.c (mono_object_isinst): use faster algorithm
34603 2001-11-30  Radek Doulik  <rodo@ximian.com>
34605         * mono-endian.h: reverted last change
34606         added function prototypes
34608         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34609         add mono-endian.c back
34611         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34612         for unaligned access, I've mistaked it with endianess. I am
34613         sorry.
34614         (mono_read16): fix reverted endianess
34615         (mono_read64): ditto
34616         (mono_read32): ditto
34618 2001-11-30  Dick Porter  <dick@ximian.com>
34620         * exception.c: Implement mono_exception_from_name()
34622 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34624         * metadata.h, metadata.c: remove params_size and locals_size and their
34625         calculation from the metadata code: they are only usefult to the
34626         interp.
34628 2001-11-29  Radek Doulik  <rodo@ximian.com>
34630         * object.c (mono_ldstr): swap bytes here, it's probably not the
34631         best place, but works for me now, I'll redo it once I know mono
34632         better, also note that I add PROT_WRITE and don't reset back, also
34633         note that it's only affects big endians, so x86 should be OK
34635         * mono-endian.h (read16): use just glib macros for both endians
34637         * mono-endian.c: removed as glib macros are used in in
34638         mono-endian.h so we don't need to care about endianess for read
34639         macros as glib does that for us already
34641 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34643         * class.h, class.h: take minimum alignment into consideration so
34644         that the fields of a class remain aligned also when in an array.
34646 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34648         * loader.h, loader.c: add mono_method_get_param_names().
34649         * class.c: 0-init class fields.
34651 2001-11-26  Dick Porter  <dick@ximian.com>
34653         * icall.c:
34654         * threads-types.h:
34655         * threads.c: New file that handles System.Threading on all platforms
34657         * object.c: 
34658         * object.h: Remove the synchronisation struct from MonoObject,
34659         replace it with a pointer that gets initialised on demand
34661         * Makefile.am: Replace all the system-specific threading code with
34662         a single file that uses the new wrapper library
34664 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34666         * class.c, class.h: add mono_install_trampoline() so that the runtime
34667         can register a function to create a trampoline: removes the ugly
34668         requirement that a runtime needed to export arch_create_jit_trampoline.
34669         * object.h, object.c: added mono_install_handler() so that the runtime
34670         can install an handler for exceptions generated in C code (with
34671         mono_raise_exception()). Added C struct for System.Delegate.
34672         * pedump.c: removed arch_create_jit_trampoline.
34673         * reflection.c: some cleanups to allow registering user strings and
34674         later getting a token for methodrefs and fieldrefs before the assembly
34675         is built.
34676         * row-indexes.h: updates and fixes from the new ECMA specs.
34678 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34680         * class.h, class.c: add enum_basetype field to MonoClass.
34681         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34682         to get index in the constant table reated to a field, param or
34683         property.
34684         * reflection.h, reflection.c: handle constructors. Set public-key and
34685         version number of the built assembly to 0.
34686         * row-indexes.h: update from new ECMA spec.
34688 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34690         * class.h, class.c: add a max_interface_id to MonoClass.
34691         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34692         since it's used to do that. Added mono_type_type_from_obj().
34693         Make GetType() return NULL instead of segfaulting if the type was not
34694         found. Handle simple arrays in assQualifiedName.
34695         * object.h: add a struct to represent an Exception.
34696         * reflection.c: output call convention in method signature.
34697         Add code to support P/Invoke methods and fixed offsets for fields.
34699 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34701         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34702         the value.
34703         * icall.c: use mono_array_addr instead of array->vector: fixes the
34704         reflection image writing.
34705         * reflection.c: init call convention byte to 0 in method signature.
34706         Encode the property signature. Don't output property-related methods
34707         twice. Really process the properties for a type (don't cast a field to
34708         a property, my mom always told me that).
34709         Fix 64 bit issues in pointer alignment in a different and more
34710         readable way.
34712 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34714         * loader.h: Removed type class from MonoDefaults, added monotype
34716         * loader.c: Loaded MonoType, removed loading of Type
34718         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34719         and fills in System.Type._impl with a RuntimeTypeHandle rather
34720         than the actual MonoClass *
34722         (ves_icall_type_from_handle): change from type_class to
34723         monotype_class
34725         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34726         implemented
34728         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34729         implemented
34731         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34733         (ves_icall_System_Reflection_Assembly_GetType): implemented
34735         (ves_icall_System_MonoType_assQualifiedName): implemented
34737         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34739 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34741         * assembly.c (mono_assembly_open): Implement a cache for the
34742         assemblies. 
34744         (mono_assembly_close): only destroy the assembly when the last
34745         reference is gone.
34746         
34747 2001-11-09  Dick Porter  <dick@ximian.com>
34749         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34751 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34753         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34755 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34757         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34758         from Martin Weindel.
34759         * object.h: add mono_string_chars ().
34761 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34763         * reflection.c (build_compressed_metadata): Eliminates warnings
34764         and uses 64-bit clean code.
34766         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34767         (mono_type_equal): Change signature to eliminate warnings.
34769 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34771         * icall.c, loader.c: remove the internalcall array constructors.
34772         Changes to match the new MonoArray structure.
34773         * object.h, object.c: an array object doesn't allocate an extra
34774         vector. Add mono_array_new_full () to create jagged arrays easily.
34776 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34778         * metadata.h, metadata.c: add mono_metadata_field_info () to
34779         retreive all the info about a field from vairous tables.
34780         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34781         * class.h, class.c: augment MonoClassField with more info.
34782         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34783         policy and load a field's RVA if needed.
34785 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34787         * class.c (mono_class_metadata_init): create a trampoline for all
34788         virtual functions instead of actually compiling them.
34790 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34792         * class.h, class.c: include name in MonoClassField.
34793         * class.c: fix fundamental type of System.Object and System.String.
34794         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34795         tokens in ldtoken.
34796         * icall.c: remove internalcalls for the Reflection stuff that is now
34797         done in C# code.
34798         * loader.c: mono_field_from_memberref () implementation.
34799         * mono-endian.c: thinko (s/struct/union/g).
34800         * object.c, object.h: make the mono_string_* prototypes actually use
34801         MonoString instead of MonoObject.
34802         * reflection.c, reflection.h: updates for changes in the reflection
34803         code in corlib: we use C structures that map to the actual C# classes.
34804         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34805         fat method header if needed and use the info from the ILGenerator for
34806         methods. Handle fields in types. Misc fixes.
34808 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34810         * class.c (mono_class_metadata_init): bug fix: always allocate
34811         space for static class data
34813 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34815         * class.c (mono_compute_relative_numbering): use relative
34816         numbering to support fast runtime type checks.
34818 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34820         * class.c (mono_class_create_from_typeref): added debugging output
34821         to print class name when MonoDummy is returned instead of real class
34823 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34825         * class.c (mono_class_metadata_init): interface offset table now
34826         contains pointers into the vtable - this is more efficient for the jit
34828 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34830         * class.c (mono_class_metadata_init): use a temporary vtable (the
34831         old algorithm only worked for the interpreter, but not for the jit)
34833 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34835         * loader.c (method_from_memberref): use mono_class_get to get the
34836         class of an array instead of using System.Array directly.
34837         (mono_get_method): also add MEMBERREF methods to the method cache
34838         which usefull for arrays.
34840 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34842         * pedump.c (arch_compile_method): added to compute vtable entry
34844         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34845         number of interfaces.
34846         
34847         * class.h: merged MonoArrayClass into MonoClass
34849         * class.c (mono_class_create_from_typedef): compute the vtable size and
34850         allocate space to include the vtable inside MonoClass
34851         (mono_class_metadata_init): initialize the vtable
34853 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34855         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34856         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34857         * image.c: endian fixes by Laurent Rioux.
34858         * object.h, object.c: rename MonoStringObject to MonoString and
34859         MonoArrayObject to MonoArray. Change some function names to conform to
34860         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34861         guint16* as first argument, so don't use char*.
34862         Provide macros to do the interesting things on arrays in a portable way.
34863         * threads-pthread.c: updates for the API changes and #include <sched.h>
34864         (required for sched_yield()).
34865         * icall.c: updates for the API changes above.
34866         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34867         platforms that need them.
34869 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34871         * class.c: set the correct type for all the fundamental
34872         type when loading the class.
34874 2001-10-05  Dick Porter  <dick@ximian.com>
34876         * threads-pthread.c (pthread_mutex_timedlock): Simple
34877         compatibility version for C libraries that lack this call.
34879 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34881         * class.c: MonoTypes stored in MonoClass are stored as
34882         fundamental MonoTypes when the class represents a
34883         fundamental type (System.Int32, ...).
34884         The TypeHandle return by ldtoken is a MonoType*.
34885         * icall.c: ves_icall_get_data_chunk () write out all the
34886         PE/COFF stuff. Implement ves_icall_define_method (),
34887         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34888         * image.c: properly skip unknown streams.
34889         * loader.h, loader.c: add type_class to mono_defaults.
34890         * metadata.c, metadata.h: export compute_size () as
34891         mono_metadata_compute_size () with a better interface.
34892         Typo and C&P fixes.
34893         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34894         * reflection.c, reflection.h: many cleanups, fixes, output method
34895         signatures and headers, typedef and typeref info, compress the metadata
34896         tables, output all the heap streams, cli header etc.
34897         * row-indexes.h: typo fixes.
34899 2001-10-04  Dick Porter  <dick@ximian.com>
34901         * object.h: Add a synchronisation mutex struct to MonoObject
34903         * object.c (mono_new_object): Initialise the object
34904         synchronisation mutexes
34906         * icall.c: System.Threading.Monitor internal calls
34907         
34908         * threads-pthread.h:
34909         * threads-pthread.c: System.Threading.Monitor internal calls
34911         * threads-types.h: New file, includes the system-specific thread
34912         structures
34913         
34914         * threads-pthread-types.h:
34915         * threads-pthread-types.c: New files, handle pthread-specific
34916         synchronisation types
34918         * threads-dummy-types.h: 
34919         * threads-dummy-types.c: New files of dummy support for
34920         thread-specific types
34922         * metadata.c:
34923         * image.c:
34924         * pedump.c: include mono-endian.h not endian.h
34925         
34926         * Makefile.am: More threads files.
34927         Name mono-endian.h not endian.h
34929 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34931         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34932         stuff and implement a few more bits.
34933         * icall.c: a field needs to be dereferenced twice. Do not use the same
34934         name for two variables in the same scope.
34935         * image.c, image.h: cleanups.
34937 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34939         * class.c (mono_class_metadata_init): bug fix: compute the right size
34941 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34943         * icall.c: implemented some of the Reflection internalcalls.
34944         * image.c, image.h: start writing out the PE/COFF image.
34945         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34946         that does the reverse than decode_blob_size ().
34947         * object.c: use mono_metadata_encode_value (). Move here
34948         temporary implementation of mono_string_to_utf8 ().
34949         * rawbuffer.c: make malloc_map static.
34951 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34953         * metadata.c: fix type comparison for arrays.
34954         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34955         Added a couple of new classes to monodefaults.
34956         * icall.c: added a couple of Reflection-related internalcalls.
34957         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34958         Added a byval_arg MonoType to MonoClass.
34960 2001-09-28  Dick Porter  <dick@ximian.com>
34962         * icall.c:
34963         * threads-pthread.h: 
34964         * threads-pthread.c: Implemented internal calls for
34965         LocalDataStoreSlot operations.  Applied mutexes around all shared
34966         data.  Reworked the thread creation and Start() operations to
34967         avoid a race condition.
34968         
34969         * threads-dummy.h:
34970         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34972 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34974         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34976 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34978         * class.c, loader.c: warn and return NULL instead of erroring out.
34979         * icall.c: added System.AppDomain::getCurDomain().
34980         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34982 2001-09-25  Dick Porter  <dick@ximian.com>
34984         * threads-pthread.h:
34985         * threads-pthread.c: Implemented timed thread joining and added
34986         System.Threading.Thread::Join_internal internal call
34988         * icall.c: Added System.Threading.Thread::Join_internal internal call
34990         * threads-dummy.h:
34991         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34993 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34995         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34996         mono_string_intern () to implement the semantics of the ldstr opcode
34997         and the interning of System.Strings.
34998         * icall.c: provide hooks to make String::IsIntern and String::Intern
34999         internalcalls.
35001 2001-09-23  Dick Porter  <dick@ximian.com>
35003         * threads-dummy.c: 
35004         * threads-dummy.h: New files of dummy threading routines
35006         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35007         support code based on system specifics
35009         Rename PTHREAD_LIBS to THREAD_LIBS
35010         
35011 2001-09-23  Dick Porter  <dick@ximian.com>
35013         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35014         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35015         internal calls.
35016         (mono_thread_init): Set up a Thread object instance to return when
35017         the main thread calls Thread.CurrentThread
35018         (mono_thread_cleanup): Wait for all subthreads to exit
35020         * icall.c: New internal calls for System.Threading.Thread::Sleep
35021         (including Schedule) and CurrentThread
35023         * threads.h: New file, to insulate thread-specific stuff from the
35024         rest of the code
35026 2001-09-21  Dick Porter  <dick@ximian.com>
35028         * threads-pthread.h: 
35029         * threads-pthread.c: New file, for handling pthreads-style
35030         threading support.  Start() now starts a new thread and executes
35031         the ThreadStart delegate instance.
35033         * icall.c: Added the internalcall for
35034         System.Threading.Thread::Start_internal
35036         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35038 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35040         * loader.c: work around the different signatures for delegates
35041         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35043 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35045         * class.h, class.c: add mono_class_get_field_from_name ().
35046         * *: Fix C comments and other ANSI C issues.
35048 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35050         * endian.h, assembly.c: fix some endianness issues.
35052 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35054         * loader.h, load.c: add delegate_class to mono_defaults.
35055         Handle runtime provided methods in mono_get_method ().
35057 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35059         * loader.c (mono_get_method): use pinvoke for internal call
35061         * icall.c: use pinvoke for internal call
35063         * loader.c (method_from_memberref): set the method name
35065 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35067         * metadata.c: help the compiler generate better code for
35068         mono_class_from_mono_type ().
35070 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35072         * class.c (mono_class_metadata_init): delayed computing of the
35073         class size to mono_class_metadata_init ()
35075 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35077         * class.c, class.h: add an interfaces member to MonoClass.
35078         * image.c, image.h: add assembly_name field to MonoImage
35079         from the assembly table.
35080         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35082 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35084         * class.c: Handle Array in mono_class_from_mono_type ().
35085         * metadata.c, pedump.c: some endian fixes.
35087 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35089         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35090         * metadata.c: fix small problem introduced with the latest commit.
35092 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35094         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35095         We don't need a MonoMetadata pointer anymore to compare signatures in
35096         mono_metadata_signature_equal (), update callers.
35097         Reduced memory usage an number of allocations for MonoMethodHeader and
35098         MonoMethodSignature.
35100 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35102         * metadata.c: added compare for szarray.
35104 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35106         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35107         and add a couple more types to it and mono_defaults. Give an hint on
35108         classes that need implementing in our corlib and are referenced
35109         in mscorlib.
35111 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35113         * class.h, class.c: keep track if a class is also an Enum.
35114         * loader.c: Implement a couple more types for use in libffi
35115         marshalling. Gives better diagnostics when failing to dlopen
35116         a library. Set method->klass for P/Invoke methods, too.
35118 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35120         * class.c, class.h: add a MonoType this_arg to MonoClass that
35121         represents a pointer to an object of the class' type that
35122         can be used by the interpreter and later the type cache.
35123         Add best guess alignment info for valuetype objects.
35125 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35127         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35128         into MonoType: one less level of indirection and allocation and
35129         simplifies quite a bit of code. Added cache for MonoTypes that are
35130         used frequently, so that we don't need to allocate them all the time.
35132 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35134         * class.c (mono_class_create_from_typedef): System.Enum is also a
35135         value type, although it does not derive from System.ValueType
35136         (maybe a bug in the ms compiler?)
35138         * metadata.c (mono_type_size): return the right size for value types
35140         * loader.c (mono_get_method): only initialize method header if not abstract
35142         * class.c (mono_class_from_mono_type): use mono_default values. 
35144 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35146         * *: use MonoClass pointers instead of <type_tokens>
35147         
35148         * class.h: new flag: metadata_inited.
35150         * class.c (mono_class_metadata_init): impl.
35151         (mono_class_instance_size): impl.
35152         (mono_class_data_size): impl.
35154 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35156         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35157         MonoClass now has the name and name_space fields. 
35158         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35159         mono_get_method () takes and optional MonoClass as argument.
35160         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35161         instead that takes advantage of a map from class names to typedef
35162         tokens in MonoImage.
35164 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35166         * metadata.c: zero is not a valid alignment boundary.
35167         Merge MONO_TYPE_VOID in default decoding code.
35169 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35171         * image.h: merged MonoMetadata into MonoImage
35173         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35174         identify the type of elements.
35176 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35178         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35179         * cil-coff.h: split MonoMSDOSHeader and add size info.
35180         * image.c: add some consistency checks.
35181         * metadata.c: fix row size computation: one programmer
35182         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35183         add explanation for the locator routine.
35184         Fix decoding of size in method header.
35185         
35186 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35188         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35189         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35190         function from gnome-libs.  This uses the right path separator
35191         based on the OS, and also works around a bug in some systems where
35192         a double slash is not allowed. 
35193         (default_assembly_name_resolver): Use g_concat_dir_and_file
35194         (mono_assembly_open): ditto.
35196 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35198         * metadata.c (mono_metadata_signature_equal): impl.
35200         * *: void is now a realy MonoType (instead of using NULL)
35201         
35202         * metadata.c (do_mono_metadata_parse_type): use
35203         mono_metadata_parse_type to parse void value.
35205 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35207         * metadata.c, metadata.h: in the signature and method header store
35208         only the space required for holding the loca vars and incoming arguments.
35210 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35212         * metadata.c (do_mono_metadata_parse_type): treat void like any
35213         other type (instead of assigning NULL);
35215 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35217         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35219 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35221         * image.c (do_mono_image_open): added a cache for arrays.
35223 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35225         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35226         decode a single column from a row in a metadata table and changes
35227         to take advantage of it in the typedef locator (gives a nice speed up).
35228         Store offset info for function params.
35230 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35232         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35234 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35236         * assembly.c: how could mono_assembly_close () had ever worked?
35237         * metadata.c, metadata.h: provide offset info for local vars.
35238         Implement mono_type_size () to take care of alignment as well
35239         as size (it was mono_field_type_size in cli/class.c before).
35241 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35243         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35245         * assembly.h (CORLIB_NAME): set to corlib.dll
35247         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35249 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35251         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35252         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35253         tokentype.h: massive namespace cleanup.
35255 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35257         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35259 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35261         * metadata.c (mono_metadata_free_type): added check for type !=
35262         NULL (void) before calling mono_metadata_free_type()
35264 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35266         * metadata.h, row_indexes.h: added header with enumerations to use
35267         to index in the columns from tables in metadata and to decode coded
35268         tokens: we should start using this instead of embedding magic numbers
35269         all over the code.
35271 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35273         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35274         Move metadata_t info from cli_image_info_t to MonoImage, where
35275         it's easily accessible. Changed all the uses accordingly.
35276         Added the method and class caches to MonoImage.
35277         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35278         and mono_metadata_decode_value () signature to be more consistent
35279         with the other parse functions (and simplify code). Taken advantage
35280         of zero-length array allocation with GCC. Removed reduntant (and
35281         wrong) MonoFieldType struct and use MonoParam instead. Changed
35282         mono_metadata_parse_field_type () to use common code for parsing.
35283         Added mono_metadata_typedef_from_field () and
35284         mono_metadata_typedef_from_method () to lookup a typedef index from a
35285         field or method token.
35286         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35288 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35290         * metadata.c (mono_metadata_parse_field_type): Implement. 
35291         (do_mono_metadata_parse_type): Split engine from
35292         mono_metadata_parse_type, so that we can create smaller structures
35293         for things that just have one pointer to the MonoType (look at
35294         the MonoFieldType)
35296 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35298         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35299         as Jan Gray found out, it is incorrect. 
35301 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35303         * assembly.c: Implement asssembly loading.  This loads an image
35304         and loads all the referenced assemblies.  Come to think of it, we
35305         could always do lazy loading of the assemblies. 
35307         * image.c (mono_image_open): Keep loaded images in a hashtable.
35309         * image.h (MonoImage): Add reference count.
35311 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35313         * assembly.c (mono_assembly_open): Keep track of the file name in
35314         case the assembly has no ASSEMBLY table.
35316         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35317         from get.c here.
35319 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35321         * metadata.c, metadata.h: decode local vars in method header
35322         parse function. Change callers accordingly.
35324 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35326         * metadata.h, cil-coff.h: protect against multiple inclusion.
35327         Added some new structures to hold information decoded from metadata:
35328         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35329         and relevant decoding/free functions.
35330         * metadata.c: implement decoding functions. Add warning for out of bounds
35331         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35332         all the info about a method signature and invocation. Remove check on
35333         uninitialized local var in parse_mh() and fix memory leak.
35335 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35337         * metadata.h: More macros.
35339         * tokentype.h: New file.
35341 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35343         * assembly.c: added a consistency check and initialize
35344         some structures with g_new0().
35345         * metadata.c: fixed a couple more bugs in table size computation
35346         and add other checks for out-of bound access to metadata.
35348 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35350         * metatada.c: fix bugs computing table sizes. Spew a
35351         warning when index in string heap is out of bounds.
35353 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35355         * metadata.h: Add a couple of macros to manipulate tokens. 
35357 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35359         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35360         cli_section_tables).
35362 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35364         * metadata.c (mono_metadata_user_string): New function, provides
35365         access to the UserString heap. 
35367 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35369         * metadata.c: Add inline documentation.
35371 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35373         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35374         files. 
35376 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35378         * typeattr.h: New file, TypeAttribute flags. 
35380 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35382         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35383         mono_assembly_ensure_section): Section loading code.
35384         (load_section_tables): Load the sections.
35386         * mono/metadata/metadata.c (mono_metadata_locate_token,
35387         mono_metadata_locate): Functions to locate the information
35388         definition given a token or a table and an index.
35389         (mono_metadata_compute_table_bases): New.
35390         (compute_size): New function to compute the sizes of the various
35391         tables.
35393         * mono/metadata/metadata.h: Finish listing the different index
35394         types. 
35396         * mono/metadata/pedump.c: Improve to dump new information.
35398 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35400         * mono/metadata/metadata.c: Entered all the tables matching
35401         Beta2. 
35403         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2