2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob9e9bf83955119513e587c66e21902bb59d2bceae
1 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
3         * verify.c (verify_valuetype_layout_with_target): Fix case
4         that can lead to infinite recursion. Fix bug #567861
6 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
8         * pedump.c: Run code verifier even if image verification fails
9         due to a failed type we. This allows more errors to be shown.
11 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
13         * class.c (count_virtual_methods): Remove the assert and now
14         fail properly.
15         
16         * class.c (setup_interface_offsets): This can fail now.
18         * class.c (mono_class_setup_vtable_general): Check for parent vtable
19         errors. Check setup_interface_offsets errors.
21         * class.c (setup_interface_offsets): Simplify the return error logic
22         and remove class_init_ok.
24         Fixes #560327.
26 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
28         * class.c (mono_class_init): Do class verification at the beginning. Add
29         some asserts to avoid tripping into invalid memory.
31         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
32         g_error and a decent message.
34         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
36         Fixes #567548.
38 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
40         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
41         as inline functions instead of defining them in mempool.c.
43         * metadata-internals.h (MonoImageSet): New structure representing a set of
44         MonoImages, which own a collection of generic instances.
46         * metadata.c: Get rid of the global generic caches, instead assign each generic
47         instance to the image set which consists of all the images referenced by the
48         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
49         the memory used by generic instances to be allocated from a per image-set mempool
50         later.
52 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
54         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
56 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
58         * appdomain.c (zero_static_data): Fix a warning.
60         * locales.c (construct_culture_from_specific_name): Applied patch from
61         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
62         not found. Fixes #567900.
64 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
66         * loader.c (mono_method_get_signature_full): Remove two asserts.
67         Return NULL instead so that the verifier can handle both cases 
68         gracefully.
70 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
72         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
73         so we can properly fail types instead of crashing.
75         Fixes #567676.
77 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
79         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
80         generic method.
82 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
84         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
86 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
88         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
89         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
90         we can't remove it from it since we don't hold the lock.
91         (mon_new): Free the orphaned events here when a mon structure is added to the
92         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
93         this down.
95 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
97         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
98         as max stack might be zero.
100         Fixes #562320.
102 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
104         Rework all uses of mono_class_setup_methods to accept that it can fail now.
106         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
107         instances if the GTD did.
109         * class.c (mono_class_setup_properties): Ditto.
111         * class.c (mono_class_setup_events): Ditto.
113         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
115         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
116         error setting.
118         * class.c (mono_class_init): Fail if GTD did.
120         * cominterop.c:
121         * generic-sharing.c:
122         * icall.c:
123         * loader.c:
124         * object.c:
125         * verify.c: Properly handle failure of mono_class_setup_methods.
127 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
129         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
130         mono_class_inflate_generic_method_full internal.
132         * class.c (inflate_generic_context): Now takes a MonoError argument.
134         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
135         errors.
137 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
139         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
140         they cannot be patched. Partly fixes #564408.
142 2009-12-24  Mark Probst  <mark.probst@gmail.com>
144         * metadata-internals.h, reflection.c: Use the
145         MonoDynamicImage.handleref hash table only with unmanaged keys,
146         and add a managed hash table handleref_managed for managed keys.
148 2009-12-24  Mark Probst  <mark.probst@gmail.com>
150         * sgen-gc.c: Unset to-space bumper between collections.  It might
151         become invalid due to degraded allocations.
153 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
155         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
156         with the one from the original method.
158         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
159         compatibility.
161         * verify-internals.h: Add new function to the internal API.
163 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
165         * culture-info-tables.h: regenerated it to include the Georgian culture.
167 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
169         * sgen-gc.c: Include mono/utils/memcheck.h.
171         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
172         instead of the current domain, since the two might not match if this is called
173         from the debugger.
175         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
176         domain which created this assembly.
178 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
180         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
182 2009-12-17  Mark Probst  <mark.probst@gmail.com>
184         * sgen-gc.c: Managed implementation of the specialized generic
185         store write barrier.
187 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
189         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
190         A private virtual newslot method is used to implement an interface method without exposing
191         it to users. When querying for public instance methods, such method would hide a public one
192         on a parent type.
194         Fixes #564379.
196 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
198         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
199         conventions.
201 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
203         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
205 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
207         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
208         as they are no longer used.
209         
210          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
212         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
214 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
216         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
217         if the owner class has not been finished before returning reflection_info.      
219         Fixes #565127.
221 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
223         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
224         param doesn't have custom attributes. Fixes #565117.
226         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
227         #565120.
229 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
231         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
233 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
235         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
236         same amount done by a core-clr enabled runtime.
238 2009-12-15  Marek Habersack  <mhabersack@novell.com>
240         * appdomain.c (mono_make_shadow_copy): make sure access mode of
241         the target files is reset to writable by owner and readable by
242         everyone else to prevent problems when updating shadow copies of
243         files whose source is read-only. Fixes bug #556884
245 2009-12-15  Mark Probst  <mark.probst@gmail.com>
247         * class.c (mono_generic_class_get_class): Allocate the generic
248         class via malloc again, so that it can be freed when any one of
249         the images of its constituent types is closed.
251         * metadata.c: When closing an image, don't free generic insts and
252         generic classes right away, but put them into a list for later
253         freeing.
255         * image.c, metadata-internals.h: Store the free list and in the
256         second pass of closing an image, free it.
258 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
260         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
262         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
263         types in type_hash.
265         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
267 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
269         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
270         user type.
272         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
273         is used.
275 2009-12-14  Miguel de Icaza  <miguel@novell.com>
277         * verify.c (mono_method_verify): The Unused opcodes produce an
278         InvalidProgramException on .NET
280 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
282         * loader.c (mono_method_get_header): Move assert after the verifier
283         has been called on the method header.
285 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
287         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
289         * appdomain.c: Bump corlib version.
291 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
293         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
294         types as well since otherwise generic instances would not return UT as arguments but
295         their undelying system type.
297         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
298         to reflect the fact that they can have now multiple different types.
300         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
302         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
304         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
306         * reflection.c (mono_reflection_register_with_runtime): Init super types
307         if the image is not dynamic.
309         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
310         check if the generic type definition is a TypeBuilder.
312         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
313         doesn't belong to a dynamic image, skip initialization.
315         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
316         base definition is not a dynamic type.
318 2009-12-11  Marek Habersack  <mhabersack@novell.com>
320         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
321         mono_profiler_string_allocation
323         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
324         if string profiling is enabled, call
325         mono_profiler_string_allocation
327         * profiler.h: added two MonoProfileFlags -
328         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
329         installation functions for the hooks below.
331         * profiler-private.h, profiler.c: added two hooks:
332         mono_profiler_string_allocation called whenever a string is
333         allocated by InternalAllocateStr and mono_profiler_iomap called
334         whenever IOMAP code performs an adjustement on a file path.
336 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
338         * boehm-gc.c: fixed race condition while getting the target of a
339         disappearing link (bug #522233).
341 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
343         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
344         the error.
346 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
348         * reflection.c: Add mono_reflection_register_with_runtime icall to
349         allow a MonoGenericClass to register itself as the managed mirror of
350         a given generic instance.
351         This is a temporary workaround until all MGC instantiation happens in
352         managed code.
354         * object-internals.h: Ditto.
356         * icall-def.h: Ditto.
358 2009-12-10  Mark Probst  <mark.probst@gmail.com>
360         * sgen-gc.c (find_in_remsets): Also search the generic store
361         remsets.
363 2009-12-10  Mark Probst  <mark.probst@gmail.com>
365         * sgen-gc.c: Don't access class names in debugging code when
366         unloading a domain, because they might not be valid anymore.
368 2009-12-10  Mark Probst  <mark.probst@gmail.com>
370         * domain.c, domain-internals.h: New function mono_domain_unset().
372         * appdomain.c (unload_thread_main): Detach the thread again at the
373         end.
375         * threads.c: When a thread exists or is detached, unset its domain
376         so that it's NULL when, for example, a pthread destructor runs.
378         * sgen-gc.c: Assert that there is no domain set after a thread is
379         done.
381 2009-12-10  Mark Probst  <mark.probst@gmail.com>
383         * class.c (mono_generic_class_get_class),
384         metadata.c (free_generic_class): Allocate generic MonoClass's from
385         the image mempool, not via malloc.  The problem with malloc is
386         that when unloading a domain those classes are freed before
387         clearing the heap and SGen needs the classes.  Rewriting the
388         unloading code to do the free later would be more work and there's
389         no point in using malloc anyway.
391 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
393         * loader.c (mono_method_signature): Always call mono_loader_unlock 
394         before returning.
396 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
398         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
399         user string blobs.
401         * verify-internals.h: Add new function to the internal API.
403         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
404         check if it's a valid string.
406         * object.c (mono_ldstr): Ditto.
408         Fixes #561943.
410 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
412         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
413         from a method before returning it. This is the expected behavior.
415 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
417         * reflection.c (inflate_method): Handle the case of a regular system type.
419 2009-12-08  Mark Probst  <mark.probst@gmail.com>
421         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
422         gathering code.
424         * mempool.c, mempool-internals.h: New function
425         mono_mempool_get_bytes_allocated().
427         * Makefile.am: sgen-pinning-stats.c added.
429 2009-12-08  Mark Probst  <mark.probst@gmail.com>
431         * sgen-gc.c (create_allocator): Only use the fast path if the
432         object size is within the small object size limit.
434 2009-12-07  Mark Probst  <mark.probst@gmail.com>
436         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
437         possibly adding padding to sizeof (GCMemSection).
439 2009-12-07  Mark Probst  <mark.probst@gmail.com>
441         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
442         reference is not in the nursery.
444 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
446         * class.c (mono_class_from_typeref): Bounds check idx against the 
447         assemblyref table.
449 2009-12-07  Mark Probst  <mark.probst@gmail.com>
451         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
452         through the potential roots, then sort the results and find the
453         pinned objects from there.
455         * Makefile.am: sgen-pinning.c added.
457 2009-12-07  Mark Probst  <mark.probst@gmail.com>
459         * sgen-gc.c: Record generic stores in specialized remset buffers.
461 2009-12-06  Mark Probst  <mark.probst@gmail.com>
463         * sgen-gc.c: Make pinned chunks the same size as major heap
464         sections, and align them as well, so that we can check whether an
465         object is in a pinned chunk or a major section in constant time.
467 2009-12-06  Mark Probst  <mark.probst@gmail.com>
469         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
471 2009-12-06  Mark Probst  <mark.probst@gmail.com>
473         * sgen-gc.c: Make all major heap sections the same size (currently
474         128k) and allocate them on aligned addresses.  Small heap sections
475         give us better granularity with pinned objects - we can free up
476         much more memory.
478 2009-12-06  Mark Probst  <mark.probst@gmail.com>
480         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
481         output removed.
483 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
485         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
487         * mono/metadata/assembly.c: When opening an assembly image, pass the real
488         names in addition to the runtime generated one.
490         * mono/metadata/image.h: Add a function to take the real name of the assembly
491         image.
493         * mono/metadata/image.c: If a real name has been passed to load an assembly,
494         use it instead of the runtime generated one.
496         Code is contributed under MIT/X11 license.
498 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
500         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
501         before the other checks to prevent problems if the DateTime class is blittable.
502         Hopefully fixes #559600.
504 2009-12-05  Mark Probst  <mark.probst@gmail.com>
506         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
507         returns the largest string length that will not be put into the
508         LOS.
510         * sgen-gc.c, gc-internal.h: New function that returns the largest
511         object size that will not be put into the LOS.
513         * appdomain.c: Bump corlib version.
515 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
517         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
519         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
521 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
523         * reflection.c (inflate_method): Fix signature.
525         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
526         in managed code.
528 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
530         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
532 2009-12-03  Mark Probst  <mark.probst@gmail.com>
534         * sgen-gc.c: Abstract to-space handling.
536 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
538         * loader.c (find_method_in_class): Ignore methods with broken signatures.
540         Fixes #559906.
542 2009-12-03  Mark Probst  <mark.probst@gmail.com>
544         * sgen-gc.c: Only add references from outside the nursery to
545         within the nursery to the global remset list.
547 2009-12-03  Mark Probst  <mark.probst@gmail.com>
549         * appdomain.c (create_exceptions): Set the domain temporarily if
550         necessary to avoid cross-domain references.
552 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
554         * verify.c (get_stack_type): Return that the type is invalid instead of
555         asserting.
557         * verify.c (mono_method_verify): Verify that all locals and arguments
558         have valid stack types.
560         Fixes #559913.
562 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
564         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
565         bounds checking overflow aware.
567         Fixes #559910.
569 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
571         * verify.c (do_invoke_method): Check for invalid method signatures.
573         Fixes #553450.
575 2009-12-02  Jb Evain  <jbevain@novell.com>
577         * appdomain.c (MONO_CORLIB_VERSION): bump.
578         * icall-def.h (get_base_definition): renamed to get_base_method
579         and add a boolean argument indicating we want the original
580         method definition, or the immediate base method.
581         * icall.c: apply the get_base_definition to get_base_method change.
583 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
585         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
587         Fixes #558042.
589 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
591         * class.c: remove asserts for invalid type token in
592         mono_class_name_from_token(), mono_assembly_name_from_token() and
593         mono_class_create_from_typedef () (fixes bug #553318).
595 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
597         * metadata.c, class.c, loader.c: remove assert after bsearch() for
598         incorrect assemblies (bug #553322).
600 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
602         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
604         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
606         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
608         * class.c (inflate_generic_context): Ditto.
610         * loader.c (method_from_methodspec): Ditto.
612         Fixes #558230.
614 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
616         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
618         * class.c (mono_class_create_from_typespec): Ditto.
620         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
622         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
624         Fixes #558184.
626 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
628         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
630         * verify.c (verify_delegate_compatibility): Ditto.
632         * verify.c (do_newobj): Ditto.
634         Fixes #558046.
636 2009-12-02  Mark Probst  <mark.probst@gmail.com>
638         * sgen-gc.c: Use a gray queue instead of requiring that gray
639         objects are in a contiguous region.
641         * sgen-gray.c: The gray queue implementation.
643         * Makefile.am: sgen-gray.c added.
645 2009-12-02  Mark Probst  <mark.probst@gmail.com>
647         * appdomain.c: When unloading a domain, zero its static data and
648         perform a minor collection when using SGen.  That will get rid of
649         all the remsets pointing into that domain's static data.
651         * sgen-gc.c: Allow remsets into static data.  By doing this we
652         need less checks so we're more efficient.
654 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
656         * verify.c (mono_method_verify): Check for catch clauses with broken
657         types.
659         Fixes #558465.
661 2009-12-01  Jb Evain  <jbevain@novell.com>
663         * class.c (make_generic_param_class): set the namespace of
664         the generic parameter class from its owner, if available.
666 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
668         * verify.c (code_bounds_check): Do proper overflow checking.
670         * verify.c (mono_method_verify): The number of switch entries is
671         an unsigned int. Properly bounds check it.
673         Fixes #558594.
675 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
677         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
678         mono_metadata_method_has_param_attrs which only checks if a given param
679         list has a non zero flags entry.
681         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
682         to inform how many params should we expect to decode.
684         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
685         as it's faster than mono_metadata_get_param_attrs.
687         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
688         add mono_metadata_method_has_param_attrs.
690 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
692         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
693         failures.
695         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
696         is -1 but its class is broken.
698         Fixes #558522.
700 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
702         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
703         for parameter overflow.
705         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
706         of mono_metadata_get_param_attrs.
708         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
709         API.
711         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
713 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
715         * class.c (mono_class_setup_fields): Check for fields with broken types.
717         Fixes #558741.
719 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
721         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
722         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
723         its TypeBuilder::CreateType ().
725         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
726         if not needed.
728         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
729         to make setup_interface_offsets happy.
731         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
732         compilation now works.
734 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
736         * appdomain.c (create_exceptions): New helper function extracted from
737         mono_runtime_init () to precreate objects used during exception handling.
738         (mono_runtime_init): Call it.
739         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
741 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
743         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
744         compilation until the proper one is found.
746 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
748         * class.c (mono_class_setup_vtable_general): Cache the result of
749         get_virtual_methods () since it can be slow because of the metadata
750         optimization.
752         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
753         from a MonoValueHashTable for now, since the later is based on an earlier
754         version of hpj's internal probing code and seems to have serious collision
755         issues.
757         * loader.c (mono_get_method_full): Update after the change above.
759 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
761         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
763 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
765         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
766         the GTD instead of the DGC instead of crashing.
768         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
769         required. Inflate fields if needed.
771         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
772         finished. Renamed.
774 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
776         * class.c (check_interface_method_override): Check for NULL signatures and fail
777         the type.
779         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
781         Fixes #553428.
783 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
785         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
786         the MONO_METHOD_FLAGS column instead of decoding the whole row.
788 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
790         * loader.c (field_from_memberref): Resolve the class first then the field
791         signature. Remove a lot of duplicated code and make sure we don't pass valid
792         values to mono_loader_set_error_field_load.
794         Fixes #553306.
796 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
798         * class.c (inflate_generic_type): Change code to use new signature of
799         mono_error_set_bad_image.
801         Fixes #558124.
803 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
805         * verify.c (mono_method_verify): Don't free ctx.params items if 
806         we aborted while inflating the ctx.locals. Complete previous fix
808 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
810         * verify.c (mono_method_verify): Use the uninflated type name, 
811         when the inflated is null, to report errors. Also take care when
812         freeing, not to free everything since, in case of an error, some
813         stuff would be copies (i.e. not allocated by the function itself)
814         Fix bug #558145
816 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
818         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
819         or overflow. The caller must have done this check explicitly. This guard us
820         from accessing invalid memory.
822         * verify.c (do_push_static_field): Check for stack overflow.
824         Fixes #553333.
826 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
828         * loader.c (find_method_in_class): Don't crash if the signature cannot
829         be resolved.
831         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
832         of asserting for the case of invalid params.
834         Fixes #553304.
836 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
838         * image.c (mono_image_load_module): Fix crash when a bad assembly
839         has no module at all (fix bug #553412) and also replace the 
840         g_assert with a return NULL (documented return value for failure)
842 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
844         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
846 2009-11-23  Miguel de Icaza  <miguel@novell.com>
848         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
849         file attribute to managed code and avoid doing the mask/attribute
850         checks here. 
852 2009-11-22  Miguel de Icaza  <miguel@novell.com>
854         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
855         the managed world.
857         * icall-def.h: New entry points.
858         
859 2009-11-19  Mark Probst  <mark.probst@gmail.com>
861         * process.c: Don't put references to managed objects into a
862         g_ptr_array.
864 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
866         * class.c (can_access_internals): Allow CoreCLR to participate in
867         allowing (or not) [InternalsVisibleTo] between assemblies.
868         * security-core-clr.c|h: Make sure that only trusted code (a 
869         superset of platform code) can access the internals of platform
870         code.
872 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
874         * reflection.c: use the correct base class to get the virtual method
875         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
877 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
879         * security-core-clr.c (get_caller_no_reflection_related): 
880         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
881         it's still reflection and must be filtered correctly.
883 2009-11-16  Mark Probst  <mark.probst@gmail.com>
885         * object.c (compute_class_bitmap): Fix for large bitmaps.
887 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
889         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
891         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
892         koush@koushikdutta.com). Disable GC_no_dls on android.
894 2009-11-12  Mark Probst  <mark.probst@gmail.com>
896         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
897         tlab_next points outside the TLAB because the allocator was
898         interrupted.
900 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
902         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
904 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
906         * object-internals.h: Change signature for mono_string_to_utf8_image.
908         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
909         argument.
911         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
912         exceptions due to mono_string_to_utf8.
914 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
916         * object-internals.h: Change signature for mono_string_to_utf8_mp.
918         * object.c (mono_remote_class): Make sure all resources are released before
919         raising an exception.
921         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
923 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
925         * mono-perfcounters.c (network_get_impl): Change variable initialization
926         ordering to fix potential memory leak in case of exceptions.
928         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
929         encoded strings.
930         
931 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
933         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
934         variable initialization ordering to fix potential memory leak in case
935         of exceptions.
937 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
939         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
940         needed.
942 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
944         * appdomain.c: Fix shadow path code to better deal with exceptions.
946 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
948         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
949         exception in the middle of the runtime code.
951 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
953         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
954         leak memory with broken envvar value.
956 2009-11-06  Mark Probst  <mark.probst@gmail.com>
958         * reflection.c (mono_reflection_setup_internal_class): Because
959         nested classes are not added to the name cache, we must put them
960         in the reflection_info_unregister_classes list.
962 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
964         * class.c: When CoreCLR is enabled don't call mono_init_com_types
965         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
966         platform (trusted) code. Instead we return a TypeLoadException to
967         be thrown later. This is the exception thrown by Silverlight 2 if
968         a type, inside application (user) code is marked with [ComImport]
970 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
972         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
973         mono_is_debugger_attached () too.
975         * mono-debug.c (mono_is_debugger_attached): New helper function.
976         (mono_set_is_debugger_attached): Ditto.
978 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
980         * object-internals.h: Add mono_string_to_utf8_checked.
982         * object.c: Implement mono_string_to_utf8_checked.
984 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
986         * class.c: Add missing check for load errors after every
987         call to mono_class_setup_fields
989         Fixes #552282.
991 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
993         metadata-verify.c (verify_tables_schema): Fix the error message.
995 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
997         * metadata.c: Change event table schema to use TDOR for event type
998         as this is what it's meant to be.
1000         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1001         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1002         entry.
1004         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1005         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1006         rows in MONO_TABLE_GENERICPARAM.
1008         Fixes #552289.
1010 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1012         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1013         insertion.
1015         * reflection.c (mono_reflection_setup_internal_class): Avoid
1016         registering a gc root the same MonoClass multiple times.
1017         Don't register nested types on the global scope as they should
1018         not be available there.
1020 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1022         * culture-info-tables.h: regenerated.
1024 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1026         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1028 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1030         * string-icalls.c|h: Remove string internal calls that are not 
1031         used anymore by the class libraries.
1032         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1033         which is not used in the class librairies.
1034         * icall-def.h: Update tables.
1036 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1038         * class.h: Move mono_class_inflate_generic_type_checked...
1040         * class-internals.h: to here and make it internal. We don't want to
1041         further expose MonoGenericContext. 
1043 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1045         * verify.c (mono_method_verify): Improve error message.
1047 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1049         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1050         the token is already properly encoded. Fixs 4.0 build.
1052 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1054         * locales.c (construct_number_format): Check if the number index is
1055         valid before trying to use it, if not, just return.
1056         
1057 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1059         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1060         since that loses the abort state. Fixes #539394.
1062 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1064         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1065         explicit this argument to the call signature.
1066         (mono_marshal_get_icall_wrapper): Ditto.
1068 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1070         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1071         to indicate which assembly to use when resolving a custom-mod.
1073         Fixes handling of volatile fields used across assemblies as reported in #551513.
1075 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1077         * loader.c: Improve error messages.
1079 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1081         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1082         of interfaces. Fixes IKVM.
1084         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1086 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1088         * verify.c (verifier_inflate_type): Return the inflated type on success.
1090 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1092         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1094         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1096         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1098         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1099         flag set.
1101         * profiler.c: Add new profiler callbacks for runtime invoke.
1103         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1105 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1107         * sgen-gc.c: Keep track of the reason for a major collection and
1108         write it to the heap-dump file.
1110 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1112         * threads.c: refactor the code that initializes the
1113         thread_start_args into a reusable function and use this in the two
1114         methods that start up threads.
1116 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1118         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1119         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1121 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1123         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1124         Until now, we only had the per-cpu(core) counters.
1126 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1128         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1129         mono_gc_get_suspend_signal(), which returns the suspend signal
1130         number used by the GC.
1132 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1134         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1136         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1137         signalling start_notify.
1139 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1141         * appdomain.c: do not test the st_mode field for shadow-copies.
1142         Fixes bug #545276.
1144 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1146         * threadpool.[ch]: added hooks for thread start/finish and item
1147         processing begin/end. For monotouch use only.
1149 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1151         * threads.c (mono_thread_get_name): New helper function.
1153         * reflection.c (resolve_object): Set handle_class for strings too.
1154         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1155         a cattr blob into a set of arrays and structures without creating the custom
1156         attributes themselves.
1157         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1159         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1161         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1162         function.
1164 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1166         * verify.c: Replace calls to mono_class_inflate_generic_type with
1167         mono_class_inflate_generic_type_checked. Fixes #480005.
1169 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1171         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1172         object since not all paths lead to callees initing it.
1174 2009-10-23  Alp Toker  <alp@nuanti.com>
1176         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1177         header and should not be shipped:
1179         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1180         which is specific to the mono build. Not going to work.
1182 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1184         * security-manager.c: Report if core-clr is active from
1185         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1186         to allow Moonlight BCL to behave appropriately (both in browser
1187         and outside, e.g. smcs)
1189 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1191         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1192         Fixes bug #549108.
1194 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1196         * class.c: fix typo.
1198 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1200         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1201         a MonoError parameter.
1203         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1204         version that can does proper error handling.
1206         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1208         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1210         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1212 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1214         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1215         NO_UNALIGNED_ACCESS is defined.
1217 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1219         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1220         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1221         Fixes #549173.
1223 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1225         * sgen-gc.c: Shorten sections whenever possible.
1227 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1229         * sgen-gc.c: Use our portable semaphore #defines.
1231 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1233         * sgen-gc.c: A debug option for dumping the heap layout to a file
1234         after each collection.
1236 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1238         * sgen-gc.c: Make managed write barriers atomic via
1239         thread-restarts.
1241 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1243         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1244         methods. Fixes #543021.
1246 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1248         * socket-io.[ch]: fix VS build.
1250 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1252         * icall-def.h:
1253         * socket-io.[ch]: implemented SendFile.
1255 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1257         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1258         before the interfaces to avoid crashes later if class initialization fails.
1259         Fixes #548417.
1261         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1262         Fixes #548276.
1264 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1266         * domain.c: Bump 4.0 version.
1268 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1270         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1271         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1272         check since 'pubkey' can't be NULL at this stage
1273         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1274         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1275         initialization of 'iter'
1277 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1279         * cominterop.c : Search the interface parts of vtable to find 
1280           method matches.  Fixes 547030.
1282         Code is contributed under MIT/X11 license.
1284 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1286         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1287         multiple targets. Fixes bug #574426.
1289 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1291         * profiler.h: Put here the definition of
1292         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1293         (and fix the build...).
1295 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1297         * profiler.c, profiler.h, profiler-private.h:
1298         Added support for different ways of getting call chains in stat mode.
1300 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1302         * object.c, object-internals.h: New function for computing the
1303         size of an array, factored out of mono_array_new_full().  Use
1304         SGen's functions for allocating arrays and vectors.
1306         * sgen-gc.c, gc-internal.h: Special functions for allocating
1307         arrays and vectors without race conditions.  A managed array
1308         allocator method.
1310         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1312 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1314         * object.c, object.h, icall.c: Write barriers do the copying now,
1315         as well, so no need for an additional memcpy.
1317         * sgen-gc.c: Lock when storing remsets.  Do the memory
1318         copying/moving in the write barriers.
1320         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1322         * reflection.c: Added an assert.
1324 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1326         * threads.c, process.c: A few missing write barriers.
1328 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1330         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1331         network performance counters for bytes sent per second, bytes
1332         received per second, and bytes total per second.
1334         Code is contributed under MIT/X11 license.
1336 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1338         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1339         Fix warning.
1341 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1343         * threads.c, object-internals.h, object.c: Move code for
1344         transferring an object to a different domain (via
1345         serialization/remoting) to object.c.
1347         * object.c (call_unhandled_exception_delegate): If the exception
1348         is in a different domain than the delegate, transfer the exception
1349         to that domain.
1351 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1353         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1354         Fixes #322934.
1356 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1358         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1360 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1362         * object.c (mono_method_return_message_restore): Handle the case
1363         where the argument is an instance of a generic type.  Fixes
1364         #544446.
1366 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1368         * object.c (set_value): Write barrier fix - we must pass the
1369         count, not the size.
1371 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1373         * domain.c (mono_init_internal): Print a useful error message when encountering
1374         an old mscorlib, instead of crashing. Fixes #544307.
1376 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1378         * appdomain.c (copy_app_domain_setup): Fix a warning.
1380         * debug-helpers.c (dis_one): Ditto.
1382 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1384         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1385         into the new domain, instead of referencing the original one.
1387         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1388         non-static.
1390         * appdomain.c: Corlib version bump.
1392 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1394         * threadpool.c: one more...
1396 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1398         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1399         threads to die because we're shutting down. delgate5.exe works again.
1401 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1403         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1404           ccw_interface_hash table when a ccw is finalized.
1406         Code is contributed under MIT/X11 license.
1408 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1410         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1411         domain and image unloading into two steps.  We must do this
1412         because clearing the domain in SGen requires the class metadata to
1413         be intact, but we need to free the mono_g_hash_tables in case a
1414         collection occurs during domain unloading and the roots would trip
1415         up the GC.
1417 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1419         * object-internals.h: Remove serialized culture fields from
1420         MonoInternalThread.
1422         * icall-def.h, thread-types.h, threads.c: Remove serialized
1423         culture icalls.
1425         * appdomain.c: Corlib version bump.
1427 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1429         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1430         Fixes #543133.
1432 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1434         * sgen-gc.c: Try to shorten the new section after a major
1435         allocation to avoid ever-growing sections.
1437 2009-10-13  Martin Baulig  <martin@ximian.com>
1439         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1440         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1441         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1442         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1444         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1446 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1448         * threadpool.c: fixed the order in which 'completed' and the wait
1449         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1450         No need to use the wait_handle field of ASyncCall. Make sure the
1451         threadpool is active when adding a job or queueing an idle thread.
1453 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1455         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1457         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1458         when using --compile-all.
1460 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1462         * metadata.c (free_generic_class): Unregister the field_objects
1463         roots if we're using SGen.
1465 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1467         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1468         for GenericParamTableEntry.gparam.
1470 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1472         * marshal.c: don't create the handle when calling. It is created later
1473         if needed.
1475 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1477         * sgen-gc.c: Warning fixes.
1479 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1481         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1482         whole heap for cross-domain references before each collection.
1484         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1485         object.
1487         * threadpool-internals.h, threadpool.c: New function
1488         mono_thread_pool_is_queue_array() for checking whether a given
1489         array is used as a (cross-domain) queue by the thread pool code.
1491 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1493         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1494         searches the whole heap for objects containing a specific
1495         reference.  Only for debugging.
1497 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1499         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1501         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1502         byte arrays between domains.
1504 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1506         * threadpool.c:
1507         * class-internals.h:
1508         * mono-perfcounters-def.h:
1509         * mono-perfcounters.c:
1510         -There is a list of idle threads
1511         -Each of those idle threads wait on their own WaitHandle instead
1512         of all of them using the same semaphore. When a new work item is
1513         added, the job is assigned directly to an idle thread or a newly
1514         created one if possible and then the handle for that thread is
1515         signaled. Compare that to the current approach where all the
1516         threads in the pool compete to dequeue a job from the same
1517         queue.
1518         -New struct ThreadPool that brings together the bunch of static
1519         variable for each threadpool (IO and regular).
1520         -New performance counters: # of items added and its rate per
1521         threadpool. The rate will be used later, perhaps together with
1522         other perf. counters, to decide when idle threads should exit.
1524 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1526         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1527         Fix typo on Windows build.      
1528         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1529         
1530         Code is contributed under MIT/X11 license.
1532 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1534         * object-internals.h: The Thread class is split up into Thread and
1535         InternalThread now.  We have exactly one InternalThread per
1536         thread, and at most one Thread per appdomain per thread.  Most
1537         data is stored in InternalThread.  All InternalThread objects live
1538         in the root domain.
1540         * class-internals.h: Add internal_thread_class to MonoDefaults.
1542         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1543         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1544         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1545         resulting from the split of the Thread class.
1547         * gc-internal.h: Prototype for new function for checking whether a
1548         thread is the finalizer thread.
1550         * appdomain.c: Corlib version bump.
1552 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1554         * appdomain.c|h: Add a mono_domain_try_unload method which is
1555         equivalent to mono_domain_unload, except that it returns an exception
1556         instead of throwing it. Make mono_domain_unload use the
1557         mono_domain_try_unload method to avoid code-duplication.
1559 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1561         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1562         a problem.
1564 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1566         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1567         aborting when a conversion is not implemented.
1569 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1571         * verify.c: when comparing culture strings, use g_ascii_strcmp
1573         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1574         when comparing public key tokens to use memcmp on 16 bytes.   I do
1575         not believe this ever worked as advertised in the past.
1577         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1578         which would have always failed earlier.
1580 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1582         * gc.c: Raise a NullArgumentException if the object passed is
1583         null.
1585 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1587         * image.c (mono_image_close): Atomically decrement the reference count and
1588         remove the image from the hash tables, to prevent another thread from seeing a
1589         dying MonoImage. Fixes #541194.
1591 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1593         * threadpool.c: actually use the minimum number of 'completion ports'
1594         (for us is just a potential worker thread).
1596 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1598         * threadpool.c: remove ares_htable. It does not make sense any more
1599         since the same objects are now stored in GC-tracked arrays while they are
1600         in the queue.
1602 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1604         * threadpool.c: increase the minimum length of the queues to 128.
1605         Remove warning.
1607 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1609         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1610         return the modified signature used by string ctors.
1612 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1614         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1615         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1616         method, to be used by full-aot.
1618 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1620         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1621         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1622         be known to be good.
1624         * class.c (mono_class_init): Fail array types if their element type fails initialization
1625         as well.
1627         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1628         initialization, additionally we request the element_type vtable to be initialized as well.
1630         This is fine and should not increase the working set in any meaningful way since it's reasonable
1631         to assume       that most code will create an array and eventually populate it, which will require the
1632         type's vtable to be initialized.
1634         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1636 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1638         * normalization-tables.h : regenerated.
1640 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1642         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1643         a leb128 encoding can take up to 5 bytes.
1645 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1647         * class.c (verify_class_overrides): Remove useless argument.
1649         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1650         before interface enumeration as this is no longer required.
1652 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1654         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1655         used under mono_class_init context. This functions avoid any code path that
1656         calls mono_class_init, which leads it to be slow as some things like the interface
1657         bitmap are not available.
1659         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1660         of it's own broken version. Fixes the verifier part of #538588.
1662         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1663         API.
1665 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1667         * class.c (mono_class_init): Always set an exception in a class if
1668         vtable setup fails.  Fixes #538577.
1670         * generic-sharing.c: Raise an exception if mono_class_vtable()
1671         returns NULL.
1673 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1675         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1676         methods of vtypes, as they could be incorrectly shared with static methods
1677         taking an IntPtr argument.
1679 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1681         * domain.c:
1682         * object.c:
1683         * class-internals.h: renamed waithandle_class to
1684         manualresetevent_class.
1685         * marshal.c: propagate the exception if a remoting BeginInvoke call
1686         fails.
1688 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1690         * object.c: Properly handle vtable failures.
1692 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1694         * socket-io.c: Assert on vtable failure.
1696         * mono-mlist.c: Assert on vtable failure.
1698 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1700         * marshal.c: Assert on vtable failure.
1702 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1704         * icall.c: Properly handle vtable failures.
1706 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1708         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1710 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1712         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1714         * console-unix.c (do_console_cancel_event): Same.
1716 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1718         * class-internals.h: Add mono_class_vtable_full function that allows control
1719         if an exception should be raised or not.
1721         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1722         to do what its documentation say, that is to return NULL and set exception_type on
1723         failure.
1725         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1726         and change the code to honor it.
1728 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1730         * verify.c: Fix typo in error message.
1732 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1734         * security-core-clr.c: Fix default_platform_check so it can run
1735         the runtime coreclr tests (without an infinite recursion when
1736         throwing an exception).
1738 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1740         object.c (mono_delegate_ctor_with_method): Guard against null method.
1742 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1744         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1745         that should be replaced with error handling later.
1747 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1749         * marshal.c (mono_delegate_end_invoke): Fix warning.
1751 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1753         * loader.c (mono_field_from_token): Properly handle invalid
1754         dynamic tokens.
1756 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * pedump.c (verify_image_file): Skip types that can't be
1759         decoded.
1761 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1763         * verify.c: Look for recursive valuetypes only against the
1764         type been initialized as this is a lot simpler and works.
1766 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1768         * verify.c: Ensure that fields are properly loaded before
1769         checking them.
1771 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1773         * object.c (mono_object_get_virtual_method) : Call 
1774           mono_cominterop_get_invoke if the object is a COM object.
1776         Code is contributed under MIT/X11 license.
1778 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1780         * verify.c: Check for recursive valuetype definitions.
1782 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1784         Use inheritance-aware interface offsets. Inherited types use the same offsets
1785         of their parents. This reduce offset duplication in case more than one type in
1786         the inheritance tree explicitly implements the same interface.
1788         This also removes a source of vtable bubbles found in #532409. An abstract type
1789         isn't required to provide abstract methods to all interfaces it implements, which
1790         resulted in a bubble with the previous scheme as the child would get a non-full
1791         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1792         should be fixed.
1794         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1795         it's expected to not cause any significant increase beyond that.
1797         * class.c (setup_interface_offsets): Compute super class iface offsets
1798         first to force sharing.
1800         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1801         dumping only the relevant ones.
1803         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1804         methods a new slot regardless if they belong to an interface or not. This allows
1805         an inherited type to override the iface method separately from the class one.
1807 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1809         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1810         applications that take less than 2s to execute.
1811         Bug #524984 fixed.
1813 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1815         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1817         * object.c (mono_get_runtime_callbacks): New helper function to return
1818         the runtime callbacks.
1820         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1821         mono_get_runtime_build_info () as the display name.
1822         
1823 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1825         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1826         argument, since NEWARR expects a native int. Fixes #481559.
1828 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1830         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1831         against broken SRE methods.
1833 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1835         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1836         a NULL variable. Abort early on failure.
1838 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1840         * class.c (can_access_type): Fail visibility test for non nested
1841         types with nested visibility.
1843 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1845         * assembly.c (parse_public_key): Avoid allocating (and not 
1846         freeing) the public key array when it's not requested by the 
1847         caller.
1848         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1849         ves_icall_System_Threading_Thread_Thread_internal): Free 
1850         allocated memory on error.
1852 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1854         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1856 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1858         * class.c (mono_class_setup_fields): Remove duplicated local variable
1859         named gklass.
1860         Rename gklass to gtd to reflect the fact that it points to the generic
1861         type definition.
1862         Remove the duplicated call to mono_class_setup_fields on gtd and move
1863         the error check to the beginning.
1865 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1867         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1868         Remove cruft of the previous patch.
1870 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1872         * metadata-verify.c (verify_method_table): Check for abstract + final.
1873         Fixes #534175.
1875 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1877         * verify.c (verify_class_fields): Check for duplicate fields.
1879 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1881         * metadata-verify.c: Verify the typeref table for duplicates.
1883 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1885         This reverts r140936 and properly handles interfaces with static methods. The
1886         right fix is to ensure vtables without bubles which is an easier to verify
1887         constraint. We should avoid such special cases as of the reverted patch as those
1888         only make the runtime more brittle.
1890         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1891         static methods on interfaces.
1893         * class.c (setup_interface_offsets): Use the number of virtual methods when
1894         calculating interface offsets instead of the number of methods. This way we
1895         avoid bubles on the layout.
1897 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1899         * metadata-verify.c (verify_metadata_header): Some very smart
1900         obfuscators like to add extra stream headers. Ignore them.
1902 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1904         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1905         methods correctly.
1907 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1909         * metadata-verify.c: Verify for duplicated types.
1911 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1913         * metadata-verify.c (verify_typedef_table): Verify for nested types
1914         without an entry on the nested class table.
1916 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1918         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1919         <tom_hindle@sil.org>. Add locking around hash table accesses.
1921 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1923         * verify.c (mono_verifier_verify_class): Verify all interface if
1924         really are interfaces. Fixes #534184.
1926 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1928         * pedump.c: Initialize all types during metadata validation so we report
1929         errors only detected as part of class initialization.
1931 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1933         * metadata-verify.c (verify_method_table): PInvoke requires method to
1934         be static. Fixes #534189
1936 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1938         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1939         being NULL.
1941 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1943         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1944         for holes or bad methods. Fixes #525314.
1946 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1948         * class.c (setup_interface_offsets): Don't allocate slot
1949         for the same interface multiple times. This creates bubbles
1950         that waster space and make vtable verification harder.
1952         The same interface get a slot multiple times since we need
1953         to get the closure of all implemented interfaces, which means
1954         the same interface is reported multiple times.
1956 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1958         * verify.c (mono_verifier_verify_class): Don't check the fields
1959         of generic instances since the context on which they got expanded
1960         might lead to false positives.
1962         Such thing happens when a generic type is inflated in the context
1963         of a generic method and the inflated type of a field turns into a
1964         generic method argument, which causes the checking code to think
1965         it's an invalid class when it's not.
1967 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1969         * verify.c (mono_type_is_valid_in_context): Verify if type
1970         is NULL and remove duplicate test.
1972 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1974         * verify.c (mono_verifier_verify_class): Check fields for
1975         invalid generic arguments.
1977 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1979         * class.c (verify_class_overrides): Verify if for static
1980         and non virtual methods.
1982 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1984         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1985         Check for errors after retrieving the vtable.
1987 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1989         * class.c (mono_class_setup_vtable_general): Verify
1990         if method overrides are valid before processing them.
1992 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1994         * marshal.c (mono_array_to_lparray): Fix minimal build with
1995         cominterop disabled.
1997         * marshal.c (mono_free_lparray): Same.
1999 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2001         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2002         the hash function for the ares_htable.
2004 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2006         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2007         bit for assembly flags. MS is ok with it but there is no spec anywhere
2008         on its mean
2010 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2012         * class.c (mono_class_create_from_typedef): Emit profiler events
2013         in all cases.
2015 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2017         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2018         Release memory on failure.
2020 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2022         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2023         to the internal API.
2025         * metadata.c (get_constraints): Use a single-linked table as we don't
2026         traverse it backward. Fail and return FALSE if only of the contraint types
2027         is not found.
2029         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2030         to mono_metadata_load_generic_param_constraints except for having a return value.
2031         This has to be done since the later is part of the public API.
2033         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2034         and fail the type.
2036         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2037         and fail the method.
2039 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2041         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2042         with MS broken behavior of emmitting EH section sizes without the
2043         header size added.
2045 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2047         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2048         memory until we're sure that we'll need it. This avoids leaking for
2049         broken types or duplicated instantiation.
2051 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2053         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2054         mistake.
2056 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2058         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2059         and expected size calculation.
2061 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2063         * class.c (mono_class_get_field_idx): Add fixme for broken
2064         behavior for types with multiple fields with the same name.
2065         I would rather fix it, but have no idea on how to generate
2066         such artifact for testing.
2068 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2070         * verify.c (verifier_load_field): We should allow references to
2071         fields to be made using the generic type definition. It's up to
2072         the loader system to fail invalid ops.
2074         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2075         are invalid.
2077 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2079         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2081         * metadata-internals.h: Fix declaration of 
2082         mono_metadata_interfaces_from_typedef_full.
2084         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2085         heap_alloc_result parameter that controls if the result should be
2086         g_malloc'd.
2088         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2089         array be g_malloc'd and properly document this public API function.
2091 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2093         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2094         remove METHOD_HEADER_TINY_FORMAT1.
2096         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2098         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2100         Both spec and MS uses only 2 bits to enumerate the kind of header.
2101         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2102         is superfluous, only used for tiny headers with odd code lengths.
2104         This change also make sure that mono doesn't wronly interpret bit 2
2105         of fat header flags, which is currently reserved.
2107 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2109         * metadata.c (do_mono_metadata_parse_type): Do error
2110         checking for element types. Don't abort if presented
2111         with a broken type kind.
2113 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2115         * metadata.c (mono_metadata_parse_method_signature_full):
2116         Gracefully fail bad vararg signatures.
2118 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2120         * profiler.c:
2121         * class.c: Fix warnings for uninitialized variables.
2123 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2125         * icall.c: Fix _NSGetEnviron method declaration warning.
2127 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2129         * icall.c:
2130         * reflection.c: Make bitwise checks explicit.
2132 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2134         * debug-helpers.c:
2135         * marshal.c: Fix printf warnings.
2137 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2139         * reflection.c (encode_cattr_value): Fix a warning.
2141 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2143         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2144         of array bounds.
2146 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2148         * loader.c (mono_method_signature): Don't assert on broken
2149         signature. Print a more useful error message.
2151 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2153         * loader.c (mono_method_get_marshal_info): Assert if
2154         signature is invalid. Bounds check stores to the
2155         mspecs array;
2157 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2159         * loader.c (field_from_memberref): Fix warning.
2161 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2163         * loader.c (mono_method_get_param_names): Check if signature
2164         is null. Don't store beyond the size of the name array.
2166 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2168         * loader.c (mono_get_method_constrained): Check if signature
2169         is null.
2171 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2173         * loader.c (mono_loader_set_error_bad_image): Improve
2174         error messages.
2176 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2178         * loader.c (mono_get_method_full): Convert an assertion
2179         into a loader error.
2181 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2183         * class-internals.h, class.c: Better naming and documentation.
2185 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2187         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2188         obj is NULL.
2190 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2192         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2193         parsing fails.
2195 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2197         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2198         errors with no class set.
2200         * loader.c (field_from_memberref): If the field signature is of the wrong
2201         type fail with a MissingFieldException instead of a BadImageException as
2202         this is the behavior observed on MS. 
2204 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2206         * loader.c (field_from_memberref): Don't crash if either the field
2207         signature or the typespec class are invalid.
2209 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2211         * verify.c (verifier_load_field): Don't allow field related
2212         ops to reference fields on generic type definition.
2214 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2216         * metadata-verify.c: Add new warning level for errors specified
2217         by ECMA 335 but that MS ignores.
2219         * metadata-verify.c (verify_method_table): Make compiler controled
2220         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2221         this check is safe because the end result will only be some visibility
2222         exceptions been thrown.
2224 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2226         * verify.c (get_boxable_mono_type): Don't allow the
2227         use of the generic type definition on boxed type positions.
2229         Fixes #531237.
2231 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2233         * threadpool.c: Make sure no cross-domain references remain in
2234         ares_htable or the arrays that are thrown away when resizing.
2236 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2238         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2239         list of classes for which we have to unregister reflection_info
2240         with the GC and which are not in the namespace cache.
2242         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2243         the class to the list.
2245 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2247         * domain.c (mono_domain_free): Unregister the GC roots in
2248         MonoDomain.
2250 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2252         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2254 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2256         * class.c: Add mono_class_get_field_from_name_full which does
2257         the same as mono_class_get_field_from_name but does check field
2258         signature as well.
2260         * class-internals.h: Export mono_class_get_field_from_name_full as
2261         part of the internal API.
2263         * loader.c (field_from_memberref): Search fields by name and signature
2264         as it's valid to have two fields with same name but different types.
2266         Fixes #528055.
2268 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2270         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2272         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2274         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2275         System.Type.
2277 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2279         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2281         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2283 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2285         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2286         to sgen-scan-object.h, which can be included and parameterized via
2287         macros.
2289         * Makefile.am: sgen-scan-object.h added.
2291 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2293         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2295 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2297         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2298         before clearing a domain in the GC.
2300 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2302         * exception.c (mono_exception_from_name_domain): Actually create
2303         the exception in the specified domain.
2305         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2306         OutOfMemoryException a bit later so that the domain is inialized
2307         "enough" that it works.
2309 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2311         * threads.c (thread_cleanup): Clean up the cached_culture_info
2312         array to prevent cross-domain references.
2314 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2316         * metadata.c: more documentation for MonoType accessors.
2318 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2320         Fix incorrect size definitions where the tail array isn't a list
2321         of pointers
2322         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2323         define size.
2324         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2325         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2326         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2328 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2330         * reflection.h:
2331         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2333 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2335         * metadata.c:
2336         * loader.c:
2337         * metadata-internals.h:
2338         * method-builder.c:
2339         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2341 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2343         * cominterop.c:
2344         * metadata.c:
2345         * metadata.h:
2346         * loader.c:
2347         * marshal.c:
2348         * reflection.c: #define for sizeof in MonoType and
2349         MonoMethodSignature.
2351 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2353         * domain.c:
2354         * domain-internals.h: add and use #define's instead of sizeof()
2355         for MonoJitInfo and MonoJitInfoTable.
2357 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2359         * object.c:
2360         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2362 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2364         * metadata.c:
2365         * metadata.h:
2366         * object.c:
2367         * class-internals.h:
2368         * generic-sharing.c:
2369         * marshal.c: use a #define instead of sizeof() for a few
2370         structures that use a zero-length array.
2372 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2374         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2375         to handle inflated generic methods.
2377         * appdomain.c: Bump corlib version.
2379         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2380         instances.
2382         * reflection.c (fixup_method): Same
2384         * reflection.c (resolve_object): Same.
2386         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2387         g_error and a decent message.
2389 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2391         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2392         from the object because it could not yet be available globally
2393         (it happens if the profiler tries to create a gchandle on the
2394         MonoThread object of a thread that is still registering itself
2395         with the runtime).
2397 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2399         * reflection.c (mono_generic_class_get_object): Initialized the
2400         managed type arguments array.
2402         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2404         * appdomain.c: Bump corlib version.
2406 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2408         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2409         #527902.
2411 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2413         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2414         Avoid a crash if synch_cs is not set.
2415         
2416         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2417         Handle the case when the handle is 0.
2419         * appdomain.c: Bump corlib version.
2421 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2423         * reflection.c (mono_type_get_object): Fix a warning.
2425 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2427         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2428         descriptor here.  We assume it's already been computed.
2430         * generic-sharing.c (instantiate_other_info): Compute the GC
2431         descriptor for info type MONO_RGCTX_INFO_KLASS.
2433 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2435         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2436         type, so don't use MONO_OBJECT_SETREF to set a field.
2438 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2440         * gc.c: We were missing one case where invoking a finalizer would
2441         not reset the domain.  Also, in the finalizer thread loop, assert
2442         that we're in the root domain.
2444 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2446         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2447         if the type is not an array.
2449 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2451         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2452         method bound to the declaring type of the method. Raise an exception
2453         if the type is not a generic param.
2455 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2457         * class.c (print_unimplemented_interface_method_info): Print the
2458         full type name.
2460         * class.c (mono_class_setup_vtable_general): When dealing with a
2461         generic instance first check if the generic type definition is
2462         not broken.
2464 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2466         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2468         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2470         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2472         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2474         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2476         Code is contributed under MIT/X11 license
2478 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2480         * verify.c: Fix naming of stelem and ldelem.
2482 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2484         * generic-sharing.c: Replace the templates lock with the loader
2485         lock because of very hard to resolve deadlock issues.
2487 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2489         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2490         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2491         directly. Fixes #525338.
2493         * class.c (mono_class_get_vtable_size): New helper function.
2495         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2496         the field belongs to the type. Fixes #525733.
2498 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2500         * sgen-gc.c: When we stop a thread and its stack top is not within
2501         its allocated stack (because it's in an altstack signal handler),
2502         restart it and stop it again, until it is.
2504 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2506         * sgen-gc.c: Take a thread's stack top and registers from the
2507         sigcontext in the suspend signal handler.
2509         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2510         stuff to sgen-archdep.h.
2512         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2513         caller, because have code in sgen-archdep.h to acquire that data.
2515 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2517         * profiler.c, profiler.h, profiler-private.h:
2518         Added support for keeping track of code chunks and buffers.
2520 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2522         * metadata-verify.c: Fix endianness problems on decoding functions.
2523         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2525 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2527         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2528         schema for vectors and one dimension SZARRAY.
2530 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2532         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2533         schema for vectors and one dimension SZARRAY.
2535 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2537         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2538         Interlocked.(Compare)Exchange with object arguments, which invoke
2539         write barriers.
2541 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2543         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2544         passed invalid arguments.   Fixes another crasher in the
2545         Silverlight test suite.
2547         * class.c (mono_class_array_element_size): Return 0 for the size
2548         of the class;  This fixes the crasher exposed by :
2550         typeof (void).MakeArrayType ();
2552         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2553         if there is no method to dereference.    Put all the code that
2554         depends on this inside the if (method) block.
2556         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2557         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2559         With this change, we pass the test.
2560         
2561         * reflection.c (mono_reflection_sighelper_get_signature_local):
2562         Only dereference the assembly if it has been set.    Fixes a
2563         crasher exposed by #525328
2565 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2567         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2568         don't perform the store in mono_gc_wbarrier_generic_nostore().
2569         Remove the second argument (value), which is not needed.
2571 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2573         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2574         the build.
2576         * boehm-gc.c: Ditto.
2577         
2578 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2580         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2581         not perform the store itself.  Introduce
2582         mono_gc_wbarrier_generic_nostore(), which is the same as
2583         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2584         store.
2586 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2588         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2589         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2590         we still need the memcpy().
2592 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2594         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2595         so that big arrays are handled correctly.  Always use
2596         safe_object_get_size() to calculate array object sizes, which
2597         takes bounds into account.
2599 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2601         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2602         GC descriptor is computed before we use it.
2604 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2606         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2607         write barrier if necessary.
2609 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2611         * icall-def.h, icall.c, thread-types.h: New separate icall for
2612         VolatileWrite(object&,object) that uses a write barrier.
2614         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2615         barriers in icalls which write to "ref" or "out" arguments.
2617 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2619         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2620         handler in a separate icall, to reduce the size of the wrappers.
2622 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2624         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2626 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2628         * metadata-verify.c (parse_field): Allow byref field.
2630         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2632         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2634 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2636         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2637         Fixes #522784.
2639 2009-07-20  Robert Jordan  <robertj@gmx.net>
2641         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2642         Fix invalid IL in valuetype handling (STOBJ must push the
2643         corresponding class). Fixes bug #523149.
2645         Code is contributed under MIT/X11 license.
2647 2009-07-20  Geoff Norton  <gnorton@novell.com>
2649         * gc.c: Use proper semaphores where available on posix and darwin.
2651 2009-07-19  Geoff Norton  <gnorton@novell.com>
2653         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2655 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2657         * refletion.c (is_sre_usertype): Change name to is_usertype and
2658         invert it's result so it returns true if the type is an user type
2659         and not the opposite.
2661         * reflection.c (is_*_type): Change all of those to use new macro
2662         check_corlib_type_cached that cached the type lookup so we don't
2663         need to do string comparisons all the type. Changed the signature
2664         to take a MonoClass instead.
2666         * reflection.c: Change mono_image_create_token and resolve_object
2667         to use is_sre_* functions.
2669 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2671         * sgen-gc.c: Check for writes to the stack in the managed
2672         wbarrier as well.
2674 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2676         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2677         but put them on a list which is processed with the other thread's
2678         remsets.
2680 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2682         * sgen-gc.c: Fix and enable the internal allocator instead of
2683         using malloc/free (which causes deadlocks).
2685 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2687         * refletion.c: Fix builds with SRE disabled by adding a minimal
2688         implementation of mono_reflection_type_get_handle.
2690 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2692         * refletion.c: Make mono_reflection_type_get_handle non static.
2694         * object-internals.h: Export mono_reflection_type_get_handle.
2696         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2697         unmanaged handle using mono_reflection_type_get_handle.
2699 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2701         * refletion.c: Replace all reads of MonoReflectionType::type with
2702         calls to mono_reflection_type_get_handle. Only the functions that
2703         deal with constructing TypeBuilder::type have not been changed
2704         because they have to deal with NULL values.
2706         This is a first step into supporting reflection types that don't
2707         map directly into their unmanaged counterpart.
2709 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2711         * metadata-verify.c (parse_locals_signature): Don't complain
2712         on signature with zero locals since MS generates it and doesn't
2713         bother with.
2715 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2717         * reflection.c (mono_image_get_array_token): Resolve return
2718         type using mono_reflection_type_get_handle.
2720         * reflection.c (mono_image_get_array_token): Resolve array method
2721         parent type using mono_reflection_type_get_handle.
2723 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2725         * reflection.c (mono_image_basic_init): Applied patch from
2726         <Dax@daxxfiles.net>. Set the public key token from the assembly
2727         builder. Fixes #518909.
2729         * appdomain.c: Bump corlib version.
2731 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2733         * class.c (mono_class_needs_cctor_run): Make this return false if
2734         the class has no cctor.
2736 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2738         * sgen-gc.c: When the minor GC needs to allocate a new section,
2739         invoke the major GC afterwards.
2741 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2743         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2744           Applying the window_style field to the SHELLEXECUTEINFO struct.
2746         Code is contributed under MIT/X11 license.
2748 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2750         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2751         locking earlier.  Fix it in the managed allocator by making sure
2752         that no thread is stopped there before the GC runs.  If we do stop
2753         a thread there, we restart it and let it run a but, until it stops
2754         somewhere else.
2756         * gc-internal.h, gc.c: Function for getting the IP from a signal
2757         context via a function registered by mini.
2759 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2761         * object-internals.h (MonoIntPtr): New structure describing a boxed
2762         IntPtr.
2764         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2765         returns. Fixes #519953.
2767         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2769 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2771         * class-internals.h, generic-sharing.c: New RGCTX info type for
2772         getting a remoting invoke with check wrapper.
2774 2009-07-07  Geoff Norton  <gnorton@novell.com>
2776         * icall-def.h: Fix the enable-minimal build.
2778 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2780         * object-internals.h: Add MonoReflectionDerivedType.
2782         * reflection.c: Implement support for PointerType.
2783         Fixed tons of warnings.
2785 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2787         * object-internals.h: Add MonoReflectionByRefType.
2789         * reflection.c: Implement support for ByRefType.
2791 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2793         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2795         * object-internals.h: Add MonoReflectionArrayType and
2796         mono_reflection_create_unmanaged_type.
2798         * reflection.c: Implement support for ArrayType.
2800 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2802         * metadata-verify.c (is_valid_method_header): Parse EH block
2803         flags correctly.
2805 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2807         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2808         processing the disappearing links, and process disappearing links
2809         in a loop until no new objects are copied.
2811 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2813         * object.c (handle_enum): Invoke the write barrier when copying
2814         value type instances.
2816         * sgen-gc.c: Register remsets for unmanaged write barriers only
2817         when the address written to is actually on the heap.  This makes
2818         set_value() in object.c work without requiring that the result be
2819         on the heap.
2821 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2823         The runtime wrappers are all bound to a given type that must
2824         exist in the same image. For regular images we use the <Module>
2825         type, which is required to exist for all images.
2827         The <Module> type can't be used for dynamic images because it
2828         might not exist at the time the wrapper is required, so we create
2829         a synthetic type to use instead.
2831         The current code works because of the 2 stage setup of MonoClass,
2832         but once this is gone it will no longer work.
2834         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2836         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2838         * object-internals.h: Export mono_image_set_wrappers_type icall
2839         as part of the internal API.
2841         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2842         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2844         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2845         image wrappers_type to the provided value.
2847 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2849         * appdomain.c (deregister_reflection_info_roots): No need
2850         to use the image lock here.
2852 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2854         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2856 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2858         * threads.c: Store the thread start argument in a hash table instead of
2859         registering it as a root, as libgc doesn't support unregistering roots
2860         under windows, leading to 'too many root sets' errors when many threads
2861         are created.
2863         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2864         shutdown, they can still be referenced by the other dying objects.
2865         Fixes #514506.
2867 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2869         * socket-io.c: DontLinger does not allow LingerOptions.
2871 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2873         * metadata-verify.c: The spec doesn't mention that it's possible to add
2874         custom attribute to a generic parameter. Fixed.
2876 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2878         * class.c (inflate_generic_type): Don't crash while trying to output a message
2879         on why we're aborting.
2881 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2883         * socket-io.c: DontLinger can take an int or a boolean too.
2885 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2887         * gc.c: check for a null argument to SuppressFinalize () and
2888         ReRegisterForFinalize ().
2890 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2892         * loader.c (method_from_methodspec): Call into the verifier to check
2893         the signature.
2895         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2897         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2898         part of the internal API.
2900 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2902         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2903         the signature.
2905         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2907         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2908         part of the internal API.
2910 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2912         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2913         the signature.
2915         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2916         blob verification.
2918         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2919         part of the internal API.
2921 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2923         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2924         when doing basic verification. 
2926         This check must be done since the runtime peeks into signatures in much
2927         more places than it does decoding so it makes sense to ensure that all
2928         pointers to blob objects are well formed.
2930 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2932         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2933         Use proper overflow dectection. Fix usage of it.
2935 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2937         * loader.c (field_from_memberref): Call into the verifier to check
2938         the signature.
2940         * loader.c (mono_method_get_signature_full): Same.
2942         * loader.c (method_from_memberref): Same.
2944         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2946         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2947         part of the internal API.
2949 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2951         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2952         or unloaded, still return an AsyncResult, but don't add it to the
2953         threadpool.
2955 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2957         * threads.c: fix missing colon when DEBUG is defined.
2959 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2961         * threadpool.c: Don't add new calls to a threadpool if the domain
2962         of the call is unloading or unloaded.  When dequeuing a job, null
2963         the reference in the queue.
2965 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2967         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2968         generation if an object was moved.
2970 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2972         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2973           parameters of type SAFEARRAY[VARIANT].
2975         * reflection.c (encode_marshal_blob): Properly generate element type
2976           (SafeArraySubType marshal attribute option).
2978         Code is contributed under MIT/X11 license.
2980 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2982         * reflection.c: in mono_method_clear_object () really ensure all the
2983         objects are removed.
2985 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2987         * loader.c (mono_method_signature): Call into the verifier to check
2988         the method signature.
2990         * metadata-verify.c (verify_method_table): Move signature verification
2991         to verify_method_table_full.
2993         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2995         * verify-internals.h: Export mono_verifier_verify_method_signature as
2996         part of the internal API.
2998 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3000         * loader.c (mono_method_get_header): Call into the verifier to
3001         check the method header.
3003         * metadata-verify.c: Add mono_verifier_verify_method_header.
3005         * verify-internals.h: Export mono_verifier_verify_method_header as
3006         part of the internal API.
3008 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3010         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3011         check the field signature. Replace an assert with an explicit check.
3013         * class.c (mono_class_setup_fields): Call into the verifier to check
3014         the field signature.
3016         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3018         * verify-internals.h: Export mono_verifier_verify_field_signature as
3019         part of the internal API.
3021 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3023         * class.c (mono_class_find_enum_basetype): Simplify this function
3024         by moving code outside of the loop and not decoding static fields.
3026 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3028         * metadata-verify.c (verify_typedef_table): Check the extends
3029         token here. Move to here a flags check from verify_typedef_table_full.
3031 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3033         * metadata-verify.c (is_valid_method_header): Fix a warning.
3035         * metadata-internals.h (MonoImage): Remove the unused 
3036         static_rgctx_invoke_wrapper_cache.
3038         * image.c marshal.c: Ditto.
3040 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3042         * image.c (do_mono_image_load): Enable table data verification.
3044 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3046         * metadata-verify.c (is_valid_constant): Fix nullref check.
3048 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3050         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3052 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3054         * sgen-gc.c: Managed allocation with pthreads TLS.
3056         * threads.c, threads-types.h: Functions for the JIT to tell the
3057         runtime whether it supports the MONO_TLS opcode.
3059 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3061         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3062         without methods.
3064 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3066         * metadata-verify.c (is_valid_constant): Fix the string length check.
3067         Use safe overflow checking. Add decent error messages.
3069 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3071         * metadata-verify.c: Move remaininh blob checks to the offline
3072         verification path.
3074 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3076         * metadata-verify.c: Move more blob checks to the offline verification
3077         path.
3079 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3081         * object-internals.h : Adding interrupt_on_stop field.
3083         * threads.c (mono_thread_request_interruption) : On Windows exit the
3084           thread if interrupt_on_stop is set.
3086         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3087          Removing old interrupt logic and setting the interrupt_on_stop for the
3088          thread when calling accept.
3090         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3091          setting the interrupt_on_stop for the thread when calling accept.
3093         Contributed under MIT/X11 license.
3095 2009-06-20  Martin Baulig  <martin@ximian.com>
3097         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3099 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3101         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3102         running in no-exec mode.
3104 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3106         * metadata-verify.c (verify_method_table): Move header
3107         checking to verify_method_table_full.
3109         * metata-verify.c (mono_verifier_verify_full_table_data):
3110         Call verify_method_table_full.
3112 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3114         * metadata-verify.c (verify_field_table): Move signature
3115         checking to verify_field_table_full.
3117         * metata-verify.c (mono_verifier_verify_full_table_data):
3118         Call verify_field_table_full.
3120 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3122         * metadata-verify.c (verify_typedef_table): Move remaining
3123         stuff to verify_typedef_table_full.
3125 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3127         * metadata-verify.c: Kill is_corlib from VerifyContext.
3128         It is only used by the offline mode.
3129         So we better remove it from the runtime path.
3131 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3133         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3134         function that perform the offline metadata verification steps.
3136         * metadata-verify.c (verify_typedef_table): Move some checks to
3137         verify_typedef_table_full and make it been called by new function
3138         mono_verifier_verify_full_table_data.
3140         * pedump.c: Call mono_verifier_verify_full_table_data.
3142         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3143         part of the internal API.
3145 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3147         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3148         check.
3150         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3151         flags bits. SupportLastError was confused as bit 7 instead of 6.
3153         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3154         to check against the module ref table instead of module.
3156         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3158         * pedump.c: Call mono_image_load_names.
3160 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3162         * image.c: Extract mono_image_load_names from do_mono_image_load.
3164         * metadata-internals.h: Export mono_image_load_names as part of
3165         the internal API.
3166         
3167 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3169         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3170         first, as it could reference data in the other caches.
3172 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3174         * metadata-verify.c: Finished with method header verification.
3176 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3178         * metadata-verify.c: Added more header verification code.
3179         Now only EH clauses are missing.
3181 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3183         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3184         for return values.
3186 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3188         * metadata-verify.c: Initial method header verification.
3190 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3192         * metadata-verify.c (verify_import_table): The IAT contents
3193         might end been patched by the windows DL when running with
3194         coree enabled.
3196 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3198         * class.c (mono_class_from_typeref): If the enclosing type is not
3199         found return null instead of crashing. Fixes #508487.
3201 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3203         * normalization-tables.h : updated to the latest unicode charcter
3204           data.
3205         * appdomain.c : bump corlib version.
3207 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3209         * class.c (mono_class_from_name): Fix support for assembly references
3210         in the EXPORTEDTYPE table. Fixes #511704.
3212 2009-06-13  Geoff Norton  <gnorton@novell.com>
3214         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3215         assembly in the target domain.
3217 2009-06-12  Robert Jordan  <robertj@gmx.net>
3219         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3220         because "this" of the managed signature has become an
3221         ordinary parameter in the unmanaged signature.
3223 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3225         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3226         field for owner-less generic containers.
3228         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3229         image field of the owner-less generic containers created here.
3231         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3232         contain is ownerless until the caller sets its owner.
3234         * metadata.c (type_in_image): Handle owner-less generic containers
3235         correctly.
3236         
3237 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3239         * image.c (mono_image_close): Support debug_assembly_unload for
3240         dynamic images too.
3242 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3244         * class.c: Fix some typos in comments.
3246 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3248         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3250         * threads.c (mono_thread_execute_interruption): Avoid creating the
3251         abort exception object while holding the synch_cs lock.
3253 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3255         * metadata-verify.c: Verify basic cattr content.
3257 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3259         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3260         nested types.
3261         
3262         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3263         support for nested types. Fixes #511704.
3265 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3267         * metadata-verify.c: Verify methodspec signatures.
3269 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3271         * metadata-verify.c: Verify typespec signatures.
3273 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3275         * metadata.c (free_inflated_method): Call 
3276         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3278 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3280         * mono-config.c: Small change to report the PPC64/ILP32 model.
3282 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3284         * metadata-verify.c (parse_type): Check szarray.
3286 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3288         * metadata-verify.c (parse_type): Check fnptr.
3290 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3292         * metadata-verify.c (parse_type): Check generic instances.
3294 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3296         * metadata-verify.c (parse_type): Check array shape.
3298 2009-06-05  Robert Jordan  <robertj@gmx.net>
3300         * class.c (mono_class_create_from_typedef): Check only for
3301         mscorlib's System.Array.
3303 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3305         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3306         and generic params. 
3308         * metadata-verify.c (parse_field): Check the signature.
3310 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3312         * metadata-verify.c: Implement locals signature check.
3314 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3316         * domain.c: Add .NET 4.0 Beta 1 version.
3318 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3320         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3321           For QueryInterface on CCWs consider the base class
3322           interfaces as well.
3324         Code is contributed under MIT/X11 license.
3326 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3328         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3330         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3331         used.
3333         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3334         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3336         * generic-sharing.c (inflate_other_data): Ditto.
3337         
3338 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3340         * metadata-verify.c: Implement property signature check.
3342 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3344         * sgen-gc.h: Register saving support for PPC.
3346 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3348         * sgen-gc.c: Fixed a pthread TLS screwup.
3350 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3352         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3353         supported.
3355 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3357         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3358         keyword is not supported.
3360 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3362         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3363         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3364         the inflated method is freed. Fixes #508389.
3366         The code is contributed under the MIT/X11 license.
3367         
3368 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3370         * marshal.c (get_wrapper_target_class): New helper function.
3371         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3372         the <Module> class of the image. Fixes #509049.
3374 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3376         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3377         Check if the thread was interrupted and proccess it straight away.
3378         Makes abortion much more responsive.
3380 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3382         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3383         MonoThread::interruption_requested to match it's counterpart.
3385         Fixes a hang in abort-stress-1 on a 2 core x86.
3387         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3388         Fix warning.
3390 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3392         Change MonoImage::name_cache to be protected by the image lock
3393         instead of the loader lock.
3395         * appdomain.c (deregister_reflection_info_roots): Protect access
3396         to name_cache.
3398         * class.c (mono_image_init_name_cache): Change from the loader lock
3399         to the image lock. Check if the cache wasn't already created.
3401         * class.c: Change from the loader to the image lock.
3403         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3404         the code to hold the image lock while iterating over name_cache and
3405         not go into mono_array_new holding it.
3407         * metadata-internals.h: Add a comment about this change.
3409 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3411         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3412         Under the 2.0 profile raise the loader error.
3414         Fixes #508532.
3416 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3418         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3419         of ldind opcode for generic instances so we don't fail for direct wrappers.
3420         This only affect direct calls.
3422 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3424         * reflection.c (create_dynamic_mono_image): Fix warnings.
3426         * generic-sharing.c (other_info_equal): Ditto.
3427         
3428 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3430         * metadata-verify.c: Implement field signature check.
3432 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3434         * metadata-verify.c: Implement standalone signature check.
3436 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3438         * metadata-verify.c: Implement methodref signature check.
3440 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3442         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3443         callbacks supplied by the runtime.
3445         * object.c (mono_install_callbacks): New internal function to install
3446         the callbacks.
3448         * object.c (mono_create_ftnptr): Move the implementation of this to
3449         mini/.
3451         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3453 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3455         * metadata-verify.c (parse_return_type): Proper byref check.
3456         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3457         generic signatures and method params.
3459 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3461         * metadata-verify.c (decode_signature_header): Fix bounds check.
3463         * metadata-verify.c (parse_custom_mods): Check custom mods.
3465         * metadata-verify.c (parse_type): Do initial basic verification
3466         of valid values.
3467         
3468         * metadata-verify.c (is_valid_method_signature): Parse the generic
3469         param count.
3471 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3473         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3474         discarded based on their most specific definition so we set the method_slots
3475         array before checking if the method is acceptable or not.
3477         Fixes #506757.
3479 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3481         * icall.c: Free the old array when resizing a mono_ptr_array.
3483 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3485         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3486         for the hashes whose keys are managed objects.
3488 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3490         * object-internals.h, threads.c: Set the execution context on
3491         thread start here, not in corlib.
3493         * appdomain.c: Bump corlib version.
3495 2009-05-27  Martin Baulig  <martin@ximian.com>
3497         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3498         if `_mono_debug_using_mono_debugger' is set to make things work
3499         properly when embedding Mono.
3501 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3503         * class.c (mono_class_setup_fields): Don't mark simd types as having
3504         16 bytes alignment as the whole runtime doesn't support.
3506 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3508         * metadata-verify.c (safe_read): Use endian safe read macros.
3510 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3512         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3513         it is read-only when using full aot.
3515 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3517         * metadata-verify.c (is_valid_method_signature): Verify parts
3518         of the return type. Provide an error message in case of failure.
3520 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3522         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3524 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3526         * metadata-verify.c: Include the size prefix in the bounds check.
3528 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3530         * icall.c: Remove warnings.
3532         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3533         prevent auto-detection based on GCC defines.
3535         Add PS3
3537         * metadata-verify.c: Do not include signal.h
3539         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3540         messages.  Not sure why the g_assert_not_reached is not enough to
3541         quiet the compiler.
3542         
3544         * appdomain.c: Remove code that is not used when
3545         DISABLE_SHADOW_COPY is set.
3547         * image.c: use g_getenv
3549 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3551         * reflection.c: Remove code that it not used with
3552         DISABLE_REFLECTION_EMIT is defined.
3554 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3556         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3557         invoke wrappers.
3559 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3561         * socket-io.c
3562         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3563         the ifdef here and instead put that on io-layer
3565 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3567         * metadata-verify.c: Verify the generic param constraint table.
3569 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3571         * metadata-verify.c (verify_generic_param_table): Fix
3572         thinko on the valid flags bits for generic params.
3574 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3576         * metadata-verify.c: Verify the methodspec table.
3578 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3580         * metadata-verify.c: Verify the generic param table.
3582 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3584         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3586 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3588         * sgen-gc.c: Use generation enum more consistently and use the
3589         correct generation in mono_gc_register_for_finalization().
3591 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3593         * metadata-verify.c: Verify the nested class table.
3595 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3597         * metadata-verify.c: Verify the manifest resource table.
3599 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3601         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3603 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3605         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3606         wrappers, this is now done in the JIT.
3607         
3608         * class.c (mono_set_generic_sharing_supported): New internal function.
3609         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3611 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3613         * metadata-verify.c: Verify the exported type table.
3615 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3617         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3619 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3621         * metadata-verify.c: Verify the file table.
3623 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3625         * metadata-verify.c (verify_assembly_table): Fix an error message.
3627         * metadata-verify.c: Verify the assemblyref table.
3629 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3631         * metadata-verify.c (verify_assembly_table): Fix the valid
3632         bits mask for flags.
3634 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3636         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3637         generic methods as well.
3639 2009-05-15  Geoff Norton  <gnorton@novell.com>
3641         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3642         use-case and is significantly more performant than the wapi layer.
3644 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3646         * metadata-verify.c: Verify the assembly table.
3648 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3650         * metadata-verify.c: Fix rows limit check.
3652 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3654         * metadata-verify.c: Verify the fieldrva table.
3656 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3658         * sgen.c: Speed up weak links and finalizers by grouping them by
3659         generation.
3661 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3663         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3664         free the old GCHandle (only applies to SGen).
3666 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3668         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3669         mono_metadata_load_generic_params () for non-generic methods.
3671 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3673         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3674         New function for returning a monitor's weak link if it has one.
3676         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3677         one) when clearing a domain.  These can still be around because
3678         the object might not have been collected.
3680 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3682         * gc.c: Fix a warning.
3684 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3686         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3687         prevous wait that resulted in a deadlock on Windows when initializing
3688         the runtime form DllMain. Also results in improved startup time.
3689         (finalizer_thread): Get rid of thread_started_event.
3690         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3691         resulting MonoThread.
3693         Contributed under MIT/X11 license.
3695 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3697         * metadata-verify.c: Verify the implmap table.
3698         Don't require that #US and #Strings be present.
3700 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3702         * security-core-clr.c: Delegate checks are done at creation time,
3703         not a invocation time. Fix exception for Telerik Silverlight demo
3705 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3707         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3708         case for the Thread class.
3710         * threads.c: Do clean-up of abort exception/state in
3711         thread_cleanup() instead of Thread.free_internal().  Also clean up
3712         current_appcontext.  The reason we have to do that is because
3713         those references might point into another domain and if that
3714         domain is unloaded before the thread is finalized, they point to
3715         invalid data.
3717 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3719         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3720         stub signatures.
3721         
3722         Contributed unter MIT/X11 license.
3724 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3726         * verify.c, metadata-verifier.c: Add support for disabling the
3727         verifier in some builds.
3729         [ Sorry, my previous commit accidentally commited some work in
3730         progress ]
3732 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3734         * class.c (mono_class_setup_fields): Set class->field.first for
3735         generic instances.
3737 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3739         * metadata-verify.c: Verify the typespec table.
3741 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3743         * metadata-verify.c: Verify the module table.
3745 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3747         * metadata-verify.c: Verify the methodimpl table.
3749 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3751         * metadata-verify.c: Verify the property table.
3753 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3755         * debug-helpers.c (mono_method_desc_match): Add support for generic
3756         glob patterns.
3758 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3760         * metadata-verify.c: Verify the propertymap table.
3762 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3764         * metadata-verify.c: Verify the event table.
3766         * metadata-verify.c (search_sorted_table): Fix offset
3767         calculation.
3769 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3771         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3773 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3775         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3776         because mono_delegate_free_ftnptr() needs it.
3778 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3780         * metadata-verify.c: Verify the eventmap table.
3782 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3784         * metadata-verify.c: Verify the standalonesig table.
3786 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3788         * metadata-verify.c: Verify the field layout table.
3790 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3792         * class.c (mono_type_get_name_recurse): Don't crash
3793         for ownerless generic params.
3795         * debug-helpers.c (mono_type_get_desc): Correct the format
3796         for ownerless generic params.
3798 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3800         * metadata-verify.c: Verify the class layout table.
3802 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3804         * metadata-verify.c: Verify the decl security table.
3806 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3808         * domain.c (mono_domain_set_internal_with_options): Don't do
3809         anything if the old domain is the same as the old one.  Fixes
3810         #499326.
3812 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3814         * appdomain.c: Deregister the reflection_info roots when unloading
3815         a domain.
3817         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3818         memory allocated by a domain and frees its disappearing links.
3820         * boehm-gc.c, null-gc.c: Empty implementation of
3821         mono_gc_clear_domain().
3823 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3825         * appdomain.c (clear_cached_vtable): Free the static fields memory
3826         block.
3828 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3830         * gc.c: Set the correct domain when invoking finalizers.
3832         * appdomain.c: Set the correct domain when creating threads.
3834 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3836         * sgen-gc.c: Fix skip size for vectors.
3838 2009-05-03  Martin Baulig  <martin@ximian.com>
3840         * mono-debug-debugger.c
3841         (mono_debugger_check_breakpoints): Check class init handlers even
3842         if we don't have any method load handers.
3844 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3846         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3847         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3849 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3851         * metadata-verify.c: Verify the field marshal table.
3853 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3855         * metadata-verify.c: Verify the custom attribute table.
3857 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3859         * metadata-verify.c: Verify the constant table.
3861 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3863         * metadata-verify.c: Verify the memberef table.
3865 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3867         * metadata-verify.c (get_coded_index_token): Remove
3868         dead argument.
3870 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3872         * metadata-verify.c: Verify the interfaceimpl table.
3874 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3876         * verify.c: Improve error message.
3878         * debug-helpers.c (mono_type_get_desc): Harden the code that
3879         deals with VAR and MVAR.
3881 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3883         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3884         part of #498692.
3886 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3888         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3889         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3891 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3893         * security-core-clr.c: Avoid redundant checks for platform code, 
3894         e.g. check for method and for class (very common) and check
3895         for class and outer class (less common)...
3897 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3899         * reflection.c: Avoid returning random cattrs for synthetic methods.
3900         Fixes #498545.
3902 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3904         * assembly.c: assemblies in the GAC should never be shadow-copied.
3906 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3908         * domain.c, domain-internals.h: Disable
3909         track_resurrection_{objects,handles}_hash in MonoDomain if using
3910         SGen.
3912 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3914         * metadata-verify.c: Verify the param table.
3916 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3918         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3919         MethodList.
3921         * metadata-verify.c (verify_method_table): Proper check the ParamList
3922         field.
3924 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3926         * metadata-verify.c (verify_method_table): Check for runtime
3927         implemented functions such as delegate .ctors. Remove spurious
3928         printf.
3929         
3930 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3932         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3934 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3936         Don't allocate MonoGenericInfo for ownerless generic params.
3937         * class-internals.h (MonoGenericParam::info): Move field to ...
3938         (MonoGenericParamFull): ... this.  New struct.
3939         (MonoGenericContainer::type_params): Change type to
3940         MonoGenericParamFull.
3941         (MonoGenericParam, MonoGenericContainer): Update accessors.
3942         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3943         'info' field for ownerless generic param.
3944         (mono_metadata_load_generic_params): Update to changes.
3945         * reflection.c (mono_reflection_create_generic_class): Likewise.
3946         (reflection_methodbuilder_to_mono_method): Likewise.
3947         (mono_reflection_initialize_generic_parameter): Likewise.
3949 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3951         Don't use MonoGenericParamInfo for ownerless generic params.
3952         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3953         use ParamInfo class at all.
3954         (mono_class_from_generic_parameter): Use them.
3955         (make_generic_param_class): Fix a couple of instances where 'pinfo
3956         == NULL' wasn't handle.
3958 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3960         * class.c (make_generic_param_class): Carve out of ...
3961         (mono_class_from_generic_parameter): ... here.
3963 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3965         Simplify mono_class_from_generic_parameter
3966         * class-internals.h (MonoGenericParamInfo::token): New field.
3967         * metadata.c (mono_metadata_load_generic_params): Initialize it
3968         from metadata.
3969         * class.c (mono_class_from_generic_parameter): Use it instead of
3970         searching through metadata.
3972 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3974         * metadata-verify.c: Add verification of the method table.
3976 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3978         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3979         Delegate::Invoke optimization.
3981 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3983         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3984         string returned by get_shadow_assembly_location_base.
3986         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3987         about caller's ownership.
3989 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3991         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3992         reflection memory on domain unload.
3994         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3995         reflection cleanup code do it.
3997         * domain-internals.h: Add mono_reflection_cleanup_domain.
3999         This fixes a memory leak for managed mirrors of reflection objects
4000         on domain unload. 
4002 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4004         * metadata-verify.c: Implement more verification of the field table.
4006 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4008         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4009         doesn't try to parse the input assembly, which can be broken.
4011 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4013         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4014         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4015         by using the lowest bit in the link to store whether the link is
4016         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4018 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4020         * Makefile.am: Split the console support in platform specific code
4021         and put together a framework for making this easy in the future so
4022         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4024 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4026         * pedump.c: Fix a warning.
4028 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4030         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4031         mono_class_from_mono_type to avoid bad interactions with the dual representation
4032         of the generic type definition.
4034 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4036         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4037         get the MonoClass for the call context type as it might be a generic
4038         instance.
4040         Fixes #491483.
4042 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4044         * object-internals.h: The Thread object has no execution_context
4045         member anymore.
4047         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4048         the execution context.
4050         * appdomain.c: Bump corlib version.
4052 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4054         * verify.c (do_newobj): Improve error message.
4056 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4058         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4059         is nested in the filter block.
4061         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4062         block is not fully nested.
4064         Fixes #495656.
4066 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4068         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4069         not MonoType to check for equality of valuetypes as the generic type
4070         definition allows for two different encodings: the generic type definition
4071         class or a generic instance over the GTD arguments.
4073         Fixes #496175.
4075 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4077         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4079         * verify.c (do_initobj): Improve error message.
4081 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4083         * metadata-verify.c: Enable pe verification as the issue with #496453
4084         is that the authenticode data directory have a different unspecified
4085         format. Ignore it for now.
4087         * pedump.c: Run the metadata verifier together with the IL verifier.
4089         Fixes ##496453.
4091 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4093         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4095 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4097         * class.c (can_access_type): Check visibility against
4098         the element type for pointers and arrays.
4100         Fixes #496150.
4102 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4104         * metadata-verify.c: Fix cli and table verification to use information
4105         from the MonoImage. A lot of duplicated code got killed.
4107 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4110         This patch starts to integrate the metadata verifier with the runtime code.
4112         This patch causes major regression in functionality for the metadata verifier
4113         as cli and table verification are disabled since they require to be ported to
4114         use MonoImage information.
4116         * image.c (do_mono_image_load): Split the code in this function
4117         into mono_image_load_pe_data and mono_image_load_cli_data.
4118         Add     care_about_pecoff parameter to not load pecoff data.
4119         Call into the metadata verifier for pecoff and cli verification.
4121         * image.c (mono_image_open_raw): New function that doesn't perform
4122         any parsing of the image contents.
4123         
4124         The reason for the 3 new functions is to give pedump better control
4125         into the interaction with the verifier.
4127         * metadata-internals.h: Add new functions from image.c as part of the
4128         internal mono API.
4130         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4131         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4132         to make those functions work together with the runtime.
4134         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4135         true if the image needs to be verified.
4137         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4139         * pedump.c: Use new metadata verifier API.
4141 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4143         * object.c (mono_install_vtable_trampoline): Make this receive a
4144         trampoline creation function instead of trampoline, allowing the JIT
4145         to use a different trampoline for each vtable.
4147 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4149         * object.c (mono_raise_exception): Don't reset the thread abort
4150         exception state here.
4152 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4154         * icall-def.h: New icall for getting the thread abort exception
4155         state for a thread.
4157         * object.c, thread.c, object-internals.h: A thread's abort
4158         exception state is now a GC handle.  To get the object it stands
4159         for, we must move it into the current app domain, if it's
4160         different than the one where it originated from.
4162         * appdomain.c: Bump corlib version.
4164         * domain.c, domain-internals.h: New function for setting the
4165         domain and migrate the thread abort exception or not.
4167 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4169         * metadata-verify.c: Add initial verification of the
4170         field table.
4172 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4174         * metadata-verify.c: Add a macro to conditionally enable
4175         dumping of verification information. Add  make_coded_token
4176         and search_sorted_table to enable search sorted tables
4177         by a given coded token.
4179 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4181         * metadata-verify.c: Add array mapping from table index
4182         to description offset. Add get_col_offset and get_col_size
4183         functions.
4185 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4187         * metadata-verify.c: Add remaining table descriptions offsets.
4188         Add remaining coded index descriptions.
4190 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4192         * metadata-verify.c: Fixed constant table description.
4193         Fixed calculation of HasCustomAttribute coded index size.
4194         Fixed calculation of size for many table indexes. 
4196 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4198         * pedump.c (dump_metadata): Dump table offset instead
4199         of useless pointer in memory.
4201 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4203         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4205 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4207         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4208         a missing of for interface types.
4210 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4212         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4213         the code is commented.
4215         * metadata-verify.c (verify_resources_table): Remove spurious printf
4216         and don't fail if there are unmanaged resources. Gmcs generates a useless
4217         one     for all assemblies - I bet it's some MS compatibility junk.
4219 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4221         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4223         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4225         * verify-internals.h: Same.
4227         * pedump.c: Fix for mono_image_verify new signature.
4229 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4231         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4232         flags combinations.
4234 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4236         * metadata-verify.c (verify_module_table): Ignore the generation field.
4238 2009-04-15  Martin Baulig  <martin@ximian.com>
4240         * debug-mono-symfile.c
4241         (mono_debug_symfile_lookup_location): Don't print a warning for
4242         unknown extended opcodes if they're within 0x40 and 0x7f.
4244 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4246         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4247         invoke signatures returning an enum. Fixes #494847.
4249 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4251         * metadata-verify.c: Initial code to verify the typedef table.
4253 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4255         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4256         with non empty stack happens before the beginning of a try block.
4258         Fixes #494812.
4260 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4262         * metadata-verify.c: Verify typename and typenamespace fields of
4263         the typeref table.
4265 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4267         * metadata-verify.c: Initial code to verify the typeref table.
4269 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4271         * verify.c (verify_delegate_compatibility): Fix error message.
4273 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4275         * security-core-clr.c: Fix typo
4277 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4279         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4280         a MonoGHashTable to keep its values alive.
4281         (emit_marshal_boolean): Fix a warning.
4283 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4285         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4286         not have any interface configured for IPv4/IPv6.
4288 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4290         * assembly.c: fix typo in error message.
4292 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4294         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4295         allocating the location holding the this argument to prevent
4296         'too many root sets' errors.
4298         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4299         to mark fields as special static.
4300         (mono_field_static_get_value): Handle special static fields.
4301         (mono_field_static_set_value): Ditto.
4303         * class-internals.h (struct _MonoClassField): Document this.
4305 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4307         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4308           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4309           case.  This will handle when managed code returns null to native code.
4311         Code is contributed under MIT/X11 license.
4313 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4315         * object.c (build_imt_slots): Changing a free to a g_free to match
4316           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4318         Code is contributed under MIT/X11 license.
4320 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4322         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4323           the correct TRUE value is passed through the marshaling layer.
4325         Code is contributed under MIT/X11 license.
4327 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4329         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4330         correctly. Fixes #492330.
4331         
4332         * marshal.c: Fix the embedding of object pointers into JITted code in
4333         the native-to-managed wrappers by allocating some GC tracked memory, and
4334         embedding the address of that.
4336 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4338         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4339         pointers into the vtable.
4341 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4343         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4345         * verify.c (verify_ldftn_delegate): Improve error message.
4347 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4349         * reflection.c (my_mono_class_from_mono_type): Remove.
4351 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4353         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4354         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4355         and constraints fields into ...
4356         (MonoGenericParamInfo): ... this.
4357         (mono_generic_param_info, mono_generic_container_get_param_info):
4358         New accessors.
4359         * class.c, debug-helpers.c, icall.c: Update to changes.
4360         * metadata.c, reflection.c, verify.c: Likewise.
4362 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4364         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4366         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4367         
4368         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4369         booleans with sbytes.
4371 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4373         * class.c (can_access_instantiation): Verify accesibility of element types
4374         for arrays and pointers.
4376         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4378         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4380         Fixes #493068.
4382 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4384         * verify.c (do_invoke_method): Improve error messages.
4386 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4388         * verify.c:  Fixing the MSVC build.
4390         Code is contributed under MIT/X11 license.
4392 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4394         * security-core-clr.c: Simplify get_reflection_caller not to call
4395         mono_method_get_last_managed (another stack walk) and adjust the
4396         callers to handle a (should not happen) NULL return value.
4398 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4400         Add accessors to some MonoGenericParam fields
4401         * class-internals.h (mono_generic_param_owner): New accessor.
4402         (mono_generic_param_num): Likewise.
4403         (mono_type_get_generic_param_owner): New helper.
4404         (mono_type_get_generic_param_num): New helper.
4405         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4407 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4409         * class-internals.h (mono_generic_container_get_param): New wrapper.
4410         * class.c, icall.c, metadata.c, verify.c: Use it.
4412 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4414         Fix gtest-252.cs
4415         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4416         the standard case/loop.  In particular, don't complain about
4417         references to generic type definitions.
4419 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4421         * debug-helpers.c (dis_one): Decode string arguments.
4423 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4425         * pedump.c (dump_verify_info): Dump type name correctly.
4427 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4429         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4430         are larger than code size.
4432         This can happen in valid code if the try/catch block is not followed by any instruction
4433         and do a backward branch on the leave instruction.
4435         Fixes #492494.
4437 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4439         * security-core-clr.c: Fix typo while comparing second method names
4440         in can_avoid_corlib_reflection_delegate_optimization
4442 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4444         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4446         Fixes #487738.
4448 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4450         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4451         a MVAR using a class context.
4453         Fixes #490335.
4455 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4457         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4459         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4461         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4462         functions supplied by the JIT for the SGEN GC.
4464         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4465         
4466 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4468         monitor.c (mono_monitor_try_enter_internal):
4469         Added calls to profile monitor contentions.
4470         Also duplicated a small piece of code (the "get the monitor" logic)
4471         from the fast path to the slow path, and changed the relevant goto
4472         statements, so that monitor acquisition events can be emitted from the
4473         slow path (this is by Paolo Molaro).
4475 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4477         * profiler.c, profiler.h, profiler-private.h:
4478         Added support for profiling monitor contentions.
4480 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4482         * metadata-verify.c: Verify the modules table.
4484 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4486         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4487         using the context of the method been verifier and not of the method been called.
4489         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4490         safely inflate generic types. 
4492 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4494         * security-core-clr.c: Change the strategy for checking the 
4495         "reflection using delegates optimization" to avoid unneeded 
4496         attributes in multiple class libraries.
4498 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4500         * sgen-gc.c: Remove object element in the disappearing link struct
4501         by storing the object pointer in the link.
4503 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4505         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4507 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4509         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4511         * verify.c (mono_method_verify): Do proper bounds checking of exception
4512         clause ranges.
4514 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4516         * loader.c (mono_field_from_token): Don't crash if the field parent could
4517         not be decoded.
4519 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4521         * sgen-gc.c: Execute critical finalizers after ordinary
4522         finalizers.
4524         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4525         mono_defaults.
4527 2009-03-31 Jb Evain <jbevain@novell.com>
4529         * verify.c (do_ldstr): don't check if a string is in the user strings
4530         heap if the current image is dynamic.
4532 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4534         * sgen-gc.c: Wait until the last finalizer has executed when
4535         returning from WaitForPendingFinalizers.
4537 2009-03-31  Martin Baulig  <martin@ximian.com>
4539         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4540         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4541         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4542         (mono_debugger_event_create_appdomain): New function.
4543         (mono_debugger_event_unload_appdomain): New function.
4545         * appdomain.c (mono_domain_create_appdomain_internal): Call
4546         mono_debugger_event_create_appdomain().
4548 2009-03-31  Martin Baulig  <martin@ximian.com>
4550         * mono-debug-debugger.c
4551         (mono_debugger_register_class_init_callback): Also register the
4552         class init callback if the class is already initialized to make
4553         things work with shadow copied assemblies.
4555 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4557         * security-core-clr.c
4558         (mono_security_core_clr_ensure_reflection_access_field): Let 
4559         critical code access the field (just like we do for methods). Use
4560         check_field_access helper.
4561         (mono_security_core_clr_ensure_reflection_access_method): Use 
4562         check_field_access helper.
4564 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4566         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4567         call the run-finalize function directly.
4569         * gc.c, gc-internal.h: Make run_finalize() non-static.
4571 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4573         * sgen-gc.c: Use a separate struct for disappearing links.
4575 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4577         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4578         * MaxIOVectorLength enabled, just ignore them.
4579         Fixes bug #349688.
4581 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4583         * metadata-verify.c: Fix eglib build.
4585 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4587         * threads-types.h: Fix the win32 build.
4589 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4591         * class.c: move coreclr inheritance/override checks to 
4592         security-core.clr.c
4593         * security-core.clr.c|h: add code from class.c with additional
4594         documentation. Fix override check when the method is not critical.
4596 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4598         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4599         (match_class): Ditto.
4601 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4603         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4605         * metadata-verify.c: Implement table layout row size calculation. Verify
4606         the total size of the tables.
4608 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4610         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4612 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4614         * appdomain.c:
4615         * console-io.[ch]: added new mono_console_init() to make sure that
4616         file descriptors 0, 1 and 2 are opened.
4617         Bug #489019 fixed.
4619 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4621         * appdomain.h: Export a new callback type and a new function to
4622         set this callback. This allow a mono host to provide it's own
4623         definition for "platform code".
4624         * metadata-internals.h: Add a core_clr_platform_code flag on 
4625         _MonoImage to (cache and) know if it is representing platform 
4626         code.
4627         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4628         on platform code images.
4629         * security-core-clr.c|h 
4630         (mono_security_set_core_clr_platform_callback): Allow the host
4631         to provide it's own platform check definition.
4632         (mono_security_core_clr_determine_platform_image): Detect if an 
4633         image is platform code (using the specified callback).
4634         (mono_security_core_clr_is_platform_image): Return cached value 
4635         for platform code.
4637 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4639         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4640         which has different parameter types for the 'tid' argument in windows and
4641         the io-layer.
4643         * appdomain.c attach.c threads.c: Use the new helper.
4645 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4647         * metadata-verify.c: Verify valid table bits.
4649 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4651         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4653         * metadata-verify.c: Add initial table schema verification.
4655 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4657         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4658         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4659         #488383.
4661         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4663         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4665 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4667         * security-core-clr.c: Add/update documentation
4669 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4671         * marshal.c (emit_marshal_object): Generate code to throw an exception
4672         instead of throwing it. Fixes #488670.
4674 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4676         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4677         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4678         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4679         and add a call to mono_security_core_clr_ensure_delegate_creation
4680         to do the extra checks required by CoreCLR.
4681         * security-core-clr.c|h: Add function to check delegate creation,
4682         both in the binding and accessibility, under CoreCLR.
4684 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4686         * reflection.c (mono_reflection_create_dynamic_method): when 
4687         coreclr is enabled make sure that every resolved object are
4688         checked (e.g. field and method access).
4689         * security-core-clr.c|h: Add function to check objects resolved
4690         when a dynamic method is created.
4692 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4694         * metadata-verify.c: Cache directory rva translations.
4696         * metadata-verify.c: Add cli-header and streams verification.
4698 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4700         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4701         the wrong offset (8 instead of 6).
4703 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4705         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4706         methods, return the native function address itself. Fixes
4707         #487758.
4709 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4711         * console-io.c: some of the values for control characters might not be
4712         present.
4714 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4716         * exception.c|h: Add helpers to create [Field|Method]AccessException
4717         * icall.c: Add required coreclr check calls for field reflection.
4718         Move the existing (method) check logic into security-core-clr.c
4719         * security-core-clr.c: Add functions to check if the access of a
4720         field or method is allowed when reflecting under coreclr. This is
4721         mostly done using a stack walk to find the "real" caller: i.e. the
4722         code that is calling the reflection
4724 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4726         * gc-internal.h: Change location of gc_wrapper.h
4728 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4730         * class.c: Simplification to coreclr checks for overrides that
4731         makes it easier to set breakpoints.
4733 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4735         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4736         mono_security_core_clr_method_level): Avoid potential 
4737         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4738         user/application code) and make it easier to set breakpoints
4740 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4742         * metadata-verify.c: Reject cli header tables that mono don't handle.
4744 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4746         * pedump.c: Fix CLI header dumping.
4748 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4750         * metadata-verify.c: More CLI header verification.
4752 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4754         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4756 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4758         * metadata-verify.c: Initial verification of the CLI header.
4760 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4762         * metadata-verify.c (verify_resources_table): Fix verification of zero
4763         sized resource section and id entries count.
4765 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4767         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4769 2009-03-17  Jb Evain  <jbevain@novell.com>
4771         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4773 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4775         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4776         (mono_gc_make_descr_for_array): Ditto.
4778 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4780         * verify.c (mono_verifier_is_class_full_trust): Add support for
4781         CoreCLR security mode where trusted assemblies are defined as
4782         "platform code".
4784 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4786         * metadata-verify.c: Add minimal PECOFF resource verification.
4788 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4790         * metadata-verify.c: Be less restrictive with some coff fields.
4792 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4794         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4795         params as boxed values on stack. Fixes #485706.
4797 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4799         * console-io.c: the termios values may vary in different flavors of unix.
4801 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4803         * console-io.[ch]: return the entire set of control characters when
4804         initializing the terminal.
4805         * appdomain.c: bump corlib version.
4807 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4809         * mono-perfcounters.c: added support for in-process custom
4810         performance counters.
4812 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4814         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4816 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4818         * metadata-verify.c: Verify the data pointed by the import table. 
4820 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4822         * metadata-verify.c (load_data_directories): Store data
4823         directory contents.
4825         * metadata-verify.c: Verify the import table. 
4827 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4829         * metadata-verify.c: Verify data directories.
4831 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4833         * metadata-verify.c: Check section header flags.
4835 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4837         * appdomain.c: if the assembly name is a shadow-copied file, return
4838         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4839         in mono_make_shadow_copy.
4840         * icall.c: if the assembly name is a shadow-copied file, replace it
4841         with the original assembly path.
4843         Bug #484244 fixed. NUnit tests for corlib can be run without
4844         --noshadow now.
4846 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4848         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4849         entries when the table is reallocated.
4851         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4852         mono_gc_alloc_fixed () since it contains GC refs.
4854 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4856         * reflection.c (ensure_complete_type): New helper function to call
4857         type resolve handlers for unfinished dynamic types.
4858         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4860 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4862         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4863         #483247.
4865 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4867         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4869 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4871         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4872         between GCHandles of type WeakTrackResurrection and the objects they
4873         point to.
4875         * gc.c: Partly implement the sematics of GCHandles of type 
4876         WeakTrackResurrection: these handles should only be cleared after the
4877         finalizer of the object they are pointing to has ran.
4879 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4881         * icall.c: Partially revert r126631 because using the jump
4882         trampolines for generic shared methods makes it superfluous.
4884 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4886         * threads.c (handle_store): Create the 'threads' hash table with the proper
4887         MONO_HASH_VALUE_GC type.
4889 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4891         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4892         FIRST_GC_TRACKED.
4894         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4895         and LAST_GC_TRACKED as a GC root.
4897         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4899         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4900         the static data even if it consists of 1 reference.
4902         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4903         if there is a GC descriptor.
4905         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4906         instead of through the GC since they contain no object references.
4908 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4910         * generic-sharing.c (instantiate_other_info): Always return a jump
4911         trampoline for method code.
4913 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4915         * culture-info-tables.h: generated to include the en-tt culture.
4917 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4919         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4920         capture the thread context.
4922         * object.c (mono_async_result_new): Cache the invoke wrappers to
4923         ExecutionContext::Capture.
4925 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4927         * marshal.h: Add a prototype for what mono_compile_method returns
4928         for invoke wrappers.
4930         * gc.c: Use the new prototype declaration.
4932 2009-03-04  Geoff Norton  <gnorton@novell.com>
4934         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4935         * gc-internal.h:
4936         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4938 2009-03-04  Martin Baulig  <martin@ximian.com>
4940         * mono-debug.h
4941         (mono_debugger_runtime_invoke): Removed.
4943         * mono-debug-debugger.c
4944         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4946 2009-03-02  Martin Baulig  <martin@ximian.com>
4948         * mono-debug.h
4949         (mono_debugger_unhandled_exception): Removed.
4950         (mono_debugger_handle_exception): Removed.
4951         (mono_debugger_throw_exception): Removed.
4953         * mono-debug.c
4954         (mono_debug_debugger_version): Bump to 5.
4956         * mono-debug-debugger.c: Moved the exception handling code to
4957         ../mini/debug-mini.c
4959 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4961         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4962         finalize_objects_hash.
4964         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4965         
4966         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4967         field.
4969         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4970         cache.
4972         * image.c (mono_image_close): Free it.
4973         
4974         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4975         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4976         on the this argument.
4978         * gc.c (run_finalize): Optimize the calling of the finalizers.
4980 2009-03-03  Martin Baulig  <martin@ximian.com>
4982         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4983         of the `MonoGenericInst' changes.
4985 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4987         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4988         mono_array_class_get_cached to reduce locking contention. Extract
4989         a domain var.
4991         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4992         intermediary managed arrays. Use caching version of mono_array_new
4993         to allocate the result array.
4995         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4997         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4999         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5000         to reduce locking contention.
5002 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5003                 
5004         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5005         thunk builder code for the non-interface case.
5007 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5009         * object.c (get_generic_virtual_entries): New helper function to collect
5010         the virtual generic method instances which need to be added to an IMT
5011         thunk.
5012         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5013         Instead of creating a new IMT thunk, reset the vtable slot to the
5014         trampoline, the thunk will be created the next time the trampoline is called.
5015         (build_imt_slots): Add support for virtual generic methods in interfaces by
5016         adding to the IMT thunk all the methods registered using 
5017         mono_method_add_generic_virtual_invocation ().
5019         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5020         (struct _MonoIMTCheckItem): Ditto.
5022         * object.c (mono_method_add_generic_virtual_invocation): Take a
5023         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5024         the IMT thunk to include all items.
5025         
5026         * object.c (mono_class_create_runtime_vtable): Add a missing
5027         mono_loader_unlock ().
5029 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5031         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5033         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5035 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5037         * object-internals.h: Rename _MonoReflectionEvent to
5038         MonoReflectionMonoEvent so it reflects the right managed type.
5039         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5041         * icall.c:
5042         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5043         type.
5045 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5047         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5048         intermediary managed arrays. Use caching version of mono_array_new
5049         to allocate the result array.
5051 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5053         * reflection.c: Use cached version of mono_array_new alongside
5054         the mono_reflection_get_custom_attrs_by_type call path.
5056 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5058         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5059         intermediary managed arrays. Use caching version of mono_array_new
5060         to allocate the result array.
5062         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5064 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5066         * icall.c: Add small implementation of a growable stack bound array.
5068         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5070         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5071         intermediary managed arrays. Use caching version of mono_array_new
5072         to allocate the result array.
5074 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5076         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5077         helps Enum::CompareTo to be implemented without reboxing all enums
5078         to their underlying type.
5079 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5081         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5082         since it acquires a global lock leading to scalability problems.
5084         * profiler.c: Make the stat profiler work with multiple appdomains, this
5085         currently only works when no appdomains are unloaded.
5087 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5089         * appdomain.c: make the check to avoid copying when the assembly is
5090         already shadow copied actually work.
5092 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5094         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5096         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5097         changes to the managed side.
5099 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5101         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5102         classes + a separate lock for it, as it is used frequently at runtime, not
5103         just during metadata loading/JIT compilation.
5105         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5106         for szarrays.
5107         
5108         * object-internals.h (mono_class_from_name_cached): New macro to cache
5109         the results of the lookup locally without having to declare a static
5110         variable to hold it.
5111         (mono_class_get_field_from_name_cached): Ditto.
5112         (mono_array_class_get_cached): Ditto.
5114         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5115         the new macros.
5116         
5117         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5118         slower search in metadata.
5120         * pedump.c: Fix a warning.
5122 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5124         * reflection.c (encode_locals): Add checks for user types.
5125         (method_encode_clauses): Ditto.
5126         (method_encode_code): Ditto.
5127         (mono_image_create_token): Ditto.
5129         * object-internals.h: Change the type of more fields from MonoReflectionType*
5130         to MonoObject*.
5132 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5134         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5135         the a thread does not suspend within 100ms.
5137         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5138         in addition to StopRequested as well.
5140         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5142         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5143         search the method_hash before inserting a new entry, to avoid crashes when
5144         the same method is inserted multiple times, causing the old 
5145         MonoDebugMethodInfo structure to be freed by the value dtor function.
5147 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5149         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5150         SO_EXLUSIVEADDRUSE where available.
5152 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5154         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5155         runtime invoke wrappers, this time it is string ctor wrappers, which
5156         pass a dummy string as 'this' instead of their obj argument. Fixes
5157         #478473.
5159 2009-02-21  Jb Evain  <jbevain@novell.com>
5161         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5162         only get create_culture once.
5164 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5166         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5167         check before the locking.
5168         
5169         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5170         (mono_reflection_create_runtime_class): Ditto.
5171         (mono_reflection_sighelper_get_signature_local): Ditto.
5172         (mono_reflection_sighelper_get_signature_field): Ditto.
5174         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5175         is a System.MonoType object or similar.
5176         (monotype_cast): New helper function to cast a MonoObject to a 
5177         MonoReflectionType object.
5179         * object-internals.h: Change MonoReflectionType* members in structures to
5180         MonoObject* members to force the usage of the monotype_cast () function.
5182         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5183         structures/arrays. This causes us to assert instead of crashing when 
5184         instances of user defined subclasses of System.Type are encountered.
5186 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5188         * cil-coff.h:
5189         * icall-def.h:
5190         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5191         win32 resource loaded from a PE file.
5193         * image.c: fix mono_image_lookup_resource.
5195 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5197         * icall-def.h:
5198         * threads-types.h:
5199         * threads.c: added internal call for WaitHandle.SignalAndWait.
5201 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5203         * cominterop.c : Adding cominterop_type_from_handle and 
5204           registering it as an icall.  Replacing all references
5205           to type_from_handle.
5207         Code is contributed under MIT/X11 license.
5209 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5211         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5213         * appdomain.c: Call the tracer init function.
5215         * domain-internals.h: Enable the tracer for the domain locks.
5217         * image.c: Enable the tracer for image locks.
5219         * loader.c: Enable the trace for the loader lock.
5221         * lock-tracer.h:
5222         * lock-tracer.c: Initial implementation of the lock trace utility.
5223         The tracer requires a compile time define to be enabled and a env var
5224         to be enabled at runtime.
5226 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5228         * domain.c (mono_domain_code_foreach): Improve documentation.
5230 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * appdomain.c:
5233         * generic-sharing.c:
5234         * object.c:
5235         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5236         comes first.
5238 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5240         * domain.c: Add mono_domain_code_* functions that perform locking
5241         around the domain codeman.
5243         * domain-internals.h: Export those functions.
5245         * object.c: Use new functions instead of acquiring the domain lock.
5247 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5249         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5250         delegate. Fixes #477396.
5252 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5254         * reflection.c (create_custom_attr): Get rid of alloca.
5256 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5258         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5259           Adding exception handling for all CCW calls.
5261         Code is contributed under MIT/X11 license.
5263 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5265         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5267         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5268         native->managed marshalling code. Fixes #476247.
5270 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5272         * class.c (mono_class_get_vtable_entry): Move the addition of
5273         static rgctx invoke wrappers for vtable methods here, this simplifies
5274         a lot of code and causes fewer rgctx wrappers to be created.
5276         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5277         name of the statistics to begin with an uppercase.
5279 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5281         * reflection.c: Revert previous change as it breaks the build.
5282         
5283 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5285         * verify.c: Properly handle SZARRAY element type.
5287         Fixes #474271.
5289 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5291         * reflection.c (mono_image_create_method_token): Correctly encode
5292         MethodDef MemberRefParent token.
5294         Fixes #472845.
5296 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5298         * image.c (mono_image_close): Delete the critical section before
5299         freeing the memory holding it.
5301 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5303         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5304         Fixes #476257.
5306 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5308         * pedump.c (main): Call mono_marshal_init so pedump
5309         doesn't crash.
5311 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5313         * loader.c (method_from_memberref): Properly fix #474271 and
5314         don't break the runtime bad.
5316 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5318         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5319         (mono_domain_alloc0): Ditto.
5321 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5323         * loader.c (method_from_memberref): Don't abort if the array
5324         method is not found. A regular loader failure is more informative
5325         and correct.
5327         Fixes #474271.
5329 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5331         *loader.c: Guard MonoImage::method_cache/methodref_cache
5332         using the image lock instead of the loader lock.
5334         * metadata.h: Add comments about which fields are protected by
5335         the image lock.
5337 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5339         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5341         * generic-sharing.c (mono_method_construct_object_context): Remove the
5342         wrapper_type == NONE assert, it is not needed.
5344 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5346         * reflection.c (clear_cached_object): New helper function.
5347         (mono_method_clear_object): New function to clear the cached reflection
5348         objects for a dynamic method.
5350         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5351         Partly fixes # 463323.
5352         
5353 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5355         * class.c:
5356         * loader.c:
5357         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5359 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5361         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5362         take the image lock instead of the loader lock.
5364         * metadata-internals.h: Export new functions.
5366 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5368         * domain.c (app_config_parse): Remove another use of stat that is
5369         not necessary as g_file_get_contents already does the presence
5370         check. 
5372 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5374         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5376         * marshal.c: Move the bstr handling code to cominterop.c.
5378         * marshal.c: Remove some COM interop code missed previously.
5380 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5382         More Paolo patches from the Wii port:
5383         
5384         * security.c: Remove ves_icall_System_Environment_get_UserName
5385         from here.
5387         * icall.c: And put ves_icall_System_Environment_get_UserName
5388         here. 
5390         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5391         redundant call to stat that was only used to test for the file
5392         existence.   Patch from Paolo.
5394         * gc.c (run_finalize): If COM is disabled, do not link in
5395         mono_marshal_free_ccw.
5397         * generic-sharing.c: Use alloca.h here as well.
5399 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5401         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5403 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5405         * cominterop.c cominterop.h: New files.
5407         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5408         function/typedefs which are needed by cominterop.c global.
5410 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5412         * generic-sharing.c: Don't take the loader lock to guard image
5413         mempool allocs.
5415 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5417         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5418         called without the loader lock which is required to guard MonoImage:tokens.
5420 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5422         * class.c:
5423         * metadata.c:
5424         * method-builder.c:
5425         * marshal.c:
5426         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5428 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5430         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5431         Rework the code to use regular mono_image_alloc/0.
5433         * loader.c: Rework the code to use regular mono_image_alloc/0.
5435         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5437 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5439         * object-internals.h : Fixing a typo in the 
5440           MonoReflectionComVisibleAttribute struct.
5442         * marshal.c (cominterop_com_visible): Check the implemented 
5443           interfaces for ComImport.
5445         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5446           assume that bools should be treated as VARIANTBOOLs.
5448         * marshal.c (emit_marshal_boolean): Adding cases for 
5449           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5451         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5452           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5454         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5455           should be treated as VARIANTBOOLs.    
5457         Code is contributed under MIT/X11 license.
5459 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5461         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5462         allocation with the image lock.
5464 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5466         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5467         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5469         * object.c: Add mono_string_to_utf8_image.
5471         * object-internals.h: Export mono_string_to_utf8_image.
5473         * reflection.c: Rework all explicit references to the the image mempool to go thought
5474         the mono_image_alloc set of functions.
5476 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5478         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5479         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5480         and generics-sharing.c.
5482         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5483         as first argument. Note that this function remains broken as it doesn't perform locking around the
5484         mempool allocation.
5486         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5488         * image.c: Add g_slist_append_image.
5490         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5491         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5493         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5494         Fix all related code to do the same.
5496         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5498         * metadata-internals.h: Fix the signatures.
5500 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5502         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5503         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5504         and similar to work using MonoImage.
5506         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5507         MonoMemPool.
5509         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5511         * class.c (mono_metadata_signature_deep_dup): Same.
5513         * class.c (inflate_generic_type): Same.
5515         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5517         * metadata.c (mono_metadata_signature_dup_full): Same.
5519         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5520         mono_metadata_signature_dup_full.
5522         * metadata.c (mono_metadata_type_dup): Same.
5524         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5526         * reflection.c: Same.
5528         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5530         * metadata-internals.h: Fix the signatures.
5532         * class-internals.h: Same.
5534 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5536         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5537         and use mono_image_alloc set of functions instead. 
5539         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5540         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5541         of a MonoMemPool.
5543         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5545         * class.c (g_list_prepend_mempool): Removed.
5547         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5549         * image.c: Add g_list_prepend_image.
5551         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5553         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5556 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5558         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5559         mono_image_unlock.
5561         * image.c (mono_image_init): Init the lock field.
5563         * image.c (mono_image_init): Cleanup the lock field.
5565         * image.c: Add mono_image_(un)lock functions.
5567 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5569         * class.c, class-internals.h: mono_method_get_context_general()
5570         combines the functionality of mono_method_get_context() and
5571         mini_method_get_context().
5573         * generic-sharing.c, domain-internals.h:
5574         mono_method_construct_object_context() and
5575         mono_domain_lookup_shared_generic() moved from mini.
5577         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5578         method doesn't have the correct instantiation because it's shared
5579         generic code.  Fixes #473999.
5581 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5583         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5585         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5586         
5587 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5589         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5591         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5593         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5594         and recheck the cache for dups after it.
5596         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5598         Fixes one of the deadlocks found in #473150.
5600 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5602         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5603           For Win32, add additional break conditions for accept.
5605         Code is contributed under MIT/X11 license.
5607 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5609         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5610         lazily initialize the native wrapper cache.
5611         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5612         cache, since they are different from the normal wrappers.
5614         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5616         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5617         AOT compiled native wrappers.
5619 2009-02-09  Geoff Norton  <gnorton@novell.com>
5621         * appdomain.h:
5622         * security-core-clr.c: Allow enabling core-clr from the embedding
5623         API.
5625 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5627         * socket-io.c: when requesting all the local ips, if there are no
5628         interfaces up and running, MS returns 127.0.0.1.
5630 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5632         * mono-perfcounters-def.h: processor time is an inverse time.
5633         Fixes bug #468625.
5635 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5637         * socket-io.c: an empty host name returns the list of local IPs.
5638         Fixes bug #386637 part 1/2.
5640 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5642         * verify.c (mono_class_interface_implements_interface): Call
5643         mono_class_setup_interfaces ().
5644         (merge_stacks): Ditto.
5646 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5648         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5649         klass->interfaces.
5650         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5651         (mono_generic_class_get_class): Ditto.
5653 2009-02-06  U-QUACK\miguel  <miguel@quack>
5655         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5656         they live in security.c
5658         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5659         another bit from Paolo's code.
5661 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5663         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5664         methods which will be discarded by add_imt_builder_entry ().
5666         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5667         need to be boxed.
5669         * loader.c: Add a statistics for the size of the memberref signature cache.
5670         
5671         * loader.c (find_cached_memberref_sig): New helper function.
5672         (cache_memberref_sig): Ditto.
5674         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5675         they will be parsed again for every generic instantiation, leading to unbounded
5676         memory growth.
5678 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5680         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5681         parameters of generic methods.
5683         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5684         after the original method is copied to the inflated method.
5685         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5687         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5688         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5690         * class.c metadata.c: Update after the changes above.
5692 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5694         * metadata-verify.c: Simplified error handling and added
5695         section table validation.
5697 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5699         * class-internals.h (MonoClassExt): New structure containing rarely used
5700         fields of MonoClass.
5701         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5702         through a new 'ext' field.
5704         * class.c (mono_class_alloc_ext): New helper function to allocate 
5705         class->ext.
5707         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5709 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5711         * object.c (mono_object_get_virtual_method): Properly inflate
5712         generic methods.  Fixes #472692.
5714 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5716         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5717         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5718         for the parent type, the created type must be ready to be used on a generic
5719         instantiation.
5720         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5721         we won't have duplicated entries in generic_inst_cache.
5723         Fixes #469553.
5725 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5727         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5728         replace with plain BSD per the comments on the bug MONO77637.
5730 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5732         * class.c (mono_class_get_generic_class): New accessor function.
5733         (mono_class_get_generic_container): Ditto.
5735         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5736         fields, similar to the ones in MonoMethod.
5738         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5739         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5741         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5742         
5743         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5744         the same information as element_class->byval_arg.
5746         * class.c reflection.c: Remove references to class->byval_arg.
5748         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5749         klass->enum_basetype directly.
5751         * verify.c metadata.c object.c icall.c reflection.c: Use 
5752         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5753         directly.
5755 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5757         * icall-def.h: Remove internal calls for sockets when
5758         DISABLE_SOCKET is defined, file system writing features when the
5759         OS only support reading and not writing data and Policy support if
5760         the Policy is disabled.
5761         
5762         * image.c (do_mono_image_open): Apply Paolo's patches for using
5763         mono_file_map_ APIs here.
5765         * assembly.c: Add support for platforms to avoid prefix
5766         auto-detection. 
5768 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5770         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5771         warning.
5773         * class.c (mono_class_inflate_generic_class): New helper function.
5775         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5776         statistics for inflated methods/classes.
5778         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5780         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5781         the call is made from Delegate.CreateDelegate () for the invoke method of
5782         a delegate.
5784         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5786         * metadata.c (mono_metadata_signature_size): New helper function.
5788         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5789         generic instances.
5791         * metadata.c (inflated_method_in_image): Avoid calling 
5792         mono_method_signature () if the method does not already have a signature.
5794 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5796         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5797         valuetype is compatible with target type, check by inheritance as a
5798         VT is not really compatible with System.ValueType, for example.
5800         * verify.c (do_invoke_method): Improve error message.
5802         * verify.c (do_box_value): If boxing a nullable, use the type argument
5803         on stack instead.
5805         * verify.c (do_newobj): Improve error message.  
5807         Fixes #469549.
5809 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5811         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5813 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5815         * generic-sharing.c: Don't hold domain lock when calling
5816         instantiate_other_info().  Fixes #471958.
5818         * domain-internals.h, loader.c: Describe locking policy of domain
5819         lock vs loader lock.
5821 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5823         * verify.c (mono_delegate_signature_equal): Make it possible to check
5824         first-arg-bound delegates to static method.
5826         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5827         static methods with the first arg bound.
5829         Fixes #469529.
5831 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5833         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5834         errors.
5836         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5837         under strict mode. Any type, when boxed can be seen as a reference type.
5839         Fixes #469528.
5841 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5843         * object.h: The lower bound of an array is a signed integer value.
5844         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5845         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5847         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5848         calculate the upper bound.
5849         
5850         Fixes #471252.
5852 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5854         From Paolo's work, refactored, cleared up:
5855         
5856         * threadpool.c, icall.c: ifdef code that requires a working socket
5857         stack.
5859         * metadata.c (mono_metadata_field_info): Do not attempt to return
5860         a value from a function declared as void.
5862         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5863         from the console stack.
5865         * assembly.c: use strrchr instead of rindex.
5867         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5868         alloca.h on systems that have it.
5870         * environment.c: Avoid code that uses stuff from
5871         HAVE_SYS_UTSNAME_H
5872         
5873         * appdomain.c: Include sys/time.h.
5875         * console-io.c: include sys/ioctl.h if it is available.
5877 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5879         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5881         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5882         the method builder.
5884         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5885         after it was created and cached, as the later is not thread safe.
5886         
5887 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5889         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5890         called while the debugging module is not initialized. Fixes #471669.
5892 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5894         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5896         Fixes #471255.
5898 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5900         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5901         loader lock is not taken while the templates lock is held.  Fixes
5902         #471089.
5904 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5906         * metadata.c (type_in_image): Added a check to fix a monodis
5907         crash.
5909 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5911         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5912         nullable arguments.
5914         * object.c (mono_runtime_invoke_array): Ditto.
5915         
5916         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5917         freeing wrappers of dynamic methods.
5919         * loader.c (mono_free_method): Call it. Fixes #463323.
5920         
5921         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5922         methods taking vtype/byref arguments, to fix yet another bug caused by
5923         the sharing of runtime invoke wrappers. Partly fixes #471259.
5925 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5927         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5928         <first file in file table>:1 when the IL offset does not have an associated
5929         line number.
5931 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5933         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5934         variable info for a method.
5936         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5937         
5938 2009-01-30  Jb Evain  <jbevain@novell.com>
5940         * pedump.c: reuse code from monodis to make sure pedump honors
5941         MONO_PATH, which is needed to verify net_2_1 assemblies.
5943 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5945         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5946         there is no line number info.
5948 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5950         Avoid some MonoType allocations
5951         * reflection.c (mono_reflection_initialize_generic_parameter):
5952         Reuse MonoType from param->pklass rather than allocating one.
5953         (mono_dynamic_image_free): Update to changes.
5955 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5957         Rearrange some code to improve consistency
5958         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5959         (mono_reflection_initialize_generic_parameter): ... here.
5961 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5963         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5964         with type constraints as an experiment.
5966         * boehm-gc.c (on_gc_notification): Update mono_stats.
5968 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5970         Avoid some allocations
5971         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5972         pointer to tail array to avoid extra allocation.
5973         * metadata.c (free_generic_inst): Update to changes.
5974         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5975         on-stack struct.
5977 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5979         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5980         return TRUE if the two type objects are the same.
5982 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5984         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5985         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5986         klass->min_align, since klass->min_align contains the managed alignment,
5987         while the native alignment can be different, like for longs on x86.
5988         Fixes #469135.
5990         * class-internals.h (MonoMarshalType): Add a min_align field.
5992 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5994         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5995         the 1.0 format.
5997 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5999         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6000         some comments about the usage of the used_regs field.
6002         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6003         Fixes #469217.
6005 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6007         * appdomain.c: return NULL instead of throwing FileNotFoundException
6008         when LoadAssembly() fails.
6010 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6012         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6013         image if the owner is NULL.  Fixes the AOT failures.
6015 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6017         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6018         MonoGenericParam structure using memset so the image field is initialized
6019         as well.
6021 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6023         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6024         a plain store.
6026 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6028         * class.c (mono_class_setup_vtable_general): In the generic instance
6029         optimization, set method->slot for abstract virtual methods. Fixes part of
6030         #467834.
6032 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6034         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6035         which signals that the unloading has started but all appdomain services must
6036         remain operational.
6038         * appdomain.c (mono_domain_unload): The initial state for unloading now
6039         is unloading_start and we switch to unloading after the managed call to
6040         AppDomain::DomainUnload has finished.
6042         The new unloading state has to be created because managed code in the
6043         DomainUnload event can depend on things like the threadpool still working.
6044         The domain must remain fully functional while the event executes.
6046         This shown as an issue due to Process::WaitForExit, which waits for
6047         async reads of stdout and stderr to complete. Since those are processed
6048         in the threadpool the code deadlocks because the DomainUnload callback 
6049         waits for the async read finished event, which should have been set by a
6050         threadpool job but has been discarded due to the domain been in unload
6051         state.
6053 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6055         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6056         image must match.
6058 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6060         * reflection.c (resolve_object): For fields, inflate the class and
6061         then get the field in the inflated class.
6063 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6065         * object-internals.h (struct _MonoException): Added a comment
6066         explaining the new use of trace_ips.
6068 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6070         * generic-sharing.c (inflate_other_data): Inflate array methods
6071         correctly.
6073         * loader.c, class-internals.h: Rename search_in_array_class() to
6074         mono_method_search_in_array_class() and make it non-static.
6076 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6078         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6079         Hopefully fixes #458168.
6081 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6083         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6084         as it is performed elsewhere.
6086         Code is contributed under MIT/X11 license
6088 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6090         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6091         requests queued.
6092         * object.c (mono_raise_exception): Increment the exceptions total
6093         counter when an exception is thrown.
6094         * class-internals.h: Add a location for storing the total number of
6095         asp.net requests served.
6096         * mono-perfcounters.c: Implement update support for asp.net counters
6097         from the class libraries. Implement read support for asp.net counters
6098         and exceptions total counter.
6100 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6102         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6103         accessing klass->methods. Fixes #467385.
6105 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6107         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6108         for byval arguments without an [Out] attribute. Fixes #467212.
6110         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6111         Fix compilation under android.
6112         
6113         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6114         processed, scan them directly after they are copied, to achieve better locality
6115         and cache usage.
6117         * socket-io.c: Applied patch from Koushik Dutta
6118         (koush@koushikdutta.com). Disable IPV6 when running under android.
6120 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6122         * icall.c (ves_icall_InternalExecute): Add write barriers.
6124         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6125         the GC code.
6127         * sgen-gc.c: Implement write barriers in IL code.
6129 2009-01-17  Geoff Norton  <gnorton@novell.com>
6131         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6133 2009-01-17  Geoff Norton  <gnorton@novell.com>
6135         * image.c: When unloading the image->references table, there can be gaps
6136         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6137         when unloading an appdomain.
6139 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6141         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6142         speed up ptr-in-nursery checks.
6144         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6145         threads_lock () to prevent deadlocks.
6147         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6148         does not need to be scanned during minor collections, since writes to it
6149         must use write barriers.
6151 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6153         * metadata-verify.c: Add pe nt header verification.
6154         
6155 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6157         * gc.c: Fix a few warnings when using SGEN.
6159 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6161         * metadata-verify.c: Add pe optional header verification.
6163 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6165         * sgen-gc.c: Add support for user defined marker functions, used by
6166         MonoGHashTable to avoid registering a GC root for every hash node.
6168 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6170         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6171         non-pinned roots into separate hashes to avoid having to traverse them
6172         in functions which are only interested in one kind.
6174 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6176         * metadata-verify.c: Add pe header machine field verification.
6177         
6178 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6180         * metadata-verify.c: Add pe header size verification.
6182 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6184         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6185         using the GC, they don't contain references.
6187         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6189 2009-01-13  Geoff Norton  <gnorton@novell.com>
6191         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6192         AppDomains created on the native side can be cleaned up on the native side.
6194 2009-01-13  Geoff Norton  <gnorton@novell.com>
6196         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6197         as well as the managed api.
6199 2009-01-13  Geoff Norton  <gnorton@novell.com>
6201         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6202         with a MonoAppDomain initialized against it.
6204 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6206         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6207         
6208         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6210         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6211         into the wrapper caches. Fixes #465700.
6213         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6214         method builder.
6215         (mono_mb_create_method): Set the clauses from the method builder.
6217 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6219         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6220         Patch from Makoto Kishimoto.
6222 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6224         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6225         encoding them as ROOT_DESC_COMPLEX.
6226         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6228 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6230         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6231         no longer point to the nursery.
6233         * sgen-gc.c: Add a few comments/FIXMEs.
6234         
6235         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6237         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6238         initialization of the various _method variables thread safe. Fixes
6239         #465377.
6241 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6243         * domain.c, domain-internals.h: Remove the shared_generics_hash
6244         and its lookup functions.
6246 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6248         * socket-io.c:  Fixing the MSVC build. 
6250         Code is contributed under MIT/X11 license.
6252 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6254         * metadata-verify.c: Add pe header watermark verification.
6256 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6258         * metadata-verify.c: Add lfanew verification.
6260 2009-01-12  Jb Evain  <jbevain@novell.com>
6262         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6263         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6265 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6267         * socket-io.c: Fix the build.
6269         * environment.c: Fix an #ifdef.
6271 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6273         * threadpool.c (async_invoke_thread): Handle the wait function returning
6274         WAIT_IO_COMPLETION as well.
6275         (async_invoke_io_thread): Ditto.
6277 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6279         * threads.c: Fixing the Windows build.
6281         Code is contributed under MIT/X11 license.
6283 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6285         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6286         interrupt a wait.
6287         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6288         the thread to wait again.
6290 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6292         * metadata-verify.c: Initial skeleton of the metadata verifier.
6294         * pedump.c: Add support for the metadata verifier.
6296         * verify-internal.h: Export the whole assembly metadata verifier function.
6298 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6300         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6302 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6304         * Makefile.am: Upgrade dtrace-prelink.sh location.
6306 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6308         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6309         well. Otherwise the shutdown deadlock that happens on unix will can happen
6310         as well.
6311         If the main thread code finishes too fast it's possible that the finalizer
6312         thread won't have executed yet, won't record itself as the finalizer thread
6313         and the shutdown sequence will wait on it forever.
6315 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6317         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6318         with MSVC.
6320 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6322         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6323         Robert Jordan for pointing this out.
6325 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6327         * icall.c
6328         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6329         ves_icall_System_IO_DriveInfo_GetDriveType.
6331 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6333         * icall.c: Wrap calls to mono_strtod in CriticalSection
6334         invocations when using eglib, to work around #464316.
6336 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6338         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6339         return value of GetCurrentDirectory to never access unitialized memory.
6341 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6343         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6344         return value of GetCurrentDirectory and expand the buffer if needed.
6346         Fixes #459094.
6348 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6350         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6351           Adding a call to mono_init_com_types.
6353         Code is contributed under MIT/X11 license.
6355 2009-01-07  Geoff Norton  <gnorton@novell.com>
6357         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6358         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6359         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6360         be the value of the ip buffer.
6362 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6364         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6365         interfaces_packed here.
6367         Fixes part of #463294.
6369 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6371         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6373         Fixes part of #463294.
6375 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6377         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6378         is a boxed complex as well.
6380         Fixes part of #463294.
6382 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6384         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6385         control if a methodspec should be created for the generic method definition from external assemblies.
6386         Caching of methodspec is done using the handleref hash table.
6388         Fixes #462592.
6390 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6392         * loader.c (find_method): When searching the interfaces of a class
6393         check the transitive closure of implemented interfaces.
6395         Fixes #463303.
6397 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6399         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6400         
6401 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6403         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6404         interfaces calculation to fill_valuetype_array_derived_types.
6406         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6407         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6408         for example.
6410         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6411         interfaces for valuetypes if needed.    
6413         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6414         for their basetype as well. Types are array expanded if rank is > 0.
6416         Fixes #400716.
6418 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6420         * socket-io.h : Changing the signature of
6421           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6422           the blocking state.
6424         * icall-def.h :  Changing the signature of
6425           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6427         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6428           For Windows only.  Avoid blocking when calling accept by
6429           querying for a connection via select.  The loop also queries
6430           the thread state every 1000 micro seconds for the thread
6431           stop state.  This will avoid the process hanging on shutdown
6432           when using a TcpChannel that is never connected to.
6434         Code is contributed under MIT/X11 license.
6436 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6438         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6440 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6442         * class.c (get_implicit_generic_array_interfaces): Extract common
6443         code to a helper function making it a lot easier on the eyes.
6445 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6447         * class.c (get_implicit_generic_array_interfaces): If the internal
6448         enumerator is an interface inflate System.Object instead of itself.
6450         Fixes #461261.
6452 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6454         * object.c (mono_runtime_invoke_array): Don't assert with
6455         byref nullable types.
6457         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6458         byref nullables we unbox the object and store it on the
6459         stack. 
6460         We can't use the boxed object since it is the T of Nullable<T>
6461         and the boxed representation of a nullable it's underlying type
6462         or null.
6463         We could cheat and create a boxed nullable and use the same
6464         machinery of other byref VTs but this feels like a hack and
6465         using the stack has the bonus of reducing heap pressure.
6467         Fixes #461941.
6469 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6471         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6472         return value.
6474         Fixes #461867.
6476 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6478         * icall-def.h : Adding an internal call definition for 
6479           System.Environment.internalBroadcastSettingChange.
6481         * icall.c : Adding a Windows only implementation to broadcast a 
6482           WM_SETTINGCHANGE when an environment variable has changed.
6484         Code is contributed under MIT/X11 license.
6486 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6488         * class.c, class-internals.h: Made
6489         mono_class_has_parent_and_ignore_generics() non-static.
6491 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6493         * image.c: deal with the mmap failing when loading an image.
6495 2008-12-17  Geoff Norton  <gnorton@novell.com>
6497         * threadpool.c: Ensure that the io_queue_lock is initialized
6498         in all circumstances, as we always attempt to cleanup against it.
6500 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6502         * icall.c (ves_icall_System_Environment_get_Platform): For
6503         compatibility reasons for existing client code we will keep
6504         returning 4 for a while.   
6506         For how long will depend on the documentation being updated, and
6507         for us to give client code a chance to be updated.
6509         This reverts the original decison on #433108 since we did not
6510         catch roughly 33 instances of the broken code in our own source
6511         code base, we did not catch failures on the buildbots, and QA did
6512         not bring this as a problem.
6514         Only today I found some customer's code breaking due to our own
6515         class libraries not being fully updated and tracked it down to
6516         this change.  I am reverting it because if we could not even get
6517         our story straight in our own code base, how can we hope that our
6518         end user code be fixed?
6520         As of this morning, our Wiki page that documents how to detect
6521         Unix had not been fixed.    
6523 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6525         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6527         * class.c (mono_class_get_fields): Handle loading errors.
6529 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6531         * 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.
6532         
6533 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6535         * mono-perfcounters.c: avoid warning.
6537 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6539         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6540         make sure all interfaces have MonoClass::interface_id set.
6542         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6543         method table is property set.
6545 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6547         * class.c: New function mono_class_setup_interface_id that setup
6548         MonoClass::interface_id if needed.
6550         * class-internals.h: Export new function.
6552 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6554         * class.c: Add code to sanity check the vtable after setup_vtable_general
6555         has done it's work.
6557 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6559         * icall.c: make Assembly.GetExecutingAssembly work properly when
6560         reflection is used to invoke the method.
6561         Bug #321781 fixed.
6563 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6565         * metadata/generic-sharing.c: Look for constraints in all type
6566         arguments, not just the first one.
6568 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6570         * appdomain.c: return the correct CodeBase for an Assembly instance
6571         that was loaded from the shadow-copy directories.
6572         Bug #458190 fixed.
6574 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6576         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6578         * sgen-gc.c (check_object): New debugging helper function.
6580         * object.c: Fix calls to mono_value_copy_array ().
6582 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6584         * class.c (mono_class_setup_fields): If working on an inflated class
6585         first check if the generic definition did init with success.
6587         Fixes #445361.
6589 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6591         pedump.c (main): Fix a warning.
6593 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6595         * object-internals.h : Adding a definition for 
6596           MonoReflectionComVisibleAttribute.
6598         * marshal.c (cominterop_com_visible) :  Method added to check the 
6599           ComVisible attribute of a class.
6601         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6602           cominterop_raise_hr_exception added to consolidate common code 
6603           to raise hr exceptions.
6605         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6606           if a managed class should support IDispatch.
6608         * marshal.c 
6609           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6610           Added additional checks for managed object when getting 
6611           an IDispatch interface.
6613         Code is contributed under MIT/X11 license.
6615 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6617         pedump.c (main): Handle mono_get_method () returning NULL. 
6619 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6621         * marshal.h: Fix a warning.
6623 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6625         * marshal.c : Adding cominterop_release_all_rcws to release all
6626           runtime callable wrappers held by the runtime.
6628         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6629           
6630         Code is contributed under MIT/X11 license.
6632 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6634         * metadata.c (mono_image_alloc_lock): New helper function.
6635         (mono_image_alloc0_lock): Ditto.
6637         * metadata.c: Use the alloc_lock () helper functions for allocating
6638         memory from the image mempool.
6640 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6642         * class.c (mono_class_from_generic_parameter): Document it's
6643         locking behavior. Fix double checked locking here, we stored in
6644         param->pklass a partially initialized MonoClass and no membar was used.
6646 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6648         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6649         (3) functions are present in the C library use them to do the
6650         job. If they are absent, make sure that the sum of int_part and
6651         dec_part is rounded before returning. This is necessary due to the
6652         division of dec_part by the power of 10 before the final addition
6653         is performed - if the result is not rounded in some cases it will
6654         yield invalid results.
6656 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6658         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6659         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6660         instruction instead of a pointer constant.
6662 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6664         * loader.c (mono_method_get_header): Do most of the work outside the
6665         loader lock, to avoid assembly load hook deadlocks.
6667         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6668         (mono_metadata_parse_type_full): Ditto.
6670 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6672         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6673         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6674         funtions. Finally, use a lock to produce well ordered output.
6676         The lock looks silly, as all calls to the corlib mempool should be guarded
6677         with the loader lock, but for some reason this fact doesn't help. 
6679         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6681 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6683         * socket-io.c: 64 bit big-endian fixes.
6685 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6687         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6688         targets that require strict compatibility between the types.
6690         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6691         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6692         Kill the strict argument and create a new one valuetype_must_be_boxed.
6694         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6695         state that all valuetypes must be boxed.
6697         Fixes #448560.
6699 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6701         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6702         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6704         Contributed under MIT/X11 license.
6706 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6708         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6709         the inflate_generic_type machinery should handle it.
6711         This avoids a crash when the field's flags is zero and it's type is
6712         a primitive.
6713         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6714         is zero and will return one of the cached built-in primitive types. Since
6715         those types live in read-only memory, the code that copies it crashes.  
6717 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6719         * object.c: Don't put function descriptors into generalized IMT
6720         thunks.
6722 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6724         * class.c: Enable generic code sharing on PPC64.
6726 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6728         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6729         from mini/mini.c.
6731         * generic-sharing.c: Allocate the method template slists from the
6732         image mempool so it doesn't leak.
6734 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6736         * class.c (generic_array_methods): Release the linked list.
6738 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6740         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6741         invocation to g_utf16_to_utf8().
6743 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6745         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6746         arguments on big endian archs.
6748 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6750         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6751         the type name (test added in corlib).
6753 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6755         * pedump.c: initialize perf. counters. Fixes a segv.
6757 2008-11-25  Martin Baulig  <martin@ximian.com>
6759         * mono-debug-debugger.c
6760         (mono_debugger_runtime_invoke): Return the exception object if an
6761         exception was thrown.  Visual Studio displays the exception object
6762         in the locals window.
6764 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6766         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6767         ftnptr.
6769 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6771         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6772         MONO_TYPE_U are sizeof (gpointer), too.
6774 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6776         * marshal.c (mono_type_native_stack_size): Fixed size and
6777         alignment for reference types.
6779 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6781         * class.c (mono_class_generic_sharing_enabled): Disable generic
6782         code sharing for PPC64.
6784 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6786         * icall.c (mono_method_get_equivalent_method): Make sure
6787         method->klass->methods is inited before looping over it.
6789 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6791         * object.c: when calling ExecuteAssembly in a newly created domain,
6792         the configuration file and application base are already set up.
6793         Bug #446353 take 2 fixed.
6795 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6797         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6798         Fixes #444715. Fix a warning.
6800 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6802         * appdomain.c: write the full path of the assembly to the .ini file
6803         created when "shadow-copying"
6804         Bug #446353 fixed.
6806 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6808         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6809         if signature==FALSE.
6811 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6813         * marshal.h : Fix the cygwin build.
6814            marshal.c:12442: undefined reference to `_IID_IMarshal'
6815           
6816         Code is contributed under MIT/X11 license.
6818 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6820         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6821           free threaded marshaler when QueryInterface is called on a COM callable
6822           wrapper requesting the IMarshal interface.
6823           
6824         Code is contributed under MIT/X11 license.
6826 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6828         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6830         * reflection.c (mono_type_get_object): Special case the very common
6831         void type.
6833         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6834         hold typeof(void).
6836 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6838         * process.h : Adding method declaration for
6839           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6840           
6841         * process.c : Adding implementation for
6842           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6843           
6844         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6845           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6847         Code is contributed under MIT/X11 license.
6849 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6851         * appdomain.c (unload_thread_main): Clean up threadpool by
6852         calling mono_thread_pool_remove_domain_jobs.
6854         * domain-internals.h (struct _MonoDomain): Add new fields to
6855         help coordinate the cleanup of the threadpool.
6857         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6858         that cleans up the threadpool of all jobs associated with an appdomain.
6859         It does that by cleaning up the queues and making sure all active
6860         threads are accounted.
6862         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6863         unloaded or in the process of. Take this is such way that there is
6864         no race condition between another thread starting the unload and the
6865         current thread acknowledging it.
6867         * threadpool.c (async_invoke_thread): Same.
6869         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6870         firing the new thread.
6872         * threadpool.c (start_tpthread): Same.
6874         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6876         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6878 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6880         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6881         Add support for DuplicateHandle.
6882         
6883         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6884         Add support for DuplicateHandle.
6885         
6886         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6887         Add support for DuplicateHandle.
6889         Code is contributed under MIT/X11 license.
6891 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6893         * class-internals.h: Make min_align into a whole byte.
6895         * class.c: Set min_align for SIMD types to 16.
6897 2008-11-05  Geoff Norton  <gnorton@novell.com>
6899         * attach.c: Default the attacher to enabled for all cases including
6900         embedded.
6902 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6904         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6905         change r117650.
6907 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6909         * monitor.c, monitor.h: New function for querying offsets of
6910         members of MonoThreadsSync.
6912 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6914         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6915         to speed up this function and to avoid the boundless memory growth caused by
6916         the signature_dup () calls.
6918 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6920         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6921         wrapper.
6923         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6924         by 1 bit.
6926         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6928 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6930         * appdomain.c:
6931         * domain-internals.h: made mono_set_private_bin_path_from_config()
6932         "internal".
6933         * object.c: call the above function after setting the configuration
6934         file path for the root domain.
6935         Fixes bug #314478.
6937 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6939         * assembly.c: when the assembly is loaded from an absolute path, end
6940         basedir with a directory separator.
6941         Bug #440781 fixed.
6943 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6945         * monitor.c (mono_monitor_get_fast_enter_method): If
6946         CompareExchange is not available, don't create the fastpath
6947         instead of asserting.  (The method is missing in the 1.1 profile.)
6949 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6951         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6953         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6954         Monitor.Exit IL fastpaths.
6956 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6958         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6960 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6962         * class.c (mono_class_create_from_typedef): Added Vector2l.
6964 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6966         * class.c (mono_class_create_from_typedef): Added Vector2d.
6968 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6970         * appdomain.c: translate \ into / for cache_path.
6971         * domain-internals.h: new mono_is_shadow_copy_enabled().
6972         * icall.c: (fill_reflection_assembly_name) do the same path
6973         manipulations that get_code_base does.
6974         (get_code_base) use mono_is_shadow_copy_enabled.
6976 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6978         * appdomain.c: shadow-copied assemblies go to CachePath +
6979         ApplicationName when both are set. DynamicBase has nothing to do with
6980         shadow copies.
6981         Bug #406877 fixed.
6983 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6985         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6986         STANDALONESIG table.
6988         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6989         standalone signatures.
6991         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6992         comparison code: instead of comparing the signatures using a custom
6993         equals function, transform them to a common signature and compare that. This
6994         works better with AOT.
6996 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6998         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7000         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7001         call for generic instances.
7002         (mono_class_setup_properties): Call setup_properties () before accessing
7003         gklass->properties.
7005         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7006         over the virtual methods of a class using metadata if possible, avoiding the
7007         creation of MonoMethod's for non-virtual methods.
7008         
7009         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7010         get_virtual_methods () to iterate over the virtual methods of classes.
7012 2008-10-25  Martin Baulig  <martin@ximian.com>
7014         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7016 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7018         * class.c (mono_class_create_from_typedef): Added Vector4i.
7020 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7022         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7023         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7024         special-casing applies to eliminate the call completely.
7026 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7028         * class.c (mono_class_create_from_typedef): Added Vector8s.
7030 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7032         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7034 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7036         * icall.c: get rid of annoying warning.
7038 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7040         * threadpool.c: in 1.x, if you change the background status of the
7041         threadpool thread, it's not reset.
7042         Remove unnecessary calls to SetState.
7044 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7046         * threadpool.c: asynchronously create a set of idle threads upon first
7047         use of the threadpool. SetMinThreads will now start the appropriate
7048         number of idle threads if they are not already running. The default is
7049         1 threadpool thread per CPU. Increased the maximum number of threads
7050         per CPU to 10.
7052 2008-10-22  Martin Baulig  <martin@ximian.com>
7054         Revert r116521 from Zoltan, it breaks the debugger:
7056         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7057         over the virtual methods of a class using metadata if possible, avoiding the
7058         creation of MonoMethod's for non-virtual methods.
7059         
7060         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7061         get_virtual_methods () to iterate over the virtual methods of classes.
7063 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7065         * threads.c: when creating a threadpool thread, set its state to
7066         'background'.
7067         * threadpool.c: reset the background state of a threadpool thread
7068         after finishing each work item
7069         Bug #437888 fixed.
7071 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7073         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7074         
7075         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7076         generic instances which works by inflating the methods in the container
7077         class's vtable.
7079         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7080         variant which doesn't make a copy if no inflation was done.
7081         (mono_class_setup_fields): Use it.
7083         * metadata.c (mono_metadata_get_shared_type): New helper function to
7084         return a shared instance of a given MonoType.
7086         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7087         a copy of most non-generic types.
7089 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7091         * threadpool.c: remove one more GetSystemInfo () call.
7093 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7095         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7096         use the code in mono-proclib.h to get processor information.
7098 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7100         * appdomain.c: fixed the logic that determines whether assemblies in a
7101         directory are "shadow-copied" or not. Bug #433483 fixed.
7103 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7105         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7106         warning.
7108 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7110         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7111         returning a vtype.
7113         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7114         reflection.c: Use mono_field_get_name () for accessing a field's name.
7116         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7117         class.c
7119         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7120         field.
7122         * loader.c (find_method_in_class): Reenable the metadata optimization by
7123         not using it for generic instances.
7125         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7126         data/def_type fields from MonoClassField into a separate structure.
7127         (struct MonoClassField): Remove data/def_type fields.
7128         (struct _MonoClass): Add a 'field_def_values' array to store the default
7129         values/RVA for fields.
7131         * class.c reflection.c: Update after the changes.
7132         
7133         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7134         for accessing field->data.
7136         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7138         * loader.c (find_method_in_class): Revert the last change for now as
7139         it breaks Mono.C5 unit tests.
7141         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7142         'field_generic_types' and 'field_objects' which contain the information
7143         previously stored in MonoInflatedField.
7144         (MonoInflatedField): Delete.
7145         (struct _MonoClassField): Delete 'generic_info' field.
7147         * reflection.c: Store the information which was previously in 
7148         field->generic_info in MonoDynamicGenericClass instead.
7150         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7151         MonoClassField changes.
7153 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7155         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7156         store the value inside the data array of the MonoMethodWrapper.
7157         This saves memory, is faster and fixes the lifetime issues (methods
7158         were never removed from the hash previously). May also fix bug#436996.
7160 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7162         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7163         generic instances, compute the type from the generic definition instead of
7164         looking in field->generic_info.
7166         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7167         for inflated fields, the only user was get_fieldref_token () which no
7168         longer needs it.
7170         * class.c (mono_class_init): Revert the last change as it seems to cause
7171         crashes.
7173         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7174         bytes on 64 bit platforms.
7176         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7177         
7178         * object.c (mono_class_create_runtime_vtable): Don't initalize
7179         field->data/field->def_type here, it is done lazily by 
7180         mono_class_get_field_default_value ().
7182         * icall.c (ves_icall_get_enum_info): Call 
7183         mono_class_get_field_default_value () instead of directly accessing
7184         field->data and field->def_type.
7186         * object.c (get_default_field_value): Ditto.
7188         * class.c (mono_field_get_data): Ditto.
7189         
7190         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7191         call for generic instances.
7193         * loader.c (find_method_in_class): If klass != from_class, then inflate
7194         the method with the context of from_class, since the caller assumes this.
7196 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7198         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7199         for accessing method->slot.
7201 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7203         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7205 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7207         * class.c (mono_method_get_vtable_index): Use
7208         mono_method_get_vtable_slot () for accessing method->slot.
7210         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7211         accessing klass->methods.
7213         * class.c (mono_method_get_vtable_slot): New helper function.
7214         (mono_class_get_vtable_entry): Ditto.
7215         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7216         accessing method->slot.
7218         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7219         method to get_inflated_method ().
7221         * class.c (mono_class_get_inflated_method): New helper method to obtain
7222         a method of an inflated class without calling setup_methods ().
7223         (mono_class_get_cctor): Use get_inflated_method.
7225         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7226         
7227         * marshal.c image.c: Lazily create all the marshal caches.
7229         * image.c (mono_image_init): Move initialization of runtime_invoke
7230         caches to marshal.c.
7232         * marshal.c (get_cache): New helper function to lazily initialize a 
7233         wrapper cache.
7234         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7236         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7238 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7240         * loader.c: fixed check for interface type.
7242 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7244         * appdomain.c: check for NULL setup before it's referenced.
7247 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7249         * class.c: remove the unused old vtable setup code.
7251 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7253         * class.c: don't depend on interface order in
7254         setup_interface_offsets (bug #435777).
7255         * reflection.c: sort the InterfaceImpl table (patch from
7256         Jb Evain  <jbevain@novell.com>).
7258 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7260         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7261         the low level assemblies lock.
7263 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7265         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7266         object.c, reflection.c, socket-io.c, threads.c: introduced
7267         mono_framework_version () to return the major framewrok version,
7268         changed the code that was using more complex patterns to use it.
7269         Return the correct value for PlatformID for OSX.
7271 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7273         * icall-def.h, process.h, process.c: added an icall to get info about
7274         processes using mono-proclib.
7276 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7278         * mono-perfcounters.c: use the mono-proclib functions to
7279         access process information.
7281 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7283         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7284         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7285         reflection.c: remove rawbuffer usage: mmap support is more sanely
7286         provided by utils/mono-mmap.
7288 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7290         * gc.c: use posix semaphores when possible so that
7291         mono_gc_finalize_notify() is signal safe.
7293 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7295         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7296         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7297         be #ifdef-ed out, the linker will remove the rest.
7299         * marshal.c: Implement DISABLE_COM.
7301         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7303 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7305         * locales.c (string_invariant_compare_char): Optimization: do not
7306         call g_unichar_type unless we actually need the information.
7308 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7310         * object.c, class-internals.h: Also create remoting trampolines
7311         for generic methods.  Pass the domain to the remoting trampoline
7312         creation function, too.
7314 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7316         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7318 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7320         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7321         Vector4ui.
7323 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7325         * assembly.c:
7326         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7328 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7330         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7331         for the least possible amount of time (extending the fix in r113458).
7333 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7335         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7337 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7339         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7340         as possible simd intrinsic types.
7341         Optimized the test to check for the common prefix first.
7343 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7345         * class.c: back out part of a broken optimization committed on
7346         May 23th (bug #433908).
7348 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7350         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7351         Win32.  Should fix #432388 for most cases until we have the new
7352         profiler on Win32.
7354 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7356         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7357         instead of using inst->id so the hash is stable for AOT.
7359 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7361         * appdomain.c:
7362         * icall.c: create a .ini file for shadow-copied assemblies that
7363         contains the location of the original assembly. Use this to return the
7364         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7365         Also fix the number of '/' for windows when returning the CodeBase.
7366         Fixes bug #430920.
7368 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7370         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7372         Code is contributed under MIT/X11 license.
7374 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7376         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7377           if if the class vtable needs initialized.
7379         Code is contributed under MIT/X11 license.
7381 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7383         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7384           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7385           STRING->BSTR, and CLASS->INTERFACE.
7387         Code is contributed under MIT/X11 license.
7389 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7391         * sysmath.h: changed the declaration of the
7392         ves_icall_System_Math_Round2 icall by adding an extra
7393         away_from_zero parameter.
7395         * sysmath.c (ves_icall_System_Math_Round2): added support for
7396         away from zero rounding. The icall now takes an extra boolean
7397         parameter to signal that away from zero operation is requested.
7399 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7401         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7402         the delegate klass so it can work with full-aot.
7403         (mono_marshal_get_delegate_end_invoke): Ditto.
7404         (mono_marshal_get_delegate_invoke): Ditto.
7406 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7408         * gc.c, attach.h, attach.c: remove a bad pattern:
7409         add_finalizer_callback () is not implemented correctly, it can't
7410         without adding more overhead to the finalizer loop and it's not
7411         even needed, since we know exactly what we need to call, so there is
7412         no need to do so through an expensive function pointer.
7414 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7416         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7417         for the no-gc case.
7418         * attach.c (mono_attach_init): Remove the #ifdef.
7420 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7422         * attach.c (mono_attach_init): Don't use
7423         mono_gc_add_finalizer_thread_callback when compiling without GC.
7424         Fixes #432306.
7425         
7426         Code is contributed under MIT/X11 license.
7428 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7430         * class.c (mono_class_create_from_typedef): Remove the 
7431         #ifndef DISABLE_SIMD stuff.
7433 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7435         * class-internals.h (MonoClass): Added simd_type bit field.
7437         * class.c (mono_class_create_from_typedef): Check if type is a simd
7438         intrinsic.
7440 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7442         * object.c (mono_method_add_generic_virtual_invocation): Only add
7443         instantiations to the thunk whose count is at least as large as
7444         the threshold.
7446 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7448         * icall.c: changed the Type of the exception thrown when trying to
7449         invoke a constructor on an abstract class. Part of the fix for bug
7450         #324185.
7452 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7454         * class.c, class-internals.h (mono_method_get_vtable_index): New
7455         function which returns the index into the vtable and properly
7456         handles inflated virtual generic methods.
7458 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7460         * object.c, domain.c, object-internals.h, domain-internals.h:
7461         Generalize IMT thunk machinery to also handle thunks for virtual
7462         generic method invokes.  When a virtual generic method is invoked
7463         more than a number of times we insert it into the thunk so that it
7464         can be called without lookup in unmanaged code.
7466         * generic-sharing.c, class-internals.h: Fetching a
7467         MonoGenericInst* for a method from an (M)RGCTX.
7469 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7471         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7472         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7473         marshalling. Fixes #431304.
7475 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7477         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7478           handle when ref is specified without In or Out.
7480         Code is contributed under MIT/X11 license.
7482 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7484         * loader.c (mono_get_method_constrained): Don't expand method with
7485         the class's context, because it's already a method of that class.
7487 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7489         * attach.c : should be correct build fix.
7491 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7493         * attach.c: Fix the previous change.
7495 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7497         * attach.c : quick w32 build fix.
7499 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7501         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7502         crashes MonoDevelop: #430455.
7504 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7506         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7507         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7509         * domain.c: Remove initialization/cleanup of the removed fields.
7511 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7513         * class.c (mono_class_generic_sharing_enabled): Enable generic
7514         code sharing for PPC.
7516 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7518         * attach.c : Fixing the Windows builds.
7520         Code is contributed under MIT/X11 license.
7522 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7524         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7525         the default generic sharing mode to 'all'.
7527 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7529         * generic-sharing.c, class-internals.h: New function for checking
7530         whether a method needs a static RGCTX invoke wrapper.  A few
7531         funtions moved from mini/generic-sharing.c.
7533         * icall.c: New function used.
7535 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7537         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7538         Static RGCTX invoke wrapping applies to value type methods, too.
7540         * class.c (mono_class_setup_vtable_general): In generic-shared
7541         value types, wrap methods with a static RGCTX invoke wrapper.
7543 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7545         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7546         osx build.
7548 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7550         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7551         register a callback which is called when the finalizer thread is woken
7552         up.
7553         (finalizer_thread): Call the callback if it exists.
7555         * attach.h attach.c: New files, implementing the attach mechanism.
7557         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7558         
7559         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7560         by the previous change.
7562 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7564         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7565         loader.c, marshal.c, metadata-internals.h, metadata.c,
7566         method-builder.c, object.c, reflection.c: introduced specific functions
7567         to allocate from the domain and image mempools and cleaned up most of
7568         the code to use them (still missing a few in reflection.c).
7569         Keep the loader bytes counter updated.
7571 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7573         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7574         loader-related counters.
7576 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7578         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7579         added more MS-compatible counters.
7581 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7583         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7584         class->blittable. Fixes #428217.
7586 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7588         * reflection.c (mono_image_get_field_on_inst_token): Call 
7589         field_encode_signature () since that handles custom modifiers too.
7590         Fixes #424663.
7592 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7594         * reflection.c (add_custom_modifiers): New helper function to merge custom
7595         modifiers stored in objects to a MonoType.
7596         (fieldref_encode_signature): Encode custom modifiers.
7597         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7598         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7600 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7602         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7603         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7604         64-bit IL only images because imports are not resolved for IL only images.
7605         Special thanks to Bill Holmes for finding this bug and testing the patch.
7606         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7608         Contributed under MIT/X11 license.
7610 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7612         * mono-config.c (dllmap_start): Add support for the bits keyword
7613         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7615 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7617         * reflection.c (inflate_mono_method): When the class the method is
7618         to be inflated for is itself not inflated, just return the method.
7620 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7622         * mono-perfcounters.c: use more user friendly process instance names.
7624 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7626         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7627           handle "[in] ref" and "[in][out] ref" cases.
7629         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7630           to mono_mb_create_method.  This was causing problems calling native to
7631           managed passing Variants by value.
7633         Code is contributed under MIT/X11 license.
7635 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7637         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7638         before accessing the friend_assembly_names field.
7640         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7641         times.
7642         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7643         called lazily when it is needed.
7645         * metadata-internals.h (struct _MonoAssembly): Add 
7646         'friend_assembly_names_inited' flag.
7648 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7650         * mono-perfcounters-def.h: fix the types of a few counters.
7651         * mono-perfcounters.c: implemented the instance names getter
7652         and a few bugfixes.
7654 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7656         * culture-info-table.h : regenerated.
7658 2008-09-17  Robert Jordan  <robertj@gmx.net>
7660         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7661         context bound objects. Fixes #415577.
7663         Code is contributed under MIT/X11 license.
7665 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7667         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7668         implementation (bug #423582).
7670 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7672         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7673         is not set. Fixes #426309.
7675 2008-09-16  Jb Evain  <jbevain@novell.com>
7677         * class.c (mono_class_from_name): fix the exported type look up
7678         when the type is defined in a referenced assembly.
7680 2008-09-16  Jb Evain  <jbevain@novell.com>
7682         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7683         increment the next index counter on each iteration to make that work
7684         for more than one type forwarder. Unmanaged part to fix #422929.
7686 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7688         * object-internals.h: enum ComInterfaceType in
7689         MonoInterfaceTypeAttribute is guint32, not guint16.
7691 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7693         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7694         writing code.
7696 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7698         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7699         not gboolean.
7701 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7703         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7704         Endianness fixes for MonoSymbolFileOffsetTable.
7706 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7708         * process.c (complete_path) : Removing quotes from the 
7709           input path.  The glib file routines do not handle file paths
7710           that have quotes around them.
7712         Code is contributed under MIT/X11 license.
7714 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7716         * socket-io.h : Adding a comment to provide locations where 
7717           changes to MonoSocketAsyncResult need to be synced.
7719         Code is contributed under MIT/X11 license.
7721 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7723         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7724         parameters as well. Fixes #425001.
7726 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7728         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7729         windows build.
7731 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7733         * console-io.c: Add support for tracking the window size if it
7734         changes.
7736         The setup is very simple: the TtySetup function will now return a
7737         pointer to a location in memory that tracks the current console
7738         size.  The managed code checks its current value every time its
7739         queried against the last value set, and updates accordingly.
7741         With this setup we can work with multiple consoles, and we do not
7742         require to poke into managed code from a signal handler.
7744         Additionally, the environment for COLUMNS and LINES is now handled
7745         in unmanaged code.
7747         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7749 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7751         * marshal.c (mono_type_native_stack_size): Treat
7752         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7754 2008-09-04  Jb Evain  <jbevain@novell.com>
7756         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7757         to nullables.
7759 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7761         * verify.c (verify_type_compatibility_full): Revert change
7762         to allow converting a native int to unmanaged pointer be verifiable
7763         under non-strict mode.
7764         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7766         * verify.c: Added some TODOs.
7768 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7770         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7771           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7772           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7774         Code is contributed under MIT/X11 license.
7776 2008-09-02  Jb Evain  <jbevain@novell.com>
7778         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7780 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7782         reflection.c (typebuilder_setup_fields): Handle classes with
7783         explicit size.
7785 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7787         class.c (mono_class_setup_events): Add memory barrier due to
7788         double checked locking.
7789         
7790         class.c (mono_class_setup_properties): Same.
7792 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7794         * class.c (mono_class_is_assignable_from): Fix the build.
7795         
7796         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7797         before accessing klass->interface_bitmap. Fixes #421744.
7799 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7801         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7802         the runtime into no-exec mode, useful when running the AOT compiler.
7804         * appdomain.c gc.c object.c: Avoid executing managed code when running
7805         in no-exec mode.
7806         
7807         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7809         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7810         special case when the mono_assembly_loaded () returns NULL because the 
7811         search hook is not installed.
7813 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7815         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7816         crashes in bstr marshalling on linux.
7818 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7820         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7821         with more than one parameter.
7823 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7825         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7826         start/stop flow control as well when turning off ICANON (allows
7827         C-s and C-q to be read by Console.ReadKey).
7829 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7831         * class.c (mono_class_init): Move the initialization of nested classes
7832         into mono_class_get_nested_types (). Fixes #418433.
7834         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7835         flag.
7837         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7838         iterating tough the nested classes of a class.
7840 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7842         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7843         on arm.
7845 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7847         * console-io.c (sigcont_handler): Support signal chaining for
7848         SIGCONT.
7850         (console_set_signal_handlers): Use best practices with sigaction,
7851         clear the structure before using it. 
7853 2008-08-22  Robert Jordan  <robertj@gmx.net>
7855         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7856         Fix the Windows build.
7858 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7860         * class.c (mono_class_generic_sharing_enabled): Make the default
7861         sharing mode 'corlib'.
7863 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7865         * console-io.c (console_set_signal_handlers): Fix a warning.
7867         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7868         method normally, the JIT will take care of avoiding recursion.
7870 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7872         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7874         Code is contributed under MIT/X11 license.
7876 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7878         * console-io.c (sigcont_handler): We need to restore the entire
7879         termios state, not only the original settings, as things like echo
7880         can be controlled after this (Booish exposes this issue with its
7881         own ReadLine implementation).
7883         Additionally, we need to set the terminal back into keypad_xmit
7884         mode.
7885         
7886         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7887         string as a paramter as well.   Otherwise we get different
7888         keyboard sequences.
7890 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7892         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7893         delegates with byref out parameter passing. Fixes #351520.
7895         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7896         a generic context.
7897         (mono_type_get_desc): Add the type arguments for GENERICINST.
7898         (mono_method_full_name): Stringify the class name using mono_type_full_name
7899         so it picks up generic arguments.
7901 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7903         * console-io.c: Removed debug output.
7905 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7907         reflection.c (mono_reflection_create_runtime_class): Alloc
7908         the nested classes linked list using the dynamic image mempool.
7909         Fixes leak in corlib compilation.
7911 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7913         * console-io.c: Fix incredibly annoying behavior on the console
7914         after resuming execution after control-z.   This affected every
7915         console application.
7917 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7919         * mempool-internals.h: Header for mono private mempool functions. The first
7920         two function are for allocating glib linked lists using pools.
7922         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7924         * Makefile.am: Added mempool-internals.h.
7926 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7928         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7929         (mono_domain_free): Ditto.
7931         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7932         be used by the JIT to store its domain-specific information, instead of putting
7933         it directly into MonoDomain.
7935         * domain.c (mono_install_create_domain_hook): New helper function to install
7936         a hook which initializes domain->runtime_info.
7938         * domain.c (mono_install_free_domain_hook): Ditto.
7939         
7940 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7942         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7943         asserting if the ares parameter is null.
7945         * mono-perfcounters.c: Fix warnings.
7947         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7948         is not needed, don't check for interruptions either.
7949         (mono_marshal_get_delegate_end_invoke): Ditto.
7951 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7953         * mono-perfcounters.c (predef_readonly_counter): added support for
7954         reading the ASP.NET Requests Queued counter from another process.
7956 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7958         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7959         MonoImage to simplify the AOT code.
7961 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7963         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7964         marshalling. Fixes #416078.
7966 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7967         
7968         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7969         it is set, looking up the icall address is deferred to the JIT, since 
7970         in embedded scenarios, the icall might not be registered in the runtime
7971         doing the AOT compilation. Backported from the 2.0 branch.
7973 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7975         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7976         Fixes #415621.
7978 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7980         * Makefile.am: added support for cross-compilation.
7982 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7984         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7986 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7988         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7990 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7992         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7993         mono-perfcounters.c: performance counters implementation.
7995 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7997         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7998         to gpointer, letting the AOT code decide what to store in it.
8000 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8002         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8003           mono_class_setup_methods if the methods are not initialized.
8005         Code is contributed under MIT/X11 license.
8007 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8009         * verify.c: Remove some debug code I commited by accident.
8011         * verify.c (mono_method_is_valid_in_context): Change the return value
8012         to make possible to distinguish between invalid and unverifiable.
8014         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8015         methods.
8017 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8019         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8020         constraints. Fixes regression in gtest-253.
8022 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8024         * verify.c (mono_verifier_verify_class): Don't allow generic types
8025         with explicit layout.
8027         * verify.c (mono_method_verify): Check locals and argument types.
8029 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8031         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8032         wait if the thread is in StopRequested state.
8034         * class.c (mono_class_from_name): Refactor the module searching code into
8035         a separate function so it can be reused in the AOT case too.
8037 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8039         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8040         Check both the type and it's generic type definition for loader errors.
8041         
8042         * verify.c (mono_method_is_valid_in_context): Don't generate another
8043         error when a type errors occur, this leads to the wrong exception been
8044         thrown.
8046 2008-07-28  Dick Porter  <dick@ximian.com>
8048         * icall-def.h
8049         * process.c
8050         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8051         New internal calls to duplicate and close a process handle.
8053 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8055         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8057 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8059         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8061 2008-07-27  Robert Jordan  <robertj@gmx.net>
8063         * class.c (mono_class_init): Don't compute class.has_finalize for
8064         valuetypes. Fixes #412477.
8066 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8068         * verify.c: Implement constraint equivalence checking.
8069         This is required when a generic parameter is used as
8070         argument to a constrained one.
8072         Fixes #410637.
8074 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8076         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8078         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8080         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8081         synch with managed object layout.
8083 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8085         * verify.c (do_branch_op): Handle valuetypes and generic
8086         arguments properly.
8088         * verify.c (do_cmp_op): Same.
8090         Fixes #410383.
8092 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8094         * generic-sharing.c: Fix memory leaks.
8096         * class.c, class-internals.h: Make
8097         mono_class_inflate_generic_type_with_mempool() non-static.
8099 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8101         * pedump.c (dump_verify_info): Dump full class name.
8103 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8105         * generic-sharing.c: Removed some old code that didn't do anything.
8107 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8108         * profiler.c: Added runtime_initialized_event,
8109         mono_profiler_install_runtime_initialized and
8110         mono_profiler_runtime_initialized. This new hook tells the profiler
8111         when the runtime is sufficiently initialized to be able to call
8112         mono_thread_attach on the root appdomain.
8113         * profiler.h, profiler-private.h: Likewise.
8115 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8117         * verify.c (do_cast): Do boxing for generic arguments as well.
8119         * class.c (is_nesting_type): Drop generic instantiations before
8120         checking for nesting.
8122         * class.c (can_access_instantiation): Allow access to generic
8123         arguments.
8125 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8127         * verify.c (verify_class_for_overlapping_reference_fields):
8128         On some cases, the field size might be zero, guard against that.
8129         Fix the explicit layout check to work as expected.
8131 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8133         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8134         mono_thread_resume () during shutdown, since the thread we want to abort
8135         might be suspended.
8137 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8139         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8140         warning.
8142         * debug-mono-symfile.c: Fix a warning.
8144         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8146         * object.c (mono_class_vtable): Check if exception_type is set, and return
8147         NULL as defined by the function comments.
8149 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8151         * mempool.c: Use malloc for every single mempool allocation if the
8152         configure option is set.  This makes it easier to track mempool
8153         allocations with tools like Valgrind.
8155 2008-07-22  Jb Evain  <jbevain@novell.com>
8157         * reflection.c (create_dynamic_mono_image): emit the same
8158         metadata version that SL2 does when creating a SL2 image.
8160 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8162         * icall-def.h:
8163         * icall.c: New icall System.Enum:get_hashcode. This function
8164         avoids the overhead of boxing the enum to the underlying type.
8166 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8168         * reflection.c (mono_method_get_object): Don't let static RGCTX
8169         invoke wrappers get into MonoReflectionMethods.
8171 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8173         * object-internals.h:
8174         * object.c: New mono_runtime_class_init_full function
8175         that makes throwing the exception optinal.
8177         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8178         for the case where the exception object is supplied.
8180 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8182         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8183         old ld versions.
8185         Contributed under MIT/X11 license.
8187 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8189         * string-icalls.c (ves_icall_System_String_InternalSplit):
8190         Optimize array allocation by caching the MonoClass of the
8191         array type.
8193         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8195         * reflection.c (mono_param_get_objects): Same.
8197 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8199         * icall-def.h:
8200         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8201         It inflates the given type using the class context.
8203 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8205         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8206         the vtable if it already exists.
8208         * object-internals.h: Add mono_class_try_get_vtable as part of the
8209         internal API.
8211         * reflection.c (mono_type_get_object): Use the MonoObject from the
8212         vtable when possible. Reduces locking contention on reflection heavy
8213         code.
8215 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8217         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8218         g_bit_nth_msf () since that macro is not implemented in eglib.
8220 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8222         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8223         on platforms which do not support it.
8225 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8227         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8229 2008-07-11  Martin Baulig  <martin@ximian.com>
8231         * mono-debug-debugger.h
8232         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8234         * mono-debug-debugger.c
8235         (_mono_debugger_interruption_request): New global volatile variable.
8236         (mono_debugger_check_interruption): New public function.
8238         * threads.c
8239         (mono_thread_current_check_pending_interrupt): Call
8240         mono_debugger_check_interruption().
8241         (mono_thread_interruption_checkpoint_request): Likewise.
8243 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8245         * verify.c: Add more type checks for loaded types. Verify the result
8246         handle from ldtoken.
8248 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8250         * loader.c (field_from_memberref): Don't crash if the field
8251         wasn't found.
8253 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8255         * verify.c: Verify if type and method instantiations
8256         don't have invalid VAR or MVAR arguments.
8258 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8260         * verify.c: Fix double free of function pointer list.
8262 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8264         * object.c (mono_string_to_utf8): Comment the new code as it
8265         breaks under eglib.
8267 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8269         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8271 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8273         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8274           is not throw too many times.
8276         Code is contributed under MIT/X11 license.
8278 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8280         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8281         debugging is turned off.
8283 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8285         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8287 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8289         * class-internals.h, class.c: Added new generic sharing option:
8290         Share only stuff in System.Collections.Generic, which is now the
8291         default.
8293 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8295         * generic-sharing.c, class-internals.h: New function for getting a
8296         generic method in a generic class given the corresponding method
8297         for a different instantiation of the class.  Partly refactored
8298         from mini-trampolines.c.
8300         * class.c: Make sure generic methods have a class_inst if they are
8301         part of a generic class.
8303         * metadata.c (mono_type_stack_size_internal): Handle type
8304         variables.
8306 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8308         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8309         Signifies whether information on the this/vtable/mrgctx variable
8310         is available.
8312 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8314         * object.c, object-internals.h, icall.c: New function
8315         mono_delegate_ctor_with_method(), which does the same as
8316         mono_delegate_ctor(), but takes an explicit method argument
8317         instead of taking the method from the jit info.
8319         * marshal.c: When creating a delegate with an inflated method take
8320         the "this" argument as the target class for the castclass.
8322 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8324         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8325         mono_jit_info_table_find() to perform very badly in some cases.
8327 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8329         * icall.c (type_from_typename): Handle 'string'.
8331         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8332         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8334 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8336         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8338         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8339         number of available managed allocator types.
8341         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8342         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8344 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8346         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8347         which is a low level lock protecting just the 'jit_code_hash' hash table.
8349         * domain.c: Initialize+cleanup jit_code_hash_lock.
8350         
8351 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8353         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8354         after initialization.
8356         * coree.h: Make MonoFixupExe internal.
8358         Contributed under MIT/X11 license.
8360 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8362         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8363         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8364         as well.
8365         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8366         image being loaded is a CLI image and _CorValidateImage gets called.
8368         * coree.h: Add MonoLoadImage.
8370         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8371         instead of LoadLibrary.
8373         Contributed under MIT/X11 license.
8375 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8377         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8378         for any primitive type.
8380 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8382         * object.c (mono_array_new_specific): Optimize this and the other allocation
8383         functions a bit.
8384         
8385         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8386         domains too if mono_dont_free_domains is set.
8388         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8389         whenever to free appdomain data after it has been unloaded.
8391         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8392         
8393 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8395         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8396         (mono_method_get_equivalent_method): Fix a warning.
8398         * object.c (mono_message_init): Avoid looking up array types for each call.
8400 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8402         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8403         call.
8405         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8406         even more.
8408         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8409         each iteration.
8411         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8412         fields of an enum.
8414 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8416         * object.c (mono_value_box): Fix boxing of nullables.
8418 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8420         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8421         mono_module_handle that is defined by the linker; no initialization required.
8422         * coree.h: Remove mono_module_handle, add __ImageBase, update
8423         mono_image_open_from_module_handle.
8424         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8425         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8426         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8427         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8428         to 4 GB away from image base address. IA64 version is not tested but was very
8429         easy to implement and should work if we ever need it.
8430         * domain.c (mono_init_internal): Avoid system error message boxes.
8431         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8432         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8433         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8434         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8435         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8437         Contributed under MIT/X11 license.
8439 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8441         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8442         as part of the private mono API.
8443         
8444         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8445         Do proper argument checking for methods that belong to generic classes.
8446         Do proper type resolution for GMFH/2.
8447         Fixes #377324.
8448         
8449 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8451         * verify.c (do_switch): Fix a memory corruption bug with
8452         the jump index is out of bound.
8454 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8456         * verify.c: Disable debug code.
8458 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8460         * reflection.c (mono_image_get_methodbuilder_token): Use
8461         mono_image_get_methodspec_token_for_generic_method_definition
8462         instead of mono_image_get_memberref_token. We cache more memberef
8463         entries now.
8465 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8467         * verify.c: Inflate exception clause types.
8468         Fixes #402606.
8469         
8470 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8472         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8473         name.
8475         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8477         * reflection.c (mono_image_create_method_token): Same.
8479 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8481         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8482         It does the same as mono_image_get_methodref_token but works on
8483         MethodBuilder.
8485         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8486         and always generate a methodspec. This follows the old behavior and fixes
8487         the regressions in System.Core. 
8489 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8491         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8492         don't event mono_class_get () succeeds. Fixes #402182.
8494 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8496         * metadata-internals.h: Added MonoDynamicImage::methodspec
8497         hashtable to store methodspec tokens created for MethodBuilders.
8499         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8500         MethodBuilders as open instantiations if a methodspec was requested.
8502         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8504         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8506         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8508         Fixes bug #349190.
8510 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8512         * loader.c (method_from_methodspec): Avoid crashing if the
8513         method lookup fails.
8515 2008-06-20  Dick Porter  <dick@ximian.com>
8517         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8518         classes being in a different assembly.  Fixes bug 399184.
8520 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8522         * loader.c (mono_loader_init): Make this callable multiple times.
8523         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8524         the runtime is initialized. Fixes #401755.
8526 2008-06-19  Dick Porter  <dick@ximian.com>
8528         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8529         Fixes bug 349688.
8531 2008-06-19  Dick Porter  <dick@ximian.com>
8533         * socket-io.c:
8534         * icall-def.h: Implement Socket generic Send() and Receive()
8535         methods.  Fixes bug 395168.
8537 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8539         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8541         Contributed under MIT/X11 license.
8543 2008-06-18  Martin Baulig  <martin@ximian.com>
8545         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8546         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8547         set to 80.0.  The debugger <-> runtime interface is now frozen as
8548         well.   
8550         * mono-debug.c
8551         (mono_debug_debugger_version): Bump to 4.
8553 2008-06-18  Martin Baulig  <martin@ximian.com>
8555         * debug-mono-symfile.c
8556         (load_symfile): Don't check the minor version.
8558         * debug-mono-symfile.h: Bump the version number to 50.0.
8560 2008-06-18  Martin Baulig  <martin@ximian.com>
8562         * debug-mono-symfile.c
8563         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8564         minimum required version.
8566 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8568         * reflection.c (mono_custom_attrs_from_property): Fix support for
8569         retriveving cattrs of dynamic inflated generic types.
8571         * reflection.c (mono_custom_attrs_from_event): Same.
8573         * reflection.c (mono_custom_attrs_from_field): Same;
8575         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8577         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8578         Moved to metadata.c.
8580         * metadata.c: New functions to retrive the equivalent field, event
8581         of property from the generic type definition.
8583         * metadata-internals.h: Added new functions from metadata.c.
8585 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8587         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8588         to cached in a mempool is used.
8590         * metadata.c (free_generic_class): In some situations field generic_info type
8591         is not properly dup'ed and leads to double free'ing.
8593         Fixes #400643.
8595 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8597         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8598         this arguments (will be needed later for generic methods).
8599         Collect stats.
8601 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8603         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8604         Create a static RGCTX invoke wrapper for methods which require it.
8606 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8608         * object.c, class-internals.h: New function for checking whether
8609         an individual field is special static.
8611 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8613         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8614         linear search since the table is sorted.
8616         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8617         Fixes #324180.
8619 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8621         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8622         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8624         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8626         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8627         
8628         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8629         InterlockedCompareExchange to query and modify 
8630         thread->interruption_requested.
8632         * object-internals.h (struct _MonoThread): Change interruption_requested
8633         to a gint32 so it can be modified by atomic operations. Add 
8634         'critical_region_level' from the managed side, change small_id to a guint32,
8635         add new set of 'unused' fields.
8637         * appdomain.c: Bump corlib version.
8639 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8641         * class.c (mono_class_from_name): Search modules as well. Fixes
8642         #322332.
8644 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8646         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8647         templates.  Templates are generalized with an additional type_argc
8648         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8649         have type_argc>0.
8651         * domain-internals.h, domain.c: New hash table for looking up
8652         MRGCTXs.
8654         * metadata.c, metadata-internals.h: Rename hash and equal
8655         functions for MonoGenericInst's and make them public.
8657         * class-internals.h: New data structures for the MRGCTX.  Macros
8658         for distinguishing slots in the RGCTX and the MRGCTX.
8660 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8662         * object.c (mono_method_get_imt_slot): Put the same methods of
8663         different instantiations of the same generic interface in the same
8664         IMT slots, to make generic sharing simpler.
8666 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8668         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8670         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8671         This function works just like mono_metadata_field_info, but
8672         accept a mempool as argument to be used allocating memory.
8674         * marshal.c (mono_marshal_load_type_info): Use new function
8675         to load marshal data into image mempool.
8677 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8679         * class.c (mono_class_inflate_generic_type_with_mempool):
8680         This function allows to inflate a generic type using
8681         a mempool.
8683         * class.c (inflate_generic_type): Take a mempool as argument
8684         and use it to do type dup'ing.
8686         * class.c (mono_class_setup_fields): Field type for generic
8687         generic classes are allocated from the image mempool.
8689         * metadata.c (free_generic_class): Inflated field type is
8690         now allocated in the image mempool.
8692 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8694         * threads.c (thread_cleanup): Free MonoThread::name.
8696 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8698         * appdomain.c (ensure_directory_exists): avoid unnecessary
8699         mkdir(2) calls when the shadow directory already exists.
8700         (mono_make_shadow_copy): copy also satellite assemblies from the
8701         private bin directories.
8703 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8705         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8706         
8707         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8708         a page boundary. Fixes #396219.
8710 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8712         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8713         due to double-checked locking.
8715 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8717         * assembly.c (build_assembly_name): Release memory on failure.
8719         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8721 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8723         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8724         memory on failure.
8726 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8728         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8729         memory on failure.
8731 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8733         * loader.c (field_from_memberref): Check if field signature type is equal
8734         to the non-inflated type of the field. Fixes #398980.
8736 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8738         * assembly.c (mono_assembly_load_from_full): Call 
8739         mono_assembly_load_friends () outside the assemblies lock, since it can
8740         acquire the loader lock. Fixes #323696.
8742         * reflection.c (resolve_object): Inflate the inst with the context for
8743         FieldOnTypeBuilderInst. Fixes #399010.
8745 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8747         * reflection.c (mono_image_get_field_on_inst_token): Don't
8748         inflate the field to encode it's signature. If it's a
8749         VAR or MVAR it should stay that way in the signature.
8750         Fixes #399047.
8752 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8754         * reflection.c (resolve_object): Release memory of inflated types.
8756 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8758         * loader.c (mono_method_get_signature_full): Remove assert about
8759         loading a methodspec to a generic method. We have such methods, such as
8760         System.Threading.Interlocked::CompareExchange<T>.
8761         This assert was removed since it crashes the verifier when it checks
8762         methods calling CompareExchange<T>.
8764 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8766         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8767         of Type array and not MonoType.
8769 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8771         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8772         <lupus@ximian.com>
8774 2008-06-10  Martin Baulig  <martin@ximian.com>
8776         * debug-mono-symfile.h
8777         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8778         changes to the file format, but we were generating incorrect
8779         source file indices in the line number table due to a bug, which
8780         made backtraces report an incorrect source file.
8782 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8784         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8785         mini/debug-mini.c to here.
8787         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8789         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8790         use it to release structs returned by mono_debug_find_method.
8792 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8794         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8795         since it needs to set method->slot for all interface methods.
8797 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8799         * class-internals.h: Forgot to add.
8801 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8803         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8805         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8806         Lookup the custom attributes from property_hash.
8808         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8809         in property_hash. Allocate all data using the image mempool.
8811         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8812         for dynamic_custom_attrs to checks if the image is dynamic.
8814 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8816         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8817         assemblies array.
8818         
8819         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8820         runtime functions while holding the domain assemblies lock.
8822 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8824         * verify.c: Reapplied the last bit of the reverted changes.
8826 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8828         * verify.c: Reapplied more of the reverted changes.
8830 2008-06-09  Martin Baulig  <martin@ximian.com>
8832         * debug-mono-symfile.c (load_symfile): Check the major version
8833         first; if it's wrong, don't print the minor version in the error message.
8835 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8837         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8838         lock instead of the domain lock to avoid deadlocks, since the thread might
8839         already hold the loader lock.
8841         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8842         (mono_thread_attach): Ditto.
8844         * monitor.c: Use a TLS variable for holding the current thread id instead
8845         of calling pthread_self ().
8846         (mono_monitor_init_tls): New internal function to initialize the TLS
8847         variable.
8848         (mono_monitor_try_enter_internal): Put the owner == id check after the
8849         owner == 0 check.
8851         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8852         missed optimizations when using gcc-4.3.
8854 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8856         * reflection.c (mono_dynamic_image_free): Free the memory
8857         used by MonoGenericParam in MonoDynamicImage::gen_param.
8859         * reflection.c (mono_reflection_setup_generic_class): Allocate
8860         container from mempool.
8862         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8863         container from mempool.
8865 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8867         * threads.c (mono_set_pending_exception): New internal function to set the
8868         pending exception of the current thread.
8869         (mono_thread_get_and_clear_pending_exception): Check for 
8870         thread->pending_exception as well.
8872         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8874         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8875         it can trigger a collection.
8877 2008-06-06  Martin Baulig  <martin@ximian.com>
8879         Merged the `debugger-kahalo' branch.
8881         * mono-debug.h
8882         (MONO_DEBUGGER_VERSION): Bumped to 72.
8884         * debug-mono-symfile.h
8885         (MonoSymbolFileMethodIndexEntry): Removed.
8886         (MonoSymbolFileMethodEntry): New public typedef.
8887         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8888         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8889         `data_offset'.
8890         (MonoSymbolFileMethodEntry): Removed.
8891         (MonoSymbolFileLexicalBlockEntry): Removed.
8892         (MonoSymbolFileLineNumberEntry): Removed.
8893         (MonoDebugLexicalBlockEntry): Removed.
8894         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8895         removed `num_il_offsets' and `il_offsets'.
8896         (MonoSymbolFile): Replace `version' with `major_version' and
8897         `minor_version'.
8898         (MONO_SYMBOL_FILE_VERSION): Replace with
8899         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8900         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8902         * debug-mono-symfile.c
8903         (mono_debug_symfile_lookup_location): Add support for the new line
8904         number table format.
8906 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8908         * metadata.c (free_generic_class): Release the inflated
8909         MonoClass of dynamic generic classes if it's not a generic
8910         type definition.
8912 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8914         * verify.c: Reapplied more of the reverted changes.
8916 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8918         * reflection.c (lookup_custom_attr): Clean the cached flag or
8919         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8920         for SRE types.
8922 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8924         * verify.c: Reapplied a small part of the reverted changes.
8926 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8928         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8930         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8931         previously in managed code.
8932         (mono_monitor_exit): Ditto.
8933         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8935         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8936         the managed definition.
8938 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8940         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8942 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8944         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8945         
8946         * monitor.c: Add some micro optimizations.
8948         * icall.c (type_from_typename): Handle 'bool'.
8950 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8952         * verify.c: Implement constructor verification per P III 1.8.1.4.
8953         Fixes #396716.
8955 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8957         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8958         holding the assemblies lock here too.
8960 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8962         * verify.c: Kill stack_top function.
8964 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8966         * verify.c: Kill stack_get function.
8968 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8970         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8972 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8974         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8975         more reliable.
8977         * verify.c (mono_method_verify): Inflate params and locals to avoid
8978         mismatch when checking for compatibility.
8980 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8982         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8983         Length prefix should be size in bytes. Fix bug #339530.
8984         
8985         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8986         Length prefix should be size in bytes. Fix bug #339530.
8988         Code is contributed under MIT/X11 license.
8990 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8992         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8994         Contributed under MIT/X11 license.
8996 2008-06-05  Martin Baulig  <martin@ximian.com>
8998         * mono-debug-debugger.c
8999         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9001 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9003         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9004         while holding the assemblies lock to prevent deadlocks. Handle the case
9005         where the search hook returns NULL but the assembly was still loaded.
9006         Fixes #323696.
9008         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9009         modify domain state.
9011 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9013         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9014         * Makefile.am (pedump_LDADD): Post-process object files and
9015         add dtrace-generated object file, if necessary.
9017         Code is contributed under MIT/X11 license.
9019 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9021         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9023 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9025         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9027 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9029         * threads.c: Try to free everything from the delayed free table
9030         when shutting down threads, and set the variable to NULL after the
9031         table is freed so that calling
9032         mono_thread_hazardous_try_free_all() when shutting down the root
9033         domain doesn't crash.
9035 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9037         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9038         the caller if resulting type was inflated.
9040         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9041         was inflated.
9043         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9046 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9048         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9049         class library tests.
9051         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9052         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9053         #396989.
9055 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9057         * domain.c, domain-internals.h: The JIT infos are now freed by the
9058         JIT info table code.  They are freed immediately if there only a
9059         single JIT info table in circulation.  If there is more, the free
9060         is delayed via a queue.
9062         * threads.c, threads-types.h: New hazard pointer function for
9063         freeing all freeable delayed items in one sitting.
9065 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9067         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9069         * reflection.c (typebuilder_setup_properties): Same.
9071         * reflection.c (typebuilder_setup_events): Same.
9073 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9075         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9076         and use it for allocating memory.
9078         * reflection.c (mono_marshal_spec_from_builder): Same.
9080         * reflection.c: Change code to use new signatures.
9082         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9084 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9086         * decimal.c (rescale128): Put back one line which was accidently commented
9087         out.
9088         
9089         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9090         to cause crashes.
9092 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9094         * reflection.c (mono_reflection_generic_class_initialize): Name must
9095         be always malloc'ed so we can free it later on. Do this for field, property
9096         and event.
9098         * metadata.c (free_generic_class): Free field, property and event names.
9100 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9102         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9103         instead of g_memdup.
9105         * reflection.c (typebuilder_setup_fields): Same.
9107 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9109         * decimal.c (rescale128): Optimize this function a bit more.
9111 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9113         * metadata.c (free_generic_class): Release some memory from
9114         SRE generic classes.
9116 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9118         * reflection.c (mono_image_get_generic_field_token): No reference
9119         to name is kept, free it.
9121         * reflection.c (mono_reflection_generic_class_initialize): Free
9122         more memory of the inflated field.
9124 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9126         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9127         code.
9129 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9131         * reflection.c (mono_dynamic_image_free): Release memory used by
9132         MonoDynamicImage::array_methods elements.
9134         * reflection.c (assembly_add_win32_resources): Release memory after
9135         encoding.
9137 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9139         * decimal.c (log2_32): Use an optimized version for this function too.
9140         
9141         * decimal.c (log2_64): Fix this on 32 bit machines.
9143 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9145         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9147         * class.c (mono_metadata_signature_deep_dup): Same.
9149         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9150         a mempool.
9152         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9154         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9156         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9158         * class-internals.h: Update signatures to take a MonoMemPool.
9160 2008-06-02  Dick Porter  <dick@ximian.com>
9162         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9163         * icall-def.h: Add
9164         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9165         FormatMessage API to get the error text.  Fixes bug 321827.
9167 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9169         * decimal.c: Add some micro optimizations to make decimal operations faster.
9171 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9173         * reflection.c (method_encode_clauses): Take a mempool
9174         as parameter and use it to allocate the clause array.
9176         * reflection.c (mono_image_get_field_on_inst_token): Free
9177         the inflated type after encoding it.
9179         * reflection.c (mono_dynamic_image_free): Free each element
9180         of MonoDynamicImage::gen_params.
9182         * reflection.c (reflection_methodbuilder_to_mono_method):
9183         Allocate the generic param array from the mempool.
9184         Allocate signature params from the mempool.
9186         * reflection.c (mono_reflection_generic_class_initialize):
9187         Free inflated fields after been used.
9189 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9191         * icall.c: Reapply the memory leak fixes as they no
9192         longer make mono crash.
9194 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9196         * reflection.c (mono_type_get_object): Don't store the suplied
9197         MonoType with type_hash. A caller which pass a type that
9198         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9199         might end with a pointer to freed memory.
9200         The solution is to use byval_arg or this_arg from the associated
9201         MonoClass of the supplied type.
9203 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9205         * icall.c: Revert the rest of the last change as it breaks the build too.
9207 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9209         * icall.c: Revert a leak fix as it's breaking the build.
9211 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9213         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9215 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9217         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9219 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9221         * icall.c: Fix some memory leaks.
9223 2008-05-29  Dick Porter  <dick@ximian.com>
9225         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9226         async socket operations from the pending list when a socket
9227         closes.  Leaving it until the threadpool services the event
9228         exposes a race condition when a socket descriptor is reused.
9229         Fixes bug 377589.
9231 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9233         * object.c: Fix negative index check for array alocation.
9235 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9237         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9238         This check is performed by the verifier for IL created delegates
9239         and by Delegate::CreateDelegate for programatically created ones.
9240         Fixes #372406.
9242 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9244         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9245         Fix code to use mono_array_size_t instead of int.
9247         Based on patch by Luis F. Ortiz.
9248         Contributed under X11 license.
9249         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9251 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9253         * icall.c: Added ves_icall_System_Array_GetLongLength and
9254         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9255         arrays.
9257         * icall.h: Export both new functions.
9259         Based on patch by Luis F. Ortiz.
9260         Contributed under X11 license.
9261         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9263 2008-05-28  Martin Baulig  <martin@ximian.com>
9265         The debugger now requires exactly r103463.
9267         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9268         This version is not supported by the debugger, wait for 72.
9270 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9272         * object.h: Changed array related functions to use
9273         mono_array_size_t instead of guint32. Forgot to commit this file.
9275         Patch by Luis F. Ortiz.
9276         Contributed under X11 license.
9277         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9280 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9282         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9283         don't define it. Use the number literal instead.
9285 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9287         * icall.c: Changed array related functions to use
9288         mono_array_size_t instead of guint32.
9290         * icall.c (ves_icall_System_Array_GetLength): Check for length
9291         overflow under MONO_BIG_ARRAYS.
9293         Based on patch by Luis F. Ortiz.
9294         Contributed under X11 license.
9295         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9297 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9299         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9301         Based on patch by Luis F. Ortiz.
9302         Contributed under X11 license.
9303         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9305 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9307         * object.c, object.h: Changed array related functions to use
9308         mono_array_size_t instead of guint32.
9310         Patch by Luis F. Ortiz.
9311         Contributed under X11 license.
9312         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9314 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9316         * object.h: Introduced mono_array_size_t typedef. This must be used
9317         in all places an array length is expected. This is 64bits wide if
9318         MONO_BIG_ARRAYS is enabled.
9320         Patch by Luis F. Ortiz.
9321         Contributed under X11 license.
9322         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9324 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9326         * security-manager.c class.c: Set the class exception info by calling
9327         mono_class_set_failure ().
9329         * class.c (mono_class_get_exception_data): New accessor function.
9330         (mono_class_set_failure): Store exception_data in the property hash.
9332         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9333         the struct as a property.
9335         * loader.c (mono_get_method_full): Store the lookup result for method
9336         tokens in method_cache, the others in methodref_cache to decrease the memory
9337         usage of hash tables.
9339         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9340         (mono_image_init): method_cache is lazy inited now.
9342         * metadata-internals.h (struct _MonoImage): Change method_cache to
9343         a MonoValueHashTable, add a separate methodref_cache.
9345 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9347         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9348           Double.ToString as exposed by Bug #383531.
9350 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9352         * number-formatter.h: Make some tables static.
9354         * class.c (mono_method_set_generic_container): New accessor function.
9355         (mono_method_get_generic_container): Ditto.
9357         * class-internals.h (struct _MonoMethod): Remove rarely used 
9358         'generic_container' field, store it in the property hash instead. Add 
9359         'is_generic' boolean field instead.
9361         * image.c (mono_image_init): Initialize property_hash.
9362         (mono_image_close): Destroy property_hash.
9364         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9365         hold rarely used fields of runtime structures belonging to this image.
9367         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9368         to get/set method->generic_container.
9370         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9371         generic methods.
9373 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9375         * class.c (mono_class_inflate_generic_method_full): Don't increase
9376         mono_stats.inflated_method_count for methods found in the cache.
9378         * threads.c (mono_thread_request_interruption): Add a comment about 
9379         QueueUserAPC ().
9381 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9383         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9384         interface_offsets_packed table.
9385         
9386         * class.c (mono_class_init): Remove some dead code.
9388         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9389         mono_class_setup_vtable () when CAS is active to detect security problems.
9391 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9393         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9395         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9396         parameters as it's irrelevant for delegate checking.
9398 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9400         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9402         * class.c (mono_class_init): Control the creation of a generic vtable using
9403         a global which is true by default, but set to false by the runtime startup code.
9404         
9405         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9406         Disabled for now since it breaks the embedding API.
9407         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9408         (mono_class_setup_methods): Add a memory barrier.
9410         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9411         when mono_class_init () doesn't compute the generic vtable.
9412         
9413 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9414         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9415         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9416         to support call chains (backtrace) in the stat profiler.
9417         * profiler.c, profiler-private.h: Likewise.
9419 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9421         * generic-sharing.c: Init generic class when a method of it is
9422         requested via a runtime generic context.
9424 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9426         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9428         * reflection.c (mono_type_get_object): Add a FIXME.
9430         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9432         * class.c (mono_class_get_method_by_index): New helper function, returning an
9433         entry in the class->methods array.
9435 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9437         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9438         Avoid creating a generic vtable for generic instances as well.
9439         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9440         generic instances.
9442 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9444         * loader.c (mono_get_method_constrained): Inflate the signature
9445         with class context. Fix #325283.
9447 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9449         * object.c (mono_class_create_runtime_vtable): Add a comment.
9451         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9452         where needed.
9453         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9454         (mono_class_setup_vtable_general): Add an assert.
9455         (mono_class_init): Avoid creating a generic vtable for arrays.
9457         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9458         here, let mono_class_init () do that.
9460         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9461         interfaces in mscorlib.
9463         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9464         interfaces. Add some comments.
9465         (mono_class_init): Call mono_class_setup_methods () here since it is no
9466         longer called by mono_class_setup_vtable ().
9468         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9469         not set in class->vtable.
9470         (mono_class_create_runtime_vtable): Reenable the disabled code.
9472         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9473         now as it causes some test failures.
9475         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9476         if using the vtable trampoline. Also remove some strange code which put the
9477         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9478         stuff as it is no longer needed.
9480 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9482         * pedump.c: Give make --verify all option check code as well.
9483         Using --verify code won't check for metadata now.
9485 2008-05-19  Martin Baulig  <martin@ximian.com>
9487         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9489         * mono-debug.c
9490         (_mono_debug_using_mono_debugger): New global variable; it's set
9491         directly by the debugger, so mono_debug_using_mono_debugger() also
9492         works after attaching.
9494 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9496         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9497         as we do double checked locking on MonoClass::runtime_info and
9498         MonoClassRuntimeInfo::domain_vtables.
9500 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9502         * debug-helpers.c (print_field_value): Fix a warning.
9504 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9506         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9507         set in the AOT case.
9509 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9511         * class.c (mono_class_setup_vtable_general): Use memory barriers
9512         as we do double checked locking on MonoClass::vtable.
9514 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9516         * reflection.c (resolve_object): Inflate only if the generic context
9517         is not null. Fixes #389886.
9519 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9521         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9522         instead of g_free.
9524         Code is contributed under MIT/X11 license.
9526 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9528         * class.c: Revert unrelated change.
9530 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9532         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9533         a generic instantiation, use mono_class_from_mono_type instead of playing
9534         with MonoType directly.
9536 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9538         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9539         checks must ignore generic instantiations, so mono_class_has_parent is not
9540         suitable. Fixes #390128.
9542 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9544         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9545         it to avoid registering tokens during metadata generation. Fixes #390023.
9547 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9549         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9550         consistent.
9552         Contributed under MIT/X11 license.
9554 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9556         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9557         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9558         to fixup the EXE image.
9559         (mono_cleanup): Use mono_close_exe_image.
9560         (mono_close_exe_image): New function.
9561         * image.c: Include "marshal.h".
9562         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9563         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9564         counting when the image is loaded outside of mono_image_open_full. Set status
9565         based on GetLastError.
9566         * coree.c: Include required headers. Add init_from_coree.
9567         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9568         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9569         (_CorExeMain): Set init_from_coree.
9570         (CorExitProcess): Only call ExitProcess for now.
9571         (CorBindToRuntimeEx): New stub implementation.
9572         (CorBindToRuntime): New function.
9573         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9574         (MonoFixupExe): ILONLY executables require no fixups.
9575         (mono_set_act_ctx): New function to set activation context.
9576         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9577         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9578         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9579         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9580         as MONO_INTERNAL.
9581         * domain-internals.h: Add mono_close_exe_image.
9583         Contributed under MIT/X11 license.
9585 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9587         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9588         size for generic param and event tables. Fixes #388977.
9590 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9592         * loader.c (mono_method_signature): Use memory barriers because of the double
9593         checked locking pattern.
9595         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9596         aborting or aborted as well. Fixes #376391.
9597         
9598         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9599         existing runtime state in the Suspend handler during shutdown.
9601 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9603         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9605         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9606         which are starting up or shutting down.
9608         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9609         this function never returns if the runtime is already shutting down.
9611         * icall.c (ves_icall_System_Environment_Exit): Update after 
9612         mono_threads_set_shutting_down () signature change.
9613         
9614 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9616         * class.c: Added can_access_instantiation to verify if the instantiation
9617         is visible. Fix access check for nested types as they returned TRUE
9618         before doing type and generic instantiation visibility checks.
9620 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9622         * reflection.c (mono_reflection_create_generic_class): The created type
9623         must have a different container from its TypeBuilder. Otherwise they
9624         will end sharing generic arguments, which is wrong.
9626         Due to the sharing, making a generic instance of the created type using
9627         the TypeBuider generic arguments resulted in the generic type definition
9628         been returned, which is wrong as well.
9630         As a bonus the code was leaking the type_params array. This memory should
9631         be allocated from the image mempool.
9633         This fixes bug #354047.
9635 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9637         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9638         to here         as they are now used in assembly.c new code.
9639         Added a skipverification flag to MonoAssembly.
9640         New internal function mono_assembly_has_skip_verification.
9642         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9643         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9644         part of #387274.
9646 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9648         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9649         needed. Fixes #387034.
9651         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9653 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9655         * assembly.c (mono_assembly_load_reference): Prevent crash while
9656         disassembling Silverlight 2.0 executables while we still do not
9657         have GACed libraries.
9659 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9661         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9663 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9665         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9666         of the dynamic case. Fixes #387404.
9668 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9670         *verify.c (mono_verifier_is_class_full_trust): If under
9671         verify_all and the verifier mode was not set, only
9672         gac and corlib types are fulltrust. This makes --verify-all
9673         usable to detect unverifiable code, which is the expected
9674         use case.
9676 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9678         * verify.h: Ops, commited the header with debug
9679         enabled.
9681 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9683         * verify.c (merge_stack): Use the new value on unverifiable
9684         stack merges.
9686         * verify.c (verify_type_compatibility_full): Comparison
9687         of nullable types can't use mono_class_is_assignable_from.
9689         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9690         that makes all verification errors be reported.
9692         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9693         mono_method_verify.
9695 2008-05-05  Robert Jordan  <robertj@gmx.net>
9697         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9698         support for value types. See #386415.
9700         * object.c: comments.
9702         Code is contributed under MIT/X11 license.
9704 2008-05-05  Martin Baulig  <martin@ximian.com>
9706         * debug-mono-symfile.h
9707         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9708         for old pre-terrania symbol files.
9710 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9712         * mono-config.c: Add ppc64 architecture.
9714         Code is contributed under MIT/X11 license.
9716 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9718         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9719           PPC64 uses function descriptors as well.
9721         Code is contributed under MIT/X11 license.
9723 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9725         * object.c (compute_class_bitmap): Ignore literal static fields.
9727         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9728         var has an invalid format.
9729         (describe_ptr): Add some sanity checks for the vtable.
9730         (add_nursery_frag): Clear unused nursery fragments.
9731         (major_collection): Clear all remaining nursery fragments.
9733 2008-05-03  Robert Jordan  <robertj@gmx.net>
9735         * image.c, metadata-internals.h: add thunk_invoke_cache.
9737         * marshal.c, marshal.h: implement
9738         mono_marshal_get_thunk_invoke_wrapper ().
9740         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9742         Code is contributed under MIT/X11 license.
9744 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9746         * verify.c (do_leave): Empty the stack.
9748 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9750         * class.c (mono_class_is_assignable_from): Variance
9751         doesn't work between reference and value types. For example,
9752         given type C<T+>, C<int32> is not assignable to C<object>.
9753         Break the argument checking loop on first error. 
9755 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9757         * icall.c : base64_to_byte_array() needs some more strict
9758           check for sequence of '=' characters. Patch by Santa
9759           Marta (http://deee.g.hatena.ne.jp/santamarta).
9761           Contributed under MIT/X11 license.
9762           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9764 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9766         * domain.c: Disable LoadLibrary support to fix Win32 build.
9768         Code is contributed under MIT/X11 license.
9770 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9772         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9773         to help with cache behaviour.
9775 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9777         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9778         method. 
9780 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9782         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9784 2008-05-01  Dick Porter  <dick@ximian.com>
9786         * process.c (process_get_fileversion): Only pass 16 bits of
9787         language ID to VerLanguageName.  Fixes bug 381204.
9789 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9791         * verify.c (mono_method_verify): Fix the comparison
9792         operator for code bounds check.
9794 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9796         * verify.c (mono_method_verify): Check the bounds of
9797         all access of the code array.
9799 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9801         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9803 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9805         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9806         not valid.
9808 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9810         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9811         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9812         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9813         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9814         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9815         mono_runtime_load.
9816         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9817         runtime initialization from metadata.
9818         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9819         (mono_set_rootdir): Use mono_get_module_file_name.
9820         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9821         handles.
9822         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9823         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9824         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9825         MonoCLIImageInfo. Add support for module handles.
9826         (load_cli_header): Update mono_cli_rva_image_map signature.
9827         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9828         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9829         (mono_image_rva_map): Add support for module handles.
9830         (mono_image_ensure_section_idx): Add support for module handles.
9831         (mono_image_close): Add support for module handles.
9832         (do_load_header): Add support for module handles.
9833         (mono_image_open_from_module_handle): New function for internal use.
9834         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9835         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9836         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9837         handles.
9838         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9839         * image.h: Add mono_image_fixup_vtable.
9840         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9841         support.
9842         * coree.h: New file.
9843         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9844         unsupported native code.
9845         (mono_marshal_set_callconv_from_modopt): New function splitted from
9846         mono_marshal_get_managed_wrapper.
9847         (mono_marshal_get_managed_wrapper): Use
9848         mono_marshal_set_callconv_from_modopt.
9849         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9850         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9851         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9852         that results in a deadlock when the runtime is loaded in _CorDllMain.
9853         * Makefile.am: Add coree.c and coree.h.
9855         Contributed under MIT/X11 license.
9857 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9859         * generic-sharing.c: Search for type arguments in array element
9860         types as well.
9862 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9864         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9866         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9868         * object.c: Don't setup the RGCTX when the vtable is created,
9869         because we're setting it up lazily now.
9871 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9873         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9874         64 bit support.
9876 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9878         * verify.c (verify_class_for_overlapping_reference_fields): 
9879         If class is under fulltrust allow reference types to overllap
9880         if they have the same RVA.
9882 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9884         * pedump.c: Added new flag valid-only, that makes the verifier
9885         behaves just like --security=validil. It won't fail type load
9886         due to unverifiable restrictions.
9888 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9890         * class-internals.h (struct MonoMethod): Added a verification_success
9891         field to cache verifier executions. Reduced MonoMethod:slot size by
9892         one bit.
9894 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9896         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9897         instead of a 'vt' argument to save an indirection and to allow these to be used
9898         for valuetypes.
9899         (scan_vtype): New helper function to scan an area using a gc descriptor.
9900         (mono_gc_wbarrier_value_copy): Implement this.
9901         (handle_remset): Add support for REMSET_VTYPE.
9902         (find_in_remset_loc): Ditto.
9903         (mono_gc_base_init): Allow some debugging options to be controlled through the
9904         use of the MONO_GC_DEBUG env variable.
9905         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9906         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9908 2008-04-23  Martin Baulig  <martin@ximian.com>
9910         * domain.c (mono_domain_create): Move the call to
9911         mono_debug_domain_create() down, after allocating the domain id.
9913 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9915         verify.c (verify_class_for_overlapping_reference_fields): Skip
9916         static fields while verifying for overlapping fields as they
9917         don't matter at all.
9919 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9921         * domain-internals.h: added a declaration of
9922         mono_make_shadow_copy.
9924         * assembly.c (mono_assembly_open_full): shadow copying of
9925         assemblies moved to here, so that all the assemblies within the
9926         application domain's private binary directories can be
9927         processed. Fixes bug #380546
9929         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9930         mono_make_shadow_copy and made non-static. The decision whether
9931         to shadow-copy an assembly is made based on its location - it's
9932         copied if it's in one of the private application domain binary
9933         directories and its different to the target file in the shadow
9934         directory. Fixes bug #380546
9936 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9938         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9940         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9941         types.
9943         * reflection.c (mono_image_create_token): Handle 
9944         Method/ConstructorOnTypeBuilderInst.
9945         (resolve_object): Ditto.
9946         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9947         so it can be called from resolve_object. Also handle the case when the inflated
9948         class already has its methods setup.
9950 2008-04-21  Martin Baulig  <martin@ximian.com>
9952         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9954 2008-04-20  Geoff Norton  <gnorton@novell.com>
9956         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9957         pointer dereference.
9959 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9961         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9962         portability API to look up the assembly file. Fixes behavior in
9963         situations when the application has a bin/ directory, but the
9964         assembly search patch refers to Bin/ (and thus the requested file
9965         name is Bin/SomeLibrary.dll). Fixes bug #379888
9967 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9969         verify.c (mono_type_is_generic_argument): Extracted this check
9970         from a dozen places to here.
9972         verify.c: Fixed all issues related to boxing generic arguments
9973         and their constraints.
9975 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9977         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9979 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9981         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9982         isn't finished yet. Fixes #363447.
9984 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9986         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9987         Fixes #346419.
9989 2008-04-13  Jb Evain  <jbevain@novell.com>
9991         * domain.c: update the 2.1 profile versions.
9992         Merged from the Moonlight 2 branch.
9994 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9996         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9997         mscorlibs for the non-refonly case as well.
9999         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10000         in mono_assembly_load_from_full (). Fixes #378924.
10002 2008-04-11  Geoff Norton  <gnorton@novell.com>
10004         * icall.c: The global extern environ doesn't exist on Mac.  We
10005         need to call NSGetEnviron instead.
10007 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10009         verify.c: Add generic method constraint verification.
10011 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10013         class.c (mono_class_inflate_generic_method_full): Add a long
10014         explanation to the is_mb_open hack. Remove the FIXME.
10016 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10018         * verify.c (mono_method_verify): Mark all unknown opcodes
10019         as invalid. Mark jmp as unverifiable.
10021 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10023         * verify.c: Add code to do type constraint verification on class instances.
10025         * verify.c (mono_verifier_verify_class): Use the type constraint 
10026         verification code.
10028 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10030         * class.c (mono_class_get_field_default_value): Don't pass cindex
10031         as hint to mono_metadata_get_constant_index. The local is not initialized
10032         and should contain garbage most of the time. This could only work
10033         with a lot of luck.
10035 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10037         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10039 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10041         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10043         * class.c (mono_class_from_generic_parameter): Save the token of the
10044         generic param in MonoClass::sizes.generic_param_token.
10046         * reflection.c (mono_custom_attrs_from_class): If the class type is
10047         VAR or MVAR retrieve the attributes of the generic param.
10049 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10051         * class.c (mono_class_init): Do class verification if the verifier
10052         is enabled.
10054 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10056         * verify-internal.h: Added mono_verifier_verify_class.
10058         * verify.c: Added mono_verifier_verify_class. It checks for
10059         classes with explicit layout that have overlapping reference fields.
10061         * pedump.c: Init the verifier state prior to verification. Fixed
10062         command line arguments.
10064 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10066         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10068 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10070         * verify-internals.h: Fix a warning.
10072 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10074         * verify-internals.h: New header with the verifier configuration
10075         extracted from mini.c.
10077         * verify.c: Implemented the new functions exported by verify-internals.h.
10079 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10081         * verify.c: Add proper verification of ckfinite.
10083 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10085         * verify.c (do_conversion): Improved error message to something
10086         more meanfull.
10088         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10089         with primitive types.
10091 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10093         * verify.c: Added tail prefix checking. Marked icall
10094         as unverifible.
10096 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10098         * verify.c: Fix the detection of branches to the middle
10099         of an instruction.
10101 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10103         * verify.c: Implemented verification of volatile. and
10104         unaligned. prefix. Check if a type is valid after retrieving it.
10106 2008-04-01  Dick Porter  <dick@ximian.com>
10108         * process.c (process_get_fileversion): If there's no string block,
10109         set the file language to en_US.  Fixes the other new part of bug
10110         374600.
10112 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10114         * class.c: New functions mono_method_can_access_field_full and
10115         mono_method_can_access_method_full. They perform type visibility
10116         and type site check.
10118         * class-internal.h: Added exported functions.
10120         * verify.c: Use new functions to implement proper visibility checks.
10122 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10124         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10126 2008-03-28  Dick Porter  <dick@ximian.com>
10128         * process.c (process_get_fileversion): Use the first language ID
10129         we see, rather than insisting on an invariant language.  Fixes bug
10130         374600.
10132 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10134         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10135         the streams to fix reading of invalid memory later.
10137         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10138         to ease debugging.
10140 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10142         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10143         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10145 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10146         * threads.h: Added MonoThreadManageCallback type and
10147         mono_thread_set_manage_callback prototype
10148         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10149         (used to store the mono_thread_manage callback).
10150         * threads.c: Added mono_thread_set_manage_callback, and handle
10151         "MonoThread->manage_callback" in build_wait_tids.
10153 2008-03-26  Dick Porter  <dick@ximian.com>
10155         * process.c (process_get_fileversion): Set FileVersionInfo strings
10156         to Empty when the resource doesn't have the particular info.
10157         Fixes bug 355717.
10159 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10161         * verify.c (mono_method_verify): Proper prefix validation.
10163 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10165         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10166         itself in a separate argument instead of throwing them. Fixes #373448.
10168         * appdomain.c: Bump corlib version.
10170 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10172         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10174 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10176         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10177         version macros.
10179 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10181         * generic-sharing.c, class-internals.h: Code for putting
10182         reflection types into the runtime generic context.
10184 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10186         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10187         Fixes #340662. 
10190 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10192         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10194         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10196         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10198         * verify.c (do_cast): Let the result value keep the boxed status.
10200         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10202 2008-03-17  Jb Evain  <jbevain@novell.com>
10204         * reflection.c: when running on a 2.0 runtime, emit
10205         unconditionally the #~ header version as 2.0, and the
10206         CLI header version as 2.5, for symmetry's sake with csc.
10208 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10210         * class.c: Remove the unused cache_interface_offsets stuff.
10212         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10213         profiler.c: Fix warnings.
10215 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10217         * generic-sharing.c, class-internals.h: Support for putting
10218         methods into the runtime generic context.
10220 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10222         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10223         classes which are generic instances of not-yet finished typebuilders. Fixes
10224         #351172.
10226         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10228 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10230         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10232         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10233         field, replace it with a hash table in MonoDynamicImage.
10235         * reflection.c (inflate_mono_method): Access the generic definition object from
10236         image->generic_def_objects instead of imethod->reflection_info.
10238         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10240         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10241         
10242         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10243         function in reflection.c so it is easier to keep in sync with the dynamic image
10244         creation code.
10246         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10247         mono_image_close ().
10249 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10251         * class.c (mono_class_generic_sharing_enabled): Disable generic
10252         sharing for all architectures except AMD64 and x86 to fix build.
10254 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10256         * verify.c: Use the generic definition MonoGenericContext when available.
10257         Remove code for checking generics instance compatibility in favor of
10258         mono_class_is_assignable_from.
10260 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10262         * marshal.c, marshal.h, metadata-internals.h, image.c,
10263         wrapper-types.h: New wrapper for invoking a shared static method
10264         without having to pass the runtime generic context argument.
10266 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10268         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10270 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10272         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10273         
10274         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10275         create a token from a FieldOnTypeBuilderInst.
10276         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10277         (resolve_object): Ditto.
10279         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10280         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10282 2008-03-14  Martin Baulig  <martin@ximian.com>
10284         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10286         * debug-mono-symfile.h
10287         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10288         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10290 2008-03-10  Martin Baulig  <martin@ximian.com>
10292         * debug-mono-symfile.h
10293         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10294         `lexical_block_table_offset'.
10295         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10296         `lexical_blocks'.
10297         (MonoSymbolFile): Added `version'.
10299         * mono-debug.h
10300         (MonoDebugLexicalBlockEntry): Removed.
10301         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10302         `lexical_blocks'.
10304         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10305         blocks here; the debugger now does this internally.
10307 2008-02-27  Martin Baulig  <martin@ximian.com>
10309         * object.c (mono_runtime_exec_main): Call
10310         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10311         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10313 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10315         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10316         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10318 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10320         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10321         ldftn with a virtual method.
10323 2008-03-13  Geoff Norton  <gnorton@novell.com>
10325         * decimal.c:  Only include memory.h if the platform has it.
10327 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10329         * assembly.c, class.c, metadata-internals.h: make sure public key
10330         tokesns are compared in a case-insensitive way. Also, all
10331         the lookups in the GAC use a lowercase public key token
10332         (gaacutil already does the lowercasing on install). Fixes
10333         bug #369541.
10335 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10337         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10338         and return value.
10340 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10342         * image.c: when someone loads a mscorlib from a file, return the
10343         currently loaded mscorlib (fixes bug #369253).
10345 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10347         * class.c: handle types with no parents by forcing them to have
10348         System.Object as a parent and marking them as broken (this currently
10349         allows the first part of bug #369173 to work as well, likely because
10350         we don't check for typeload exceptions everywhere yet).
10352 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10354         * class.c: more complete check that types belong to corlib
10355         (fixes second part of bug #369173).
10357 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10359         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10360           "inline" to "__inline" before including mono-membar.h.
10361           
10362         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10363           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10364           MSVC builds.
10366         Contributed under MIT/X11 license.
10368 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10370         * verify.c (do_invoke_method): Remove return type validation.
10372         * verify.c (do_ret): Do return type validation at return site instead of
10373         call site.
10375 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10377         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10379         * verify.c: Some todos cleaned and improved a few error messages.
10381 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10383         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10385 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10387         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10388         system types correctly.
10390         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10391         function.
10393 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10395         * assembly.c (build_assembly_name): Fix a warning.
10397 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10399         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10400         the called function takes an object type argument. Fixes storing or
10401         valuetypes across remoting as well as reducing memory usage.
10402         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10403         stfld_remote wrapper caches.
10405 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10407         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10408         is not found.
10410         * reflection.c (mono_image_register_token): New helper function to save
10411         a token->object mapping.        
10413         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10414         managed code.
10416         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10417         one dimension arrays. Fixes #367670.
10418         (mono_reflection_get_type_internal): Ditto.
10420 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10422         * marshal.c: mono_load_remote_field_new() always returns object.
10423         so use the proper signature (fixes bug #366445).
10425 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10426         
10427         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10428         add an 'inline_failure' flag instead.
10430 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10432         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10433         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10434         contains the location of "this", used for exception handling.
10436 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10438         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10439         their size on all platforms for perf reasons.
10441 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10443         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10444         object-internal.h
10446         * object-internal.h: Same.
10448 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10450         * reflection.h: Fix the build I just broke.
10452 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10454         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10455         Test if a token is valid, this remove explicit usage of 
10456         MonoDynamicImage::tokens from the verifier code.
10458         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10460         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10461         instead of direct access to MonoDynamicImage::tokens.
10463 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10465         * verify.c (token_bounds_check): Fix the build I just broke.
10467 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10469         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10471         * verify.c (verifier_load_method): Fixed the errors message.
10473         * verify.c (mono_method_verify): Fixed a debug message.
10475 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10477         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10478         mono-perfcounters.h, class-internals.h: support for predefined
10479         writable counters, query of categories and counters, bugfixes.
10481 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10483         * verify.c (do_refanytype): Verify the refanytype opcode.
10485         * verify.c (mono_method_verify): Use do_refanytype.
10487 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10489         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10491         * verify.c (mono_method_verify): Use do_mkrefany.
10493 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10495         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10496         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10497         implementation.
10499 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10501         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10502         the type load exception.
10504 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10506         * verify.c: Added a few FIXME for method signatures
10508         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10509         of mono_method_get_signature and get vararg call working. Removed unused
10510         checks for return value.
10512         * verify.c (do_refanyval): Verify the refanyval opcode.
10514         * verify.c (mono_method_verify): Implemented verification of arglist and
10515         use do_refanyval.
10517 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10519         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10520         vtypes to marshal.c.
10522         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10523         it works for AOT as well.
10525 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10527         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10528         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10529         the system time is adjusted.
10531 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10533         * icall.c, icall-def.h: use the new time functions (fixes the
10534         non-monotonic behaviour of TickCount).
10536 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10538         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10539         it breaks the build.
10540         
10541         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10542         cattr is not finished yet.
10544 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10546         * verify.c: Proper token validation for field, method and type.
10548 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10550         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10552         * loader.c (method_from_memberref): Generate type load error instead of method missing
10553         if the type is not found.
10555 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10557         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10558         some of the conversions caused the generation of a marshal directive exception.
10560 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10562         verify.c: Report which exception should be thrown by the JIT.
10563         Added a lot of FIXME notes.
10565 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10567         * generic-sharing.c: Runtime generic context slots are not
10568         instantiated on init anymore.  Instead, provide function to do the
10569         instantiating on demand.
10571         * class-internals.h: Added vtable to runtime generic context.
10572         Macros for encoding direct and indirect slot offsets in one
10573         guint32.
10575 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10577         * object.c, generic-sharing.c: Moved some generic sharing code
10578         from object.c to generic-sharing.c.
10580         * generic-sharing.c: Added support for extensible runtime generic
10581         context.
10583         * metadata-internals.h: Two new hash tables in MonoImage for
10584         extensible runtime generic context support.
10586         * domain.c: Unregister generic vtables upon domain unloading.
10588         * image.c: Destroy new hash tables upon image unloading.
10590         * metadata.c: Unregister generic subclasses upon image unloading.
10592         * class-internals.h: New data structure for runtime generic
10593         context template.  New fields in the runtime generic context for
10594         extensible part.
10596         * Makefile.am: Added generic-sharing.c.
10598 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10600         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10601         there is a pending loader exception, raise it.
10603         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10604         same.
10606         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10607         same.
10609         Fixes #363450.
10611 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10613         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10615         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10616         
10617         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10618         ref-only requests for compatibility with MS.
10620 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10622         * reflection.c (mono_custom_attrs_from_method): Don't silently
10623         return an empty list for generic method instances.
10624         (mono_custom_attrs_from_param): Likewise.
10626 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10627             Raja R Harinath  <harinath@hurrynot.org>
10629         Fix #354757
10630         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10631         * class.c (mono_class_inflate_generic_method_full): Initialize it
10632         when a fully-open method is instantiated.
10633         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10634         to new field.
10635         * reflection.c (inflate_mono_method): Don't create a temporary context.
10637 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10639         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10640         Compute correct value, to prepare for imethod->reflection_info going away.
10642 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10644         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10646 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10648         * verify.c: Implement skip visibility flag.
10650 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10652         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10653         which contains an extra field to tell the kind of exception that should be thrown.
10655         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10657 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10659         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10660         'method' is updated.
10662 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10664         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10665         explicit layout as well. Fixes #360375.
10667 2008-02-11  Geoff Norton  <gnorton@novell.com>
10669         * loader.c: Guard and dereference against inflated generic methods
10671 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10673         * class.c: Include Retargetable spec in assembly name.
10674         * assembly.c: Always include PublicKeyToken spec in assembly name
10675         (with value "null" if assembly is not signed), and include
10676         Retargetable spec.
10677         * icall-def.h: Added icall for Assembly.get_fullname.
10678         * icall.c: Added icall returning the fullname of an assembly.
10680 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10682         * class.c (mono_class_setup_vtable_general): Add a missing call to
10683         mono_class_setup_methods () which is needed in the AOT case.
10685 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10687         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10688         stack type of the given MonoType.
10690         * verify.c (verify_type_compatibility_full): Handle the void type.
10692         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10693         way stack merging works.
10695         * verify.c (store_local): Improved verification message.
10697         * verify.c (do_branch_op): If the merging is invalid, the method
10698         is unverifiable and not invalid. Improved error message.
10700         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10701         a reference type diferent than System.Object. Improved error
10702         message.
10704 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10706         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10708         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10709         type of an enum even if the argument is byref.
10711         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10712         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10714         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10716         *verify.c (verify_type_compatibility_full): Make enum types
10717         compatible with their base types.
10719         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10720         types are compatible for the special case of a boxed valuetype and
10721         System.Object.
10723         * verify.c (verify_stack_type_compatibility): The function
10724         is_compatible_boxed_valuetype was extracted from here.
10726         * verify.c (push_arg): Only set ctx->has_this_store if the method
10727         is not static.
10729         * verify.c (do_ldelem): Fixed a typo in an error message and added
10730         strict check for mixing int32 and native int as the array type
10731         and ldelem type.
10733         * verify.c (merge_stacks): Consider boxed valuetypes in the
10734         compatibility checks.
10736 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10737         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10739 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10740         *class.c: use_new_interface_vtable_code: renamed the env var to have
10741         a "MONO_" prefix, and fix the logic to enable it by default.
10743 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10744         *class.c:
10745         mono_class_setup_vtable_general: rewrote the way in which interface
10746         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10747         makes the code more maintainable.
10748         For now the old code is still there, and can be activated setting
10749         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10751 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10753         * verify.c: guarded some debug functions around and #ifdef.
10755         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10757 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10759         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10760         changes for now since they seem to break too many things.
10762 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10764         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10765         mono_marshal_find_nonzero_bit_offset): Added macro and function
10766         for finding the byte- and bit-offset of a bitfield within a
10767         struct.
10769 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10771         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10772         (mono_marshal_get_struct_to_ptr): Ditto.
10774         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10775         cctor_signature.
10777 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10779         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10780         between methods for non-corlib types.
10782 2008-02-02  Geoff Norton  <gnorton@novell.com>
10784         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10785         generic parameters as well. (Fixes #342536)
10787 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10789         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10791         * verify.c (do_invoke_method): Fix for calling with byref structs.
10793         * verify.c (do_cast): push a boxed value type based on the type token and not
10794         the type of stack.
10796 2008-01-31  William Holmes  <billholmes54@gmail.com>
10798         * process.c (process_module_string_read): Check the size returned form 
10799           VerQueryValue to avoid out of memory exception. 
10801 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10803         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10804         Handle properly modules which are not in the moduleref table. Fixes
10805         #356938.
10807 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10809         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10810         the dynamic case which is now in managed code.
10811         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10813         * marshal.c (mono_string_to_bstr): Fix a warning.
10814         (init_com_provider_ms): Ditto.
10816         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10818         * exception.c (mono_get_exception_out_of_memory): New helper function.
10820 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10822         * marshal.c: Add support for BSTR marshalling
10823         using other COM systems.
10825         Code is contributed under MIT/X11 license.
10827 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10829         * object.c (mono_runtime_invoke_array): reverted previous
10830         commit as it breaks the build.
10832 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10834         * object.c (mono_runtime_invoke_array): Verify arguments for
10835         invalid types. Fixes #348522.
10837 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10839         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10840         non-final virtual calls using call. 
10842         * verify.c (do_invoke): fixed some TODOs.
10844         * verify.c (push_arg): set has_this_store for "ldarga 0".
10846 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10848         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10849         which belong to an inflated class. Fixes #356531.
10851 2008-01-26  Robert Jordan  <robertj@gmx.net>
10853         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10854         which resort to FindFirstFile when a certain error condition
10855         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10856         Code is contributed under MIT/X11 license.
10858 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10860         * marshal.c (emit_marshal_string): Fix out string marshalling
10861         to use specified encoding. Fixes #323900.
10863         Code is contributed under MIT/X11 license.
10865 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10867         * class.c (mono_class_inflate_generic_method_full): Don't modify
10868         iresult->context after cache check.
10870 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10872         * class.c (mono_class_inflate_generic_method_full): Change the
10873         struct assignments to memcpy for better visibility and add some comments.
10875 2008-01-23  Dick Porter  <dick@ximian.com>
10877         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10878         procedure, and make it work on windows.
10880 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10882         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10883         a MonoReflectionTypeBuilder since it is always of that type.
10885         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10887         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10889         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10890         
10891         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10893         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10895         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10896         instantiations from the type cache.
10898 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10900         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10902         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10904 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10906         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10908         * verify.c (mono_method_verify): removed old TODO
10910 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10912         * verify.c (do_newobj): add visibility check.
10914 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10916         * verify.c (do_load_function_ptr): add visibility check.
10918 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10919         *class.c:
10920         mono_generic_class_get_class: hook profiler events.
10921         mono_field_get_offset: added to support heap-shot in the new profiler.
10922         *class.h: exported mono_field_get_offset.
10923         * reflection.c:
10924         mono_reflection_setup_internal_class: hook profiler events.
10926 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10928         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10929         argument here too and use it to avoid checking for pending exceptions if 
10930         possible.
10932 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10934         * assembly.c (build_assembly_name): add arg for passing the assembly
10935         flags. Do not consider a PublicKey with value "null" valid.
10936         (mono_assembly_name_parse_full): added boolean argument that will be
10937         set if the assembly name contains a PublicKeyToken spec. Added support
10938         for the Retargetable spec for which only Yes or No are allowed as valid
10939         value. Consider assembly name invalid if Retargetable spec is set, but
10940         either version, culture or public key (token) are not specified.
10941         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10942         with implementation in assembly.c.
10943         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10944         from MonoAssemblyName.
10945         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10946         introduced argument for mono_assembly_name_parse_full to know if the
10947         assembly name has a PublicKeyToken spec, and if it has instruct
10948         fill_reflection_assembly_name to use default value for keyToken (if
10949         PublicKeyToken is null).
10951 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10953         * verify.c (mono_method_verify): fixed ovf ops with
10954         float values. They are unverifiable now.
10956 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10958         * class.c (set_failure_from_loader_error): add BadImageException to the
10959         list of exceptions that can cause a type to fail to load.
10961         * class.c (mono_class_get_exception_for_failure): same.
10963 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10965         * verify.c (in_any_exception_block): added, check if offset
10966         is part of any exception handling clause.
10968         * verify.c (get_stack_type): added VAR and MVAR types.
10970         * verify.c (do_stobj): better error messages.
10972         * verify.c (do_cpobj): added, check cpobj.
10974         * verify.c (do_initobj): added, check initobj.
10976         * verify.c (do_sizeof): added, check sizeof.
10978         * verify.c (do_localloc): added, check localloc.
10980         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10982 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10984         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10985         save_lmf/restore_lmf opcodes.
10987         * threads.c (mono_threads_install_notify_pending_exc): New function to
10988         install a callback notifying the JIT there is a pending exception on a thread.
10989         (mono_thread_request_interruption): Call the new callback.
10990         (mono_thread_get_and_clear_pending_exception): New function to return the
10991         exception pending on a thread.
10993         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10994         to turn off checking for pending exceptions.
10995         (mono_marshal_get_native_wrapper): Ditto.
10997 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10999         * threads-types.h: Get rid of the unnecessary extern declarations.
11001 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11003         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11004         return field from parent class if not private.
11005         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11006         returns fields from parent class if they are not private.
11007         (method_nonpublic): added function to determine if a given method
11008         should be considered non-public. Returns false for private methods
11009         on parent class, and internal methods from parent on the 1.0 profile.
11010         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11011         use method_nonpublic function to determine whether method should be
11012         returned.
11013         (property_accessor_public): use newly introduced method_nonpublic
11014         function to determine whether accessor is non-public. 
11015         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11016         event from parent class if not private. Only return static event if
11017         Static flag is set, and only return static event from parent class if
11018         FlattenHierarchy flag is set.
11019         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11020         include non-private events from parent class.
11022 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11024         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11025         warning.
11027 2008-01-16  Wade Berrier <wberrier@novell.com>
11029         * security.c: Add assembly.h header to appease some warnings
11031 2008-01-16  Dick Porter  <dick@ximian.com>
11033         * process.c (process_module_string_read): Remove trailing null
11034         when saving string.
11036 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11038         * class-internals.h: A new data structure describing the layout of
11039         a runtime generic context (MonoRuntimeGenericContextTemplate).
11041         * metadata-internals.h: Added a hash table to MonoDomain that maps
11042         from open generic classes to their runtime generic context
11043         templates.
11045         * object.c: Building of the runtime generic context, including
11046         proper handling of generic type arguments of superclasses.
11047         Building of the runtime generic context according to the template.
11049 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11051         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11052         Fixes #350856.
11054         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11055         mono_portability_find_file (). Fixes #325466.
11056         (mono_image_get_public_key): Fix a warning.
11058 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11060         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11061         Fixes #353550.
11062         (mono_class_from_name_case): Ditto.
11064 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11066         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11067           common storage for the tables used in the System/NumberFormatter class.
11069 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11071         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11073 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11075         * verify.c (get_boxable_mono_type): check if the token is valid.
11077         * verify.c (set_stack_value): changed to add an error if an
11078         invalid type is set on stack. Changed all callers due to signature change.
11080         * verify.c (do_stobj): implement stobj validation.
11082 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11084         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11085         set container->is_method, it was set earlier.
11087         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11088         generic methods.
11090         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11091         is_method of the generic container to TRUE for methods.
11093 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11095         * metadata.c (type_in_image): Handle type parameters properly.
11097         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11098         memory ownership of this structure.
11100 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11102         * verify.c (get_boxable_mono_type): make typedref types been just
11103         unverifiable. check for void type.
11105         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11107         * verify.c (do_load_function_ptr): accept method spec tokens.
11109 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11111         * marshal.c (mono_class_native_size): Always set *align even if this is called
11112         recursively.
11114 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11116         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11117         out-of-date.
11119 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11121         * verify.c: removed some old unused tables. A huge bunch of small fixes
11122         to things found while testing the verifier with mono basic.
11124         * verify.c (dump_stack_value): dump null literal flag to.
11126         * verify.c (verify_type_compatibility_full): fix comparison
11127         for types that have a generic super type.
11129         * verify.c (verify_stack_type_compatibility): fix compatibility
11130         between null literals and reference types. fix compatibility between
11131         boxed valuetypes and object. fix corner case test for enums.
11133         * verify.c (do_cmp_op): proper verification of cgt.un in case
11134         of reference types.
11136         * verify.c (do_invoke_method): fix error message.
11138         * verify.c (do_store_indirect
11140         * verify.c (check_is_valid_type_for_field_ops): proper verification
11141         of managed pointers to valuetypes and boxed valuetypes. proper verification
11142         of null literals.
11144         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11145         allow token to be a reference type.
11147         * verify.c (do_cast): proper handling of boxes valuetypes.
11149         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11150         in object[].
11152         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11153         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11154         fixed the decoding of unbox_any
11156 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11158         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11160 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11162         * verify.c (do_newobj): do delegate verification.
11164         * verify.c (verify_delegate_compatibility): perform delegate
11165         verification.
11167         * verify.c (verify_ldftn_delegate): perform tests related to
11168         ldftn delegates.
11170         * verify.c (mono_delegate_signature_equal): perform the
11171         slightly diferent signature comparison required by delegates.
11173         * metadata.c (mono_metadata_type_equal_full): added and exported
11174         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11175         allows signature only comparison.
11177         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11178         as MONO_INTERNAL.
11180 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11182         * verify.c: added a bunch of stack_slot_* functions to
11183         make access to stack slot type easier. This is required to
11184         allow optional flags, like null literal, boxed value and
11185         this pointer.
11186         All access paths to IlStackDesc::stype have been changed 
11187         to use these new funcions.
11188         Removed a bunch of unused functions and cleared all warnings.
11189         This patch introduces the usage of the this pointer and 
11190         boxed value flags.
11192 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11194         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11196 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11198         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11199         match managed version.
11201         * appdomain.c: Bump corlib version.
11202         
11203         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11204         argument.
11206 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11208         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11209         Set public key token to zero-length byte array if assembly is not
11210         strongnamed.
11212 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11214         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11215         writing a vtype array elem.
11217 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11219         * assembly.c (build_assembly_name): return FALSE if length of token is
11220         not 16 (if not "null").
11221         (mono_assembly_name_parse_full): return FALSE if value of version,
11222         culture, token or key is 0.
11223         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11224         specify whether public key and public key token must be set to default
11225         value (zero-length byte array) if not available. Set versioncompat to
11226         SameMachine. If public key is available or the default is set, then
11227         set PublicKey flag.
11228         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11229         is available, use empty byte array as default value. On the 2.0
11230         profile, use default value for public key token if not set.
11231         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11232         profile, use default value for public key if not set. On the 2.0
11233         profile, use default value for public key token if not set.
11234         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11235         default values for public key and public key token.
11237 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11239         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11240         field to keep it in synch with the managed object.
11242         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11243         delegates. Fixes #351520.
11245         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11246         contains defined memory.
11247         
11248         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11250         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11251         
11252         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11253         of the GC data structures.
11255         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11257         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11258         
11259         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11260         barrier.
11261         (mono_array_clone_in_domain): Ditto.
11262         (mono_array_clone_in_domain): Ditto.
11264         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11265         (cache_culture): Use a write barrier.
11267         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11268         (ves_icall_get_property_info): Ditto.
11270         * object.h (MONO_STRUCT_SETREF): New macro.
11272         * class-internals.h (MonoStats): Add some GC statistics.
11274         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11276 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11278         * exception.c (mono_exception_from_name_two_strings):
11279         Break from loop after method is found.
11281 2008-01-04  Dick Porter  <dick@ximian.com>
11283         * process.c (process_module_string_read): Rename variable to
11284         reflect correct usage, after fixing bug 345972.
11286 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11288         * verify.c (mono_type_create_fnptr_from_mono_method): 
11289         created a MonoType function pointer instance to be used during
11290         verification. The verifier releases this memory at end.
11292         * verify.c (mono_method_is_constructor): extracted repeated
11293         checks for constructor into a single class.
11295         * verify.c (do_push_field): use new extracted method
11296         for constructor check.
11298         * verify.c (do_newobj): same.
11300         * verify.c (do_ldftn): renamed to do_load_function_ptr
11301         and make it verify ldvirtftn too.
11303         * verify.c (mono_method_verify: proper verification
11304         of ldvirtftn. release created MonoMethod instances.
11306 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11308         * verify.c (token_bounds_check): added.
11310         * verify.c (do_ldftn): added.
11312         * verify.c (mono_method_verify): proper verificartion of ldftn.
11314 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11316         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11317         than the table row count. It's the resposibility of the caller to
11318         make the bounds check and raise the correct error.
11320         * metadata.c (mono_metadata_decode_row_col): Same.
11322         * loader.c (mono_get_method_from_token): perform bounds check
11323         on token for methoddef table.
11325 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11327         * icall.c
11328         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11329         assert into a negative result, the managed code already coped with
11330         that.
11332         Some folks on Windows reported this error. 
11334 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11336         * appdomain.c: Bump corlib version.
11337         * icall.c:
11338         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11339         CultureInfo.CreateCulture to create CultureInfo for name.
11340         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11341         create CultureInfo for name. Fixes bug #347174.
11343 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11345         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11346         flags.
11348         * verify.c (is_valid_branch_instruction): allow branching to the
11349         first instruction of the protected block.
11351         * verify.c (is_valid_cmp_branch_instruction): same.
11353         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11354         avoid double initialization.
11356         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11357         detect which cases the eval stack should just be copied.
11359         * verify.c (mono_method_verify): check if the eval stack
11360         is empty when entering a protected block.
11362 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11364         * verify.c: added is_clause_in_range, is_clause_inside_range,
11365         is_clause_nested and verify_clause_relationship. They perform
11366         the verifications stated in P1 12.4.2.7.
11368         * verify.c (mono_method_verify): remove some unused variables,
11369         add the new exception clause checks, add instruction border
11370         checks for protected block start/end, improved some error 
11371         messages and fixed a bug in the way invalid instruction access
11372         is detected.
11374 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11376         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11377         from GC 7.0 if available.
11379         * object.c: Remove an unused define.
11380         
11381         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11383         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11385         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11387         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11389         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11390         to take the same arguments as the other make_descr functions.
11392         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11394         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11395         directly.
11397         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11398         mini.c.
11400         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11401         call to boehm-gc.c.
11403         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11405         * null-gc.c (mono_gc_register_root): Fix a warning.
11407         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11409         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11410         (mono_gc_base_init): Call GC_init ().
11412         * null-gc.c: Define mono_gc_register_root () as a no-op.
11414         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11416 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11418         * verify.c: add prototype for merge_stacks at top
11420         * verify.c (do_switch): added.
11422         * verify.c (merge_stacks): on some cases the stack merging
11423         was not happening properly. Unequal stack sizes at merge
11424         points should be invalid.
11426         * verify.c (mono_method_verify): added more debug info on stack state.
11427         verify switch properly.
11429 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11431         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11432         marshal.h.
11434         * boehm-gc.c marshal.c: Include method-builder.h.
11436         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11438         * marshal.c: Remove some code which is now in method-builder.c.
11440 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11442         * method-builder.c: New file, extraction of the method builder functionality 
11443         from marshal.c.
11445         * marshal.c: Move the mb functions into method-builder.c.
11447         * marshal.h marshal.c: Export some mono_mb_... functions.
11449         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11451         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11452         the caller.
11454         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11456         * loader.c (mono_field_from_token): Ditto.      
11458         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11459         type as well.
11460         
11461         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11462         Fixes #342565.
11464         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11465         a helper function for setting it.
11467         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11469         
11470         * assembly.c: Significally simplify code now that referenced assemblies are 
11471         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11473         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11474         #349952.
11476 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11478         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11479         instructions that were target of branches or are at protected block boundaries.
11481         * verify.c (in_same_block): handle filter clauses.
11483         * verify.c (is_valid_branch_instruction): added. checks the target of
11484         instructions br or brtrue/false.
11486         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11487         binary branch instructions such as beq and bge.
11489         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11490         and made it pin the instruction as been part of the exception block.
11492         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11493         of in_same_block.
11495         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11496         of in_same_block.
11498         * verify.c (do_ret): ret from a protected block is unverifiable and
11499         not invalid.
11501         * verify.c (do_static_branch): verify br and br.s instructions.
11503         * verify.c (merge_stacks): add extra param to support detection
11504         of branches in the middle of instructions.
11505         
11506         * verify.c (mono_method_verify): verify branches and exception blocks
11507         that target the middle of instructions. Proper verification of br and br.s.
11509 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11511         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11512         skip_visibility field.
11513         (reflection_methodbuilder_from_dynamic_method): Ditto.
11515         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11516         registrations. Fixes #348193.
11518         * threads.h: Move the internal mono_thread_get_pending_exception () to
11519         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11521 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11523         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11524         icall registration. Fixes #348193.
11526         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11527         for corlib classes into object. Fixes #349621.
11529 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11531         * icall.c (property_accessor_nonpublic): new function to determine
11532         whether an accessor allows a property to be considered non-public.
11533         Returns false for private accessor(s) from parent class, and internal
11534         accessor(s) from parent on 2.0 profile (and higher).
11535         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11536         to determine whether property should be included if NonPublic flag
11537         is set. Fixes bug #349078.
11539 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11541         * verify.c (init_stack_with_value): added.
11543         * verify.c (mono_method_verify): extracted common
11544         code for exception initialization into init_stack_with_value.
11546         * verify.c (mono_method_verify): initialize the exception
11547         for handler clauses as well.
11549         * verify.c (mono_method_verify): fix the exception clause
11550         ordering rules, it should use handler end offset and not
11551         start offset.
11553 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11555         * rawbuffer.c: remove useless warning.
11557 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11559         * threads.h, threads-types.h: move functions to the correct header
11560         (fixes bug#349952).
11562 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11564         * verify.c (mono_method_verify): proper verification
11565         of exception handling clauses ranges and fallthru in
11566         and out of protected blocks.
11568 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11570         * verify.c (mono_method_verify): fixed compilation issue.
11572 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11574         * verify.c (mono_method_verify): a printf slipped in, changed
11575         to use verifier debug macro.
11577 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11579         * verify.c (is_correct_leave): check for filter clauses.
11581         * verify.c (do_filter): added.
11583         * verify.c (mono_method_verify): property verification of leave.
11586 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11588         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11589         Win32 build, until we figure out how to do the proper thing on
11590         Win32.
11592 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11594         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11595         by the previous patch.
11596         
11597         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11598         the assembly resolve handler for refonly assemblies.
11600 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11602         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11603         Make sure only one thread is allowed to commence shutdown, and
11604         don't allow new threads to be started once shutdown is in
11605         progress.
11607 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11609         * verify.c (is_correct_endfilter): added.
11611         * verify.c (is_unverifiable_endfilter): added.
11613         * verify.c (do_endfilter): added.
11615         * verify.c (mono_method_verify): property verification of endfilter
11616         and fixed a corner case or endfinally.
11618 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11620         * verify.h: new flags to support fail fast of unverifiable code and
11621         do non-strict verification. Non-strict verification is required to
11622         have MS runtime compatibility. There are a huge amount of unverifiable
11623         code that it accepts as verifiable. The strict mode verifies the code
11624         as the specs says.
11625         Non-strict mode will be required in cases where code needs to be
11626         accepted as verifiable but fails under strict mode.
11628         * pedump.c: added support to fail fast and non-strict verification.
11630         * verify.c: added support for both fail fast and non-strict verification.
11632 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11634         * verify.c (is_correct_endfinally): added.
11636         * verify.c (mono_method_verify): property verification of endfinally.
11638 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11640         * verify.c (in_any_block): check for filter clauses.
11642         * verify.c (is_correct_rethrow): added.
11644         * verify.c (mono_method_verify): property verification of rethrow.
11646         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11648 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11650         * verify.c (do_throw): added.
11652         * verify.c (mono_method_verify): property verification of throw
11654 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11656         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11657         assemblies. Fixes #346425.
11659 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11661         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11662         FieldBuilders.
11664         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11666         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11667         prevent asserts when this is called with a token which might not be valid.
11669         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11670         lookup_dynamic_token_class with valid_token == FALSE.
11672         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11674         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11676         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11677         
11678 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11680         * gc.c: Don't delay threadpool thread finalization unless Mono is
11681         shutting down.
11683 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11685         * threads.c: turn an assert into a non-fatal warning.
11687 2007-12-09  Robert Jordan  <robertj@gmx.net>
11689         * icall.c (GetVirtualMethod): Add missing argument validation.
11691 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11693         * verify.c (do_cast): added.
11695         * verify.c (mono_method_verify): property verification of castclass and isinst.
11698 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11700         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11702         * verify.c (do_stelem): added.
11704         * verify.c (mono_method_verify): property verification of stelem.X.
11706 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11708         * class.c, class-internals.h: Introduce an environment variable
11709         (MONO_GENERIC_SHARING) through which the extent of generic code
11710         sharing can be controlled (share all classes, share only corlib
11711         classes, or share nothing).
11713         * object.c: Only create runtime generic context for classes for
11714         which sharing is enabled.
11716 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11718         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11720         * verify.c (mono_method_verify): property verification of ldelem.any.
11722 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11724         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11725         added ldelem.X opcodes.
11727         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11729         * verify.c: proper verification of ldelem.X 
11731 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11733         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11735 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11737         * verify.c (mono_method_verify): null literal requires special handling,
11738         the value pushed on stack need to be flagged as so.
11740         * verify.c (do_ldelema): Verify ldelema properly.
11742 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11744         * verify.c: Verify ldlen properly.
11746 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11748         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11749         to the target object's type. Fixes #346160.
11751 2007-12-05  Dick Porter  <dick@ximian.com>
11753         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11754         Solaris needs the same workaround as BSD-derived systems.  Fixes
11755         bug 323524, patch by Burkhard Linke
11756         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11758 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11760         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11761         handle to use when error dialog is shown; otherwise, update mask
11762         to show no error dialog when an error occurs.
11764 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11766         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11768         * class.c (mono_class_get_field_default_value): New helper function to initialize
11769         field->def_type and field->data.
11771 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11773         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11774         the general one.
11776         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11778         * marshal.c: Avoid depending on delegate->method_info being set.
11780         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11781         
11782         * object.c (mono_delegate_ctor): Set delegate->method.
11784         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11786         * appdomain.c: Bump corlib version.
11788 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11790         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11791         equality check if we're comparing canonicalized MonoGenericInsts.
11793 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11795         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11796         accessing class->methods.
11798 2007-11-22  Dick Porter  <dick@ximian.com>
11800         * threads.c: Ensure that the synch_cs is set before trying to use
11801         it.
11803 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11805         * profiler.c: r89126 broke the statistial profiler, unbreak.
11807 2007-11-22  Martin Baulig  <martin@ximian.com>
11809         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11811         * mono-debug.c
11812         (mono_debug_debugger_version): Bump to 3.
11813         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11814         -> mono_debugger_class_initialized().
11816         * mono-debug-debugger.c
11817         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11819         * class.c
11820         (mono_debugger_start_class_init_func): Removed.
11821         (mono_debugger_class_loaded_methods_func): Added.
11822         (mono_class_setup_methods): Call it here.
11824 2007-11-22  Martin Baulig  <martin@ximian.com>
11826         * mono-debug.c
11827         (mono_debug_add_delegate_trampoline): New public method.
11828         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11830         * mono-debug.h
11831         (MonoSymbolTable): Added `global_data_table'.
11832         (MonoDebuggerTypeKind): Removed.
11834 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11836         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11837         these methods.
11839         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11840         
11841 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11843         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11845 2007-11-20  Martin Baulig  <martin@ximian.com>
11847         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11849         * mono-debug-debugger.c
11850         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11851         (mono_debugger_remove_breakpoint): Likewise.
11852         (mono_debugger_check_breakpoints): Likewise.
11853         (mono_debugger_register_class_init_callback): New public method.
11854         (mono_debugger_remove_class_init_callback): Likewise.
11855         (mono_debugger_add_type): Likewise.
11857         * mono-debug-debugger.h
11858         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11860 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11862         * class.c: more interface implementations needed for the
11863         array enumerator (fixes bug #341112).
11865 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11867         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11868         fix ParamName of ArgumentNullExceptions.
11870 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11872         * reflection.c (mono_reflection_encode_sighelper): Generate the
11873         modopts and modreqs.   I have a useless test that crashes monodis,
11874         but that shows the code working.
11876 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11878         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11879         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11881 2007-11-15  Dick Porter  <dick@ximian.com>
11883         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11884         When joining a thread, it's the thread that's calling Join that
11885         gets WaitSleepJoin state not the target.  Fixes the standalone
11886         test case in bug 334740, and hopefully the whole bug too.
11888 2007-11-15  Dick Porter  <dick@ximian.com>
11890         * process.c: Read file version info from the files pointed at by
11891         process modules, not the current process.  Fixes bug 315969.
11893         Use windows typedef names in some places to fix warnings on the
11894         windows build.
11896 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11898         * image.c, metadata-internals.h: Added a generic_class_cache hash
11899         to MonoImage for looking up generic classes when sharing generics.
11901 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11903         * sgen-gc.c: warning cleanups.
11905 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11907         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11908         inherited properties.
11910 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11912         * object.c, class-internals.h: Added more information to the
11913         runtime generic context.
11915 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11917         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11918         instead of just the target method. Generalize the abstract method handling to
11919         handle any non-static method.
11921         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11922         mono_marshal_get_delegate_invoke () signature change.
11924 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11926         * class.c, class-internals.h: Made
11927         mono_type_get_basic_type_from_generic () public.  Fixed member
11928         access check for shared generics.
11930         * loader.c: Don't insert field into field cache if it's part of a
11931         non-inflated generic class.
11933         * domain.c, domain-internals.h: The generic sharing context is now
11934         part of the jit info data structure.  Added two accessor
11935         functions.
11937 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11939         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11940         the array Get/Set/Address methods, since the JIT inlines them.
11942         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11944         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11945         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11947         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11948         mono_marshal_get_delegate_invoke signature change.
11950         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11951         an additional argument. Add support for invoking abstract methods.
11953         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11955         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11957 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11959         * class.c: Do field layout for open generic classes as well.
11961 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11963         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11964         other objects, because the threadpool is still around.  Put them
11965         in a list instead and after finalizing all other objects in the
11966         root domain shut down the thread pool and then finalize the
11967         threads.  Fixes bug #337383.
11969         * threads.c, thread-types.h: New mono_thread_create_internal()
11970         function for marking a thread with the threadpool flag before it
11971         started.  Set synch_cs to NULL after freeing it.
11973         * threadpool.c: Mark threadpool threads before they start.
11975 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11977         * reflection.h, reflection.c: don't export random functions
11978         and lazy load dbnull and missing objects.
11980 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11982         * class.c: Initialize COM types if COM interfaces
11983         are present (not just COM classes).
11984         
11985         Code is contributed under MIT/X11 license.
11987 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11988         * reflection.c:
11989         create_dynamic_mono_image: hook module profiler events (dynamic case).
11990         mono_image_basic_init: hook assembly profiler events (dynamic case).
11992 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11993         * profiler.c:
11994         simple_appdomain_unload: completely terminate the profiler
11995         instead of only processing the statistical samples.
11996         simple_shutdown: make sure this is really called exactly once,
11997         even in multithreaded applications, and always listen to
11998         appdomain events.
11999         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12000         here, the "[un]load" functions will do it.
12001         Fixes bugs #333791 and #325261.
12003 2007-11-07  Geoff Norton  <gnorton@novell.com>
12005         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12006         rather than depend on __APPLE__.
12008 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12010         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12012 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12014         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12015         UTF16 MonoString. Fix the crash from bug #335488
12017 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12019         * marshal.c: Correct (for non-Win32 OS) length != size in 
12020         mono_string_from_bstr. Fix #339530.
12022 2007-11-06  Geoff Norton  <gnorton@novell.com>
12024         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12025         to succeed
12027 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12029         * process.c: Added run-time GetProcessId API detection for Windows.
12031 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12033         * reflection.c  (mono_param_get_objects): If a parameter has the
12034         attribute [System.Runtime.InteropServices.Optional] we should
12035         set the DefaultValue of the ParameterInfo to be
12036         System.Reflection.Missing instead of DBNull.
12038         See bug #339013.
12040         (mono_get_reflection_missing_object): New method,
12041         returns the System.Reflection.Missing.Value singleton instance.
12043 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12045         * culture-info-table.h : regenerated.
12047 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12049         * icall.c: Use GetEnvironmentStrings on windows
12050         so we are using the same environment block as 
12051         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12052         #333740.
12053         
12054         Code is contributed under MIT/X11 license.
12056 2007-10-31  Martin Baulig  <martin@ximian.com>
12058         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12060         * mono-debug-debugger.h
12061         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12063 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12065         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12066         classes.
12068 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12070         * culture-info-table.h : regenerated.
12072 2007-10-30  Robert Jordan  <robertj@gmx.net>
12074         * icall-def.h, icall.c:
12075         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12077         Code is contributed under MIT/X11 license.
12079 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12081         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12082         inflated class instead of inflating them again.
12083         
12084         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12085         dynamic case.
12087         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12088         Call setup_supertypes () after klass->parent is set.
12089         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12091         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12092         for inflated instances of not yet created dynamic generic classes.
12093         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12094         times from inflated_method.
12095         (methodbuilder_to_mono_method): Ditto.
12097 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12099         * gc.c: code cleanup and removed old untested option of not creating the
12100         finalizer thread.
12102 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12104         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12105         creating a jump trampoline for dynamic methods.
12107 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12109         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12110         generic TypeBuilders when called from another method of the same type (bug #335131).
12113 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12115         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12116         doesn't seem to work perfectly.
12117         
12118         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12119         called multiple times.
12120         (methodbuilder_to_mono_method): Ditto.
12121         (resolve_object): Inflate FieldBuilder's.
12123 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12125         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12126         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12127         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12129 2007-10-26  Dick Porter  <dick@ximian.com>
12131         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12132         Thread initialisation changes
12134 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12136         * verify.c: fix compatibility check between arrays and System.Array
12138 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12140         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12141         too. Fixes #336999.
12143 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12145         * object.c (mono_value_box): Use typed allocation here.
12147 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12149         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12150         trampoline instead of compiling the method right away.
12152         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12154 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12156         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12157         related fields for dynamic classes. Fixes #334493.
12159 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12161         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12162         
12163         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12165         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12166         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12168         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12170         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12171         if needed.
12172         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12174 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12176         * marshal.c: Use correct key when removing item
12177         from ccw_hash.
12178         
12179         Code is contributed under MIT/X11 license.
12181 2007-10-17  William Holmes  <billholmes54@gmail.com>
12183         *marshal.c: Adding a case to marshal booleans to U1
12185         Code is contributed under MIT/X11 license.
12187 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12189         * class.c (mono_class_from_name): Search the modules compromising dynamic
12190         assemblies. Fixes #331601.
12192 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12194         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12195         exception if the type name contains an assembly component. Fixes #334203.
12197         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12198         modules inside dynamic assemblies. Fixes #334200.
12199         
12200         * reflection.c: Set image->public_key and image->public_key_length;
12202         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12203         fields.
12205         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12206         
12207 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12209         * metadata.c: Implemented correct comparing of generic classes.
12210         An inflated generic class can be equal to a non-inflated one if it
12211         is inflated with generic type variables as type arguments.  Fixes
12212         bug #333798.
12214 2007-10-15  Dick Porter  <dick@ximian.com>
12216         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12217         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12218         81646.
12220         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12221         instead of a monitor lock.  This means that monitor_try_enter and
12222         co can set the thread state safely.
12223         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12224         thread_interrupt_requested, so interrupt actually works.
12226         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12227         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12228         state accessor function
12230 2007-10-15  Martin Baulig  <martin@ximian.com>
12232         * mono-debug.h
12233         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12234         the debugger with the current runtime.
12236 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12238         * object.c, object-internals.h: added the ability to set a single
12239         trampoline for all the slots in a vtable.
12241 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12243         * marshal.c: deal with a possible race condition during multicast
12244         delegate invocation.
12246 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12248         * class.c: ensure value type methods don't have the synchronized
12249         flag set.
12251 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12253         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12254         breaks the build.
12256 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12258         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12259         to take an options parameter so that empty entries can be removed during
12260         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12262 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12264         * marshal.c: make sure we don't store the signature from a dynamic
12265         method into the runtime invoke cache (bug #327189).
12267 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12269         * marshal.c: make sure the wrapper methods are properly initialized.
12271 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12273         * metadata.c, metadata-internals.h: Generalized
12274         mono_type_stack_size() to mono_type_stack_size_internal() which
12275         takes an additional argument specifying whether it allows open
12276         types.
12278 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12280         * verify.c (do_invoke_method): handle typedbyref params
12281         correctly and check for unverifiable return values.
12283         * verify.c (do_newobj): fix a warning.
12285 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12287         * verify.c: don't tread typedbyref as allways unverifable,
12288         so uses, like (ld/st)loc.0 are valid. verify for the cases
12289         that it matters, like boxing related operations.
12291 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12293         * verify.c: add verification of the newobj opcode. verification
12294         of delegate instantation still missing due ldftn and virldftn not
12295         pushing the function type on stack
12297 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12299         * class-internals.h: Runtime generic context data structure
12300         definition.
12302         * object.c: Initialization of runtime generic context at runtime
12303         vtable creation time.
12305 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12306         * class.c (mono_class_create_from_typedef,
12307         mono_class_from_generic_parameter, mono_ptr_class_get,
12308         mono_fnptr_class_get, mono_bounded_array_class_get)
12309         * domain.c (mono_domain_create, mono_domain_free)
12310         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12311         * image.c (do_mono_image_load, mono_image_close):
12312         Hooked up load-unload profiler events.
12314 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12316         * domain.c: track statistics about the actual amount of native code
12317         allocated.
12319 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12321         * class.c: the valuetype enumerators don't have the additional
12322         supertypes interfaces.
12324 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12326         * class.c: need more interfaces setup for the IEnumerator<T>
12327         object created for arrays (tests/ienumerator-interfaces.2.cs).
12329 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12331         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12333 2007-10-05  Alp Toker  <alp@atoker.com>
12335         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12336         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12337         #315863.
12339 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12341         * verify.c (verify_type_compatibility_full): verification of
12342         compatibility improved, validates correctly non-strict checks between
12343         native int and I4 types different than (unsigned)int32.
12345         * verify.c (do_store_indirect): added, do all verification of
12346         ldind.X opcodes. 
12348         * verify.c (get_load_indirect_mono_type): renamed to
12349         get_indirect_op_mono_type, as it now returns the MonoType for 
12350         ldind.X and stind.X opcodes.
12352 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12354         * reflection.c: Fix the encoding of generic type definition for
12355         TypeBuilders.
12357         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12358         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12359         be made. Typespec check is done prior to typeref cache lookup.
12361         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12362         mono_image_typedef_or_ref_full.
12364         * reflection.c (encode_generic_class): encode the generic class
12365         directly instead of calling encode_type.
12367         * reflection.c (encode_type): encode the generic type definition
12368         MonoClass as a generic instantiation.
12370         * reflection.c (create_typespec): cache typespec tokens in
12371         the assembly->typespec cache. Don't create typespec for a generic
12372         instance MonoClass. Create typespec for the generic type defintion.
12374         * reflection.c (create_generic_typespec): encode the generic
12375         class directly instead of calling encode_type.
12377         * reflection.c (mono_image_create_token): encode the generic
12378         type definition not using a typespec for MonoType instances.
12381 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12383         Fix #328812
12384         * class.c (mono_image_init_name_cache): Don't return nested
12385         'protected internal' classes.
12386         (mono_class_from_name_case): Likewise.
12388 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12390         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12391           common function used by both DefaultConfig in System.dll and
12392           InternalConfigurationHost in System.Configuration.dll.
12394 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12396         * class.c: automatically add to vectors only a few essential explicit
12397         generic interfaces. The rest of the interfaces that arrays should
12398         provide are currently implicitly added (but still not lazily, see the
12399         design in the discussion of bug#325495 for the details of what is
12400         needed for that). Additionally, implicit interfaces are assigned the
12401         same vtable slot as the explicit interfaces (as they are compatible):
12402         this enables huge memory savings since we don't need to instantiate
12403         as many memthods and as large vtables anymore. Also, Since
12404         GetEnumerator<T> returns an instance of a type that is required to
12405         support a similarly large set of interfaces as arrays, we add
12406         implicit interfaces and interface offset sharing support to those
12407         types, too. This change adds all the required interfaces so that
12408         the anonarray.cs test case in the bug report works (we don't add
12409         all the interfaces to arrays of arrays 3-level deep and more because
12410         of the memory requirements explained in the bug and since they are much
12411         less common: the lazy-loading support will enabled them to work, too).
12413 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12415         * verify.c (merge_stacks): major clean up, all type compatibility
12416         checks are done by verify_type_compatibility. This fix my earlier lack
12417         of understanding of the CLR type system and merge_stacks no longer looks
12418         scary.
12420         * verify.c: fixed some bad spelling.
12422 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12424         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12425         a given stack slock.
12426         
12427         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12428         verify_type_compatibility_full. This removed a near indentical function and fixed
12429         handling of Int32 and IntPtr across all opcodes.
12431 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12433         * class.c: only vectors have the additional generic interfaces.
12435 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12437         * mono-config.c: Use g_strcasecmp instead of
12438         strcasecmp like everywhere else to fix
12439         compilation with MSVC.
12440         
12441         Code is contributed under MIT/X11 license.
12443 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12445         * object.c, object-internals.h: refactored the IMT code to enable
12446         building a single slot at a time and lazily creating the IMT trampolines
12447         and thunks.
12449 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12451         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12453         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12454         Fixes #328501.
12455         
12456 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12458         * loader.c (method_from_methodspec): Rearrange to avoid
12459         un-necessary exposition.  Don't assert out if the method's
12460         declaring type is a generic type definition.
12462 2007-09-28  Martin Baulig  <martin@ximian.com>
12464         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12466 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12468         * class-internals.h: optimize field layout of MonoClass to
12469         requires less cachelines at runtime and save a few bytes on 64 bit
12470         systems.
12472 2007-09-28  Jb Evain  <jbevain@novell.com>
12474         * reflection.c: when encoding type names in custom attributes,
12475         if the type is a closed generic type, its generic arguments
12476         have to be serialized as AssemblyQualifiedName, so that when
12477         they are deserialized, it's possible to re-create them properly.
12478         Fixes #329450.
12481 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12483         * object.c, class-internals.h: added delegate-creation counter.
12485 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12487         * class.c: cleanup of the code that synthetizes interfaces for
12488         arrays in 2.0: saves quit a bit of corlib mempool memory.
12489         Code to fix bug #325495 ifdeffed out for now until the issues
12490         with memory usage and O(n^2) behaviour are fixed.
12492 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12494         * marshal.c: when possible, do not duplicate the name of the methods
12495         in the method builder and in the generated MonoMethod.
12497 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12498         * verify.c: added support for type checking ldind_* opcodes.
12500 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12502         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12503         which is used to distinguish the fully open instantiation of a TypeBuilder
12504         with the rest. This temporary hack is required to restore the property that
12505         the fully open instantiation is the same type of the generic type definition.
12507         * class-internals.h (mono_generic_class_is_generic_type_definition):
12508         new function as part of the internal API.
12510         * class.c (inflate_generic_type): return NULL when the generic inst is
12511         fully open. The fully open generic type is now the same as the generic type
12512         definition for non TypeBuilder types.
12514         * class.c (mono_generic_class_get_class): removed assert since it is
12515         no longer valid, gklass->cached_class can point to the generic type definition.
12517         * class.c (mono_generic_class_is_generic_type_definition): new.
12519         * metadata.c (mono_generic_class_hash): added is_tb_open field
12520         to the hash calculation.
12522         * metadata.c (free_generic_class): if the generic class is associated
12523         with the generic type definition, its field will come from the mempool and
12524         must not be freed.
12526         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12527         new, this function identifies the corner case of a TypeBuilder fully open
12528         instantiation.
12530         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12531         for lookup. Set gclass->cached_class to be the container class in case of
12532         the fully open instantiation of non TypeBuilder types.
12534         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12535         to compare generic classes.
12537         * reflection.c (method_encode_methodspec): remove assert that
12538         no longer is valid.
12540         * reflection.c (mono_reflection_generic_class_initialize): add
12541         an aditional assert to ensure the proper type is used.
12543 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12545         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12546         to enjoy it.
12548 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12550         * verify.c (push_arg): Fixed support for ldarga
12551         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12552         MonoType used as first arg in case of instance calls.
12554 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12556         * verify.c: Support for verifying VAR and MVAR types, 
12558 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12560         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12561         accessors correctly.
12563 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12565         * threads.c: support OSX and other systems in
12566         mono_thread_get_stack_bounds (bug #328026).
12568 2007-09-25  Martin Baulig  <martin@ximian.com>
12570         * mono-debug.h
12571         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12573 2007-09-24  Martin Baulig  <martin@ximian.com>
12575         * mono-debug.h
12576         (MonoDebugClassEntry): Moved the definition of this struct into
12577         mono-debug.c to make it private.
12579         * mono-debug.c
12580         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12581         type table per symbol file, we don't need to store the symfile id
12582         any longer.
12584 2007-09-24  Martin Baulig  <martin@ximian.com>
12586         Create one type table per symbol file, since a `MonoClass *' gets
12587         invalid when its image is unloaded.
12589         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12590         (MonoDebugHandle): Added `type_table'.
12592 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12594         * mempool.c, mempool.h: added mono_mempool_new_size () API
12595         to be able to specify a smaller initial size for the pool.
12596         Adjusted the code to slowly increase pool size before using
12597         the previous default size.
12598         * image.c: use a small initial size for image mempools.
12600 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12602         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12603         Fixes ##320990.
12605         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12606         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12608 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12610         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12611         free. Fixes #327438.
12613 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12615         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12616         generic instantiations, etc.
12617         <MONO_TYPE_ARRAY>: Likewise.
12619 2007-09-21  Martin Baulig  <martin@ximian.com>
12621         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12622         these structs were never defined.
12623         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12625 2007-09-21  Martin Baulig  <martin@ximian.com>
12627         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12629 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12631         * image.c: removed the guid hash tables: we can get the same info
12632         without the additional memory usage hit (partially fixes also bug #327052).
12634 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12636         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12637         event to handle unloading methods. After the event is called, the
12638         corresponding MonoMethod* must be considered invalid.
12639         * loader.c (mono_free_method): call the new mono_profiler_method_free
12640         event.
12642 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12644         * domain-internals.h: New flag in MonoJitInfo which marks shared
12645         generic methods.  New hash table (shared_generics_hash) in
12646         MonoDomain to keep track of shared generic methods.  Prototypes
12647         for functions to register and lookup shared generic methods.
12649         * domain.c: Support for registering and looking up shared generic
12650         methods via a hash table (shared_generics_hash) in MonoDomain.
12652         * class-internals.h: New exception to signal failure of shared
12653         compilation of a generic method.  New counters for generics
12654         sharing in MonoStats.
12656 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12658         * image.c, metadata-internals.h: don't keep a file descriptor open
12659         for loaded assemblies (bug#325988).
12661 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12663         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12664         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12665         use the corresponding datatypes.
12666         (type_in_image): Update to changes.
12667         (CleanForImageUserData): Simplify.
12668         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12669         Avoid quadratic behaviour in handling the "stolen" list by
12670         separating the filter predicate out, and by prepending the stolen
12671         items rather than appending them.
12672         (steal_ginst_in_image): Likewise.
12673         (mono_metadata_clean_for_image): Update to changes.
12675 2007-09-19  Martin Baulig  <martin@ximian.com>
12677         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12679 2007-09-19  Martin Baulig  <martin@ximian.com>
12681         * mono-debug.c (mono_debug_cleanup): Don't call
12682         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12684 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12686         Fix crash on 'make run-test' in mcs/errors
12687         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12688         Avoid more potential allocations in mono_class_from_mono_type.
12689         (ginst_in_image): Update to changes.
12690         (gclass_in_image): Rearrange slightly.
12692 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12694         * class.c (mono_class_init): Move the code that sets up class->methods to 
12695         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12697         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12698         canonical instance of an inflated generic signature.
12699         (mono_type_create_from_typespec): Remove an invalid free.
12701         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12703 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12705         * domain-internals.h: added a declaration of the
12706         mono_assembly_load_full_nosearch internal function.
12708         * assembly.c (mono_assembly_load_with_partial_name): use
12709         mono_try_assembly_resolve return value properly.
12710         (mono_assembly_load_full_nosearch): copied the function body from
12711         mono_assembly_load_full, without the code to invoke assembly
12712         search hooks.
12713         (mono_assembly_load_full): calls the above new function and if the
12714         assembly is not resolved, invokes the search hooks.
12716         * appdomain.c (mono_runtime_init): restore the global postload
12717         assembly search handlers.
12719 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12721         * class.c (mono_class_init): Make sure class->methods and class->properties
12722         are never NULL in the generics case.
12724         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12726 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12728         * metadata.c (free_generic_class): Disable some code to fix the build.
12730         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12732         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12733         from the image mempool.
12735         * metadata.c (free_generic_class): Free more data from the inflated class.
12737         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12739         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12740         mempool.
12741         (mono_type_create_from_typespec): Ditto.
12743         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12744         MonoImage to the caller.
12745         (mono_init_internal): Save the opened image in a global variable.
12746         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12748         * reflection.c (resolve_object): Fix a leak.
12750         * metadata.c: Fix the freeing of data in the generics caches.
12751         
12752         * metadata.c (free_generic_inst): Comment this out to fix the build.
12753         (free_generic_class): Ditto.
12755         * metadata.c: Free cached generic methods, instantinations and classes when
12756         they are removed from the caches.
12757         (mono_metadata_free_type): Free the type itself.
12759         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12760         places.
12762 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12764         * boehm-gc.c: restrict managed allocs to __thread supporting
12765         architectures.
12767 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12769         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12770         (mono_generic_class_get_class): Fix a leak.
12772         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12773         mono_metadata_free_type ().
12774         (mono_metadata_inflate_generic_inst): Fix a leak.
12776 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12778         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12780         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12781         mempool.
12783         * mono-debug.c (mono_debug_close_image): Fix call to 
12784         g_hash_table_remove ().
12786 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12788         * icall-def.h: redirect all the string ctor to the managed
12789         CreateString () methods.
12790         * string-icalls.c, string-icalls.h: removed dead code for string
12791         ctors and icalls.
12793 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12795         * mono-debug.c: Fix memory leaks.
12797 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12799         * threads-types.h: Implement mono_hazard_pointer_set and 
12800         mono_hazard_pointer_clear macros using do/while(0) to fix
12801         compilation with MSVC.
12802         
12803         Code is contributed under MIT/X11 license.
12805 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12807         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12808         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12810 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12812         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12813         icalls.
12815 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12817         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12818         managed-code allocated as well.
12820 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12822         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12824 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12826         * boehm-gc.c: fixed the build after the AOT changes.
12828 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12830         * wrapper-types.h: Add an ALLOC wrapper type.
12832         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12833         reference managed allocator methods.
12835 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12837         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12838         of Type array and not MonoType, a fix suggested by Hari.
12839         
12840 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12842         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12843         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12844         
12845         Code is contributed under MIT/X11 license.
12847 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12849         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12851 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12853         * image.c (do_mono_image_open): if assembly file fails to open and
12854         MONO_IOMAP is in effect, try to find the path in a
12855         case-insensitive way.
12857         * appdomain.c (mono_runtime_init): do not install postload hooks -
12858         tests show that MS.NET doesn't use anything of that sort to
12859         trigger the AppDomain.AssemblyResolve event.
12860         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12861         made non-static.
12862         (mono_runtime_init): init portability helpers here.
12864         * assembly.c (mono_assembly_load_with_partial_name): if other   
12865         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12866         to resolve the assembly.
12868         * domain-internals.h: added mono_try_assembly_resolve and marked
12869         it as internal.
12871 2007-09-11  Jb Evain  <jbevain@novell.com>
12873         * object-internals.h (MonoReflectionDynamicMethod): add
12874         a `MonoReflectionType *owner` field. The owner is used
12875         * reflection.c:
12876         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12877         method as the class declaring the dynamic method.
12878         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12879         dynamic method to the declaring type of the methodbuilder.
12881 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12883         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12884         rules for calling methods via reflection.
12886 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12888         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12889         Inflate MonoType's.
12891 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12893         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12894         provide a managed method that does fast allocations without needing
12895         a managed->unmanaged transition. Boehm GC implementation currently
12896         enabled for ptrfree objects on sane architectures.
12898 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12900         * marshal.c, marshal.h: exported a couple of useful functions and
12901         added mono_mb_get_label () to easily handle backward branches.
12903 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12905         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12907 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12909         * loader.c (find_method): Fixed the regression introduced while
12910         fixing bug #81466.
12912 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12914         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12915         well.
12916         
12917         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12918         icall.c reflection.c: Pass a MonoGenericContext argument to 
12919         mono_lookup_dynamic_token ().
12921         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12922         #82744.
12923         
12924 2007-09-09  Robert Jordan  <robertj@gmx.net>
12926         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12927         for generic methods.
12929         * object.c (mono_object_get_virtual_method): Handle generic methods.
12930         Fixes bug #78882.
12932         Code is contributed under MIT/X11 license.
12934 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12936         * image.c: fix locking in mono_image_load_file_for_image ().
12938 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12940         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12941         used only as a cache: added an icall to fill it.
12943 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12945         * reflection.h: exposed mono_reflection_free_type_info
12946         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12947         since mono_reflection_bind_generic_parameters makes a copy of it.
12948         * reflection.c (free_type_info): subinfos should be freed.
12949         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12950         made non static.
12951         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12952         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12953         this fixes #82695 and #81726.
12954    
12956 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12958         * process.h, process.c:  added support for user profile/info in
12959           ProcessStartInfo. For now only Windows works.
12961 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12963         * metadata.c: consider the generic arguments when comparing
12964         signatures (bug #82614).
12966 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12968         * cil-coff.h, image.c: updated assembly loader to cope with the
12969         PE32+ 64 bit file format.
12971 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12973         * assembly.c, class.c, domain.c, loader.c: remove useless
12974         inclusion of cil-coff.h.
12976 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12978         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12979         if interface is marked with CoClassAttribute. 
12980    
12981         Code is contributed under MIT/X11 license.
12983 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12985         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12986         if it's seen twice in major collections.
12988 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12990         * sgen-gc.c: big objects are not copied to the gray area, but they
12991         need to be considered for scanning, too, if they are brought alive
12992         by an object ready for finalizations or a survived one.
12994 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12996         * sgen-gc.c: properly account the number of disappearing links when
12997         they are nullified.
12999 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13001         * sgen-gc.c: share the code to scan the registered roots between the
13002         different types of collections.
13004 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13006         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13008 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13010         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13011         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13013 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13015         * security-manager.c (mono_security_manager_get_methods):
13016         LinkDemandSecurityException now has 2 arguments instead of 3.
13018 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13020         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13021         platforms which need it.
13023 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13025         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13026         dtor.
13028 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13030         * threads.c: free the thread static data on thread exit.
13032 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13034         * class.c: walk the hierarchy to find the generic definition for
13035         a class (fixes runtime part of bug #82498).
13037 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13039         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13040         ...
13042         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13044 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13046         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13048 2007-08-24  Robert Jordan  <robertj@gmx.net>
13050         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13052 2007-08-24  Jb Evain  <jbevain@novell.com>
13054         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13055         for byref types.
13057 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13059         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13060         #82286.
13062 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13064         * assembly.c: Fix a warning.
13065         
13066 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13068         * appdomain.c: parse the <runtime> section looking for the probing
13069         element with the 'privatePath' attribute, which sets additional
13070         directories in which the runtime should look for assemblies.
13072 2007-08-23  Robert Jordan  <robertj@gmx.net>
13074         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13075         Fixes #82499.
13077 2007-08-23  Martin Baulig  <martin@ximian.com>
13079         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13080         _mono_debug_init_corlib() and remove it from the header file.
13082 2007-08-23  Martin Baulig  <martin@ximian.com>
13084         * mono-debug-debugger.c
13085         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13086         don't notify the debugger about it.
13088         * mono-debug-debugger.h
13089         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13091 2007-08-23  Robert Jordan  <robertj@gmx.net>
13093         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13094         Code is contributed under MIT/X11 license.
13096 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13098         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13100 2007-08-22  Martin Baulig  <martin@ximian.com>
13102         * mono-debug.c: Store debugging info on a per-domain basis and
13103         free it on domain unload.  Add support for unloading symbol files.
13105         * mono-debug.h
13106         (MonoDebugList): New typedef.
13107         (MonoSymbolTable):
13108         - add `data_tables and `type_table'.
13109         - replace 'symbol_files' and `num_symbol_files' with a
13110           `MonoDebugList *'.
13111         (mono_debug_data_table): Removed.
13112         (mono_debug_list_add): New public function.
13113         (mono_debug_list_remove): New public function.
13114         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13115         (mono_debug_init_2_memory): Renamed into
13116         mono_debug_open_image_from_memory().
13117         (mono_debug_close_image): New public function.
13118         (mono_debug_domain_create): Likewise.
13119         (mono_debug_domain_unload): Likewise.
13120         (MONO_DEBUGGER_VERSION): Bump to 60.
13122         * mono-debug-debugger.h
13123         (MonoDebuggerEvent):
13124         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13125         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13126         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13127         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13128           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13129         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13130           meaning.
13131         (mono_debugger_add_symbol_file): Removed.
13132         (mono_debugger_add_type): Removed.
13133         (mono_debugger_lookup_type): Removed.
13134         (mono_debugger_lookup_assembly): Removed.
13136         * domain.c
13137         (mono_domain_create): Call mono_debug_domain_create().
13138         (mono_init_internal): Call mono_debug_init_corlib().
13140         * assembly.c
13141         (mono_assembly_close): Call mono_debug_close_image().
13143 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13145         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13146         mmap call.
13148 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13150         * sgen-gc.c: ensure section->pin_queue_end is initialized
13151         correctly when non pinning objects in the section have been found.
13153 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13155         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13156         containing a list of directories separated by ':'. MSDN docs say
13157         the directories should be separated with ';'. Part of a bugfix for
13158         bug #81446
13160 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13162         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13163         it should MonoType and not MonoClass.
13165 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13167         * culture-info-table.h : regenerated.
13169 2007-08-20  William Holmes  <billholmes54@gmail.com>
13171         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13172          to call ReplaceFile Kernel32 on windows or in io-layer.
13173         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13174         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13175          as an internal call.
13177         Code is contributed under MIT/X11 license.
13179 2007-08-20  Jb Evain  <jbevain@novell.com>
13181         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13182         and MONO_EXCEPTION_FIELD_ACCESS.
13184         * debug-helpers.[c|h]: new mono_field_full_name function.
13186 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13188         * class.c: Removed class_security_level() and moved it to
13189         security-core-clr.c.
13191         * security-core-clr.c, security-core-clr.h: class_security_level()
13192         is now public and renamed to mono_security_core_clr_class_level().
13193         It also looks for security attributes in the classes a class is
13194         nested in.
13196 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13198         * security-core-clr.c, security-core-clr.h: CoreCLR security
13199         utility functions.
13201         * Makefile.am: Added security-core-clr.[ch].
13203         * security-manager.c, security-manager.h: Functions and enum for
13204         setting and getting the security mode.
13206         * class.c: CoreCLR security checks.
13208 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13210         * icall-def.h, process.c, process.h: implemented icall to get
13211         user/system processor times.
13213 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13215         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13216         reader-lock-free jit_info_table.
13218 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13220         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13222         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13224         * object-internals.h (MonoException): Add missing _data member.
13226 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13228         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13229         checking that only methods with matching qname or fqname are picked
13230         from implemented interfaces.
13232 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13234         * verify.c (do_newarr):added, do type verification of
13235         newarr ops, push the right value on the eval stack.
13236         * verify.c (mono_method_verify): use do_newarr
13239 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13241         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13242         factored the common code into get_boxable_mono_type, which
13243         is now using mono_type_get_full, this fixed byref related tests.
13245 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13247         * class.c: added mono_type_get_full, this function has the same
13248         behavior of mono_class_get_full but the returned MonoType has
13249         all metadata of the associated token in case of a typespec token.
13250         * class.c: added mono_type_retrieve_from_typespec, used by 
13251         mono_type_get_full to retrieve the token type.
13252         * class.c (mono_class_create_from_typespec): changed to use
13253         mono_type_retrieve_from_typespec.
13254         * class.c (mono_ldtoken): changed to use mono_type_get_full
13255         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13256         * class-internals.h: exported mono_type_get_full for internal use.
13258 2007-08-16  Jb Evain  <jbevain@novell.com>
13260         * domain.c (supported_runtimes): add entry for
13261         the 'moonlight' runtime version.
13263 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13265         * verify.c (mono_method_verify): small typo sliped in.  
13267 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13269         * verify.c (do_unbox_value): added, do type verification of
13270         unboxing ops
13271         * verify.c (mono_method_verify): use do_unbox_value
13274 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13276         * verify.c (dump_stack_value): fixed typo, was printing string
13277         instead of object on stack.
13278         * verify.c (do_box_value): moved the byref check up as it leads
13279         to invalid code and should be done earlier.
13280         * verify.c: improved error messages for and ldobj
13282 2007-08-15  William Holmes  <billholmes54@gmail.com>
13284         * marshal.c (emit_marshal_custom): Omit the call to 
13285           marshal_native_to_managed when calling native to managed 
13286           and the argument is specified as an out argument.
13288         Code is contributed under MIT/X11 license.
13290 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13292         * verify.c: fixed the type checks for generics, function pointers and vectors.
13293         Added type verification for ldobj and ldtoken. The verifier
13294         would segfault if header or signature of a method contained references
13295         to non-existant types.
13297 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13299         * marshal.c (cominterop_get_ccw): Patch from
13300         Bill Holmes to no walk up interface hierarchy. 
13301         All parent methods should be present in the interface for COM.
13302    
13303         Code is contributed under MIT/X11 license.
13305 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13307         * marshal.c (emit_marshal_com_interface): Patch from
13308         Bill Holmes to handle COM Interfaces as return values
13309         for native->managed calls.
13310    
13311         Code is contributed under MIT/X11 license.
13313 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13315         * marshal.c (cominterop_get_idispatch_for_object): Implement
13316         for runtime callable wrappers.
13317    
13318         Code is contributed under MIT/X11 license.
13320 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13322         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13323         so 2.0 types are accessible
13326 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13328         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13329         once we load mscorlib.   Due to the order in which we initialize,
13330         the mono_assembly_load_full routine that loads mscorlib did not
13331         load friends.   We now load it once we load the
13332         mono_defaults.internals_visible_class class. 
13334         * assembly.c: Expose the mono_load_friend_assemblies method.
13336 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13338         * verify.c: improved the handling of boxing, better
13339         type checking for unary ops and conversion. Fix bug
13340         regarding managed pointer compatibility checking
13342 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13344         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13346         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13348 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13350         * reflection.c (dup_type): Remove.
13351         * class.c (dup_type): Remove.
13352         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13353         instead of the dodgy 'dup_type'.
13354         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13355         handle the case where 'dup_type' needed the second argument.
13357 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13359         * domain.c: Fix a warning.
13361 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13363         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13364         checking that methods with the same fqname are not overridden
13365         with a method from an ancestor.
13367 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13369         * threads.c (free_thread_static_data_helper): Avoid a crash if
13370         thread->static_data is not yet set.
13372 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13374         * marshal.c: Use correct image when emitting
13375         native wrapper for COM calls.
13376    
13377         Code is contributed under MIT/X11 license.
13379 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13381         * icall-def.h, security.c, security.h :
13382           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13384 2007-08-07  Martin Baulig  <martin@ximian.com>
13386         * mono-debug-debugger.h
13387         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13389         * domain.c (mono_domain_free): Call
13390         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13392 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13394         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13395         * verify.c (in_same_block): code should test if either offset is inside the clauses
13396         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13397         and filter blocks
13399 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13401         * image.c (mono_image_close): Fix a leak.
13403         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13405         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13407 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13409         * domain.c, threads.c, threads-types.h: fix memory retention issue
13410         with thread static variables not being cleared on domain unload.
13411         Reuse thread static slots after domain unload.
13413 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13415         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13416         nullable type.
13418         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13419         now done in mono_runtime_invoke_array.
13421         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13422         receiver is a nullable type.
13424         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13425         generic parameter.
13427 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13429         * marshal.c: Implement COM Objects as return type for 
13430         managed->unmanaged calls. Added Release calls for COM Object
13431         out/return values in managed->unmanaged calls.
13433         Code is contributed under MIT/X11 license.
13435 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13437         * threads.h, threads-type.h: move the hazard pointer declarations
13438         to the private header.
13440 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13442         * file-io.c, appdomain.c: memory leak fixes.
13444 2007-08-02  Dick Porter  <dick@ximian.com>
13446         * socket-io.c
13447         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13448         SO_REUSEADDR setting into io-layer/sockets.c.
13450 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13452         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13453         from Object when called on a generic parameter. Fixes #82211.
13455 2007-08-01  Dick Porter  <dick@ximian.com>
13457         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13458         Fixes bug 79250 yet again.
13460 2007-07-30  Martin Baulig  <martin@ximian.com>
13462         Merged the `debugger-dublin' branch.
13464         * mono-debug.h
13465         (MonoDebugDataTable): New typedef.
13466         (MonoDebugMethodAddressList): New typedef.
13467         (MonoDebugWrapperData): Removed.
13468         (MonoDebugSymbolTable): Removed `current_data_table',
13469         `current_data_table_size', `current_data_table_offset'.
13470         (MonoDebugDataItemType): Moved into mono-debug.c.
13471         (MonoDebugMethodJitInfo): Remove `address'.
13472         (mono_debug_data_table): New global variable.
13473         (mono_debug_lookup_method_addresses): New public function.
13474         (mono_debug_find_method): Take a `MonoMethod *', not a
13475         `MonoDebugMethodInfo *'.
13477         * mono-debug.c: Drop support for the old symbol tables.
13479 2007-06-28  Martin Baulig  <martin@ximian.com>
13481         * mono-debug.c (mono_debug_debugger_version): New public variable.
13483 2007-07-31  William Holmes  <billholmes54@gmail.com>
13485         * metadata.c Changed mono_type_create_from_typespec to not insert
13486           the type into the hash map until after
13487           do_mono_metadata_parse_type has completed.
13488         Fixes Bug #82194
13489         Code is contributed under MIT/X11 license.
13491 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13493         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13494         generic parameter. Fixes #82211.
13496 2007-07-27  Jb Evain  <jbevain@novell.com>
13498         * pedump.c (dump_metadata, dump_metadata_header): dump
13499         versions contained in the metadata header.
13501 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13503         * threads.c: register small_id_table with the GC.
13505 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13507         * threads.c, threads.h, class-internals.h, object-internals.h:
13508         Hazard pointers, to be used by lock-free parallel algorithms.
13510 2007-07-26  Dick Porter  <dick@ximian.com>
13512         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13513         routine on non-windows platforms, as I've not managed to think of
13514         a non-kludgy way of doing this.  Finishes off bug 78739.
13516 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13518         * object.c: properly setup interface_bitmap in proxy vtables.
13520 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13522         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13523         to create unique shadow copy target directories, use the domain's
13524         serial number instead. Each domain gets a unique target directory
13525         that way.
13527         * domain.c (mono_domain_create): added code to increment domain
13528         shadow copy serial number and cache the value in the current
13529         domain structure.
13531         * domain-internals.h (struct _MonoDomain): added a new field -
13532         shadow_serial to hold the serial number used in generation of
13533         shadow-copy directories. This is to make sure that the directory
13534         name is unique for each and every domain created. We avoid a race
13535         condition with overriding assemblies already in use by other app
13536         domains.
13538 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13540         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13541         binding generic parameters.
13543 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13545         * metadata.c (do_mono_metadata_parse_generic_class): Use
13546         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13547         error.
13549 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13551         * loader.c, class-internals.h, reflection.c: removed the per-method
13552         generics hashtable: we use the global one through the call of
13553         mono_class_inflate_generic_method ().
13555 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13557         * class.c, metadata.c, class-internals.h: introduce yet another
13558         generics global cache for inflated methods (fixes 98% of the perf
13559         issue in bug #81806).
13561 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13563         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13564         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13565         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13566         return a MonoGenericInst containing (a copy) of those types.
13567         (mono_metadata_inflate_generic_inst): Update to changes.
13568         (mono_metadata_parse_generic_inst): Likewise.
13569         (mono_get_shared_generic_inst): Likewise.
13570         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13571         (mono_reflection_bind_generic_method_parameters): Likewise.
13572         * metadata-internals.h: Likewise.
13573         * icall.c (free_generic_context): Kill.
13574         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13576         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13577         mono_metadata_type_dup.
13578         * marshal.c (mono_mb_create_method): Likewise.
13580         * metadata.c (mono_metadata_type_dup): Rename from
13581         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13582         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13583         * marshal.c, metadata-internals.h: Update to changes.
13585 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13587         * class.c: fixed a small leak for array classes and removed warning.
13589 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13591         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13592         Return 0x8000000 for return parameters. Fixes #82161.
13594 2007-07-21  Marek Habersack  <grendello@gmail.com>
13596         * appdomain.c (get_shadow_assembly_location): append the current
13597         ticks value to the path. Avoids overwriting the same assemblies by
13598         several threads at the same time.
13600 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13601         and Raja R Harinath  <rharinath@novell.com>
13603         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13604         Simplify slightly.
13605         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13606         property for testing if a method is a generic method definition.
13608 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13610         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13612 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13614         * verify.c: used function from private branch, reverted to the one in class.h 
13616 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13618         * verify.c: a typo slipped in and the code wont compile
13620 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13622         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13623         disabled box instruction as it is doing the wrong thing
13624         improved stack dump messages, now it is easier to debug type related issues
13627 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13629         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13631 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13633         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13634         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13635         grouped with class and valuetype. This change will simply 
13636         the code as it should be handled just like unmanaged pointers.
13638 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13640         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13642 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13644         * verify.c: several stack merge issues fixed, reference comparisons now
13645         check the type size. strict type check now works correctly.
13646         added more uses of IS_MANAGED_POINTER macro.
13647         fixed issues pointed by running the test suite against .net.
13648         
13650 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13652         * class.c, loader.c, class-internals.h: Removed the
13653         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13654         defines.
13656         * icall.c: Better error checking in some internal reflection
13657         methods.
13659 2007-07-18  William Holmes  <billholmes54@gmail.com>
13661         * filewatcher.c : removed unused variable 'filename' in 
13662           ves_icall_System_IO_FSW_SupportsFSW
13664 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13666         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13667         obsolete, removed.
13669 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13671         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13672         
13673         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13675 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13677         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13678         Implement generics support.
13679         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13681         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13682         type_args and method_args arguments.
13683         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13684         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13685         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13687 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13689         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13690           It adds a rootimage parameter to mono_reflection_get_type_internal,
13691           adds new function mono_reflection_get_type_with_rootimage and use
13692           the rootimage to resolve the types instead of the current image
13694 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13696         * culture-info-table.h: Forgot to update after r78304.
13698 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13700         * class.c (mono_class_is_open_constructed_type)
13701         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13703 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13705         * class.c (mono_bounded_array_class_get):  method fails if used with
13706         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13707         avoiding calculating the size for such array as it cannot be instantiated.
13708         Fix bug #82015
13710 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13712         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13713         field.
13714         * metadata.c, reflection.c: Update to changes.
13716 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13718         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13719         mono_class_is_valid_enum, they are used to valide a enum when loading.
13720         * reflection.c: used new functions to throw TypeLoadException when and
13721         invalid enum is build with TypeBuilder. Fixes #82018
13722   
13723 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13725         * object.c: forgot commit of mono_class_setup_methods () to access
13726         iface->methods.
13727         * object-internals.h: added a few more handy fields to
13728         MonoIMTCheckItem.
13730 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13732         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13733         iface->methods.
13735 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13737         * class-internals.h, object-internals.h, object.c: IMT-based
13738         interface invocation core from Massimiliano Mantione
13739         (massi@ximian.com) with a reworked arch-specific interface,
13740         bsearch implementation and a few bugfixes and memory savings by me.
13742 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13744         * class.c (mono_class_create_from_typedef): mono would segfault if 
13745         an enum did not have a __value field. It now throws a TypeLoadException
13746         for such cases. Fix bug #82022
13748 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13750         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13752 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13754         * class.c (mono_class_init): If a class is already inited but has
13755         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13757 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13759         * class.c: Properly handle the case of an unimplemented interface
13760         method.  Fixes: 81673.
13762 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13764         * class-internals.h, object.c: cleanup patch from massi: use
13765         MonoVTable->interface_bitmap since the vtable interfaces offset array
13766         is going away.
13768 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13770         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13771         GetMDStreamVersion icall instead.
13773 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13775         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13776         not use mono_dl_build_path() with a full library name: makes
13777         fallbacks to libgaim and libfam work.
13779 2007-07-06  William Holmes  <billholmes54@gmail.com>
13781         * assembly.c: Added a continue statement in probe_for_partial_name when
13782          parse_assembly_directory_name fails.  Fixes : 82002
13784 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13786         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13787         and added a verification  for TYPEDBYREF.
13788         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13789         make native int interchangeable with int32 and some small cleanup and formating.
13790         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13791         handle byref of byref.
13792         * verify.c (push_local): handle byref of byref.
13793         * verify.c (do_binop): invalid mix of values is unverifiable
13794         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13795         added visibility checks
13796         * verify.c (field related method): added visibility checks
13797         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13799 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13801         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13802         string.
13804 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13806         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13808         * marshal.c (emit_marshal_string): When returning a string from managed code,
13809         allways make a copy even for unicode strings. Fixes #81990.
13811 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13813         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13814         of byref generic inst types (bug #81997).
13816 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13818         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13819         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13821 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13823         * marshal.c (emit_marshal_string): Add support for unicode strings in
13824         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13826 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13828         * verify.c: field load/store are now verified, missing only access checks now
13830 2007-06-28  Martin Baulig  <martin@ximian.com>
13832         * mono-debug.c (mono_debug_debugger_version): New public variable.
13834 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13836         * locales.c: When constructing DateTimeFormat or NumberFormat for
13837         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13838         MonoCultureInfo contructed from the current locale is always
13839         read-only and has UseUserOverride set to true. All MonoCultureInfo
13840         instances returned for GetCultures have both IsReadOnly and
13841         UseUserOverride set to true. Fixes part of bug #81930.
13843 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13845        * icall-def.h: Update System.__ComObject icalls
13846        * marshal.c: Avoid managed transition (and object creation)
13847        when looking up COM interface in RCW.
13848        * marshal.h: Ditto.
13849        
13850        Code is contributed under MIT/X11 license.
13852 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13854         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13855         to avoid crashes during assembly unloading.
13857 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13859         Fix MethodInfo.IsGenericMethodDefinition
13860         * reflection.c (mono_reflection_bind_generic_method_parameters):
13861         Rearrange code to ensure we always uses a generic method definition.
13862         * class.c (mono_class_inflate_generic_method_full): Set
13863         'generic_container' field only for generic method definitions.
13864         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13865         Use presense of 'generic_container' field as indication of being a
13866         generic method definition.
13868 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13870         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13872         * object-internals.h: Reflect changes in the layout of the managed Delegate
13873         class.
13874         
13875         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13876         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13877         runtime memory used by the dynamic method. Fixes #77146.
13879 2007-06-21  Dick Porter  <dick@ximian.com>
13881         * file-io.h: 
13882         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13883         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13884         81767.
13886 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13888         * reflection.c (method_encode_methodspec): Add a tripwire.
13889         * class.c (inflate_generic_type): The fully open generic type is
13890         not the same as the generic type definition.
13892 2007-06-21  Martin Baulig  <martin@ximian.com>
13894         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13896         * mono-debug-debugger.h
13897         (MonoDebuggerBreakpointInfo): Removed.
13898         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13899         (mono_debugger_remove_breakpoint): Likewise.
13900         (mono_debugger_breakpoint_callback): Likewise.
13901         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13903 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13905         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13906         generic type is not the same as the generic type definition.
13907         * class.c (mono_generic_class_get_class): Likewise.
13909 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13911         * icall.c: The second argument to 
13912         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13913         is a MonoType not a MonoClass.
13915 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13917         * verify.c: support for function pointers in the verifier
13919 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13921         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13923 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13925         * assembly.c: removed Mono.Data.SqliteClient from the list of
13926         forward-compatible assemblies as it breaks the ABI (bug #81899).
13928 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13930         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13931         lookup/update with the loader lock.
13932         * reflection.c (mono_class_bind_generic_parameters): No need to
13933         protect mono_metadata_lookup_* with the loader lock.
13934         * class.c (inflate_generic_type): Likewise.
13935         
13936         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13937         on a generic instantiated type.
13939 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13941         *verify.c: produce meanfull error messages on verification error
13942         *verify.c: fixed some cases of verification errors reported as validation errors
13943         *pedump.c: fixed the error name array, now it shows validation errors properly
13944         *verify.h: fixed the contant that should be used for verification errors
13946 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13948         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13949         for bug #77596, 81858 and 80743 (generics data structures on domain
13950         unload).
13952 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13954         Avoid allocating 'MonoGenericContext' on the heap.
13955         * class-internals (_MonoMethodInflated::context): Make field
13956         inline, not a pointer.
13957         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13958         stack.  Use the context embedded within the inflated method as the
13959         hash key, rather than 'new_context'.
13960         * class.c (inflate_generic_context): Simplify.  Return a struct
13961         rather than allocating on the heap.
13962         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13963         doesn't salt away a copy of the context -- simplifying the
13964         lifetime rules of a 'MonoGenericContext *'.
13965         (mono_method_get_context): Return pointer to embedded context.
13966         (setup_generic_array_ifaces): Allocate temporary context on stack.
13967         * reflection.c (inflate_mono_method): Likewise.
13968         (mono_reflection_bind_generic_method_parameters): Likewise.
13969         Use the context embedded within the inflated method as the hash key.
13971         Avoid a source of allocation of 'MonoGenericContext'.
13972         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13973         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13974         * class.c: Update to changes.
13975         (mono_generic_class_get_context): Simplify drastically.  Now just
13976         returns a pointer to the field.
13977         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13978         argument as a const pointer.
13979         (mono_metadata_generic_context_equal): Likewise.
13980         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13981         Update to changes.
13983 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13985         * verify.c improved the handling of brtrue/brfalse, factored out common code
13987 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13989         Kill MonoGenericMethod.
13990         * class-internals.h (MonoGenericContext::method_inst): Rename from
13991         'gmethod' and convert to a MonoGenericInst.
13992         (MonoGenericMethod): Remove.
13993         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13994         * loader.c (method_from_methodspec): Update to changes.  Use a
13995         MonoGenericContext as the key to the hashtable.
13996         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13997         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13998         (mono_metadata_generic_context_hash): Likewise from
13999         'mono_metadata_generic_method_hash'.  Change hash function.
14000         (mono_metadata_load_generic_params): Update to changes.
14001         (mono_get_shared_generic_method): Remove.
14002         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14003         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14004         (inflate_generic_context): Likewise.
14005         (mono_class_inflate_generic_method_full): Likewise.
14006         (setup_generic_array_ifaces): Likewise.
14007         (mono_class_create_from_typespec): Likewise.
14008         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14009         (method_encode_methodspec): Update callsite.
14010         (reflection_methodbuilder_to_mono_method): Update to changes.
14011         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14012         MonoGenericContext as the key to the hashtable.
14013         (inflate_mono_method): Update to changes.
14015         * class-internals.h (MonoGenericMethod::container): Remove.
14016         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14018 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14020         * profiler-private.h, profiler.c, profiler.h: added API to profile
14021         exception events.
14023 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14025         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14027 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14029         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14030         Fixed overflow and underflow not aborting the verification process.
14032 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14034         * class-internals.h (MonoStats): Added stats entries for dynamic
14035         code allocations.
14037 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14039         * loader.c (mono_free_method): Free header->locals and header->clauses.
14041         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14042         dynamic case.
14044         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14046         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14048 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14050         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14051         the tables.
14053 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14055         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14057 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14059         MonoGenericMethod on a diet
14060         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14061         here ...
14062         (_MonoGenericMethod::reflection_info): ... from here.
14063         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14064         Update to changes.
14065         * reflection.c (inflate_mono_method): Likewise.
14066         (mono_reflection_bind_generic_method_parameters): Likewise.
14068 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14070         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14071         *verify.c: factored long ldarg forms to share code with short forms
14073 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14075         *verify.c: fixed code formating factored some duplicate code
14076         into a new function
14078         *verify.h: fixed binary incompatibility introduced earlier
14080         *pedump.c: fixed formating
14082 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14084         Fix assertion when disassembling Mono.C5.dll
14085         * loader.c (method_from_methodspec): Avoid inflating a method
14086         twice with the same context.  If the methodref is inflated, use
14087         the declaring method instead.
14089         * class.c (mono_class_from_generic_parameter): Fix case similar to
14090         bug #81830 handled below, but for method containers.
14092 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14094         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14095         get_shared_generic_class.  Directly inflate the instance.
14096         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14097         (inflate_generic_class): Delete.
14098         (get_shared_generic_class): Delete.  Move setting of
14099         'cached_class' and 'cached_context' ...
14100         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14102         * metadata.c (mono_metadata_lookup_generic_class): Change
14103         signature to take the components of a MonoGenericClass rather than
14104         an allocated MonoGenericClass.  Change semantics to be intern-like.
14105         * reflection.c (mono_class_bind_generic_parameters): Update to
14106         changes.  Make locking region tighter.
14107         * class.c (inflate_generic_class): Update to changes.
14108         (get_shared_generic_class): Likewise.
14109         * metadata-internals.h: Likewise.
14111         * reflection.c (mono_class_bind_generic_parameters): Take and
14112         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14113         (mono_reflection_bind_generic_parameters): Use
14114         'mono_class_bind_generic_parameters' rather than duplicate the code.
14115         * class.c (mono_bounded_array_class_get): Update to changes.
14116         * object-internals.h: Likewise.
14118         * reflection.c (mono_class_bind_generic_parameters): Only support
14119         parameterizing generic type definitions.  Remove support for other
14120         open types.
14122 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14124         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14126         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14127         in the dynamic case.
14129 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14131         * threads.c: When cleaning up thread, reset the Background bit.
14132         Fixes bug #81720.
14134 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14136        * metadata.c: Move variable declarations to top of scope.
14137        * verify.c: Move variable declarations to top of scope.
14139        Code is contributed under MIT/X11 license.
14141 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14143         * reflection.c (mono_class_bind_generic_parameters): Replace
14144         open-coded loop with mono_metadata_inflate_generic_inst.
14146         * class.c (get_shared_generic_class): Don't call
14147         mono_get_shared_generic_inst.  Use the container's own
14148         'class_inst'.
14150         * metadata.c (mono_metadata_load_generic_params): Move
14151         initialization of 'context' field here from ...
14152         * class.c (mono_class_create_from_typedef): ... here, and ...
14153         * loader.c (mono_get_method_from_token): ... here.
14155         * class.c (get_shared_generic_class): Rename from
14156         mono_get_shared_generic_class and make static.
14157         (mono_get_shared_generic_inst): Move to metadata.c.
14158         * loader.c (mono_get_shared_generic_method): Likewise.
14159         * class-internals.h, metadata-internals.h: Update to changes.
14161         Fix #81830
14162         * class.c (mono_class_from_generic_parameter): Don't assume a
14163         generic container owner exists.  Generic containers from monodis
14164         don't have any.
14166 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14168         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14169         * verify.h: new typedefs to returns the non-verifiable status
14170         * verify.c: initial implementation of generics, stack merging and object compatibility check
14172 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14174         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14175         a MonoInternalHashTable again (fixed bug in internal hash table
14176         code).
14178 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14180         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14181         MonoInternalHashTable again (fixed bug in internal hash table
14182         code).
14184 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14186         * class.c, image.c, class-internals.h, domain.c,
14187         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14188         changes.  Have to figure out what makes them break the SWF
14189         regression.
14191 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14193         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14194         a MonoInternalHashTable now.
14196 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14198         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14199         MonoInternalHashTable now.
14201 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14203         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14204         invoke_impl code.
14206         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14208         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14209         dependent trampoline.
14211         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14213         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14215 2007-05-29  Robert Jordan  <robertj@gmx.net>
14217         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14219 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14221         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14223 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14225        * marshal.c: Fix interface lookup loops for
14226        cominterop_get_com_slot_for_method and 
14227        cominterop_get_method_interface. Only need to lookup
14228        if type is a class, else use interface type method is on.
14230        Code is contributed under MIT/X11 license.
14232 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14234         * reflection.c: HasSecurity can be present even if no specially 
14235         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14236         SecurityAttribute). Fix CAS regression tests on buildbot.
14238 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14240        * appdomain.c: Add configure checks for header files.
14241        * image.c: Add configure checks for header files.
14242        * file-io.c: Add configure checks for header files.
14243        * debug-mono-symfile.c: Add configure checks for header files.
14244        * threadpool.c: Add configure checks for header files.
14245        * console-io.c: Add configure checks for header files.
14246        * profiler.c: Add configure checks for header files.
14247        * rawbuffer.c: Add configure checks for header files.
14248        * icall.c: Add configure checks for header files.
14249        * rand.c: Add configure checks for header files.
14250        * socket-io.c: Add configure checks for header files.
14252        Code is contributed under MIT/X11 license.
14254 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14256         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14257         assertion as it breaks the build.
14258         
14259         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14261         * reflection.c (lookup_custom_attr): Make a copy here too.
14263         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14264         dynamic images.
14266         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14267         images.
14269         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14270         info.
14272 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14274         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14275         (load_cattr_value): Ditto.
14277 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14279         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14281 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14283         * threads.c: In "start_wrapper", set apartment_state to MTA if
14284         apartment_state is Unknown and we're running on 2.0 profile or
14285         higher.
14286         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14287         to main method, then set apartment_state to Unknown on 1.0 profile,
14288         and MTA on 2.0 profile.
14290 2007-05-16  Jb Evain  <jb@nurv.fr>
14292         * class-internals.h (MonoDefaults): Add an attribute_class and
14293           customattribute_data_class.
14294         * domain.c (mono_init_internal): Populate them.
14295         * reflection.c: Use them to remove duplicates. Make a vew
14296         MonoClass variables `static'.
14298 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14300         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14301         step in implementing IMT, so that all isinst checks now can go
14302         through the bitmap.
14303         This was needed because vtables for TransparentProxy need to look
14304         like the vtable of the "target" class, so they need to point to
14305         its interface bitmap directly.
14307         * object.c: inside "mono_class_create_runtime_vtable" and
14308         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14310 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14312         * object-internals.h
14313           culture-info.h : added territory field in MonoCulture and
14314           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14315         * locales.c : fill territory field above too.
14316         * culture-info-table.h : regenerated.
14318 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14320         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14321         Fixes #81599.
14323 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14325         * object.c: Always initialize apartment, even if 
14326         there is no custom attributes on entry point.
14327         
14328         Code is contributed under MIT/X11 license.
14330 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14332         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14333         * metadata.c: If no encoding is set, check for unicode
14334         on class.
14335         
14336         Code is contributed under MIT/X11 license.
14338 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14340         * threads.c: Handle if mono_thread_current returns NULL 
14341         
14342         Code is contributed under MIT/X11 license.
14344 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14346         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14347         in start_wrapper. Added mono_thread_init_apartment_state and
14348         mono_thread_cleanup_apartment_state.
14349         * object.c: Initialize thread apartment state on main thread
14350         by checking for STAThreadAttribute on entry point.
14351         * object-internals.h: Add apartment_state field to MonoThread.
14352         * threads-types.h: Add unmanaged definition of 
14353         System.Threading.ApartmentState, MonoThreadApartmentState.
14354         
14355         Code is contributed under MIT/X11 license.
14356         
14357 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14359         * class.c: Fix windows build.
14360         * class-internals.h: Fix windows build.
14361         
14362         Code is contributed under MIT/X11 license.
14364 2007-05-08  Robert Jordan  <robertj@gmx.net>
14366         * process.c (CreateProcess_internal):
14367         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14368         .CreateNoWindow was specified. Fixes #81496.
14370 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14372         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14373         step in implementing IMT, replaced it with two compact arrays
14374         (interfaces_packed and interface_offsets_packed) and a bitmap that
14375         is used for isinst checks (interface_bitmap).
14377         * class.c: (compare_interface_ids): compare function to pass to
14378         bsearch when looking for an interface with a given id.
14379         (mono_class_interface_offset): reimplemented using bsearch on
14380         interfaces_packed, getting the offset from interface_offsets_packed.
14381         (print_implemented_interfaces): utility debugging function.
14382         (setup_interface_offsets): reworked to initialize interfaces_packed,
14383         interface_offsets_packed and interface_bitmap.
14385         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14386         with uses of interfaces_packed and interface_offsets_packed.
14388 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14390         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14391         mono_class_interface_offset prototype to wrap all accesses to
14392         "MonoClass.interface_offsets".
14394         * class.c: Implemented mono_class_interface_offset, and wrapped all
14395         accesses to "MonoClass.interface_offsets".
14397         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14398         "MonoClass.interface_offsets".
14400 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14402         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14403         GetMethodFromHandle overloads (bug #78637).
14405 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14407         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14408         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14410 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14412         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14413         #81498.
14415         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14416         gracefully.
14417         (mono_custom_attrs_from_index): Ditto.
14419         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14420         Fixes #81501.
14422 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14424         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14425         is now allocated from a mempool.
14427 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14429         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14430         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14432 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14434         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14435         mono_loader_clear_error () too late. Fixes #81463.
14437 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14439         * culture-info-table.h : regenerated.
14441 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14443         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14444         is missing.
14446 2007-04-25  Dick Porter  <dick@ximian.com>
14448         * Makefile.am: Put the mingw enforced-optimisation back into the
14449         PLATFORM_WIN32 section.
14451 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14453         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14454         patch.
14456         * image.c (mono_image_load_module): New API function to load a module reference.
14458         * image.c (load_modules): Load modules lazily. Fixes #80812.
14460         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14461         
14462         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14464         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14465         to mono_image_load_module_dynamic.
14467 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14469         * marshal.c: Fix calling convention for CCW on non-windows
14470         platforms. STDCALL on windows, CDECL everywhere else to work 
14471         with XPCOM and MainWin COM.
14472         
14473         Code is contributed under MIT/X11 license.
14475 2007-04-23  Martin Baulig  <martin@ximian.com>
14477         Fix #80969.
14479         * loader.c
14480         (method_from_memberref): Added `gboolean *used_context' argument.
14481         (mono_get_method_from_token): Likewise.
14482         (mono_get_method_full): Don't insert the method in the cache when
14483         `used_context' is true.
14485 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14487         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14489         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14490         create new MonoTypes for returned types.
14491         * class.c (mono_generic_class_get_class): Export mono-internal.
14492         * class-internals.h: Update to changes.
14494 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14496         * threadpool.c, threadpool.h, icall-def.h: patch from
14497         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14499 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14501         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14502         
14503         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14505         * threads.c (mono_thread_get_stack_bounds): New helper function.
14507         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14508         Correctly compute stack bounds when attaching. Fixes #81394.
14510 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14512         * reflection.c: fix handling of doubles in custom attributes
14513         for the arm-fpa format (bug #81368).
14515 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14517         * reflection.c (assembly_add_win32_resources): Mildly relax an
14518         bounds check to let the end pointer point just past the end of the
14519         allocated buffer.  (may fix #81384)
14521 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14523         * culture-info-table.h : regenerated.
14525 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14527         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14528         the thread is aborted early.
14530 2007-04-05  Dick Porter  <dick@ximian.com>
14532         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14533         FindFirstFile()/FindNextFile() to find entries.  This lets the
14534         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14535         81038.
14537         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14538         the parameters of
14539         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14541 2007-04-04  Martin Baulig  <martin@ximian.com>
14543         * debug-helpers.c
14544         (mono_method_desc_full_match): Add support for nested classes.
14546 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14548         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14550 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14552         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14553         waiting for too many threads.
14555 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14557         * environment.c: Fix return value check on uname so we can get the 
14558         executing version on Solaris operating systems.
14560 2007-03-28  Jb Evain  <jbevain@gmail.com>
14562         * class.c (mono_type_get_name_recurse): Complete the
14563         fix for the creation of assembly qualified names for
14564         pointer types. Fixes #81208.
14566 2007-03-27  Dick Porter  <dick@ximian.com>
14568         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14569         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14570         changed.
14572         * threads.c
14573         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14574         the value of ReleaseMutex().
14576 2007-03-27  Dick Porter  <dick@ximian.com>
14578         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14579         in little-endian order, not network endian, so must be converted
14580         to host endian here.  Fixes bug 80593.
14582 2007-03-22  Jb Evain  <jbevain@gmail.com>
14584         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14585         qualified names for pointer types. Fixes #81208.
14587 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14589         * marshal.c: Add support for PreserveSigAttribute. 
14590         
14591         Code is contributed under MIT/X11 license.
14593 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14595         * process.c: Fix endianness issues. Fixes #81126.
14597         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14598         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14600         * image.c (mono_image_lookup_resource): Make this work on big-endian
14601         machines.Change API contract so the caller needs to free the return value.
14602         
14603         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14604         API change.
14605         
14606 2007-03-14  Martin Baulig  <martin@ximian.com>
14608         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14609         mono_type_get_desc() as well.
14611 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14613         * icall.c:  Fix environ access in VS.  
14614         
14615 2007-03-13  Alp Toker  <alp@atoker.com>
14617         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14618         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14619         #63841.
14621 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14623         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14624         circular references among dynamic methods. Fixes #81091.
14626         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14628 2007-03-09  Martin Baulig  <martin@ximian.com>
14630         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14632 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14634         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14635         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14636         
14637         Code is contributed under MIT/X11 license.
14638         
14639 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14641         * loader.c: Reapply patch for bug #79424.
14643 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14645         * metadata.c (mono_type_to_unmanaged): Only convert object to
14646         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14648 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14650         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14651         (and incorrectly set) is_reference field from MonoGenericInst.
14653 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14655         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14656         a little earlier.
14658         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14660         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14662 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14664         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14665         FileOptions.1 value to mean "temporary", map that to
14666         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14668         Fixes 80688
14670 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14672         * appdomain.c: implement MS .Net style shadow copying. Copies of
14673         the assemblies are made in a subdirectory of the dynamic base
14674         directory, the assembly names are preserved.
14675         Copy .mdb and .config files along with the assemblies being shadowed.
14677 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14679         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14680         (emit_marshal_handleref): Ditto.
14682         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14683         on Visual C++. Fixes #80671.
14685 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14687         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14688         for clone operations.
14690 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14692         * marshal.c: Fix warnings.
14694 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14696         * loader.c: allow case-insensitive matching of the dll name
14697         in dllmap handling when prefixed with "i:".
14699 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14701         * threads.c: Fix #ifdef for dummy_apc function for VS.
14703 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14705         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14707 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14708         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14709         giving precedence to the methods with a fully qualified name
14710         (InterfaceName.MethodName) when building the interface sections
14711         of the vtable.
14713 2007-02-16  Dick Porter  <dick@ximian.com>
14715         * threadpool.c (append_job): Fix fast-path array handling, so it's
14716         less likely the array will grow exponentially when the load is
14717         heavy.
14719 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14721         * metadata-internals.h, loader.c: fix dllmap lookup order
14722         for non-function maps, too, and prepare for fallback code.
14724 2007-02-12  Robert Jordan  <robertj@gmx.net>
14726         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14727         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14728         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14729         GlobalFree. Fixes a part of bug #77075.
14731 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14733         * loader.c: implemented typedef parent in field memberref.
14735 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14737         * marshal.c: Fix warnings and remember to call Release on
14738         IUnknown of RCW.
14739         
14740         Code is contributed under MIT/X11 license.
14742 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14744         * class-internals.h: Add MonoHandleRef definition, and
14745         handleref_class to mono_defaults. 
14747         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14748         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14750         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14751         (do nothing on this stage)
14752         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14753         (emit_marshal_handleref): New method, used for argument handling
14754         of HandleRefs. 
14756 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14758         * class.c (mono_class_setup_parent): Lazily init com types.
14759         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14760         init com types.
14761         * object.c (mono_remote_class_vtable): Lazily init com types.
14762         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14763         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14764         * domain-internals.h: Expose mono_init_com_types.
14765         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14766         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14767         Add support for COM Callable Wrapper marshalling.
14768         * marshal.h: Add icall definitions.
14769         * gc.c: Handle freeing of CCWs in finalizer code.
14770         
14771         Code is contributed under MIT/X11 license.
14773 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14775         * reflection.c: changed all the signature encoding code to use
14776         a variable-sized buffer.
14778 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14780         * marshal.c: locking fixes: never take the loader lock
14781         or other runtime locks when holding the marshal lock
14782         (fixes bug#80664).
14784 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14786         * marshal.c: make the delegate function pointer mapping
14787         work for the moving GC.
14789 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14791         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14792         for bug #80618.
14794 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14796         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14797         gmodule.
14799 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14801         * threadpool.c: made the code moving-GC safe.
14803 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14805         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14806         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14807         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14808         warning cleanup.
14809         * reflection.c: warning cleanup, some threading and moving GC fixes.
14811 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14813         * class.c, loader.c: create the needed Set/Get/Address array methods
14814         as well as the .ctors in mono_class_init (), fixes bug #80567.
14816 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14818         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14819         we doesn't decrease its alignment. Should fix the sparc build.
14821 2007-01-24  Dick Porter  <dick@ximian.com>
14823         * socket-io.c
14824         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14825         Create the returned object if we need to ignore an unsupported
14826         socket option.  Fixes a segfault reported by Atsushi.
14828 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14830         * class.c, object.c: restrict GC-tracked fields to
14831         UIntPtr fields used inside corlib, so we provide better
14832         type info to the GC and also allow broken packing as in
14833         bug #80580.
14835 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14837         * sgen-gc.c: removed duplicated function.
14839 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14841         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14842         value that means that the value is not supported, but that we
14843         should not return a failure, but instead report this as a
14844         successful operation.
14846 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14848         Fix tests/bug79956.2.il
14849         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14850         (mono_generic_class_get_class): If the generic definition in an
14851         enum, copy over other fields related to it.
14853 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14855         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14856         genericinst enums (bug #79215).
14858 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14859         * class.c: Fix bug 80307.
14861 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14863         * image.c: if the file table is not present, try to load
14864         all the modules, since we don't have info about them
14865         having or not metadata (bug #80517).
14866         * assembly.c: allow mono_assembly_load_references () to
14867         work for netmodules.
14869 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14871         * image.c, metadata-internals.h, object.c: execute module
14872         cctors when running on the 2 runtime if present (bug #80487).
14874 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14876         * icall.c: optimized InitializeArray() on bigendian.
14878 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14880         * icall.c: fix for the broken ARM FPA double format.
14882 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14884         * icall.c: handle endian issues for r4 and r8 types, too, in
14885         the InitializeArray() icall.
14887 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14889         * loader.c (mono_loader_error_prepare_exception): Clear the error
14890         once we have extracted the information from it, do this before we
14891         call into the JIT's class loading mechanisms.
14893         * object.c (mono_class_create_runtime_vtable): Do not clear the
14894         loader error before calling mono_class_get_exception_for_failure
14895         as the loader error is needed inside
14896         mono_class_get_exception_for_failure to throw the error (thinko).
14898         Fixes #80521
14899         
14900 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14902         * reflection.c: align fields rva data so it's faster to load at
14903         runtime.
14905 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14907         Prepare to simplify GenericMethod handling.
14908         * class-internals.h (mono_method_get_context): New accessor function.
14909         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14910         rather than directly accessing '->context' field.
14912         * class-internals.h (_MonoGenericParam.method): Move ...
14913         (_MonoGenericContainer): ... here.  Add into union with klass field.
14914         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14915         Update to changes.
14917 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14919         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14920         the wrapper type enum and reduce relocations.
14922 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14924         * reflection.c (inflate_mono_method): Reuse method instantiation
14925         from the generic method, if available.
14927 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14929         * marshal.c (emit_marshal_variant): Fix conv_arg
14930         type in last commit, based on whether parameter is byref.
14931         
14932 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14934         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14935         marshalling.
14936         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14937         MONO_TYPE_OBJECT back for VARIANT support.
14939 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14941         * marshal.c, marshal.h, icall-def.h: Implement 
14942         Marshal.ReAllocCoTaskMem.
14944 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14946         * marshal.c: memory retention fixes: use the proper
14947         image cache for runtime_invoke method lookups.
14949 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14951         * mempool.c: added code to help debug mempool allocations.
14953 2007-01-11  Dick Porter  <dick@ximian.com>
14955         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14956         support (experimenting with faking it with IP_MTU_DISCOVER for
14957         systems that don't have IP_DONTFRAGMENT.)
14958         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14959         icall.
14961         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14963         * socket-io.h: Add new fields to MonoSocketAsyncResult
14964         corresponding to the new ones in Socket.cs.
14966 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14968         Fix IronPython regression mentioned in #80249
14969         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14970         'cached_context' field, since it may have been initialized as a
14971         side-effect of metadata parsing.
14973         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14974         (_MonoGenericClass.cached_class): Move here and rename from lone
14975         remaining field of ...
14976         (_MonoInflatedGenericClass): ... this.  Remove.
14977         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14978         to changes.
14980         Fix mcs/tests/test-128.cs regression.
14981         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14982         2007-01-10 change below.
14983         [MONO_TYPE_OBJECT]: Recurse into array case.
14985 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14987         * class-internals.h (mono_get_inflated_generic_class): Remove.
14988         * class.c (mono_get_inflated_generic_class): Remove.
14989         (mono_generic_class_get_class): Rename from
14990         mono_class_create_generic.
14991         (mono_class_from_mono_type) [GENERICINST]: Use it.
14992         * reflection.c, metadata.c: Update to changes.  Use
14993         'mono_class_from_mono_type'.
14995 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14997         * reflection.c: use passed type when encoding an array element
14998         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15000 2007-01-09  Robert Jordan  <robertj@gmx.net>
15002         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15003         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15004         Fixes bug #80392.
15006 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15008         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15010         * object.c (set_value): Avoid aliasing between type->data.klass
15011         and type->data.generic_class.
15013         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15015 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15017         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15018         between type->data.klass and type->data.generic_class.
15020 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15022         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15023         value in out parameters.
15025 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15027         Simplify invariant for MonoGenericClass::klass field.
15028         * class.c (mono_class_create_generic): Verify 'klass' is null.
15029         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15030         initialize 'klass' field.
15032 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15034         Ongoing work to avoid redundant data and simplify invariants.
15035         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15036         'generic_class', and change type to a GenericInst.
15037         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15038         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15040 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15042         * class.c : skip io-layer under PLATFORM_WIN32.
15044 2007-01-03  Tor Lillqvist  <tml@novell.com>
15046         Fix #80305: In a bundled executable, look in the bundled exe
15047         assembly to determine the runtime version. Add the possibility to
15048         bundle also the machine.config file.
15049         
15050         * assembly.c (mono_assembly_open_from_bundle): Make
15051         non-static. Allow being called even if we have no bundled
15052         assemblies, and return NULL right away in that case.
15054         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15055         here.
15057         * domain.c (app_config_parse): Take an assembly exe file name as
15058         parameter instead of a config file name. Check for a bundled
15059         config file for that assembly by calling
15060         mono_config_string_for_assembly_file() (see below) before looking
15061         for one in the file system.
15062         (get_runtimes_from_exe): Corrsponding change to call of
15063         app_config_parse().
15064         (get_runtimes_from_exe): Check for bundled assembly exe file first
15065         by calling mono_assembly_open_from_bundle(). If no bundled
15066         assembly exe file is found, call mono_image_open() as before to
15067         look it up in the file system.
15069         * mono-config.c: Add variable bundled_machinec_onfig.
15070         (mono_config_string_for_assembly_file): New function.
15071         (mono_config_for_assembly): Move code snippet that looks for a
15072         bundled assembly .config file into the above new function. Call
15073         it.
15074         (mono_register_machine_config, mono_get_machine_config): New
15075         functions to set and retrieve
15077         * assembly.h: Declare mono_register_machine_config().
15079         * mono-config.h: Declare mono_get_machine_config() and
15080         mono_config_string_for_assembly_file().
15082         * icall.c: No declaration of environ necessary on Win32. It is
15083         declared (as a macro expanding to a function call) in stdlib.h.
15084         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15085         New internal mono function. Returns the value of
15086         mono_get_machine_config() as a Mono string.
15088         * icall-def.h: Add get_bundled_machine_config().
15090 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15092         Remove redundant field
15093         * class-internals.h (_MonoGenericContext.container): Remove field.
15094         * loader.c (mono_method_get_signature_full): Don't parse a
15095         "container" for a signature parse when the signature is inflated
15096         immediately.
15097         (method_from_methodspec): Likewise, for a generic_inst.
15098         * class.c, metadata.c, reflection.c: Update to changes.
15100 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15102         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15103         'cached_context', and change semantics -- it starts off NULL, and
15104         is initialized on demand.
15105         * class.c (mono_generic_class_get_context): New accessor to
15106         replace 'context' field accesses.
15107         (mono_class_get_context): New helper.
15108         (*): Update to changes.
15109         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15111 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15113         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15114         before the memcpy.   Fixes Marshal2 regression.
15116 2007-01-02  Jb Evain  <jbevain@gmail.com>
15118         * blob.h: add a MONO_TYPE_ENUM definition
15119         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15120         fix the encoding of arrays of enums in custom attributes.
15122         Fixes #79666.
15124 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15126         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15127         string is null terminated, but only cut the string short if it
15128         overflows the buffer.   
15129         
15130         (mono_string_to_byvalstr): Also fix this routine.   The code here
15131         was not properly terminating a string (it was only terminated
15132         because of the previous catch-all memset). 
15134         I left the memset, because I do not know if applications expect
15135         the runtime to clear this region. 
15137         Fixes #79944.
15139         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15140         Clear the error before returning to unmanaged code to prevent the
15141         runtime from being confused later on (fixes  80420).
15142         (ves_icall_type_from_name): Always call mono_loader_clear_error
15143         after parsing a type that could have failed.
15144         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15146         * loader.c (mono_loader_clear_error): Fix indentation.
15148 2006-12-28  Martin Baulig  <martin@ximian.com>
15150         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15152 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15154         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15155         getting a token for an EnumBuilder.
15157 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15159         * reflection.c: be more careful in case resource generation
15160         fails to create the data array.
15162 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15164         * sgen-gc.c: write barrier for clone and fix unregister handles.
15166 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15168         * reflection.c: some fixes needed in the generics code for the moving GC.
15170 2006-12-22  Robert Jordan  <robertj@gmx.net>
15172         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15173         account. Fixes bug #80299.
15175 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15177         Fix WaitHandle usage in delegates.
15178         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15179         * object.c (mono_wait_handle_new): Use the property set method to
15180         initialize the handle.
15181         (mono_wait_handle_get_handle): New.
15182         * threadpool.c (mono_async_invoke): Use it.
15183         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15184         Likewise.
15185         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15187 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15189         * marshal.c (emit_marshal): Call emit_marshal_variant and
15190         emit_marshal_com_interface when applicable.
15191         (emit_marshal_variant, emit_marshal_com_interface): Add
15192         methods for this case and remove if's from emit_marshal_object.
15193         
15194 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15196         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15198 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15200         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15201         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15202         and GlobalFree on Windows. Remove FIXME.
15204 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15206         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15207         implementation for managed objects.
15209 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15211         * object.c: implemented code to be used for checking
15212         that no reference field overlaps with non-references.
15214 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15216         * threadpool.c: fix queue code to be compatible with the
15217         moving GC.
15219 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15221         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15222         in structures by throwing ArgumentNullException.
15224         (emit_marshal_safehandle): Also when they are null parameters.
15226         (emit_marshal_safehandle): Add support for ref
15227         SafeHandles parameters
15229 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15231         * profiler.c: updated to use the mono-dl API instead of
15232         gmodule.
15234 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15236         * profiler.c: updated to use the mono-dl dynamic loading
15237         API instead of gmodule.
15239 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15241         * profiler.c: use readlink, older versions of glib don't have
15242         g_file_read_link ().
15244 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15246         * profiler.c: try to detect the path to mono if libc fails to provide
15247         a useful name (bug #80286).
15249 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15251         Fix #80242
15252         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15253         instance, use the generic type definition instead.
15254         (ves_icall_Type_GetNestedTypes): Likewise.
15255         * class.c (mono_class_create_generic): Always set the
15256         nested_classes of a generic instance to NULL, even if the generic
15257         type definition has nested types.
15259 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15261         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15262         and fix on Linux.
15263         
15264 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15266         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15267         my arguments were in the wrong order.   I also fixed the Windows
15268         version which seems to have had the same issue.
15270         (mono_free_bstr): On Unix, this is g_free.
15271         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15272         conversions (for the tests in corlib to pass).
15274 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15276         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15277         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15278         exception if a ref SafeHandle in a struct has changed).
15279         
15280         (emit_struct_conv): Do not perform layout checks for classes
15281         derived from SafeHandle, as those are specially handled. 
15283         (emit_object_to_ptr_conv): Add support for
15284         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15286         (emit_marshal_safehandle): Implement conversion of return values
15287         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15288         
15289         * threads.c: WaitHandle now is compiled with two different handles
15290         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15291         for 2.0.
15292         
15293         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15294         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15295         these routines to cope with both kinds of fields.
15297 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15299         * metadata.c (mono_type_to_unmanaged): Handle the case where
15300         type->data.klass is a SafeHandle, and in that case, return the
15301         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15302         MONO_MARSHAL_CONV_SAFEHANDLE. 
15304 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15306         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15307         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15308         calling emit_marshal_object.
15310         (emit_marshal_safehandle): Implement marshalling of
15311         SafeHandle parameters (no ref support yet).
15313         (MarshalAction): Document the defines as I implement
15314         them for SafeHandle.
15316         (emit_marshal_object): indentation police.
15318         * class-internals.h: Define MonoSafeHandle.
15319         Add safehandle_class to MonoDefaults type.
15321         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15322         list of classes to check for fields. 
15324         * domain.c (mono_init_internal): Add SafeHandle to the list of
15325         mono_defaults loaded.
15327 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15329         Fix #80253
15330         * reflection.c (mono_reflection_bind_generic_parameters): If the
15331         generic type definition is a type builder, ensure that it is fully
15332         initialized before instantiating it.  Kill some dead code.
15334 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15336         * object.c: clear the loader_error () before loading
15337         more metadata stuff (bug #80258).
15339 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15341         * icall.c, icall-defs.h: type modifiers icalls for
15342         parameters and properties.
15344 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15346         * object.c, icall.c: fixed warnings.
15348 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15350         * marshal.c: fixed a couple of leaks and coding style in a few places.
15352 2006-12-08  Dick Porter  <dick@ximian.com>
15354         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15355         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15356         80173.
15358 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15360         * process.c: ProcessStartInfo may have only filename set and
15361         arguments can be NULL.
15363 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15365         * icall.c: fix leak found by Robert Jordan.
15367 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15369         * marshal.c, marshal.h: generate managed method to access an element
15370         of a multi-dimensional array.
15372 2006-11-30  Paolo Molaro (lupus@ximian.com)
15374         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15376 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15378         * icall.c: back out GetFields () fix until the serialization code is
15379         fixed to not depend on the incorrect behaviour.
15381 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15383         * profiler.c: provide defaults if none are set.
15385 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15387         * Makefile.am, attrdefs.h: new public header file with
15388         constants for attributes for use by embedders.
15390 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15392         * icall.c: GetFields () fix for bug #80064.
15394 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15396         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15397         removed long unused icalls.
15399 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15400   
15401         * marshal.c: 
15402                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15403                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15404                 can be generated without a delegate class.
15405                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15406         
15407         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15409 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15411         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15412         #80069.
15414 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15416         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15417         icall-def.h: added icalls needed by System.GC.
15419 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15421         * loader.c: ensure the class in catch clauses is handled
15422         correctly for generics methods (fixes bug#79980).
15424 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15426         * monitor.h, monitor.c: added mono_locks_dump () function
15427         to help debug deadlocks involving managed locks.
15429 2006-11-13  Dick Porter  <dick@ximian.com>
15431         * file-io.c (get_file_attributes): If the file is a symlink try
15432         and get the stat data for the target, but also add the
15433         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15434         the specs for the windows symlink support, but will probably have
15435         to be reworked when I have test data from a vista machine.  Fixes
15436         bug 79887.
15438 2006-11-13  Dick Porter  <dick@ximian.com>
15440         * gc.c (mono_domain_finalize): 
15441         * marshal.c (mono_delegate_begin_invoke): 
15442         * threadpool.c (socket_io_init, mono_thread_pool_init)
15443         (mono_thread_pool_finish): 
15444         * monitor.c (mono_monitor_try_enter_internal): 
15445         * threads.c (mono_thread_resume, mono_thread_init)
15446         (mono_thread_suspend_all_other_threads)
15447         (mono_thread_execute_interruption): 
15448         * appdomain.c (mono_domain_unload): Check for NULL error returns
15449         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15450         75733.
15452 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15454         * process.c
15455         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15456         Only close the handle if the value of the handle is not
15457         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15458         robust.
15460         Improvement for #75733, so that we do not run into this problem. 
15462         
15463         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15464         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15465         internal variables.  Fixes #79462 
15466         
15468 2006-11-09  Dick Porter  <dick@ximian.com>
15470         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15471         Use poll() not select().  Fixes bug 79397.
15473 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15475         Fix #79872
15476         * assembly.c (mono_assembly_load_from_full): Check that the given
15477         image has an assembly manifest.
15479 2006-11-09  Ankit Jain  <jankit@novell.com>
15481         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15482         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15483         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15485 2006-11-07  Dick Porter  <dick@ximian.com>
15487         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15488         Put the old resolver behaviour back for pre-2.0 profiles.
15490 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15492         * threadpool.c: precise GC and locking fixes.
15494 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15496         * class.c: don't load types that have an explicit unaligned
15497         managed reference. Provide better info in the TypeLoad exception.
15498         Part of the fix for bug #79744.
15499         * object.c: use the correct check for class type load issues.
15501 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15503         * class.c: enforce alignment of fields with managed references
15504         even when Pack=1 is forced by the user (bug #77788).
15506 2006-11-03  Dick Porter  <dick@ximian.com>
15508         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15509         If the address reverse lookup fails, return it as the hostname
15510         anyway.  Fixes bug 79721.
15512 2006-11-03  Dick Porter  <dick@ximian.com>
15514         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15515         Fix build on Windows.
15517 2006-11-02  Dick Porter  <dick@ximian.com>
15519         * icall-def.h: 
15520         * object-internals.h: 
15521         * exception.c (mono_get_exception_thread_interrupted): 
15522         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15523         Fixes bug 74525.
15525         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15526         Check for pending Thread.Interrupt.
15528 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15529         * loader.c: Fixed bug 79684.
15531 2006-10-27  Dick Porter  <dick@ximian.com>
15533         * file-io.c (get_file_attributes): Force symlinks to directories
15534         to be returned as a regular file.  Fixes bug 79733.
15535 2006-10-26  Dick Porter  <dick@ximian.com>
15537         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15538         CreateFile to open a directory then we need to set the
15539         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15541 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15543         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15544         friends.
15546 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15548         * sgengc.c: small cleanup of timer code.
15550 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15552         * sgen-gc.c: fix some warnings and start adding support for
15553         complete object removal on domain unload.
15555 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15557         * assembly.c: build_assembly_name should not consider a version
15558         number without build or revision number invalid. Fixes bug #79715.
15560 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15562         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15563         call kernel32 function OutputDebugString directly.
15564         
15565         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15566         
15567 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15569         * reflection.c: small cleanup, using a function to insert a MonoString
15570         in the string heap.
15572 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15574         * reflection.c: moving GC fixes.
15576 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15578         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15579         all the objects with finalizers belonging to an unloading appdomain.
15581 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15583         * sgen-gc.c: added ability to allocate even when the nursery is fully
15584         pinned and fixed a couple of bugs.
15586 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15588         * threads.h: Revert the last change for now.
15590         * threads.h (mono_thread_get_pending_exception): Rename this to
15591         mono_thread_get_undeniable_exception ().
15593 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15595         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15596         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15597         when fname does not refer to valid assembly. This result in a more
15598         meaningful error message.
15599         * exception.c: added mono_get_exception_bad_image_format2 which 
15600         constructs a BadImageFormatException using the ctor taking a custom
15601         message and the file name. Passing in a NULL msg results in a default
15602         message.
15603         * exception.h: define mono_get_exception_bad_image_format2 function.
15604         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15605         when file name pointed to an invalid IL image. Use 
15606         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15607         as this results in a more meaningful error message.
15609 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15611         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15612         #79465.
15614 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15616         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15617         consistency with the other _size functions.
15618         (mono_type_stack_size): Ditto.
15620         * class.c object.c icall.c: Fix warnings caused by the above change.
15622         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15624         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15626         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15628 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15630         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15631         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15632         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15633         threadpool.h, threads-types.h: mark more internal functions.
15635 2006-10-11  Dick Porter  <dick@ximian.com>
15637         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15638         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15639         reproduce the bug even before applying the fix.)
15641 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15643         * reflection.c: allow retrieving attributes for arguments in generic
15644         methods (bug #79241).
15646 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15648         * debug-mono-symfile.c: properly check fopen () result (found by
15649         coverity).
15651 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15653         * reflection.c: make error message clearer and fixed two
15654         issuelets found by Coverity.
15656 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15658         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15660 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15662         * object-internals.h, gc-internal.h, profiler-private.h:
15663         mark internal functions.
15665 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15667         * reflection.c: put data in the text section.
15668         * icall.c: recognize more types in type_from_typename ().
15669         * process.c, marshal.c: added some GC FIXMEs.
15671 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15673         * loader.c: check for NULL before initializing.
15675 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15677         * gc.c (finalizer_thread): Use a non-alertable wait here.
15679         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15680         until the correct solution is found.
15682 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15684         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15685         modules with no metadata. Fixes #79596.
15687         * image.c (load_metadata_ptrs): Put back the error message when
15688         the #- heap is encountered since the support is not complete yet.
15690 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15692         * gc.c: do not allow the user to SuppressFinalize () a
15693         delegate because it would leak the trampoline if present.
15695 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15697         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15698         PropertyPtr table.
15700 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15702         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15704         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15706         * row-indexes.h: Add definitions for *Ptr tables.
15708         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15710         * metadata.c (mono_metadata_translate_token_index): New helper function to
15711         translate table indexes used in uncompressed metadata.
15712         (mono_metadata_decode_table_row): Ditto.
15713         (mono_metadata_decode_table_row_col): Ditto.
15715         * metadata.c: Add table schema for *Ptr tables.
15717         * class.c loader.c: Use the new helper function to access the affected metadata
15718         tables.
15719         
15720         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15721         #38532.
15722         
15723 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15725         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15726         sequences which can be unbounded in size. Fixes #79583.
15728 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15730         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15731         static initialization.
15733         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15735         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15737         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15739         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15740         ctor fails, i.e. throw the same exception on subsequent accesses.
15741         
15742 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15744         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15745         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15746         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15747         Handle marshalling of interfaces and VARIANTs contained in structs.
15748         
15749         Code is contributed under MIT/X11 license.
15750         
15751 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15753         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15754         
15755         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15756         mempool.
15758 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15760         * console-io.c: ignore previous SIGINT handler.
15762 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15764         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15765         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15766         #79460, #79461, #79485.
15768         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15770         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15771         #79217.
15773 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15775         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15776         could be generated from it.
15778 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15780         * rand.c: fix read loop to correctly handle EINTR.
15782 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15784         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15785         internal calls are defined to keep methods closer to the declaring
15786         type and allow a significant reduction in runtime relocations and
15787         memory usage.
15789 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15791         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15792         exception message to have FileNotFoundException use the default
15793         assembly load error message. Fixes bug #79426.
15794         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15796 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15798         * threadpool.c: (start_thread_or_queue) use the root domain when
15799         creating the thread instead of the async object one.
15801 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15803         * class.c, object.c, class-internals.h, reflection.c:
15804         for arrays, store element_size inside MonoClass (speedup
15805         for array object creation).
15807 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15809         * icall.c: fixed CodeBase to use the file name and not the module
15810         name (bug #79365).
15812 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15814         * mono-debug.c, mono-debug.h: export find_method as
15815         mono_debug_find_method ().
15817 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15819         * debug-helpers.c, class-internals.h: added a few functions useful
15820         when debugging under gdb.
15822 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15824         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15825         characters that need special handling.
15827 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15829         * mono-config.c: make the os/cpu specification more flexible,
15830         allowing lists and negation.
15832 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15834         * marshal.c: COM Interop fixes. Handle case where method->klass.
15835         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15836         calling convention on non-windows platforms. This is for
15837         compatibility with XPCOM and MainWin COM.
15838         
15839         Code is contributed under MIT/X11 license.
15840         
15842 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15844         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15845         correctly. Fixes #79217.
15847         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15849 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15851         * mono-config.c: allow both an os and cpu attribute for dllmap
15852         and dllentry elemnets to enable a single config file to be used
15853         for multiple architectures.
15855 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15857         * loader.c: MonoLoaderError was cleared too soon on load failure.
15858         Fixes bug #79424.
15860 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15862         * icall.c: use the defining class vtable when accessing a
15863         static field, not a pobblibly derived class.
15865 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15867         * icall.c string-icalls.c: Remove references to unicode.h.
15869         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15871         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15873         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15874         indicating the image where custom marshaller types should be looked up.
15875         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15876         custom marshallers, instead of corlib. Fixes #79425.
15878 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15880         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15882 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15884         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15885         Implement Environment.ProcessorCount.
15886         
15887         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15888         Implement Environment.ProcessorCount.
15889         
15890         * icall.c: 
15891         Add Environment.ProcessorCount icall.
15892         
15893         Patch by Jason McFall.
15895 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15897         * assembly.c: don't append .exe/.dll when the filename already contains
15898         one of those extensions.
15900 2006-09-12  Martin Baulig  <martin@ximian.com>
15902         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15903         to array interfaces.
15905 2006-09-11  Martin Baulig  <martin@ximian.com>
15907         * reflection.c (mono_image_build_metadata): Create the
15908         MethodImpl's after emitting all types and methods, so we don't
15909         need another fixup pass for them.
15911 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15913         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15914         change.
15916 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15918         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15919         unload.
15921 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15923         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15924         args is not set. Fixes #78926.
15926 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15928         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15930         * image.c (load_class_names): Move this to class.c, and rename it to 
15931         'mono_image_init_name_cache'.
15932         (load_modules): Fix a warning.
15934         * class.c icall.c image.c: Initialize image->name_cache lazily.
15936         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15937         on its name using information in the AOT file.
15939         * class.c (mono_class_from_name): Use the new hook function.
15941 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15943         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15944         correctly.
15946         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15947         Fixes #79289.
15948         
15949 2006-09-06  Martin Baulig  <martin@ximian.com>
15951         * icall.c (mono_lookup_internal_call): Small fix.
15953 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15955         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15956         double g_free.
15958 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15960         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15961         when --debug is specified.
15963 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15965         * class.c (setup_generic_array_ifaces): Fix a warning.
15967 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15969         * Temporarily remove the patch to assemly.c that checks the
15970         assembly versions as it breaks our gacutil.
15972 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15974         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15976         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15977         a net 1.0 runtime.
15979         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15980         created using the default ctor. Fixes #79152.
15981         (mono_string_builder_to_utf16): Ditto.
15983 2006-09-01  Martin Baulig  <martin@ximian.com>
15985         Fix handling of the generic array interfaces.
15987         * class-internals.h
15988         (MonoDefaults): Removed `generic_array_class' and added
15989         `generic_ilist' class.
15991         * class.c
15992         (mono_bounded_array_class_get): Add the new generic array interfaces.
15993         (setup_generic_array_ifaces): New static method; create vtable
15994         entries for each method in the generic array interfaces.
15996         * metadata.c
15997         (select_container): Allow "parent-less" generic methods.
15999         * marshal.c
16000         (mono_marshal_get_generic_array_helper): New public method.
16002         * icall.c
16003         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16004         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16005         moved the interncall into System.Array.
16007 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16009         A few more cases of avoiding work on types with ->byref set.
16010         Has the real fix for #79238
16011         * icall.c (is_generic_parameter): New helper.
16012         (ves_icall_Type_GetGenericParameterPosition): Use it.
16013         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16014         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16015         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16016         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16017         reference types.
16018         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16019         reference types.
16020         (ves_icall_Type_get_IsGenericInstance): Likewise.
16021         (ves_icall_Type_get_IsGenericType): Likewise.
16023 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16025         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16026         class if possible.
16028         * mempool.h (mono_mempool_get_allocated): New helper function.
16030         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16031         change.
16033         * mempool.c: Fix warnings and the calculation of stats.
16035         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16037         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16039         * loader.c (mono_get_method_from_token): Update method_count stat.
16041         * class-internals.h (MonoStats): Add some stats.
16043 2006-08-31 Robert Jordan  <robertj@gmx.net>
16045         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16046         with managed variants.
16047         All code is contributed under the MIT/X11 license.
16048         
16049 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16051         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16052         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16054         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16056         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16057         with cycles in classes.
16059         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16061         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16062         missing a [MarshalAs] directive. Fixes #79203.
16064         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16065         klass->marshal_info. Fixes #79217.
16067 2006-08-30  Martin Baulig  <martin@ximian.com>
16069         Committing a patch from Joachim Ante <joe@otee.dk>:
16070         Add support for binary data symbol stores.
16072         * debug-mono-symfile.c
16073         (mono_debug_open_mono_symbol_file): Renamed into
16074         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16075         arguments.
16077         * mono-debug.c
16078         (mono_debug_open_image): Added `raw_contents' and `size' args.
16079         (mono_debug_init_2_memory): New public function.
16081 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16083         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16085 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16087         * appdomain.c: implement support for ShadowCopyFiles.
16089 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16091         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16092         when value is NULL (and should remove CID #51).
16094 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16096         * image.c: moved 2 functions to ../utils.
16098 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16100         * gc.c: cope with the target object of a GC handle being NULL
16101         (bug #78877).
16103 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16105         * class.c: recursively check parent's explicit implementations
16106         of interface methods (fixes bug #79125).
16108 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16110         * filewatcher.c: Avoid warnings when building, do not redefine
16111         constants that are defined.
16113         Remove warnings.
16115 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16117         * image.c: don't fail when the link points to an absolute path.
16119 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16121         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16122         Fix CID #3.
16124 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16126         * image.c (full_path): A new method used to obtain the actual path
16127         of an assembly even in the presence of symbolic links.  
16129         This is necessary for the case where we are running a binary that
16130         has been GACed, but we are using the "published" path name
16131         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16132         file in the GAC.
16134         This was the source of the failure for the `xsp' command with the
16135         recent AppDomain changes, as far as the runtime was concerned,
16136         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16137         $prefix/mono/gac/blah/version/blah.exe.
16139         (do_mono_image_open): use full path
16141 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16143         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16145 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16147         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16148         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16150 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16152         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16153         small structures. Fixes #78990.
16155 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16157         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16159         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16161 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16163         * appdomain.c:
16164         * marshal.c: don't load all the assemblies from a domain into newly
16165         created ones. The new domains might have different rules and load
16166         assemblies from different locations. Fixes bug #76757.
16168         Patch by Lluis. Conflicts resolved by Brian Crowell.
16170 2006-08-16  Alp Toker  <alp@atoker.com>
16172         * socket-io.c: First half of the fix for #79084.
16173         Set sa_size to the length of the content, not that of the struct.
16174         Don't add NULL suffix to the content, this should be done in
16175         managed code if needed.
16177 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16179         Fix part of #79012
16180         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16181         mono_metadata_parse_type returns NULL.
16183 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16185         * normalization-tables.h : new file for string normalization data.
16186         * locales.c, locales.h, icall.c :
16187           added load_normalization_resource() for string normalization,
16188           and icall as well.
16189         * Makefile.am : added normalization-tables.h to the sources.
16191 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16193         * marshal.c: Add more helper functions to reduce code duplication and use them
16194         everywhere.
16196 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16198         * marshal.c: Fix non-x86 stdcall warnings.
16199         
16200         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16201         them everywhere.
16203 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16205         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16206         type check on multi-dimensional arrays. Fixes #79000.
16208 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16210         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16211         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16212         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16213         * class-internals.h: add is_com_object to class structure.
16214         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16215         null checks to COM object marshalling. Fix .ctor call on RCW.
16216         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16217         
16218         All code is contributed under the MIT/X11 license.
16220 2006-08-09  Dick Porter  <dick@ximian.com>
16222         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16223         racing mono_monitor_allocator_lock() somewhere, so don't delete
16224         the critical section for now.  Found by running and exiting
16225         monodevelop.
16227 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16229         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16230         (ves_icall_System_ComObject_FindInterface): Ditto.
16231         (ves_icall_System_ComObject_CacheInterface): Ditto.
16233         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16234         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16236 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16238         * threadpool.c: treat pipes from process asynchronous reads as sockets
16239         when reading from them, so we get select/poll or epoll to wait for
16240         data.
16242 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16244         * loader.c: Fix a typo (CID #233) in the null check.
16246 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16248         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16249         Hopefully fixes #78949.
16250         
16251         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16252         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16253         bytes. Fixes #78972.
16255 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16257         * filewatcher.c: we need to set errno here.
16259 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16261         * filewatcher.c: let Win32Exception get the error value.
16263 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16265         * filewatcher.c: translate errno into win32 errors for Win32Exception
16266         to know what happened.
16268 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16270         * threadpool.c: Fix more warnings.
16272         * assembly.c (search_loaded): Fix warnings.
16274         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16275         (mono_async_invoke): Ditto.
16277 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16279         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16280         entries for __ComObject type in addition to ComImport types.
16281         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16282         about hash table.
16283         
16284         All code is contributed under the MIT/X11 license.
16286 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16288         * image.c: avoid tentative loading of modulerefs that contain
16289         no metadata (P/Invoke library names).
16291 2006-07-28  Dick Porter  <dick@ximian.com>
16293         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16294         mono_loader_lock() somewhere, so don't delete the critical section
16295         for now.  Found by running and exiting monodevelop.
16297 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16299         * filewatcher.c: define the inotify syscalls when we're building on
16300         linux and have sys/syscall.h. The build system might not have support
16301         for inotify but the target system might have it.
16303 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16305         * domain.c: Documentation updates.
16307         * loader.c (mono_free_method): Do not release the method
16308         information if we are being profiled, as profilers will use this
16309         information at shut down to present some data to the user.
16311         This is needed so that the profiler does not crash, as the
16312         profiler tends to keep MonoMethods around, and they might become
16313         invalid if we free these.
16315         (mono_get_method_constrained): Return the original CIL stream
16316         method as well, so verification can be performed against it.
16318 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16320         * filewatcher.[ch]: support for inotify file system watcher.
16321         * icall.c: add new internal calls for the inotify file system watcher.
16323 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16325         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16326         #78888.
16328 2006-07-20  Dick Porter  <dick@ximian.com>
16330         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16331         warning.
16333 2006-07-20  Dick Porter  <dick@ximian.com>
16335         * threads.c (start_wrapper): Do the thread cleanup while we still
16336         hold a reference to its object.  Fixes bug 78123.
16338 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16340         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16341         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16342           "managed-to-managed".
16343         * icall.c: Redirect string constructors that take sbyte* to
16344           ves_icall_System_String_ctor_RedirectToCreateString.
16345         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16346           to CreateString () methods with matching signature.
16347         * reflection.c: Use original security informations for
16348           MONO_WRAPPER_MANAGED_TO_MANAGED.
16349         * security-manager.c: Use original security informations for
16350           MONO_WRAPPER_MANAGED_TO_MANAGED.
16351         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16352           that is a placeholder and only its address should be used.
16353         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16354           that is a placeholder and only its address should be used.
16356 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16358         Begin implementing COM Interop.
16359         * appdomain.c: Increment corlib version.
16360         * class.c: Set ComImport classes' parent to __ComObject.
16361         * loader.c: Mark cominterop methods as such.
16362         * domain.c: Add __ComObject class to MonoDefaults structure.
16363         * image.c: Add 2 hashtables to the image for COM Interop related methods
16364         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16365         using the mempool allocator
16366         
16367         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16368         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16369         declaration for mono_metadata_type_dup_mp.
16370         
16371         * debug-helpers.c: Added strings for two additional wrapper types
16372         * object.c: Create proxy objects for ComImport classes
16373         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16374         and added __ComObject class to MonoDefaults structure.
16375         
16376         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16377         MonoComInteropProxy and MonoComObject.
16378         
16379         * marshal.c: Added support for COM Interop
16380         (signature_cominterop): Converts managed signature to corresponding
16381         unmanaged COM signature.
16382         (cominterop_get_function_pointer): gets unmanaged function pointer via
16383         COM object vtable
16384         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16385         (cominterop_get_method_interface): returns interface type that method is defined on
16386         (mono_mb_emit_cominterop_call): emits native call to function pointer
16387         gotten from vtable
16388         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16389         that matches signature of unmanaged function.
16390         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16391         (cominterop_get_invoke): forwards call from proxy to __ComObject
16392         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16393         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16394         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16395         
16396         * marshal.h: Added Marshal icall declarations.
16397         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16398         so we can access them in finalizer
16399         
16400 2006-07-14  Dick Porter  <dick@ximian.com>
16402         * object.c (mono_type_initialization_cleanup): Fix a race
16403         condition by temporarily commenting out the critical section
16404         deletion.
16406 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16408         * reflection.c (create_custom_attr): Fix some warnings.
16409         (create_custom_attr_data): Ditto.
16410         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16411         types. Fixes #78855.
16413 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16415         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16417         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16419 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16421         * reflection.c (resolve_object): Add support for DynamicMethod.
16423         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16424         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16426 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16428         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16429         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16431 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16433         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16434         Fixes #77888.
16436 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16438         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16439         slightly: remove a shadow local variable.
16441 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16443         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16444         definition that introduces the virtual function slot.
16445         Also fix Coverity #105.
16447 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16449         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16450         for dynamic assemblies. Fixes #78724.
16452 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16454         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16455         Fixes #78722.
16457 2006-06-21  Martin Baulig  <martin@ximian.com>
16459         * reflection.c
16460         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16461         fixes #76484.
16463 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16465         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16467 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16469         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16470         nor TYPEREFs.
16471         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16472         Inflate result if necessary.
16473         (mono_class_get_full): Remove old version.  Rename from
16474         'mono_class_get' and add 'context' argument.  Pass it to
16475         ..._create_from_typespec.
16476         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16477         (mono_ldtoken): Revert change below.
16479 2006-06-20  Martin Baulig  <martin@ximian.com>
16481         * class.c (mono_ldtoken): Don't pass the generic context to
16482         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16484 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16486         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16487         and later freeing it. Fixes #78638.
16489 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16491         * icall.c (mono_class_get_throw): Revert over-zealous error
16492         throwing, the caller for mono_class_get_throw will cope with
16493         errors when classes are not properly initialized already.
16495         The code still copes with loader exceptions though.
16497         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16498         
16499 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16501         Fixes the `make run1' version of RuntimeAbort (to be commited,
16502         source is in Bugzilla).
16503         
16504         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16505         FALSE on class loading failure instead of returning true.
16507         * class.c (mono_class_create_from_typedef): It is possible for
16508         mono_metadata_interfaces_from_typedef_full to fail if a class is
16509         not found, cope with this.
16510         
16512 2006-06-14  Dick Porter  <dick@ximian.com>
16514         * socket-io.c: 
16515         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16516         4.1.1
16518 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16520         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16522 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16524         * icall.c: Another fix for building mono in Visual Studio.
16526 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16528         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16529         
16530 2006-06-09  Martin Baulig  <martin@ximian.com>
16532         * debug-mono-symfile.c: Put this back and really fix it this
16533         time. Sorry for all the trouble.
16535 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16537         * icall.c (mono_class_get_throw): Fix a warning.
16538         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16539         ReflectionTypeLoadException if needed. Fixes #78606.
16541         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16542         (mono_class_init): Ditto.
16544         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16545         ref_only exceptions.
16546         (mono_loader_clear_error): Make this work even if there is no error.
16548 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16550         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16551         Marshal.GetComSlotForMethodInfo using internal call.
16553 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16555         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16556         a function for signalling it.
16558         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16559         a referenced assembly is not found.
16561         * loader.c (mono_loader_error_prepare_exception): Add support for 
16562         LOADER_ERROR_ASSEMBLY. Fix formatting.
16564 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16566         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16567         for VARIANT marshalling on windows and increment corlib version
16568         since Variant struct was added.
16570 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16572         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16573         stack trace line information:
16575         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16576         (Martin) when looking up B which is between A and C, return A not C.
16578         Bug is #78573.
16580         Thanks to Alexander Olk for tracking this down.
16582 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16584         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16585         
16586         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16587         avoid clobbering its value.
16588         (mono_string_to_lpstr): Fix a warning on windows.
16590 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16592         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16594         * reflection.c loader.c: Removed references to 'dummy' flag.
16596         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16598         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16599         it gets GC tracking.
16601         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16602         GC tracking.
16603         
16604         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16606         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16608         * appdomain.c: Bump corlib version.
16610 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16612         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16613         CEE_STIND_REF when working with object references.
16615 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16617         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16618         Fixes #78539.
16620 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16622         * loader.c (method_from_memberref): Fix argument value for
16623         mono_loader_set_error_method_load (I was passing the MonoClass
16624         instead of the class name char *).
16626 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16628         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16629         CEE_STIND_REF when working with object references.
16631 2006-05-30  Martin Baulig  <martin@ximian.com>
16633         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16634         mono_method_full_name() change and replace the ':' with a '.'
16635         here.
16637 2006-05-30  Martin Baulig  <martin@ximian.com>
16639         * debug-mono-symfile.c
16640         (mono_debug_symfile_lookup_location): Fix the algorithm:
16641         when looking up B which is between A and C, return A not C.
16643 2006-05-29  Martin Baulig  <martin@ximian.com>
16645         * mono-debug.h
16646         (MonoDebugMethodInfo): Make the typedef public.
16647         (MonoDebugSourceLocation): New public struct.
16649         * mono-debug.c
16650         (mono_debug_source_location_from_address): Removed.
16651         (mono_debug_source_location_from_il_offset): Removed.
16652         (mono_debug_il_offset_from_address): Removed.
16653         (mono_debug_address_from_il_offset): Removed.
16654         (mono_debug_lookup_method): New public function.
16655         (mono_debug_lookup_source_location): New public function; replaces
16656         the old mono_debug_source_location_from_*() functions; see the
16657         inline documentation.
16658         (mono_debug_free_source_location): New public function.
16659         (mono_debug_print_stack_frame): New public function; see the
16660         inline documentation.
16662         * debug-mono-symfile.c
16663         (mono_debug_find_source_location): Renamed into
16664         mono_debug_symfile_lookup_location(); only take a
16665         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16666         documentation.
16667         (mono_debug_find_method): Renamed into
16668         mono_debug_symfile_lookup_method().
16670 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16672         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16673         returned by mono_image_open_full ().
16675         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16676         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16677         #78517.
16679         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16680         #78518.
16682 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16684         * class.c (mono_class_from_typeref): handle missing images
16685         earlier, deals with bug #78418.   Refactor code; 
16687         Fix a warning introduced in my previous commit (some stale code
16688         from before I revisited my patch).
16690         * class.c (mono_class_create_from_typedef): On failure, remove the
16691         class from the MonoImage->class_cache as the class is not
16692         initialized;   Fixes the leak pointed out by Paolo.
16694 2006-05-25  Dick Porter  <dick@ximian.com>
16696         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16697         DeleteCriticalSections until I figure out which one may still be
16698         sometimes locked when mono_thread_cleanup is called.
16700 2006-05-24  Dick Porter  <dick@ximian.com>
16702         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16703         of mono_thread_manage and back into its own function, so it can be
16704         called after the finalizer thread has finished.
16706         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16708 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16710         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16711         Fixes #78495.
16713         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16714         with non-blittable elements.
16715         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16717 2006-05-24  Martin Baulig  <martin@ximian.com>
16719         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16720         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16722         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16723         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16724         `mono_debugger_event_handler' to NULL.
16726 2006-05-24  Martin Baulig  <martin@ximian.com>
16728         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16730 2006-05-24  Martin Baulig  <martin@ximian.com>
16732         * mono-debug-debugger.h
16733         (mono_debugger_create_notification_function): Added
16734         `MonoCodeManager *' argument.
16736 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16738         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16740 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16742         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16743         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16744         implementation.
16746 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16748         * icall.c: precise GC support: objects can't be stored in unmanaged
16749         memory anymore, even if they are kept alive by other references: since
16750         they can move the GC needs to be able to always find them.
16752 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16754         * object.c: precise GC support for static fields. Support
16755         for moving GCs: write barriers and pinned allocation for interned
16756         strings.
16758 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16760         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16761         structure.
16763 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16765         * class.c, gc.c: sgen and precise GC updates.
16767 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16769         * marshal.h, marshal.c: added write barrier wrapper and precise type
16770         fixes.
16772 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16774         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16775         support.
16777 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16779         * reflection.c: precise and sgen GC updates.
16781 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16783         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16785 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16787         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16789 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16791         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16792         MONO_TYPE_OBJECT. Fixes #78462.
16794 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16796         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16797         and blittable types.
16799 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16801         * class.c (mono_class_get_exception_for_failure): Implement parts
16802         of a TODO: if the loader error is set (instead of the class
16803         error), we return a Loader exception that can be properly thrown
16804         elsewhere.
16806         This was exposed by some Winforms 2.0 code that I tried to run
16807         (Atsushi pointed me to it).
16809 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16811         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16812         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16813         
16814         * marshal.c (emit_marshal_vtype): Add limited support for 
16815         UnmanagedType.LPStruct. Fixes #78427.
16817         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16818         Applied a patch from kangaroo to fix #77523.
16820 2006-05-17  Martin Baulig  <martin@ximian.com>
16822         * threads.c
16823         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16824         (debugger_thread_created): Removed.
16825         (debugger_thread_exited): Removed.
16827 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16829         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16831         * object-internals.h (MonoReflectionResource): Sync with managed version.
16833 2006-05-12  Wade Berrier <wberrier@novell.com>
16835         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16837 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16839         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16840         functions try to allocate from the image mempool.
16842 2006-05-12  Dick Porter  <dick@ximian.com>
16844         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16846 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16848         * object.c: The FieldGetter and FieldSetter methods require the full
16849         name of the class, not only the name. Fixes bug #78277.
16851 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16853         * loader.c (method_from_memberref): Do not pass the NULL klass to
16854         mono_loader_set_error_() methods.  Pass the non-NULL value
16855         (class). 
16857 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16859         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16860         (mono_assembly_close): Null out assembly->image->references after freeing it.
16862         * image.c (mono_image_close): Free image->references.
16863         
16864         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16866 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16868         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16869         before checking if it's NULL (g_assert).
16871 2006-05-10  Martin Baulig  <martin@ximian.com>
16873         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16874         I thought I already killed that two months ago, but now it somehow reappeared.
16876 2006-05-10  Martin Baulig  <martin@ximian.com>
16878         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16880 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16882         * reflection.c: Allocate memory for dynamically created methods in the image
16883         mempools.
16885 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16887         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16888         don't use the ad pointer before checking if it's NULL (g_assert).
16890 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16892         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16893         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16895         * marshal.c: Allocate all signatures from mempools.
16897         * marshal.c: Allocate some more signatures from mempools.
16899 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16901         * object.c (mono_load_remote_field): The code used to provide a
16902         temporary variable for returning results if the user did not
16903         provide a result pointer.  But our temporary variable was allocted
16904         on the satck.
16906         Fix calling code to always pass a result area.   Coverity ID 103.
16908 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16910         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16911         value, not the old. Fixes #78312.
16912         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16914         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16915         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16916         per-image cache.
16918         * assembly.c (mono_assembly_close): Free image->references.
16920         * assembly.c (mono_assembly_names_equal): Fix a warning.
16921         (mono_assemblies_cleanup): Cleanup more global data.
16923         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16925         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16926         ptr_cache and image->modules.
16928         * image.c (mono_image_init): Allocate array_cache lazily.
16929         
16930 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16932         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16933         behavior was changed recently and has bad side effects.
16935 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16937         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16938         
16939         * assembly.c (mono_assembly_close): Remove a debug printf.
16941         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16943         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16944         to also allow for temporary references between mono_image_open ()/close ().
16946         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16948 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16950         * marshal.c: Fix support for dynamic methods.
16952         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16954         * marshal.c (mono_marshal_cleanup): New cleanup function.
16956         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16957         image mempools.
16959         * class.c (mono_class_init): Fix leaking class->nested_classes.
16961         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16963         * image.c (mono_image_init): Initialize the new cashes.
16965         * image.c (mono_image_close): Destroy the new cashes.
16967         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16969         * mempool.c (mono_mempool_strdup): New helper function.
16971         * class-internals.h: Add prototype for mono_loader_unlock ().
16973         * domain.c (mono_jit_info_table_find): Fix a warning.
16974         (mono_debugger_check_runtime_version): Ditto.
16976         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16977         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16978         functions to these modules.
16980         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16981         metadata modules.
16982         
16983         * marshal.c (mono_free_bstr): Fix a warning.
16985         * assembly.c (mono_assembly_open_full): Fix another small leak.
16987         * object.c: Fix some unload leaks in the remoting code.
16989         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16990         function.
16992         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16994         * reflection.c: Fix some unload leaks in dynamic assemblies.
16996 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16998         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16999         * marshal.h: Add BSTR support on Win32
17000         * icall.c: Add BSTR icalls
17001         * metadata.h: Add BSTR enums
17003 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17005         Work to catch the crash from #76795 and turn it into an
17006         exception.   As I stubbed out pieces of the VisualBasic support,
17007         I found a number of places where the code was failing and I added
17008         checks to those places. 
17009         
17010         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17011         function return a status code.  If we fail to parse the signature
17012         from mono_metadata_parse_generic_inst, return FALSE.
17014         * loader.c (mono_get_method_from_token): If we fail to load the
17015         method (mono_class_get) return NULL.   
17017         * (method_from_memberref): Return NULL if we are unable to parse
17018         the method signature
17020         (mono_loader_error_prepare_exception): Since we now use the
17021         loader_error flag internally to stop processing, and obtaining
17022         exceptions that might be thrown will walk this code path the
17023         proper way of going from a MonoLoaderError into a
17024         MonoException was convoluted.   This new routine encapsulates the
17025         process of turning the error into an exception and *clearing* the
17026         error afterwards.
17027         
17028 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17030         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17031         with missing assemblies), and to cope with:
17033                 * Missing fieldref from a non-existing assembly.
17034                 * Missing methodref from a non-existing assembly.
17036         The first batch of work to address *some* of the issues from 76661.
17037         
17038         * object.c (mono_class_create_runtime_vtable): If we fail to
17039         initialize the class raise the exception here. 
17041         * metadata.c (mono_class_get_overrides_full): If any methods fail
17042         to load return the failure to the caller.
17044         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17045         flagging assemblies that failed to load.   
17047         Do not crash if we are unable to load the assembly.
17049         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17050         assemblies. 
17052         * loader.c (mono_loader_set_error_type_load): Change the
17053         convention to always pass unallocated strings, so we make our own
17054         copies (I know our own code had duplicated strings before, but
17055         this keeps the normal conventions).
17056         (method_from_memberref): Call mono_loader_set_error_method_load
17057         for all possible failures of loading the class. 
17058         Remove assert, turn into a loader error.
17060         (mono_loader_error_to_exception): Move this routine from mini
17061         (mini_loader_error_to_exception) there was no need to have that in
17062         mini. 
17064         * class.c (mono_class_from_typeref): If we were not able to load
17065         the assembly with mono_assembly_load_reference, call the
17066         mono_loader_set_error_type_load to register the problem.
17068         (mono_class_setup_fields): If we fail to load the type from
17069         mono_metadata_parse_type_full, call mono_class_set_failure and
17070         break from the loop.
17072         If class->exception_type is set, we do not layout the fields as
17073         that might crash the runtime, and instead return (from breaking
17074         from the previous loop).
17076         (mono_class_setup_vtable): This now returns a boolean indicating
17077         whether the table was properly setup.   The decision is driven by
17078         mono_class_get_overrides_full which might run into non-existing
17079         methods. 
17080         
17081         (mono_class_init): Returns TRUE on success or FALSE if there was a
17082         problem in loading the type (incorrect assemblies, missing
17083         assemblies, methods, etc).
17085         When we call mono_class_setup_fields we also check for a potential
17086         error inside this call (either a class exception or a general
17087         loader exception).
17089         (mono_class_create_from_typedef): If the parent fails to load
17090         (calling mono_class_get_full) return NULL.
17091         
17092         ** Important **
17094         calls to mono_metadata_parse_type_full should be checked
17095         everywhere and set the mono_class_set_failure
17096         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17098         The current patch checks the places where my manually constructed
17099         tests show the errors are showing up, but we should do it
17100         everywhere. 
17102         ** Important2 **
17104         mono_class_init return values should be tested everywhere, like
17105         the previous case this is something that we should audit
17106         everywhere and not only on the cases exposed by the tests I
17107         created. 
17109 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17111         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17112         boolean parameter and instead pass the information on `options'
17113         parameter (FileOptions).
17115         * icall.c: Register the new signature for MonoIO.Open.
17117         * debug-helpers.c (dis_one): Trying to understand how coverity
17118         works.  Fix Run 5, item 78.
17120 2006-04-26  Dick Porter  <dick@ximian.com>
17122         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17123         dereference.
17125 2006-04-25  Martin Baulig  <martin@ximian.com>
17127         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17129         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17130         debugger_thread_created().
17131         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17132         special way.
17133         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17134         (mono_debugger_finalize_threads): New function; undo the effects
17135         of mono_debugger_init_threads().
17136         (mono_debugger_create_all_threads): Removed.
17138 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17140         * image.c (mono_image_close): Tidy up trace messages.
17142         * assembly.c (mono_assembly_close): Ditto.
17144         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17145         no longer references an already freed assembly. Fixes #78168.
17147 2006-04-21  Dick Porter  <dick@ximian.com>
17149         * threads.c (mono_thread_detach): Fix reference counting when
17150         detaching threads.
17152 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17154         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17155         #78155.
17157 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17159         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17160         (mono_type_to_stind): Ditto.
17162         * marshal.c: Use the new helper functions to simplify code.
17164         * image.c (mono_image_close): Add some code for help debug assembly unloading
17165         problems.
17167         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17168         image mempool.
17170         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17171         assembly was already loaded in another appdomain. Fixes #78083.
17173 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17175         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17176         referenced assemblies.
17177         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17179         * domain.c (mono_domain_free): Add a trace message.
17181         * appdomain.c (add_assemblies_to_domain): Ditto.        
17183         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17184         field.  
17186 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17188         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17190 2006-04-12  Martin Baulig  <martin@ximian.com>
17192         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17193         `USE_INCLUDED_LIBGC'.   
17195 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17197         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17198         the patch contains ../ and a small directory name later. Hopefully fixes
17199         #78035.
17201 2006-04-10  Martin Baulig  <martin@ximian.com>
17203         Clean up the debugger's thread-handling code.
17205         The debugger's thread-handling code has been moved from
17206         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17207         over the `threads' hash, keep track of exiting threads and also
17208         use proper locking.
17210         We can now debug XSP and XSP based applications with the debugger.
17212         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17214         * threads.h
17215         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17216         (mono_install_thread_callbacks): Likewise.      
17218         * threads.c (mono_thread_callbacks): Removed.
17219         (debugger_thread_created, debugger_thread_exited): New static functions.
17220         (start_wrapper): Call debugger_thread_created().
17221         (thread_cleanup): Call debugger_thread_exited().
17222         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17223         (mono_debugger_init_threads): New public function.
17224         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17225         iterate directly over the `threads' hash and also use proper locking.
17227         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17229         * mono-debug-debugger.h
17230         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17232 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17234         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17235         argument type=array. Fixes #78057.
17237 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17239         * culture-info-table.h : regenerated. Fixed bug #69652.
17241 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17243         * loader.c metadata.c: Reapply a variant r59116.
17244         
17245         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17247         * class.c (mono_class_setup_interface_offsets): New internal function.
17249         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17250         interfaces too. Fixes #77398.
17252         * reflection.c (encode_cattr_value): Add support for 
17253         parameter type=object, argument type=array.
17254         (load_cattr_value): Ditto. Fixes #77916.
17256         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17257         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17259         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17260         a byval char array and CharSet is Ansi.
17262         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17264 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17266         * metadata.c: Add some locking comments.
17267         
17268         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17269         mempool.
17270         (mono_metadata_free_method_signature): Don't free the signature itself.
17272         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17274         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17275         reference the same MonoImage.
17276         (mono_assembly_load_from_full): Add an assert.
17278 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17280         * image.c (mono_image_close): Don't put the image we are about to free into the
17281         loaded_images_guid_hash.
17283         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17284         to reduce code duplication.
17286         * marshal.c: Register the native functions called by this module as icalls, to
17287         somewhat centralize the creation of MonoMethodSignature's.
17289         * loader.c (mono_method_signature): Add a cache for method signatures.
17291         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17292         the parameter attributes of a method.
17293         (mono_metadata_parse_method_signature_full): Refactored the computation of
17294         parameter attributes into a separate function. Also avoid one allocation in
17295         most cases.
17297         * assembly.c (mono_assembly_close): Ditto.
17299         * image.c (mono_image_close): Log trace messages with INFO level.
17301         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17303         * image.c reflection.c: Correct reference counting of image modules.
17304         
17305         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17306         of this function from the image mempool.
17307         
17308         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17309         to allow more cached types to be used.
17311         * mono-debug.c (mono_debug_add_method): Appled patch from
17312         David S. Miller  <davem@sunset.davemloft.net>: Access 
17313         minfo->lexical_blocks[] entry elements using read32().
17315 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17317         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17318         methods as it is allocated from the mempool.
17320         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17321         image mempool.
17323         * metadata-internals.h: Add comments describing the reference counting scheme
17324         used for MonoImage and MonoAssembly.
17326         * image.c assembly.c reflection.c: Rework reference counting of images and 
17327         assemblies so they are freed when the runtime is shut down. Free some 
17328         additional memory structures when an image is unloaded.
17329         
17330 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17332         * class.c loader.c reflection.c: Allocate more data structures in
17333         the image mempool.
17335 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17337         * icall.c
17338         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17339         build on pre glib 2.4 systems.
17341 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17343         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17345         * icall.c: Fix some warnings.
17347 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17349         * culture-info-table.h : regenerated.
17351 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17353         * threads.c, object-internals.h, verify.c: changed the culture caching
17354         code to use a normal MonoArray for storage so the GC can keep track of
17355         them easily. Fixed bits of the cache logic, too and simplified the
17356         code.
17358 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17360         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17361         thread for non-Boehm GCs.
17363 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17365         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17366         needed to keep track of the data for static fields.
17368 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17370         Fix #75172
17371         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17372         for interface classes.  Use 'num_methods' instead.
17373         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17374         before using '->vtable_size' field.
17376 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17378         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17379         doesn't contain managed pointers, so use a normal hashtable.
17381 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17383         * reflection.c, class-internals.h, domain.c: fixed handling of types
17384         used as values for objects in custom attributes (bug #77915):
17386 2006-03-24  Martin Baulig  <martin@ximian.com>
17388         * class.c (mono_class_setup_fields): Added support for generic
17389         instances; fixes #77580.
17391 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17393         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17395 2006-03-24  Dick Porter  <dick@ximian.com>
17397         * file-io.c (get_file_attributes): More stat macro breakage.
17398         Fixes bug 77759.
17400 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17402         * profiler.c: added the file=filename option in the default profiler
17403         to output the profile data to filename.
17405 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17407         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17408         bug #77877.
17410 2006-03-22  Martin Baulig  <martin@ximian.com>
17412         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17413         allocated `MonoClassField *' in `fb->handle'.
17415 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17417         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17418         allocate interface ID to save memory and allow better ID reuse on
17419         appdomain unload. setup_generic_vtable () removal from Martin.
17421 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17423         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17424         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17425         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17426         write barriers for reference stores with managed objects accessed with
17427         C structures in the runtime and in embedding programs.
17429 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17431         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17432         'interface_id' and 'max_interface_id' fields of MonoClasses
17433         representing open generic types.
17435 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17437         * object.h, object.c, icall.c: added functions to deal with
17438         storing valuetypes that contain references in managed objects.
17439         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17440         fixes and comments around uses of mono_array_addr ().
17442 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17444         * object.h, icall.c, monitor.c: object.GetHashCode ()
17445         implementation that supports the moving garbage collector.
17447 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17449         * icall.c, threads-types.h, threads.c: implemented finalizer for
17450         LocalDataStoreSlot.
17452 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17454         * metadata.c (mono_type_size): Add a fixme.
17455         (mono_type_stack_size): Ditto.
17457         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17458         'type_forwarders' field.
17460         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17461         attribute from net 2.0.
17463         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17464         from class.c.
17466         * class.c (mono_class_setup_fields): Fix a warning.
17467         
17468         * class.c (mono_class_from_name): Add support for assemblyref entries
17469         in the EXPORTEDTYPE table.
17471         * reflection.c: Add support for handling type forwarders under net 2.0.
17473         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17474         
17475 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17477         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17478         overwriting entries in ModuleBuild->types, also clean up the code
17479         a little. Fixes #77774.
17481 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17483         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17484         load friend assembly info when present.
17486 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17488         Fix crasher on gtest-158.cs.
17489         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17490         the return value if the MonoClass we want is yet in an
17491         inconsistent state.
17492         * class.c (mono_class_create_from_typedef): Add an comment
17493         explaining an order dependency between mono_class_setup_parent and
17494         mono_class_setup_mono_type.
17496 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17498         * class.c: documentation updates and events bug fix.
17500 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17502         * class.c: some cleanup, locking fixes.
17504 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17506         * class.c: fix the generics code to setup nested
17507         type info to the instantiated type (bug #77770).
17509 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17511         * marshal.c: fixed a few type correctness issues.
17513 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17515         * loader.c: the Set/Get/Addrtess array methods should be public.
17517 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17519         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17520         
17521         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17522         info->wrapper.
17524 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17526         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17528         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17530         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17531         (mono_mempool_alloc0): Ditto.
17533 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17535         * socket-io.c:
17536         (create_object_from_sockaddr): it was allocating 4 extra bytes
17537         for the AF_UNIX data. Fixes bug #77747.
17539 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17541         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17543 2006-03-09  Dick Porter  <dick@ximian.com>
17545         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17546         Fixes bug 76966 again.
17548 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17550         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17551         names from r57532
17552         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17554 2006-03-07  Martin Baulig  <martin@ximian.com>
17556         * object.c
17557         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17559 2006-03-07  Martin Baulig  <martin@ximian.com>
17561         * class.c
17562         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17563         regression introduced in r56970; see gtest-252.cs.
17565         * loader.c (mono_get_method_constrained): Correctly handle generic
17566         methods; see gtest-253.cs.
17568 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17570         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17572 2006-03-04  Martin Baulig  <martin@ximian.com>
17574         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17575         compute the parent type at runtime, just like we're already doing
17576         it for interfaces.
17578         * reflection.c
17579         (mono_reflection_bind_generic_parameters): Don't compute the
17580         parent type anymore.
17582         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17584 2006-03-04  Martin Baulig  <martin@ximian.com>
17586         * mono-debug-debugger.h
17587         (mono_debugger_create_notification_function): Allocate memory at
17588         runtime and return a pointer to it.
17590 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17592         * assembly.c: Fix windows build.
17593         
17594         * assembly.c: Fix build.
17596         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17598         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17599         
17600 2006-03-03  Dick Porter  <dick@ximian.com>
17602         * process.c
17603         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17604         Check parameters before dereferencing them.  Fixes Aaron's part of
17605         bug 77393.
17607 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17609         Fix performance regression.
17610         * loader.c (find_method_in_class): Add 'from_class' argument.
17611         Rename 'klass' argument to 'in_class'.  The signature is compared
17612         against the method in 'in_class', and the corresponding method is
17613         returned from 'from_class'.
17614         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17615         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17616         type definition and generic instantiation in parallel.
17617         (mono_get_method_constrained): Update to changes.
17619 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17621         * threads.c: make sure the domain is correct, too when doing
17622         mono_thread_attach ().
17624 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17626         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17627         windows. Fixes #77683.
17629 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17631         * object.h, *: introduced specific way to set elements of an array
17632         of references to be used as write barrier. Still need to audit the
17633         uses of mono_array_addr.
17635 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17637         * object-internals.h: New field to cache the assmebly name, patch
17638         from Tambet Ingo (tambet@ximian.com)
17640 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17642         * decimal.h, class-internals.h, metadata-internals.h,
17643         file-io.h: mark a few function declarations as internal, to
17644         reduce the number of PLT entries.
17646 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17648         * file-io.c: fix typo in warning message.
17650 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17652         * loader.c: on unix, lookup the "*A" version of a function
17653         if charset is auto as a second option before failing.
17655 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17657         * class.h (mono_class_inflate_generic_method): Revert to two
17658         argument version.
17659         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17660         (mono_class_inflate_generic_method_full): Add.
17661         * class.c (mono_class_inflate_generic_method_full): Rename from
17662         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17663         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17664         * loader.c, reflection.c: Update to changes.
17666 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17668         * icall.c: const fixes and small improvements.
17670 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17672         * threadpool.c: for asynchronous connect(), enable the same workaround
17673         for BSD 6 as for the Mac. Fixes bug #77637.
17675 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17677         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17678         formatted classes. Fixes #77524.
17680 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17682         * class.c (inflate_generic_type): Add a couple more
17683         micro-optimizations.
17684         (inflate_generic_context): Don't use the 'gmethod' from
17685         'inflate_with'.
17686         (mono_class_inflate_generic_method): If the method has generic
17687         parameters, but the passed-in context doesn't have a 'gmethod',
17688         create one.  Use the possibly simplified generic instantiation
17689         from the declaring class instead of the one passed in.
17691 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17693         Make generic method signature and method header handling lazy.
17694         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17695         (inflate_generic_header): Likewise.
17696         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17697         parameter to avoid inflating types.
17698         (mono_get_inflated_method): Empty out.
17699         * class.h (mono_class_inflate_generic_method): Update to changes.
17700         * loader.c (mono_get_method_from_token): Don't parse signature for
17701         generic methods, nor methods of generic classes.
17702         (mono_method_signature): Rename from 'mono_method_signature'.
17703         Inflate signature on demand.
17704         (mono_method_get_header): Inflate method header on demand.
17705         * reflection.c: Update to changes.
17707 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17709         * metadata.c (mono_metadata_inflate_generic_inst): If the
17710         instantiation is closed, don't bother expanding it in the new
17711         context.
17712         * class.c (inflate_generic_class): If the generic instantiation
17713         doesn't change after inflation, return the argument itself.
17714         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17715         Add bounds checks.
17716         (inflate_generic_context): If neither the generic class nor the
17717         generic method instantiations change, return the original context.
17718         * reflection.c (mono_method_get_object): Do
17719         'mono_get_inflated_method' before accessing the ->klass field.
17720         (inflate_mono_method): Don't create a MonoGenericMethod unless
17721         necessary.
17722         (inflate_method): Don't pass a constructed type as the declaring
17723         type of a methodbuilder.
17725 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17727         * object.c: fix memory overwrite.
17729 2006-02-22  Dick Porter  <dick@ximian.com>
17731         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17732         it doesn't work any more.
17733         (mono_threads_request_thread_dump): Fix unused variable warnings.
17735 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17737         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17738         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17739         the public header file.
17741 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17743         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17745 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17747         * class-internals.h, object.c: reduce the size of MonoVTable
17748         and store the interface_offsets array at negative offsets.
17750 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17752         * metadata.c: tweak table descriptors data structures to reduce
17753         size and runtime relocations.
17755 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17757         * marshal.c: fix some types and opcodes to be type-safe
17758         in marshaling wrappers.
17760 2006-02-21  Ankit Jain  <jankit@novell.com>
17762         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17764 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17766         * metadata.c (get_constraints): Relax debugging checks for monodis.
17768 2006-02-21  Ankit Jain  <jankit@novell.com>
17770         * metadata.c (mono_metadata_load_generic_params): Move the code
17771         checking for ambiguous generic params from here to mono/dis/get.c
17772         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17774 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17776         Fix assertion triggered when compiling nemerle.
17777         * class.c (mono_get_shared_generic_inst): Rename from
17778         get_shared_inst and make non-static.
17779         * loader.c (mono_get_shared_generic_method): New.  Used to create
17780         the MonoGenericContext-equivalent of a MonoGenericContainer.
17781         (mono_get_method_from_token): Initialize the 'context' field of
17782         the created MonoGenericContainer.
17783         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17784         * metadata.c (get_constraints): Add sanity check.
17785         * class-internals.h: Add new internal methods.
17787         * reflection.c (verify_safe_for_managed_space): New sanity check.
17788         Currently checks that owner-less generic parameters aren't allowed
17789         in managed space.
17790         (mono_type_get_object): Use it.
17791         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17792         that are now in mono_type_get_object.
17793         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17795 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17797         * metadata.c (mono_type_create_from_typespec): Rename from
17798         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17799         argument and caching of types in the generic container.
17800         (unwrap_arrays, find_generic_param): Remove.
17801         * metadata-internals.h: Update.
17802         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17804 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17806         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17808         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17809         return values. Fixes #77581.
17811         * class.c (mono_fnptr_class_get): Switch name and name_space.
17813         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17814         classes and add support for [In, Out] attributes.
17815         (mono_marshal_free_asany): Ditto. Fixes #77524.
17817 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17819         * class.c (mono_class_from_generic_parameter): Make more robust to
17820         incomplete MonoGenericContainers from monodis.
17822 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17824         * class-internals.h: added some more exception types.
17825         * class.c, metadata.c: added a few checks to handle missing
17826         types.
17828 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17830         Use owner-less generic-params some more.
17831         * class.c (my_mono_class_from_generic_parameter): Remove.
17832         (mono_class_from_generic_parameter): Handle null image,
17833         param->name and param->owner.
17834         (mono_class_from_mono_type): Update.
17835         (mono_class_create_from_typespec): Remove 'container' parameter.
17836         If that parameter is non-null, the result is always inflated by
17837         'mono_class_get_full' anyway.
17838         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17839         parameter.
17840         (mono_class_get_full): Update.
17842         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17843         instance is not open, don't bother inflating.
17844         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17845         parse metadata for inflated classes.
17846         (_mono_class_get): Change GenericContext* parameter to
17847         GenericContainer*.
17848         (mono_class_create_from_typespec): Likewise.  Simplify, and
17849         implement trivially.  All the cases are handled in
17850         mono_class_from_mono_type.  Don't inflate returned class.
17851         (mono_class_get_full): Delegate GENERICINST optimization to
17852         inflate_generic_type.
17853         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17855 2006-02-16  Dick Porter  <dick@ximian.com>
17857         * socket-io.c (create_object_from_sockaddr): Fix typo.
17858         (create_sockaddr_from_object): Check array lengths before
17859         potentially accessing items off the end.
17860         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17861         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17862         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17863         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17864         length checks to avoid wraparound overflows.
17865         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17866         contents of the array of sockets
17867         (hostent_to_IPHostEntry2)
17868         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17869         Check return value of inet_ntop ().
17870         (addrinfo_to_IPHostEntry): Fix typo
17872 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17874         Type metadata parsing doesn't use generic-instantiation information.
17875         * metadata.c (mono_metadata_parse_array_full): Change
17876         MonoGenericContext* parameter to MonoGenericContainer*.
17877         (mono_metadata_parse_type_full): Likewise.
17878         (mono_type_create_from_typespec_full): Likewise.
17879         (mono_metadata_parse_mh_full): Likewise.
17880         (mono_metadata_parse_generic_inst): Likewise.
17881         (do_mono_metadata_parse_generic_class): Likewise.
17882         (do_mono_metadata_parse_type): Likewise.
17883         * metadata-internals.h: Update to changes.
17884         * class.c (mono_class_find_enum_basetype): Likewise.
17885         (mono_class_setup_fields): Likewise.
17886         (mono_class_create_from_typespec): Likewise.
17887         * loader.c (method_from_methodspec): Likewise.
17888         (mono_get_method_from_token): Likewise.
17889         (mono_method_get_header): Likewise.
17891 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17893         * marshal.c: handle additional GENERICINST case (patch from
17894         Thong Nguyen <tum@veridicus.com>).
17895         Fix a few cases where LDIND_I/STIND_I was used for references.
17897 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17899         * reflection.c (mono_reflection_get_token): Remove unused variable.
17901 2006-02-16  Martin Baulig  <martin@ximian.com>
17903         * reflection.c (mono_reflection_get_token): Add support for fields
17904         in instantiated generic types.
17906         * icall.c
17907         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17909 2006-02-15  Martin Baulig  <martin@ximian.com>
17911         * icall.c
17912         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17913         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17914         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17915         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17917 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17919         * class.c, metadata.c, metadata.h, object.c, icall.c,
17920         marshal.c: changed mono_type_get_underlying_type () to do
17921         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17922         Fixed handling of instantiated generic valuetypes (bug #75479).
17924 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17926         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17927         Delegate to mono_metadata_decode_value, and work on the returned value.
17929         * icall.c (ves_icall_MonoType_GetGenericArguments):
17930         Add consistency check here too.
17931         
17932 2006-02-15  Ankit Jain  <jankit@novell.com>
17934         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17935         char/short etc.
17937 2006-02-15  Ankit Jain  <jankit@novell.com>
17939         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17940         signed values, used only for representing lower bounds of arrays.
17941         (mono_metadata_parse_array_full): Use new
17942         mono_metadata_decode_signed_value to decode lower bounds.
17944 2006-02-14  Martin Baulig  <martin@ximian.com>
17946         * reflection.c
17947         (mono_reflection_get_token): Support "MonoGenericMethod" and
17948         "MonoGenericCMethod" and allow generic instances / methods.
17950 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17952         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17953         to obtain the terminal size using an ioctl.
17955         * object.c (mono_nullable_init): Revert this as nullable reference
17956         types are not valid.
17957         (mono_nullable_box): Ditto.
17959 2006-02-09  Dick Porter  <dick@ximian.com>
17961         * threads.c (mono_thread_detach): Drop a reference to the thread
17962         we're detaching.
17964 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17966         * object.c (mono_nullable_init): Handle nullable reference types.
17967         (mono_nullable_box): Ditto. Fixes #77446.
17969 2006-02-07  Martin Baulig  <martin@ximian.com>
17971         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17973 2006-02-07  Ankit Jain  <jankit@novell.com>
17975         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17976         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17977         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17978         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17979         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17980         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17982 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17984         * class.c (mono_class_create_generic): Set type_token as well.
17986         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17987         compatible with MS.
17989 2006-02-02  Martin Baulig  <martin@ximian.com>
17991         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17992         has never been used so far.
17994 2006-02-02  Martin Baulig  <martin@ximian.com>
17996         * mono-debug-debugger.h: Changed comment at the top of this file;
17997         the header is not installed, but it's safe to #include it from
17998         within the JIT.
18000         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18001         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18003 2006-02-02  Martin Baulig  <martin@ximian.com>
18005         * mono-debug.h
18006         (MonoSymbolTable): Removed the `metadata_info' field.
18008         * mono-debug.c
18009         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18011         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18012         (mono_debugger_add_builtin_types): Removed.
18013         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18014         (mono_debugger_create_notification_function): We now operate on a
18015         pre-allocated area; take a `gpointer' and return `void'.
18017         * mono-debug-debugger.c
18018         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18019         (mono_debugger_add_builtin_types): Removed.
18021 2006-02-02  Martin Baulig  <martin@ximian.com>
18023         * threads.c (mono_debugger_create_all_threads): New public method.
18025 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18027         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18028         breaks on several platforms.
18030 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18032         * assembly.c: the VS.NET build doesn't supply default values for
18033         MONO_ASSEMBLIES and MONO_CFG_DIR.
18035 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18037         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18038         helper function.
18040         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18042         * loader.c (method_from_memberref): Fix a warning.
18044         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18046         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18047         with explicit layout. Fixes #77433.
18049 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18051         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18052         max_interface_id is initialized before using it. Fixes #77398.
18053         (ves_icall_Type_GetInterfaces): Ditto.
18055 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18057         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18058         allocate memory for parameter attributes when parsing memberref
18059         signatures.
18060         * loader.c (mono_loader_set_error_method_load): Don't warn.
18061         (method_from_memberref): Ensure MissingMethodException gets thrown
18062         if method is not found.  Make warning more informative.
18064 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18066         Fix #77397
18067         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18068         return true if is byref.
18069         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18070         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18071         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18073 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18075         Fix tests/find-method.2.il
18076         * loader.c (find_method, find_method_in_class): Remove is_inflated
18077         argument.  Revert 2006-01-18 change.
18078         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18079         is generic, search for method in its generic definition.
18080         * class.c (mono_class_setup_vtable_general): Print generic
18081         arguments of generic types in debugging printf.
18083 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18085         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18087         * threads.c (mono_threads_request_thread_dump): New helper function.
18089 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18091         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18093 2006-01-25  Ankit Jain  <jankit@novell.com>
18095         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18096         move definition to ..
18097         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18098         
18099 2006-01-25  Ankit Jain  <jankit@novell.com>
18100             Raja R Harinath  <rharinath@novell.com>
18102         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18103         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18104         as necessary.
18106 2006-01-25  Martin Baulig  <martin@ximian.com>
18108         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18109         `MonoDebuggerThread' into debug-debugger.c.
18111 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18113         * profiler.c: fix printing of data.
18115 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18117         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18118           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18120 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18122         * object.c: fix deadlock related to string interning.
18124 2006-01-23  Martin Baulig  <martin@ximian.com>
18126         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18128         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18130 2006-01-23  Martin Baulig  <martin@ximian.com>
18132         * mono-debug.h: Moved the prototypes of some functions which are
18133         used by the JIT here from mono-debug-debugger.h.
18135 2006-01-21  Martin Baulig  <martin@ximian.com>
18137         * Makefile.am: Don't install mono-debug-debugger.h.
18139 2006-01-21  Martin Baulig  <martin@ximian.com>
18141         * mono-debug-debugger.h: Enforce the private status of this header
18142         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18143         Moved some stuff from mono-debugger-jit-wrapper.h here.
18145 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18147         * class.c (mono_class_from_typeref): Add a sanity test to help
18148         catch lack of assembly load/search hooks.
18150 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18152         * marshal.c (emit_struct_conv): Relax the fields with same offset
18153         check even more. Fixes #77230.
18155 2006-01-18  Martin Baulig  <martin@ximian.com>
18157         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18158         argument; if false, we compare the uninstantiated signatures.
18159         (method_from_memberref): Compare the uninstantiated signatures;
18160         fixes #76417.
18162 2006-01-18  Robert Jordan  <robertj@gmx.net>
18164         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18165         Clear the weak link. Fixes bug #77170.
18167         * gc.c (mono_gchandle_free):
18168         Reflect *-gc.c changes (tiny optimization).
18170 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18172         * metadata.c (mono_metadata_signature_dup): Applied patch from
18173         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18174         Fixes #77288.
18176 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18178         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18179         marshalling from native to managed code. Fixes #77230.
18181 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18183         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18184         connect. Fixes bug #77020.
18186 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18188         * class.c: fixed id assignement for nested interfaces (bug #77275).
18189         Added also better info for --print-vtable debugging.
18191 2006-01-12  Martin Baulig  <martin@ximian.com>
18193         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18194         interfaces on-the-fly; fixes #76625.
18196         * class-internals.h
18197         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18198         don't need that anymore.
18200 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18202         * socket-io.c
18203         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18204         To avoid initing the nested_classes when not needed I turned the
18205         PeerCredData as a toplevel internal class, as it has to be shared
18206         anyways. 
18208         Fixes the CASA issue.
18210 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18212         * domain.c: Accessors for MonoJitInfo
18214         * profiler-private.h: Add jitinfo to the end jit hook
18216         * profiler.[ch]: Define new hooks, called after jitting which give
18217         the MonoJitInfo that was compiled
18219 2006-01-10  Martin Baulig  <martin@ximian.com>
18221         * class.c (mono_class_setup_events): Add support for generic
18222         classes; fixes #76440.
18224 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18226         Fix #77160.
18227         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18228         on passed-in method.
18230 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18232         * object.c (mono_runtime_invoke_array): Add Nullable support.
18234         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18236 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18238         * file-io.c: Don't consider sockets as directory and avoid an endless
18239         loop. Fix bug #76966.
18241 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18243         * object.c (mono_nullable_init): New helper function.
18244         (mono_nullable_box): Ditto.
18246         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18248         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18250         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18251         
18252 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18254         * class.c (mono_class_is_assignable_from): Make T assignable to 
18255         Nullable<T>.
18257 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18259         * appdomain.c: Bump corlib version to 46.
18260         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18261         serialization purpose) and changed ves_icall_System_Reflection_
18262         Assembly_get_code_base signature to accept a boolean (to escape, or 
18263         not, the assembly code base).
18265 2005-12-23  Dick Porter  <dick@ximian.com>
18267         * icall.c: 
18268         * threads-types.h: 
18269         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18270         CreateEvent icall now returns "created" boolean parameter.
18272 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18274         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18275         #76967.
18277         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18278         when attr_klass is an interface. Fixes #77045.
18280 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18282         * marshal.c (emit_struct_conv): Fix previous patch.
18283         
18284         * marshal.c (emit_struct_conv): Add a check for fields with the same
18285         offset.
18287 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18289         Fix regression in Mono.C5.
18290         * class.c (mono_class_create_generic): If 'klass' is an interface
18291         set up the interface offsets.
18292         (mono_class_is_assignable_from): Don't throw away generic arguments.
18294 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18296         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18297         type parameters.
18299 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18301         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18302         dead store.
18303         (do_mono_metadata_parse_generic_class): Don't pass the current
18304         generic context when parsing the type being instantiated: it
18305         cannot use it, anyway.
18307         * loader.c (method_from_memberref): Don't inflate a signature if
18308         it doesn't contain any type parameters.
18310 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18312         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18314 2005-12-14  Martin Baulig  <martin@ximian.com>
18316         * class.c
18317         (mono_type_get_name_recurse): Don't return null for type
18318         parameters and open generic classes.
18319         (mono_class_setup_methods): Don't exclude generic instances.
18320         (mono_get_unique_iid): Use different IDs for different
18321         instantiations of the same generic type.
18322         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18323         open generic instances; create a normal vtable for closed generic
18324         instances.
18325         (mono_class_setup_vtable_general): We're now also called for
18326         closed generic instances.
18328         * reflection.c
18329         (mono_reflection_bind_generic_parameters): Correctly use
18330         mono_metadata_lookup_generic_inst() everywhere.
18332 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18334         * object.c (mono_class_create_runtime_vtable): Call 
18335         mono_class_setup_vtable ().
18337         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18338         function.
18339         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18340         #76959.
18342         * loader.c (mono_loader_set_error_type_load): Print the type load
18343         warnings to the console so they are more visible to the user.
18344         (mono_loader_set_error_method_load): Ditto.
18346         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18347         is still broken.
18348         
18349         * reflection.c (ensure_runtime_vtable): Fix build.
18351         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18352         doesn't work in all cases.
18354 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18356         * object.c (mono_array_new_full): Treat a single dimensional array
18357         with 0 lower bounds as an szarray. Fixes #76973.
18359         * reflection.c (custom_attr_visible): Really fix this.
18361 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18363         * reflection.c (custom_attr_visible): Allow nested public attributes
18364         as well.
18366         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18367         interface check.
18369 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18371         * class.c (set_generic_param_owner): Delete.
18372         (mono_class_create_from_typedef): Don't set ->owner field of
18373         generic parameters to "param containers" of enclosing classes.
18374         * reflection.c (mono_reflection_initialize_generic_parameter):
18375         Likewise.
18377 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18379         * reflection.c (custom_attr_visible): Fix build.
18381 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18383         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18384         private attributes.
18385         
18386         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18387         handling of null parameter defaults.
18389 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18391         * class.c (mono_class_from_generic_parameter): Don't set
18392         klass->generic_container.
18393         (my_mono_class_from_generic_parameter): Likewise.
18395 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18397         * reflection.c (load_public_key): Fix a warning.
18398         (method_encode_code): Fix unaligned accesses.
18400 2005-12-07  Martin Baulig  <martin@ximian.com>
18402         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18404         * reflection.c
18405         (write_generic_param_entry): Encode our custom attrs.
18407         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18409 2005-12-07  Martin Baulig  <martin@ximian.com>
18411         * reflection.c (encode_new_constraint): Removed; we don't use the
18412         `NewConstraintAttribute' anymore.
18414 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18416         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18417         not fire a TypeResolve event when Assembly.GetType () is called.
18419 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18421         Beginning of support for nullable types in the runtime. Parts of
18422         this patch are from Martin.
18424         * appdomain.c (MONO_CORLIB_VERSION): Bump
18426         * domain.c (mono_init_internal): get the nullable type
18428         * class.c (mono_class_is_nullable): New method
18429         (mono_class_get_nullable_param): New mehod
18430         (mono_class_create_generic): In types T? set cast_class to T
18432         * class-internals.h (MonoDefaults): new nullable default class
18433         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18434         new methods.
18436 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18438         * metadata.c (select_container): New.  Refactor code to select the
18439         appropriate GenericContainer given the type of generic parameter
18440         we are looking for.
18441         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18442         not a MonoGenericContext.  Use select_container.  Update parameters.
18443         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18444         and MONO_TYPE_MVAR.
18445         (unwrap_arrays): Remove duplicate tests.
18446         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18447         generic instantiated class to find any arguments that are generic
18448         parameters.
18449         (mono_type_create_from_typespec_full): Use find_generic_param to
18450         avoid evicting some generic instantiations from the typespec
18451         cache.
18453 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18455         * reflection.c: fixed writing of doubles on ARM FPA.
18457 2005-12-02  Robert Jordan  <robertj@gmx.net>
18459         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18461 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18463         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18464         least on SUSE 10 they are not the same (on debian, they are just the
18465         same thing).
18467 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18469         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18470         DeclaringType for VARs and MVARs.
18471         * class.c (set_generic_param_owner): Fix initialization of owner
18472         fields.
18474 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18476         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18478 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18480         * threadpool.c: workaround for a bug that shows up on the Mac:
18481         select()+connect() on a blocking socket is not like it should
18482         be, so we proceed to connect() in that case, wasting the I/O
18483         threadpool thread until connect succeedes. Fixes bug #75436.
18485 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18487         * threadpool.c: fix typo when setting file descriptor states.
18489 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18491         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18492         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18493         create a temporary signature container.
18494         (mono_metadata_parse_generic_param): Update to changes.
18495         (mono_type_create_from_typespec_full): Update to changes.
18496         * loader.c (method_from_memberref): Don't use a
18497         MonoGenericContainer while parsing a memberref signature.
18498         (method_from_methodspec): Remove dead-store of the 'container'
18499         variable.  It's overwritten before use.
18501         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18502         checks tighter.
18503         (mono_metadata_parse_generic_param): Likewise.
18504         * loader.c (find_method_in_class): Does not need a
18505         MonoGenericContainer.  Use 'mono_method_signature' rather than
18506         'mono_method_signature_full'.
18507         (find_method, mono_get_method_constrained, method_from_memberref):
18508         Update to changes.
18510         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18511         owner-less generic-parameters are never evicted from the typespec
18512         cache.
18514         * loader.c (method_from_memberref): Don't use the current context
18515         when parsing signatures.
18516         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18518         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18519         side-effects in g_assert.
18520         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18521         that we don't potentially lose information.
18523 2005-11-26  Dick Porter  <dick@ximian.com>
18525         * icall.c:
18526         * threads.c: icalls to implement basic (ie, not named)
18527         System.Threading.Semaphore.
18529 2005-11-24  Dick Porter  <dick@ximian.com>
18531         * process.c
18532         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18533         Use GetProcessId() if it's available.
18535 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18537         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18539 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18540             Ankit Jain  <jankit@novell.com>
18542         * loader.c (mono_get_method_from_token): Initialize 'method' field
18543         of all generic parameters before parsing the signature.  Remove
18544         code that "fixed"-up MVAR references.
18546 2005-11-23  Ankit Jain  <jankit@novell.com>
18548         * metadata.c (mono_metadata_has_generic_params):
18549         (mono_metadata_load_generic_param_constraints):
18550         (mono_metadata_load_generic_params): Move duplicate code ...
18551         (mono_metadata_get_generic_param_row): ... here. Returns the
18552         first row-id in GenericParam table for a given owner (token).
18553         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18554         prototype.
18556 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18557             Ankit Jain  <jankit@novell.com>
18559         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18560         comparing VARs too.
18561         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18562         type->data.generic_param only if the type is an MVAR.
18563         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18564         leak owner-less VARs and MVARs into managed space.
18566 2005-11-21  Martin Baulig  <martin@ximian.com>
18568         * class-internals.h
18569         (MonoMethod): Moved the `generic_container' here from
18570         `MonoMethodNormal' since we now also need it for
18571         `MonoMethodPInvoke';
18572         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18573         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18574         an union containing both `MonoMethodNormal' and
18575         `MonoMethodPInvoke'.
18577         * loader.c
18578         (mono_get_method_from_token): Allow implementing generic methods
18579         as interncalls.
18581         * threads.c
18582         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18583         icall.
18585 2005-11-17  Dick Porter  <dick@ximian.com>
18587         * icall.c: 
18588         * process.h: 
18589         * process.c: Split the Process Start_internal icall into
18590         ShellExecuteEx_internal and CreateProcess_internal, which are
18591         called depending on whether UseShellExecute is true.  Fixes bug
18592         76670.
18594         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18596 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18598         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18599         'msize' parameters, use the information in 'mspec' instead.
18600         (emit_object_to_ptr_conv): Ditto.
18602         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18603         fields out of order. Fixes #76733.
18605 2005-11-17  Ankit Jain  <jankit@novell.com>
18607         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18609 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18611         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18612           bug #76575.
18614 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18616         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18617         for types with non-auto layout. Fixes #76717.
18619 2005-11-16  Ankit Jain  <jankit@novell.com>
18621         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18622         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18623         if generic_context is null.
18624           (mono_metadata_generic_param_equal): param->owner can be null.
18625           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18626         null.
18628 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18630         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18631         the correct value.
18633 2005-11-15  Martin Baulig  <martin@ximian.com>
18635         * object.c (set_value): Use mono_class_from_mono_type() instead of
18636         the hack for generic instances; fixes #76136.
18638 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18640         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18641         fields.
18643         * image.c (load_metadata_ptrs): Initialize the new fields.
18645         * reflection.c (create_dynamic_mono_image): Ditto.
18647         * reflection.c (build_compressed_metadata): Use the new fields.
18649         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18650         icall.
18652         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18653         icall.
18654         
18655 2005-11-15  Ankit Jain  <jankit@novell.com>
18656             Raja R Harinath  <harinath@gmail.com>
18658         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18659         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18660         new per-generic_container cache if the cached MonoType's context matches
18661         the current context.
18662           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18663         to the expected context.
18664           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18666 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18668         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18669         we changed the signature of an icall.
18670         * icall.c: Modify to mono_double_ParseImpl return true/false 
18671         depending on the success, instead of throwing the exception. This will
18672         help us in Double.TryParse methods.
18673         
18674 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18676         * marshal.c (emit_marshal_object): Throw an exception when
18677         marshalling 'object' instead of crashing. Fixes #76696.
18679 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18681         * class-internals.h: Add prototype for mono_type_get_full_name ().
18683 2005-11-11  Dick Porter  <dick@ximian.com>
18685         * threads.c (mono_thread_manage): Make sure the main thread has
18686         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18688 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18690         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18691         console about the missing type.
18692         (mono_loader_set_error_method_load): Ditto.
18694 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18696         * mono-config.c (mono_get_config_dir): Set the system defaults if
18697         none is specified.
18699         * assembly.c (mono_set_dirs): New API entry point to set the
18700         assembly and the config directory in one call
18702 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18704         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18705         the ftnptr was created from a delegate in a domain other than the
18706         current domain. Fixes #75377.
18708         * exception.h exception.c: Add mono_get_exception_not_supported ().
18710 2005-11-08  Martin Baulig  <martin@ximian.com>
18712         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18714 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18716         * security-manager.h: Added definitions to deal with strongname key 
18717         pairs bigger (and smaller) than 1024 bits.
18718         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18719         adjust wrt the public key length being used.
18721 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18723         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18724           Windows build (r51396-51397).
18726 2005-11-03  Martin Baulig  <martin@ximian.com>
18728         * class.c (mono_class_setup_vtable_general): Also add generic
18729         methods to the vtable; fixes #76581.
18731 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18733         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18734         sure that we lookup GetString method from the System.Text.Encoding
18735         class, not the derived class or we get an empty method.
18737         Fixed class #76612.
18739 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18741         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18742         if it has been previously set (embedders). 
18744         Make mono_set_rootdir available also on Unix.
18746 005-10-24  Robert Jordan  <robertj@gmx.net>
18748         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18750 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18752         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18753         only calls which are made to native code use this flag.
18755         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18757 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18759         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18760         Add support for FieldBuilders.
18762 2005-10-29  Martin Baulig  <martin@ximian.com>
18764         * mono-debug.c
18765         (mono_debug_using_mono_debugger): New public method; returns
18766         whether we're running inside the debugger.
18768 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18770         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18771         for Method/Constructor/FieldBuilders.
18773 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18775         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18776         and fields as well.
18778 2005-10-26  Martin Baulig  <martin@ximian.com>
18780         * mono-debug-debugger.c
18781         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18783 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18785         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18786         integer to isspace.
18788 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18790         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18791         when passing valuetypes byref. Fixes #76502.
18793 2005-10-19  Jackson Harper  <jackson@ximian.com>
18795         * profiler.c: Don't put a . in front of types that are not in a
18796         namespace.
18798 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18800         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18802 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18804         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18805         #76436.
18806         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18808 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18810         * assembly.c metadata-internals.h icall.c: Define an additional
18811         parameter for mono_assembly_name_parse_full, so we can avoid creating
18812         S.R.AssemblyName.Version when no version info wasn't passed.
18813         
18814 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18816         * class.c (mono_type_get_full_name): Reimplement method that was
18817         removed. 
18819         * image.c: Some docs
18821 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18823         * profiler.c (output_newobj_profile): Fix printing of Total memory
18824         on x86.
18826 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18828         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18830 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18832         * threads.c: remove debug output.
18834 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18836         * threads.c (mono_thread_manage): Fix crashes if more than 64
18837         threads need to be aborted. Hopefully fixes #75899.
18839         * assembly.c (mono_stringify_assembly_name): New helper function.
18841         * class.c: Use mono_stringify_assembly_name instead of the similar
18842         static function.
18844         * assembly.h assembly.c: Add support for calling a postload search 
18845         hook if an assembly cannot be loaded.
18847         * appdomain.c: Register new search hooks which call the AssemblyResolve
18848         events in AppDomain. Fixes #75231
18850 2005-10-07  Martin Baulig  <martin@ximian.com>
18852         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18853         methods without debug info.
18855 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18857         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18858         wrappers.
18860 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18862         * file-io.c: now that we return symlinks, use lstat and, when the file
18863         is a symbolic link, stat, to get the file attributes. Also avoid the
18864         conversion to/from utf16/external.
18866 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18868         * class.c (mono_class_layout_fields): Compute klass->has_references
18869         correctly if an embedded valuetype is not yet initialized. Fixes
18870         #76331.
18872 2005-10-04  Martin Baulig  <martin@ximian.com>
18874         * metadata.c
18875         (mono_metadata_load_generic_param_constraints): New public
18876         function; splitted the constraints loading out from
18877         mono_metadata_load_generic_params().
18879         * class.c (mono_class_create_from_typedef): Call
18880         mono_metadata_load_generic_param_constraints() after setting up
18881         the type and creating our parent; fixes #75329.
18883 2005-10-04  Martin Baulig  <martin@ximian.com>
18885         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18886         non-dynamic parent classes.
18888 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18890         * file-io.c : win32 build fix (ETXTBSY seems not found).
18892 2005-10-04  Martin Baulig  <martin@ximian.com>
18894         * reflection.c
18895         (mono_image_get_methodspec_token): Make the cache actually work;
18896         fixes #75974.
18898 2005-10-04  Martin Baulig  <martin@ximian.com>
18900         * class.c (mono_class_name_from_token): Removed the unneccessary
18901         `MonoGenericContext *' argument.
18903 2005-10-04  Martin Baulig  <martin@ximian.com>
18905         * loader.c
18906         (method_from_methodspec): Make the caching work again; fixes the
18907         performance regression from #76262.
18909 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18911         * file-io.c:
18912         * file-io.h:
18913         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18914         GetFileSystemEntries that performs the same work but without going
18915         into io-layer, locking, etc.
18917 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18919         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18920         ThreadState_Stopped as well. Fixes #76047.
18922 2005-09-29  Martin Baulig  <martin@ximian.com>
18924         * class.c
18925         (inflate_generic_context): If the new context has a `gmethod', set
18926         its `container' that that gmethod's `container'.
18928         * metadata.c
18929         (mono_metadata_parse_generic_param): Simplify things;
18930         `generic_container = generic_context->container;' is just fine.
18932         * loader.c (method_from_methodspec): Code cleanups.
18934 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18936         * decimal.c: fix warning (and let gcc generate correct
18937         code on ARM with optimizations).
18939 2005-09-28  Martin Baulig  <martin@ximian.com>
18941         * loader.c
18942         (method_from_memberref): Added `MonoGenericContext *class_context'
18943         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18944         (method_from_methodspec): If we're a memberref, use the enclosing
18945         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18947 2005-09-28  Martin Baulig  <martin@ximian.com>
18949         * object.c (mono_runtime_invoke_array): Added support for
18950         MONO_TYPE_GENERICINST; fixes #75917.
18952 2005-09-27  Martin Baulig  <martin@ximian.com>
18954         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18955         `k->byval_arg.type' to determine the actual type.
18957         * loader.c (method_from_methodspec): Removed some hacks.
18959 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18961         * class-internals.h (mono_field_is_deleted): Do the test for
18962         rtspecialname before we check the actual name of the field. This
18963         prevents us from dereferencing a pointer into the string table,
18964         saving us from accessing a few pages
18966         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18967         macros. This will allow a deadlock debugger to easily be plugged
18968         in.
18970 2005-09-27  Martin Baulig  <martin@ximian.com>
18972         * loader.c (method_from_methodspec): Create a "signature"
18973         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18975 2005-09-27  Martin Baulig  <martin@ximian.com>
18977         * class.c
18978         (inflate_generic_class): Correctly set the new context's
18979         container.
18981         * loader.c
18982         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18983         instead of a `MonoGenericContext *'.
18984         (mono_method_signature_full): Take a `MonoGenericContainer *'
18985         instead of a `MonoGenericContext *'.
18987         * metadata.c
18988         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18989         instead of a `MonoGenericContext *'.
18990         (mono_metadata_parse_method_signature_full): Likewise.
18992 2005-09-26  Martin Baulig  <martin@ximian.com>
18994         * class.c
18995         (mono_class_from_generic_parameter): Set `klass->generic_container'
18996         (mono_class_from_generic_parameter): Likewise.
18997         (mono_bounded_array_class_get): We inherit the generic container
18998         from the element class.
19000         * loader.c
19001         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19002         argument rather than computing it here.
19003         (method_from_memberref): Correctly set the generic context before
19004         parsing the signature.  Fixes #75681.
19006 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19008         * object.c (mono_class_has_special_static_fields): Fix warnings.
19010 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19012         * assembly.c: Add parse_public_key function, to
19013         par the public keys. Also added mono_assembly_name_parse_full,
19014         to define it the parsed key should be freed or not.
19015         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19016         to parse a long format assembly name.
19017         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19018         private, since calling it to preserve the key requires
19019         freeing it manually.
19020         
19021 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19023         * locales.c : removed HAVE_ICU part.
19025 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19027         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19028         field_is_special_static if the klass has no special static fields.
19030         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19031         (MonoCachedClassInfo): Likewise.
19033         * object.c (mono_class_has_special_static_fields): New helper function.
19035 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19037         * class.c (mono_class_create_from_typedef): Don't call 
19038         interfaces_from_typedef_full for enums.
19039         (mono_class_create_from_typedef): Compute the base types of enums directly
19040         without calling mono_class_setup_fields ().
19041         (mono_class_find_enum_basetype): New helper function.
19043         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19044         one place inside the string heap.
19045         
19046 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19048         * class.c: locking fixes, code cleanups, some docs added.
19049         Allocate some data structures in the image mempool.
19051 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19053         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19054         the example code.
19055         
19056 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19058         * class-internals.h, class.c, reflection.c: reduce memory taken by
19059         MonoClass.
19061 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19063         * metadata.c, metadata.h, loader.h: documentation updates, code and
19064         API cleanups.
19066 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19068         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19069         the example code.
19071         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19072         page faults caused by the runtime while reading metadata.
19074 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19076         * socket-io.c: the field names were changed 3 months ago and no one
19077         realized until bug #76077 got filed!
19079 2005-09-20  Martin Baulig  <martin@ximian.com>
19081         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19083 2005-09-20  Martin Baulig  <martin@ximian.com>
19085         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19086         write the rank into the class entry.
19088 2005-09-20  Martin Baulig  <martin@ximian.com>
19090         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19092 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19094         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19096         * icall.c (custom_attrs_defined_internal): New icall.
19098         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19099         function.
19100         (mono_custom_attrs_construct_by_type): New helper function.
19102 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19104         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19105         terminate the resulting string. Fixes #76123.
19107 2005-09-16  Martin Baulig  <martin@ximian.com>
19109         * mono-debug.c
19110         (mono_debug_add_method): Ignore inflated methods for the moment.
19112 2005-09-14  Martin Baulig  <martin@ximian.com>
19114         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19116 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19118         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19119         return a success/failure indication.
19120         (mono_metadata_interfaces_from_typedef_full): Ditto.
19121         (get_constraints): Ditto.
19123 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19125         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19126         
19127         * marshal.c (emit_marshal_array): Add support for returning string
19128         arrays from delegates. Fixes #76063.
19130         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19132 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19134         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19135         icall.
19137 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19139         * reflection.c icall.c: Fix after mono_get_exception_type_load
19140         signature change.
19142         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19143         (mono_assembly_load_reference): Use the new helper.
19145         * class-internals.h (MonoLoaderError): New structure containing 
19146         information about type loading errors.
19148         * class-internals.h loader.c: Add APIs to store per-thread loader
19149         error information.
19151         * loader.c class.c: Set the loader error if needed.
19153         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19155 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19157         * decimal.c: fixed to handle the broken ARM fp format.
19159 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19161         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19162         broken.
19164 2005-09-06  Martin Baulig  <martin@ximian.com>
19166         * domain.c (supported_runtimes): Added v2.0.50727.
19168 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19170         * culture-info.h: reduce the size of some structures.
19172 2005-09-05  Martin Baulig  <martin@ximian.com>
19174         Reflect latest API changes in the August CTP.
19176         * icall.c
19177         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19178         ("MonoType.HasGenericArguments"): Removed.
19179         ("MonoMethod.BindGenericParameters"): Renamed to
19180         "MakeGenericMethod".
19181         ("MethodBuilder.BindGenericParameters"): Renamed to
19182         "MakeGenericMethod".    
19184 2005-09-05  Martin Baulig  <martin@ximian.com>
19186         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19188 2005-09-05  Martin Baulig  <martin@ximian.com>
19190         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19192         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19193         generic_container is non-NULL.
19195 2005-09-05  Martin Baulig  <martin@ximian.com>
19197         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19199         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19201 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19203         * reflection.c (encode_locals,
19204         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19205         for large generic types.
19207 2005-09-05  Martin Baulig  <martin@ximian.com>
19209         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19211         * class.c (mono_dup_array_type): New public method.
19212         (mono_metadata_signature_deep_dup): New public method.
19213         (dup_type): Correctly duplicate array and function types.
19215 2005-09-05  Martin Baulig  <martin@ximian.com>
19217         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19219         * reflection.c (get_default_param_value_blobs): Handle generic types
19220         and generic methods.
19222 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19224         * class.c: Fixed error reporting (method/class were inversed) for 
19225         inheritance demands.
19226         * security-manager.c|h: Added the AppDomain when calling the managed
19227         System.Security.SecurityManager.InheritanceDemand method.
19229 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19231         * reflection.c (encode_marshal_blob): 'marshaltype' and
19232         'marshaltyperef' are alternate sources for the custom marshaler
19233         name.
19235 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19237         * class.c: fix creation of array classes with rank == 1
19238         (patch by Ankit Jain <jankit@novell.com>).
19240 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19242         * object.c: fix check for creating the bound data for arrays vs
19243         szarrays.
19245 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19247         * object.c: configuration file name is now based on the executable name,
19248         not the image name. Fixes bug #75931.
19250 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19252         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19253         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19255 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19257         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19259 2005-08-24  Ankit Jain  <jankit@novell.com>
19260             Raja R Harinath  <rharinath@novell.com>
19262         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19263           called by it recursively.
19264           (mono_class_init): Remove special case in pending_init handling, since it's
19265           superseded by the fix to mono_class_from_typeref.
19267 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19269         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19270         BROKEN_THREAD_START stuff.
19272 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19274         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19275         trampoline.
19277         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19278         
19279         * object.c (mono_delegate_ctor): Replace the original function address with
19280         a delegate trampoline.
19282 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19284         * icall.c: add boolean argument to base64_to_byte_array and 
19285         InternalFromBase64String to control whether a whitespace-only string
19286         is allowed (or should casue a FormatException to be thrown). We need
19287         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19288         to match the MS behaviour in both profiles.
19289         * appdomain.c: Bump corlib version.
19291 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19293         This patch implements a big portion of publisher policy
19294         support, used to bind assembly versions and redirect
19295         one assembly from version A to version B.
19297         * assembly.c:
19298         New GSList loaded_assembly_bindings, for storing the cached
19299         assembly bindings.
19300         (assembly_binding_maps_name): New static function for checking if a 
19301         assembly binding information maps an assembly name.
19302         (mono_assembly_binding_info_free): New function for freeing
19303         assembly binding information resources.
19304         (get_publisher_policy_info): New static function for retrieving 
19305         assembly binding information from a MonoImage.
19306         (compare_versions): New static function for comparing an assembly
19307         binding information data and the version of an assembly name.
19308         (check_policy_versions): New static function for checking if an
19309         assembly binding info mapping an assembly name is valid for it.
19310         (mono_assembly_load_publisher_policy): New static function for
19311         loading the 'policy.major.minor.MyAssembly' image for an assembly
19312         with an assembly name 'aname'.
19313         (mono_assembly_bind_version): New static function for updating
19314         assembly redirection.
19315         (mono_assembly_apply_binding): New static function for applying
19316         assembly binding.
19317         (search_binding_loaded): New static function for searching 
19318         loaded assembly binding infos in the cache domain.
19319         (mono_assembly_load_full): Don't apply assembly binding for
19320         reflection only assemblies.
19322         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19323         which contains information about assembly binding. Also
19324         declare signature for mono_config_parse_publisher_policy ()
19325         function, used to retrieve pub policy info.
19326         
19327         * mono-config.c:
19328         (publisher_policy_start): New static function used to parse publisher 
19329         policy config files.
19330         (publisher_policy_parser): New static MonoParseHandler containing 
19331         the functions used when parsing config files.
19332         (mono_config_parse_publisher_policy): New function for parsing
19333         publisher policy files.
19334         
19335 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19337         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19339         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19341         * object.c (mono_get_addr_from_ftnptr): New helper function.
19343         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19345         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19347 2005-08-19  Dick Porter  <dick@ximian.com>
19349         * threads.c, threads.h, appdomain.c, appdomain.h,
19350         profiler-private.h, monitor.c, object.c, object-internals.h,
19351         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19352         store the thread ID, so it can hold a 64 bit value if needed.
19354 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19356         * reflection.c (mono_reflection_create_dynamic_method): Store the
19357         handle class into the method references as well so ldtoken works in
19358         dynamic methods.
19360         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19361         types.
19363 2005-08-19  Ankit Jain <jankit@novell.com>
19365         Fix #75847.
19366         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19367           here rather than using the method signature of a arbitrary function
19368           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19369           two arguments.
19370           Hack done with Harinath.
19372 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19374         * threadpool.c: disable printing stack traces when we get a exception
19375         in a threadpool thread. I need to do more testing to figure out which
19376         cases actually print this. Fixes bug #75828.
19378 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19380         * icall.c: there might be ignored whitespace after the last '='. This
19381         fixes length computation and bug #75840.
19383 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19385         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19386         well. Fixes #75809.
19388         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19389         #75784.
19390         
19391         * reflection.c (create_custom_attr_data): Ditto.
19393 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19395         * locales.c, culture-info.h : removed RegionLCIDMap.
19396         * culture-info-tables.h : regenerated.
19398 2005-08-16  Martin Baulig  <martin@ximian.com>
19400         * class.c (mono_type_get_name_recurse): Small fix.
19402 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19404         * locales.c : indentation fixie.
19406 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19408         * object-internals.h,
19409           locales.h,
19410           locales.c,
19411           culture-info.h,
19412           icall.c : added RegionInfo table support.
19413         * culture-info-table.h : regenerated for region support.
19415 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19417         * reflection.c (resolve_object): handle all kinds of MonoMethod
19418         including generic ones
19420 2005-08-12  Ankit Jain <jankit@novell.com>
19422         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19423           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19425 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19427         * process.c: Don't close a thread handle when it's NULL. This is a
19428         workaround for bug #75733.
19430 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19432         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19434 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19436         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19438 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19440         * threadpool.c: if a work item in the thread pool has a callback that
19441         catches a exception, don't propagate it after invoking the callback.
19442         Fixes bug #75336.
19444 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19446         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19448         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19450         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19452         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19454 2005-08-03  Ankit Jain  <jankit@novell.com>
19456         Fix #75683.
19457         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19458           PInvoke calling convention is 0.
19460 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19462         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19463         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19465 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19467         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19468         to handle threads not started by the GC (patch by Michael Meeks
19469         <michael.meeks@novell.com>).
19471 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19473         * reflection.c: Make buffer used in emitting types larger for some
19474         big generic types (patch by Michal Moskal).
19476 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19478         * mono-debug.c: Fix some (not all) alignment problems.
19480 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19482         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19483         Invoke mono_image_load_from_data_full passing the refonly
19484         parameter.
19486         * assembly.c
19487         (mono_assembly_open_from_bundle): Add the refonly argument, 
19488         in order to pass it to other methods it calls to.
19489         (do_mono_assembly_open): Add the refonly argument, in order 
19490         to pass it to other methods it calls to.
19491         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19492         the refonly parameter to it.
19494         * image.c: Add loaded_images_refonly_hash and
19495         loaded_images_refonly_guid_hash to cache the reflection
19496         only loaded images.
19497         (mono_images_init): Initialize the hash tables used for
19498         caching the reflection only images.
19499         (load_modules): Invoke mono_image_open_full passing the refonly
19500         parameter to load the modules the correct way.
19501         (build_guid_table): Add the refonly argument, to re-build the 
19502         correct hash table.
19503         (do_mono_image_open): Added the refonly argument, in order to
19504         define it for the loaded image.
19505         (mono_image_loaded_full): New function, which receives an
19506         additional parameter to look for the image in the refonly or
19507         non-refonly section.
19508         (mono_image_loaded): Updated, using mono_image_loaded_full.
19509         (mono_image_loaded_by_guid_full): The same case that happens
19510         with mono_image_loaded_full.
19511         (mono_image_loaded_by_guid): Likewise.
19512         (register_image): Use the ref_only variable inside MonoImage
19513         to decide in which hash table store the current image.
19514         (mono_image_open_from_data_full): Rename
19515         mono_image_open_from_data to mono_image_open_from_data_full,
19516         adding the refonly argument, to define the ref_only variable 
19517         inside MonoImage.
19518         (mono_image_open_from_data): Return 
19519         mono_image_open_from_data_full.
19520         (mono_image_open_full): Rename mono_image_open to
19521         mono_image_open_full, receiving the new refonly argument,
19522         to pass it to inner methods.
19523         (mono_pe_file_open): Update this function, to open
19524         a MonoImage as a non-refonly image.
19525         (mono_image_close): Use the refonly variable inside
19526         MonoImage to remove the image from the correct caches.
19528         * image.h: Add the signatures of mono_image_open_full,
19529         mono_image_open_from_data_full, mono_image_loaded_full,
19530         mono_image_loaded_by_guid_full.
19532         * metadata-internals.h: Add the ref_only field to 
19533         MonoImage.
19534         
19535 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19537         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19538         Fix the last behavior, which used to load the assemblies and
19539         extract MonoReflectionAssemblyName information, instead of
19540         extract it from the metadata tables. Needed for Reflection
19541         Only assemblies.
19542         
19543 2005-07-29  Martin Baulig  <martin@ximian.com>
19545         * mono-debug-debugger.c
19546         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19547         not initialized.
19549         * mono-debug.c
19550         (mono_debug_address_from_il_offset): Check whether we have
19551         debugging support before attempting to take the lock.
19552         (mono_debug_source_location_from_address): Likewise.
19553         (mono_debug_source_location_from_il_offset): Likewise.
19554         (mono_debug_il_offset_from_address): Likewise.
19555         (mono_debug_address_from_il_offset): Likewise.
19557 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19559         * class.c (mono_class_from_name_case): Add support for dynamic images.
19560         Fixes #75650.
19562         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19563         for #75479.
19565 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19566         
19567         * reflection.c (mono_method_get_object): Fix warning.
19569 2005-07-28  Martin Baulig  <martin@ximian.com>
19571         * mono-debug.c
19572         (mono_debug_add_wrapper): Also write the wrapper type.
19574 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19576         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19577         
19578         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19579         data indicates the class has none.
19581 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19583         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19584         loader lock with the debugger lock. Prevents deadlocks for beagle.
19586         Beagle can now run on an smp box for a weekend without any
19587         issues. Woohoo!
19589 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19591         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19592         in a module. Fixes #75629.
19594 2005-07-26  Martin Baulig  <martin@ximian.com>
19596         * mono-debug.c (mono_debug_add_wrapper): New static method.
19597         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19598         interncall or a wrapper.
19600         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19601         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19602         (MONO_DEBUGGER_VERSION): Bump to 51.
19604         * mono-debug-debugger.c
19605         (mono_debugger_add_type): Removed this empty function.
19606         (mono_debugger_add_method): Likewise.
19608 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19610         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19611         before accessing method->slot.
19613 2005-07-21  Jb Evain  <jbevain@gmail.com>
19615         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19616         Fixes #75010.
19618 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19620         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19621         #75587.
19623 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19625         * image.h image.c: Add mono_image_get_guid () API function.
19627 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19629         There were issues when multiple threads tried to load
19630         assemblies. A deadlock was created between assemblies_mutex and
19631         mono_domain_assemblies_lock. This fixes the issue by making the
19632         assembly ref counting be lock free. See bug 75586.
19633         
19634         * image.c (mono_image_close): The add ref function here was using
19635         Interlocked operations while the unref was using a mutex and a
19636         --. I don't think this was ever a bug that would be exposed in a
19637         non-pendantic way (ie, by an embedder doing a ref on one thread
19638         and an unref on another), but for the sake of correctness, this is
19639         now Interlocked.
19641         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19642         (mono_assembly_load_reference): Call mono_assembly_addref rather
19643         than touching the refcount ourselves.
19644         (mono_assembly_close): Use InterlockedDecrement to unref the
19645         assembly. Don't acquire the lock unless it is actually needed.
19647 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19649         * class.c (mono_class_layout_fields): Fix calculation of has_references
19650         for generic types.
19652 2005-07-12  Martin Baulig  <martin@ximian.com>
19654         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19656         * metadata.c
19657         (mono_type_hash): Provide better hashing for generic instances.
19658         (mono_generic_inst_hash): Improve hashing.
19659         (mono_generic_class_hash): Likewise.
19661         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19662         generic instances.
19664 2005-07-12  Martin Baulig  <martin@ximian.com>
19666         * reflection.c (mono_reflection_create_runtime_class): Remove the
19667         hack for generic type definitions and non-`Run' assemblies.
19668         (mono_reflection_bind_generic_parameters): Also use
19669         `klass->wastypebuilder' to check for TypeBuilders.
19671 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19673         * class.c (mono_class_layout_fields): Fix calculation of has_references
19674         for generic types.
19676         * class.c (inflate_generic_class): Fix a leak.
19677         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19678         for generic types.
19680 2005-07-11  Martin Baulig  <martin@ximian.com>
19682         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19683         on error.
19685 2005-07-11  Martin Baulig  <martin@ximian.com>
19687         * loader.c (find_method): Also lookup in
19688         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19690 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19692         * appdomain.c (mono_domain_unload): Don't free the error message
19693         before passing it to mono_get_exception_...
19695         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19696         
19697 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19699         * threads.c: try to better guess an available RT signal (bug #75387).
19701 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19703         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19704         and CACHE_OBJECT.
19706 2005-07-07  Martin Baulig  <martin@ximian.com>
19708         * class.c (mono_type_get_name_full): Return NULL for
19709         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19710         fixes #75408.
19712 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19714         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19715         exit the appdomain as well being aborted.
19717         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19718         change back to the root domain after calling managed code. This enables
19719         appdomains using threadpools to be unloaded.
19721 2005-07-07  Martin Baulig  <martin@ximian.com>
19723         * class-internals.h
19724         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19725         into `MonoDynamicGenericClass' since we only need it for dynamic
19726         types.
19728         * reflection.c (mono_class_bind_generic_parameters): We don't need
19729         to compute the `parent' here.
19731 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19733         * culture-info-table.h : regenerated.
19735 2005-07-06  Martin Baulig  <martin@ximian.com>
19737         * icall.c
19738         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19740         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19742 2005-07-06  Martin Baulig  <martin@ximian.com>
19744         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19745         we're doing a signature-only comparision; fixes #74945.
19747 2005-07-06  Martin Baulig  <martin@ximian.com>
19749         * class-internals.h (MonoGenericClass): Moved some things out into
19750         a new `MonoInflatedGenericClass' type.  
19751         (MonoInflatedGenericClass): New type; the `klass' of a
19752         `MonoGenericClass' is now computed lazyly in
19753         mono_get_inflated_generic_class().      
19755         * class.c (mono_get_inflated_generic_class): New public function.
19756         (mono_class_inflate_generic_method): Removed the unused
19757         `MonoClass *' argument.
19758         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19759         all the methods.
19760         (mono_class_create_generic): Make this static and merge it with
19761         mono_class_create_generic_2(); we're now called automatically from
19762         mono_get_inflated_generic_class().
19764         * loader.c (mono_method_signature): Call
19765         mono_get_inflated_method() here.
19767 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19769         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19770         type of fields with RVA.
19772         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19773         for this pseudo class.
19774         (my_mono_class_from_generic_parameter): Likewise.
19775         (mono_class_init): Allow interfaces to have cctors.
19777 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19779         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19780         lazily for AOT methods.
19782 2005-07-05  Martin Baulig  <martin@ximian.com>
19784         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19785         returns FALSE for a successful match, not TRUE.
19787 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19789         * loader.c (mono_method_get_index): Optimize this a bit.
19791 2005-07-04  Martin Baulig  <martin@ximian.com>
19793         * class.c
19794         (class_compute_field_layout): Move the check for generic type
19795         definitions into mono_class_layout_fields().  Fixes #74684.
19796         (mono_class_from_generic_parameter): Correctly compute
19797         `klass->parent'; fixes #75457.
19799         * reflection.c (register_assembly, register_module): Make sure
19800         `domain->rejobject_hash' is already created.
19802 2005-07-02  Martin Baulig  <martin@ximian.com>
19804         * class-internals.h
19805         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19806         `MonoDynamicGenericClass'.      
19808 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19810         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19811         returned by a field getter is null, since null is a valid value.
19813 2005-07-01  Martin Baulig  <martin@ximian.com>
19815         * reflection.c (mono_reflection_generic_class_initialize): Update
19816         the `dgclass->fields [i].parent' to the correct class.
19817         (mono_image_get_fieldref_token): Use the declaring type, not the
19818         reflected type.
19820 2005-07-01  Martin Baulig  <martin@ximian.com>
19822         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19824 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19826         * threads.c (thread_cleanup): assert that thread != NULL
19827         (wait_for_tids_or_state_change): We were using the wrong variable
19828         when accessing wait->threads. `i' was always out of the bounds of
19829         the array.
19831 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19833         * loader.c: map user32 and kernel32 to libMonoSupportW
19835 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19837         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19839 2005-06-28  Martin Baulig  <martin@ximian.com>
19841         * loader.c (method_from_methodspec): Fix #75334.
19843 2005-06-28  Martin Baulig  <martin@ximian.com>
19845         Fix #74953 - Arrays now implement the generic IList<T> interface
19846         on the 2.0 platform.
19848         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19850         * reflection.c (mono_class_bind_generic_parameters): New public
19851         function; similar to mono_reflection_bind_generic_parameters(),
19852         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19854         * domain.c (mono_init_internal): Try to initialize.
19855         `mono_defaults.generic_array_class' here; this'll only succeed if
19856         we're using the 2.0 corlib.
19858         * icall.c
19859         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19860         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19861         (mono_lookup_internal_call): Added support for nested classes.
19863         * loader.c
19864         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19865         we're an interncall and have generic arguments.
19867         * class.c
19868         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19869         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19870         instance of System.Array.InternalArray<T> for arrays, so they
19871         implement the generic IList<T> interface.
19873 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19875         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19876         (chastamar@yahoo.com). Fixes #75374.    
19878 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19880         * culture-info-table.h: regenerated.
19882 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19884         * icall.c: handle spaces correctly for base64 strings.
19886 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19888         * *.c: Kill some warnings.
19890 2005-06-23  Duncan Mak  <duncan@novell.com>
19892         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19893         that this builds on Solaris 10 (x86).
19895 2005-06-23  Martin Baulig  <martin@ximian.com>
19897         * class.c
19898         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19899         generic type definitions.
19901 2005-06-23  Martin Baulig  <martin@ximian.com>
19903         Fix #75331.
19905         * metadata.c (mono_class_get_overrides): Renamed to
19906         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19907         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19908         pass it to mono_get_method_full().
19910 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19912         * reflection.c (mono_reflection_create_runtime_class): take the
19913         mono_domain_lock in this method. Prevents deadlocks
19915 2005-06-22  Martin Baulig  <martin@ximian.com>
19917         * loader.c (method_from_methodspec): Fix #75330.
19919 2005-06-22  Martin Baulig  <martin@ximian.com>
19921         * reflection.c (type_get_qualified_name): Use
19922         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19923         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19924         argument; use it if we don't have an assembly name.
19926 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19928         * object.c: In mono_message_init, set "copy out" flag for in
19929         parameters with the [Out] flag.
19931 2005-06-21  Martin Baulig  <martin@ximian.com>
19933         * class.c
19934         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19935         and MONO_TYPE_PTR.
19937 2005-06-21  Martin Baulig  <martin@ximian.com>
19939         * class.c (mono_class_init): Don't initialize `class->fields' for
19940         generic instances since they're initialized again in
19941         compute_field_layout(). 
19942         (compute_field_layout): Set the field's `generic_info' here; fix
19943         #75320. 
19945 2005-06-21  Martin Baulig  <martin@ximian.com>
19947         * class-internals.h
19948         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19950         * metadata.c (mono_metadata_generic_method_equal): Also
19951         distinguish the `generic_class'; fixes #75334.
19953 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19955         * domain.c:
19956         * appdomain.c:
19957         * domain-internals.h:
19958         * reflection.c: 'domain_assemblies' field is now protected by its own
19959         lock. Don't call into managed code to run the AssemblyLoad event if we
19960         now there are no registered delegates for it.
19962 2005-06-20  Martin Baulig  <martin@ximian.com>
19964         * class.c (mono_class_is_assignable_from): Use a custom version of
19965         mono_class_has_parent() to make things work for generic instances;
19966         fix #75300.
19968 2005-06-20  Martin Baulig  <martin@ximian.com>
19970         * loader.c (method_from_methodspec): Apply a patch from
19971         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19973 2005-06-20  Martin Baulig  <martin@ximian.com>
19975         * class.c (mono_class_init): Reverted Zoltan's last change; it
19976         breaks generics.
19978 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19980         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19982 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19984         * socket-io.c: fix the index in the socket array for writable/error
19985         sockets. Fixes bug #75306.
19987 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19989         * class.c (mono_class_init): Allow interfaces to have static ctors.
19991 2005-06-17  Martin Baulig  <martin@ximian.com>
19993         * loader.c (method_from_methodspec): Use `context->container' when
19994         parsing the `gmethod->inst'.
19996 2005-06-17  Martin Baulig  <martin@ximian.com>
19998         * class.c (mono_type_get_name_recurse): Don't add the assembly
19999         name for type arguments.
20001 2005-06-15  Martin Baulig  <martin@ximian.com>
20003         * reflection.c (mono_image_get_inflated_method_token): Encode
20004         correct klass; fixes #75260.
20006 2005-06-13 Michal Moskal <malekith@nemerle.org>
20008         * icall.c: Make GetCorrespondingMethod/Constructor take
20009         MonoReflectionMethod method not MonoMethod. Removed
20010         MonoType.GetCorrespondingField, and make
20011         MonoGenericType.GetCorrespondingField take name not
20012         MonoClassField.
20014 2005-06-13  Michal Moskal <malekith@nemerle.org>
20016         * reflection.c (field_encode_signature, encode_locals):
20017          Make sizes of buffers for types larger (for big generic types).
20018          (create_generic_typespec,
20019          mono_reflection_sighelper_get_signature_local,
20020          mono_reflection_sighelper_get_signature_field):
20021          Add asserts for too small buffers.
20023 2005-06-15  Martin Baulig  <martin@ximian.com>
20025         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20026         if our parent is not a dynamic type.
20028 2005-06-15  Martin Baulig  <martin@ximian.com>
20030         * class-internals.h (MonoTypeNameFormat): New enum.
20032         * class.c
20033         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20034         (mono_type_get_full_name): Removed.
20035         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20036         argument instead of the boolean's.
20038         * icall.c (ves_icall_System_MonoType_getFullName):
20039         Added `gboolean assembly_qualified'.    
20041         * reflection.h
20042         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20044         * reflection.c (mono_reflection_parse_type): Parse the new type
20045         name format.
20047 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049         * icall.c: no need to convert from utf16 to utf8 and then back again
20050         after the call to GetLogicalDrives.
20052 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20054         * icall.c: frombase64. Fix problems exposed by new tests.
20056 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20058         * icall.c: added internal calls for converting char [] and strings in
20059         base64 into byte [].
20061 2005-06-10  Martin Baulig  <martin@ximian.com>
20063         * class.c (mono_class_create_generic_2): Read the nested classes
20064         from the metadata rather than from `gklass->nested_classes' since
20065         `gklass' might not be initialized yet.
20067 2005-06-09  Duncan Mak  <duncan@novell.com>
20069         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20070         all public headers. Fixes #74919.
20072 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20074         * domain.c: The key for proxy_vtable_hash is now a pointer
20075         array. Added new GHashFunc and GCompareFunc functions for this.
20077         * class.h: The list of interfaces in MonoRemoteClass is known in
20078         advance and can't grow (we create a new MonoRemoteClass if needed),
20079         so now the interface array can be allocated together with
20080         MonoRemoteClass.
20081         
20082         * object.c: Added a new method create_remote_class_key.
20083         Fixed mono_remote_class so it does not depend on
20084         mono_upgrade_remote_class.
20085         Removed extend_interface_array.
20086         Added new method clone_remote_class(), which makes a copy of a remote
20087         class and adds a new interface or class to it.
20088         mono_upgrade_remote_class() now creates a new remote class (or gets
20089         it from the cache) if an vtable upgrade is needed. In this way
20090         we make sure that other objects sharing the same remote class
20091         don't get the new vtable with unwanted interfaces.
20092         
20093         * object-internals.h:
20094         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20095         
20096         * marshal.c: Track changes in mono_upgrade_remote_class().
20098 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20099         * icall.c: Add runtime methods for obtaining members of inflated
20100         class, which were created from supplied non-inflated members. It
20101         is used in internal Get{Method,Constructor,Field} methods in
20102         System.Type
20104 2005-06-09  Martin Baulig  <martin@ximian.com>
20106         * reflection.c
20107         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20109 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20110         * reflection.c (mono_image_basic_init): Define
20111         Version in MonoDynamicAssembly. 
20112         
20113 2005-06-08  Martin Baulig  <martin@ximian.com>
20115         Fix #75136.
20117         * loader.c
20118         (mono_method_signature_full): New public method; takes a
20119         `MonoGenericContext *'.
20120         (find_method): Use mono_method_signature_full() and pass the
20121         klass'es context to it.
20123         * class.c (mono_class_is_inflated_method): Use
20124         mono_method_signature_full() and pass the context to it.
20126 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20128         * object.c: add proper locking in mono_remote_class_vtable(),
20129         fixes possible memory corruption.
20131 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20133         * marshal.c (mono_remoting_marshal_init): set
20134         initialized after initialization.
20136 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20138         * locales.c : hush.
20140 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20142         * object.c (extend_interface_array): fix really silly
20143         memory corrupting / comparison bug.
20145 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20147         * reflection.c: Functions added to support the creation
20148         of CustomAttributeData, which includes Attribute data
20149         used by ReflectionOnly methods.
20151         * reflection.h:  mono_reflection_get_custom_attrs_data and
20152          mono_custom_attrs_data_construct added (functions exposed).
20154          * icall.c: Added mono_reflection_get_custom_attrs_data
20155          as icall.
20156         
20157 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20159         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20160         lupus's request.
20162 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20164         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20166         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20167         dynamic DllImportAttribute.
20169         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20170         dynamic DllImportAttribute.
20172         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20173         Fixes #75162.
20175 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20177         * threads.c: avoid segfault when an unstarted thread is aborted.
20179 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20181         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20182         Returns the name and version of the runtime for reporting.
20184 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20186         * appdomain.c: bump corlib version.
20187         * object-internals.h: new field in MonoReflectionAssembly.
20189 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20191         * object-internals.h: Carlos forgot to add this field.
20193 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20195         * icall.c: Added create_version to create instances
20196         of Version of MonoReflectionAssemblyName. This change helps
20197         the AssemblyName tests to keep running fine.
20198         
20199 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20200   
20201         * object.c (mono_method_return_message_restore): A somehow less
20202         intrusive fix for #75138.
20204 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20206         * object.c (mono_method_return_message_restore): Fix computation
20207         of expected number of out args.
20209 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20211         * reflection.c (mono_image_get_method_info): Fix the case when the
20212         charset is empty.
20214 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20216         * object.c: Added missing null check in
20217           mono_method_return_message_restore.
20219 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20221         * reflection.c (mono_image_get_method_info): Handle the case when
20222         dllentry is empty.
20224 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20226         * object.c: When creating the vtable for a proxy, take into account
20227         all inherited interfaces, not only the ones registered in
20228         iclass->interfaces. This fixs bug #74996.
20229         Also, in mono_method_return_message_restore, verify that the array
20230         of out args has the expected lengh.
20232 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20234         * socket-io.c: update the timeout in Poll when the call is interrupte.
20236 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20238         * socket-io.c: support abort/suspend in Select_internal after last
20239         change.
20241 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20243         * threadpool.c: remove warning.
20245 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20247         * icall.c:
20248         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20249         removing the 1024 limit from select(). Runtime part of the fix for
20250         bug #71203.
20252 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20254         * socket-io.c: when resolving the addresses for the same
20255         host returned by gethostname(), get the local IPs from the interface
20256         list. Loopback addresses are discarded if the are interfaces up with
20257         non-loopback ones. Fixes bug #63265.
20259 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20261         * appdomain.c, verify.c, object-internals.h, reflection.c:
20262         bumped corlib number to 36, and added new extra_flags field
20263         to ReflectionMethodBuilder and friends.  Fixes #75060.
20265 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20267         * gc.c: register a new weak link only if the object is non-null
20268         (fixes bug#75047).
20270 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20272         * culture-info.h : short time pattern too.
20274 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20276         * culture-info.h : expand long time pattern string length.
20278 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20280         * culture-info-table.h : update (more French date format; #72788).
20282 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20284         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20285         the method is static. Fixes #75029.
20287 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20289         * reflection.c: Update the table_idx field of method builders after
20290         saving the module, since it can change. This is a workaround for
20291         bug #74914. 
20293 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20295         * culture-info-table.h : update (additional French date format).
20297 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20299         * icall.c (ves_icall_type_Equals): Revert last change.
20300         
20301         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20303         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20305 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20307         * class-internals.h: Added executioncontext_class field to 
20308         MonoDefaults structure.
20309         * domain.c: Cache System.Threading.ExecutionContext class in 
20310         mono_defaults.
20311         * object.c: Capture the ExecutionContext for asynchroneous calls in
20312          mono_async_result_new.
20313         * object-internals.h: Added execution_context and original_context 
20314         fields to MonoAsyncResult. Added execution_context to MonoThread.
20315         * security-manager.c|.h: Added mono_get_context_capture_method to 
20316         return the capture method (if required by the security manager or by
20317         the framework version used).
20318         * threadpool.c: Apply capture (if present) ExecutionContext in 
20319         mono_async_invoke and revert to original context after it completes.
20321 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20323         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20325 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20327         * culture-info-table.h : zh-CHT related workaround.
20329 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20331         * marshal.c (emit_marshal_custom): Add some error checking and call the
20332         methods in the ICustomMarshaler interface. Fixes #74875.
20333         
20334         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20335         native->managed wrappers.
20337 2005-05-12  Martin Baulig  <martin@ximian.com>
20339         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20340         here and use the loader lock.
20342         * mono-debug.c: Properly lock when the debugger is not attached.
20343         (mono_debug_init): Release the initial lock if we're not running
20344         in the debugger.
20346 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20348         * marshal.c (emit_marshal_custom): Pass through NULL values without
20349         calling the custom marshalling routines.
20351         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20352         conversion in structures. Fixes #74882.
20354 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20356         * culture-info-table.h : zh-* cultures were missing.
20358 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20360         * threads.c: Added a new event background_change_event which is signaled
20361         when a thread changes its background mode.
20362         Moved here several checks previously done in managed code. The checks
20363         require the thread lock, and using the thread lock in managed code
20364         can result in deadlocks.
20365         Merged Start_internal and Thread_internal into a single method. Now 
20366         Thread_internal does all work of creating and starting a thread.
20367         Added icalls for setting and getting the state of the object. Moved from
20368         managed code to avoid locking there.
20369         Added wait_for_tids_or_state_change() which is called instad of
20370         wait_for_tids when waiting for non-backround threads to end. This method
20371         will return if one of the threads ends or the background_change_event
20372         is signaled.
20373         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20374         the background mode. This method signals the background_change_event
20375         event.
20376         * icall.c:
20377         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20378         removed Start_internal.
20379         
20380 2005-05-11  Martin Baulig  <martin@ximian.com>
20382         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20383         to order of some fields to get proper alignment on 64-bit machines.
20385 2005-05-11  Martin Baulig  <martin@ximian.com>
20387         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20388         changes as they're broken and completely fuck up the debugger.
20390         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20392 2005-05-10  Martin Baulig  <martin@ximian.com>
20394         * reflection.c (mono_reflection_generic_class_initialize): Don't
20395         call mono_class_setup_parent() here.
20397 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20399         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20400         send/receive timeout use an integer in milliseconds. We were using a
20401         struct timeval.
20403 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20405         * locales.c:
20406         (internal_get_cultures): reserve the first slot of the array for the
20407         InvariantCulture, which will be filled in managed code.
20409 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20411         * reflection.c (mono_image_fill_module_table): Initialize the
20412         GENERATION field as well.
20414 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20416         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20417         Monitor.Enter on the object.
20419 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20421         * threads.c: Enable the wait for running threads when exiting.
20422         * icall.c: Suspend all threads before exiting.
20424 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20426         * assembly.c (mono_assembly_load_reference): Fix warning.
20428 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20430         * threadpool.c: changed the default number of threads per cpu. From now
20431         on, the default will be 20 + (5 * number of cpus) instead of 50.
20433 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20435         * loader.c (mono_method_get_signature_full): Add locking here.
20437 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20439         * appdomain.c: Moved methods for parsing and freeing assembly
20440         names to assembly.c.
20441         * assembly.c, domain-internals.h: Created public methods for parsing
20442         assembly names. Fixed mono_assembly_load_with_partial_name:
20443         it now finds the best match, taking into account the version,
20444         token and culture specified in the partial name. Also return
20445         the latest version if no version information is specified.
20447 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20449         * threadpool.c: replace check for SocketAsyncCall class.
20451 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20453         * threadpool-internals.h:
20454         * Makefile.am: added threadpool-internals.h
20456         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20457         that happen in threadpool threads (tested on MS).
20458         (mono_thread_pool_remove_socket): new function that dispatch any pending
20459         AIO call on a socket that is closing. By now only epoll really needs it,
20460         as select/poll wake up when the socket closes.
20463         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20465 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20467         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20469 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20471         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20473 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20475         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20476         has an abort request, convert it into a suspend request.
20478 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20480         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20481         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20482         is not supported yet.
20484 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20486         * image.c: register assemblies loaded from data (bundles) in the loaded
20487         assemblies hash. Fixes bug #74772.
20489 2005-04-29  Martin Baulig  <martin@ximian.com>
20491         * class.c (mono_type_get_name_recurse): Update to the new naming
20492         schema from the latest .NET 2.x beta2.
20493         (mono_class_setup_vtable_general): If we're a generic instance,
20494         copy the vtable from our generic type definition and inflate all
20495         the methods in it.
20497         * loader.c (find_method): Update to the new naming schema from the
20498         latest .NET 2.x beta2.
20500 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20502         * class.c (mono_class_init): Add a mono_loader_unlock to the
20503         #74734 fix.
20505 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20507         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20508         suspend_all_other_threads () call for the time being, since it can hang.
20510         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20511         the background threads to exit, since it can also hang.
20513         * class.c (mono_class_init): Applied patch from Ankit Jain 
20514         (radical@gmail.com). Avoid pending init errors when a field refers
20515         to a nested class using a typeref. Fixes #74734.
20517         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20518         this for dynamic modules.
20520 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20522         * threads.c: don't wait for threads that are in the process of aborting
20523         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20524         and waiting for background threads to finish. This makes xsp and
20525         mod-mono-server exit without random length delays and/or hangs.
20527 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20529         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20531 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20533         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20534         dynamic types to prevent infinite loops. Fixes #74727.
20536         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20537         ..._is_assignable_to.
20539 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20541         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20543 2005-04-25  Martin Baulig  <martin@ximian.com>
20545         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20547         * domain.c
20548         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20550         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20552         * reflection.c (build_compressed_metadata): Set metadata header
20553         version to 2.0.
20555 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20557         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20558         number into an integral and a decimal part. Fixes #70473.
20560         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20562 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20564         * culture-info-table.h : reflected the latest locale-builder output.
20566 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20568         * threadpool.c: check for SuspendRequested too when deciding if
20569         mono_thread_interruption_checkpoint should be called.
20571 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20573         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20574         * threads.c: remove interruption_mutex and use Interlocked instead. When
20575         suspending all the threads, wait for all the suspended events at once.
20576         If we're shutting down and get an APC that is going to be queued,
20577         call mono_thread_execute_interruption immediately, as the thread might
20578         be sleeping on a pthread condition or mutex.
20580         * icall.c: call mono_runtime_set_shutting_down before suspending the
20581         threads.
20583         Fixes bug #74693. And now xsp is happier when exiting.
20585 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20587         * loader.c (mono_stack_walk): Fix #74690.
20589 2005-04-22  Martin Baulig  <martin@ximian.com>
20591         * mono-debug.h (MonoDebugMethodJitInfo): Added
20592         `MonoDebugMethodJitInfo *jit'.
20594         * mono-debug.c (mono_debug_read_method): Cache the
20595         MonoDebugMethodJitInfo in `address->jit'.
20596         (mono_debug_free_method_jit_info): New public method.
20598 2005-04-22  Martin Baulig  <martin@ximian.com>
20600         * class.c (mono_class_is_assignable_from): Disallow
20601         type parameter -> interface.
20603 2005-04-21  Dick Porter  <dick@ximian.com>
20605         * threads.c (mono_thread_create): Turn an assertion into an error.
20607 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20609         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20610         
20611         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20612         Fix some gcc 4.0 warnings.
20614 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20616         * file-io.c: fix alt dir separator char on unix systems
20617         and cleanup (fixes bug #71214).
20619 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20621         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20622         a call to a remote domain, since the method may be an
20623         interface method in the client domain. This fixes bug #74192.
20625 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20627         * threadpool.c: recv/send are now performed before going back to managed
20628         code to save one transition.
20630 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20632         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20634         * metadata/threadpool.c: removed hack to workaround the bug above.
20636         Fixes bug #74618.
20638 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20640         * reflection.c reflection.h: Fix handling of parameter defaults in
20641         dynamic methods. Also fixes handling of parameter attributes.
20642         Fixes #74609.
20644         * mono-debug.c (mono_debug_close_image): Fix warning.
20646 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20648         * socket-io.h: replaced old unused field with new 'blocking'.
20649         * threadpool.c: restore socket blocking state on windows(tm).
20651 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20653         * icall.c: don't return the codebase in the AssemblyName[] returned by
20654         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20655         * object-internals.h: Removed FIXME (fields were presents) and fixed
20656         versioncompat declaration.
20658 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20660         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20661         not closed, so don't cleanup when it happens.
20663 2005-04-13  Chris Toshok  <toshok@ximian.com>
20665         * mono-debug-debugger.h: change prototype for
20666         mono_debugger_lookup_type.
20668         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20669         this function, although it should probably be named
20670         mono_debugger_init_type.
20672 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20674         * threadpool.c: fix non-AIO case.
20676 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20678         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20679         the built-in profiler to measure just JIT compilation times.
20681 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20683         * threadpool.c: the epollfd might be closed by another thread at
20684         any time, so ignore EBADF at treat it as a "we're closing" sign.
20686 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20688         * threadpool.c: release the semaphores with a count equals to the number
20689         of working threads in both IO and regular pools. Fixed typo that messed
20690         up the count of IO pool threads. Don't initialize the pipe handles if
20691         we're using epoll.
20693 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20695         * threadpool.c: some systems don't like a NULL when deleting the socket
20696         from epoll.
20698 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20700         * threadpool.c: fix semaphore allocation.
20702 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20704         * threadpool.c: added epoll() based implementation for asynchronous IO
20705         that is used instead of the default poll() when available.
20706         It can be disabled by setting MONO_DISABLE_AIO.
20708 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20710         * threadpool.c: windows needs 'closesocket' and instead of returning
20711         0 when the stream is closed while in select, it returns -1. Fixes bug
20712         #74573.
20714 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20716         * class.c (class_compute_field_layout): Fix the regression caused by
20717         the previous try.
20719 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20721         * threadpool.c: separate pool for socket async. IO.
20722         * threadpool.h: mono_max_worker_threads is not a global any more.
20724 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20726         * class.c (class_compute_field_layout): Fix #74549.
20728 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20730         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20731         use 2 connected sockets instead.
20733 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20735         * mono-config.c: Add new entry point for mkbundle
20736         mono_config_parse_memory. 
20738 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20740         * threadpool.c: removed another unused function.
20742 2005-04-08  Ankit Jain  <radical@corewars.org>
20744         * reflection.c (get_default_param_value_blobs): Add 'types'
20745         parameter to get the types encoded in the constant table.
20746         (mono_param_get_objects): Use the type from the constant table,
20747         not the type of the parameter, when creating default values.
20748         Handle null default values correctly.
20750 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20752         * file-io.c:
20753         * file-io.h:
20754         * threadpool.c:
20755         * threadpool.h:
20756         * icall.c:
20757         * socket-io.c: removed dead code for async IO.
20759 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20761         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20763         * threadpool.c: intercept socket async. calls and pass them to a thread
20764         that is polling and dispatching the job items to the threadpool as
20765         socket become ready. Fixes bugs #71217, #71933.
20767         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20768         between char and short/ushort arrays.
20770         * socket-io.c: remove dead code.
20772 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20774         * locales.c,
20775           icall.c : removed InternalToUpper_Comp() and
20776           InternalToLower_Comp().
20778 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20780         * char-conversions.h : The tables were incorrectly generated. Should
20781           be generated against invariant culture.
20783 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20785         * object.c (mono_runtime_invoke_array): Fix return value when 
20786         passing pre-created valuetype objects to ctors.
20788         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20789         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20790         Fixes #74338.
20792 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20794         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20795         only used with --security and hides the wrong corlib version error.
20797 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20799         * class.c: Changed mono_class_name_from_token so that types
20800         outside of a namespace don't have an initial period.  Improved
20801         the g_warning message used in _mono_class_get when loading
20802         fails.
20803         * assembly.c: In mono_assembly_load_reference, when an assembly
20804         can't be found, "No such file or directory" is misleading and
20805         unhelpful because a few paths were checked for the presence of
20806         the assembly.  When that happens (ENOENT), display a nicer
20807         message indicating the directories that were searched.  In all
20808         cases, the warning is made easier to read for non-hackers.
20810 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20812         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20813         project/solution.
20814         * appdomain.h|domain.c: Removed inline from functions.
20815         * appdomain.c: Reduced warnings when compiling on windows.
20816         * icall.c: Fixed output_debug declaration to gunichar2*.
20817         * mono-config.c: Reduced warnings when compiling on windows.
20818         * rand.c: Added missing "windows.h". Added missing return value.
20819         * rawbuffer.c: Added missing winsock2.h for windows.
20820         * sysmath.h: Added mono-compiler.h header to allow/ease 
20821         compilation with non-GCC compilers.
20822         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20823         Removed cast warnings.
20825         Adapted from the work of J Lothian (for VC6).
20827 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20829         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20830         from default_path.
20832 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20834         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20835         the 2.0 profile.
20837 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20839         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20840         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20841         stuff, and it would probably use $(prefix)/share rather than
20842         $(prefix)/lib.
20844 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20846         * console-io.c: added 2 includes that might be missing.
20848 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20850         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20851         profile.
20853         * reflection.c (create_custom_attr): Allocate the params array using
20854         alloca so it gets GC tracking.
20856 2005-03-23  Chris Toshok  <toshok@ximian.com>
20858         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20859         out some spew.
20861 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20863         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20864         changes to pick up any changes in prefix, etc.
20866 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20868         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20869         
20870         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20871         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20873 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20875         * class-internals.h object-internals.h class.c reflection.c: Extend the
20876         mono_lookup_dynamic_token () function to return the class of the
20877         token as well. 
20879         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20880         well. Fixes #73848.
20882 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20884         * security-manager.c: Skip inheritance checks for intra-corlib
20885         class inheritance and method overrides. This skips a lot of checks
20886         and (anyway) permissions cannot work until corlib is loaded.
20888 2005-03-23  Martin Baulig  <martin@ximian.com>
20890         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20891         MONO_TYPE_GENERICINST.  
20893 2005-03-23  Martin Baulig  <martin@ximian.com>
20895         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20897 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20899         * class.c: added locking comments to some functions.
20900         Cache the interface offsets arrays (saves about 20 KB
20901         of runtime memory in a typical app).
20902         Reduce the time overhead in mono_class_setup_supertypes ().
20904 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20906         * icall.c: speedup and fix leaks in GetMethodsByName and
20907         GetPropertiesByName.
20909 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20911         * reflection.c: some locking fixes.
20913 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20915         * metadata.c: added missing break in case statement.
20917 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20919         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20920         typedbyref return values. Fixes #73941.
20922 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20924         * security-manager.c|h: Added demandunmanaged method and 
20925         suppressunmanagedcodesecurity class to MonoSecurityManager.
20926         Renamed aptc class to allowpartiallytrustedcallers.
20928 2005-03-17  Martin Baulig  <martin@ximian.com>
20930         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20932 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20934         * file-io.c: disabled file async. IO using aio_*. It uses the
20935         threadpool now. Workaround for bug #73718.
20937 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20939         * assembly.h, mono-config.c: added code to deal with bundled configs
20940         for bundled assemblies.
20942 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20944         * *.c, private.h: cleanup, removing old private.h header file.
20946 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20948         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20949         and throw_on_unmappable_char attributes.
20951 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20953         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20954         _ProcessName_internal.
20956 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20958         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20959         #73631.
20961         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20962         are no longer used.
20964 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20966         * object.c (compute_class_bitmap): Add support for generics. Fixes
20967         #73527.
20969 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20971         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20973 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20975         * filewatcher.c: commented out the code for windows watcher, as we don't
20976         use it (we use the managed implementation instead).
20978 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20980         * object-internals.h (MonoThread): Remove 'unused1' field.
20982         * appdomain.c: Bump corlib version.
20984         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20986         * reflection.c (mono_reflection_create_runtime_class): Remove the
20987         AssemblyBuilder.Save optimization since it causes too many problems.
20989 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20991         * exception.c|h: Added mono_get_exception_reflection_type_load to
20992         create a ReflectionTypeLoadException object.
20993         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20994         to return NULL is a InheritanceDemand fails during reflection. Updated
20995         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20996         ReflectionTypeLoadException if an InheritanceDemand fails during 
20997         reflection. Added icall mapping for GetLinkDemandSecurity.
20998         * security-manager.c|h: Added ves_icall_System_Security_
20999         SecurityManager_GetLinkDemandSecurity internal call to return the
21000         class and methods permissions set for a LinkDemand. Removed unused
21001         fields in MonoSecurityManager.
21003 2005-03-10  Martin Baulig  <martin@ximian.com>
21005         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21006         it's a generic instance.
21008 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21010         * reflection.c (mono_get_object_from_blob): Applied patch from
21011         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21013         * class.c (mono_class_is_assignable_from): Another try at fixing 
21014         #73469 without breaking anything.
21016 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21018         * class.c: (mono_class_is_assignable_from): Revert the last changes
21019         since they don't work with generics.
21020         
21021         * class.c (mono_class_is_assignable_from): Fix build bustage.
21023         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21024         the managed IsAssignableFrom method. Fixes #73469.
21026         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21027         function.
21029 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21031         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21032         memory when the remoting callback does not sets the out arguments.
21033         Fixes #73007.
21035         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21036         by mistake.
21038         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21040         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21042         * appdomain.c: Bump corlib version.
21044 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21046         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21047         function.
21049         * threads.c (mono_thread_attach): Detect threads which are not started
21050         by the GC pthread wrappers.
21052 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21054         * icall.c: Added new icall for RNG.
21055         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21056         single handle on Linux to access /dev/urandom and fix #73183.
21058 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21060         * object.c: setting the new vtable in a transparent proxy object must
21061         not change the GC descriptor.
21063 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21065         * object.c: fixed compilation without GCJ support.
21066         * reflection.c: for runtime-created types ensure klass->has_references
21067         is correct (bug #73215).
21069 2005-03-02  Martin Baulig  <martin@ximian.com>
21071         * class.c (mono_class_is_assignable_from): Make this work if
21072         `oklass' is a generic instance; fixes #72831.
21074 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21076         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21077         with hasthis set.
21078         
21079         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21081         * marshal.c: Reorganize native->managed marshalling code to also use
21082         the emit_marshal_... functions.
21084 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21086         * object.c: typed allocs have issues with bitmap sizes > 30,
21087         so check for max_set >= 30.
21089 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21091         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21092         managed code. Fixes #73012.
21094         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21096         * metadata.c reflection.c: Load/Emit elem_mult as well.
21097         
21098         * metadata.h (MonoMarshalSpec): Add comment.
21100         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21102         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21103         num_elem to -1 if not given.
21105         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21107         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21108         given values.
21110 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21112         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21114 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21116         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21118         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21120 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21122         * object.c: generalized the reference bitmap creation
21123         and added hooks for the new GC.
21124         * class-internals.c: removed the gc_bitmap field from MonoClass.
21126 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21128         * domain.c: help the compiler to produce better code
21129         in mono_jit_info_table_find ().
21131 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21133         * object.c: make all allocations look typed.
21135 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21137         * socket-io.c: load Mono.Posix if it's not loaded already
21138         (fixes bug#73033).
21140 2005-02-24  Martin Baulig  <martin@ximian.com>
21142         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21143         * reflection.c (dup_type): Likewise.
21145 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21147         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21148         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21150 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21152         * domain.c, threads.c, object-internals.h: make the critical thread
21153         local vars use the fast access mode (even when we're compiled in
21154         a lib). Provide accessors to be used by the jit during codegen.
21156 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21158         * appdomain.c: Changed hook functios behavior to include
21159         support for the reflection only assemblies. Some icalls were changed
21160         to support the mentioned assemblies too. Signatures of static methods
21161         try_assembly_resolve and real_load now have an additional parameter:
21162         refonly.
21164         * assembly.c: General changes to mono_assembly_ methods to support
21165         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21166         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21167         suffix, to support an additional gbool parameter to specify whether
21168         the assembli is reflection only or not. Created some new hook functions 
21169         to add support for reflection only assemblies. Signatures of static 
21170         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21171         have now an additional parameter: refonly.
21173         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21174         indicating whether the assembly is reflection only or not.
21176         * exception.c: Add mono_get_exception_invalid_operation.
21178         * icall.c: Throw an InvalidOperationException when trying to invoke
21179         a property/method/event, or trying to set/get the value of a field.
21180         Also add an icall to retrieve the ref_only flag to the
21181         MonoReflectionAssembly.
21183 2005-02-23  Chris Toshok  <toshok@ximian.com>
21185         Part of fix for #72827.
21186         * mono-debug.c (mono_debug_add_method): add lexical block data to
21187         the info we write.  Kind of a hack at the moment - we copy the
21188         lexical block info from the MonoDebugMethodInfo to the
21189         MonoDebugMethodJitInfo here, before writing it.
21190         (mono_debug_read_method): read the lexical block info.
21192         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21194         * debug-mono-symfile.h: add lexical block support.
21196         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21197         support.
21199 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21201         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21203         * object.c (mono_runtime_free_method): Call mono_free_method () and
21204         put the TODOs there.
21206         * loader.c (mono_free_method): Free up most memory allocated for 
21207         dynamic methods.
21209 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21211         * reflection.c: properly flag a Type argument to a
21212         named custom attr value (bug #72248).
21214 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21216         * reflection.c: reduce code duplication in named custom
21217         attribute encoding.
21219 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21221         * reflection.c: properly encode custom attrs of type object
21222         (bug #72649).
21224 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21226         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21228 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21230         * socket-io.c: load System.dll if it's not loaded already
21231         (bug #72850 and #70477).
21233 2005-02-21  Martin Baulig  <martin@ximian.com>
21235         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21236         generic instances.
21238 2005-02-21  Martin Baulig  <martin@ximian.com>
21240         * reflection.c (mono_image_build_metadata): We also need to
21241         "fixup" the MethodImpl table after we computed the final method
21242         indices.  Call fixup_methodimpl() to do that.
21243         (fixup_methodimpl): New private method.
21245 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21247         * assembly.c: special case mscorlib.dll (bug#72536),
21248         patch from Carlos Alberto Cortez.
21250 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21252         * threads-types.h threads.c: Fix build bustage.
21254         * threads.c: Use a union for long<->double conversions.
21256         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21257         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21259         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21260         containing the checkpoint call with NOT_TAKEN.
21261         
21262         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21263         checkpoint before pushing the arguments, so they won't have to be
21264         spilled to stack.
21266 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21268         * domain.c, assembly.c, domain-internals.h: make some data
21269         const and relocation-free.
21271 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21273         * object.c, appdomain.c, class-internals.h: introduce the
21274         MonoClassRuntimeInfo structure to hold the info needed to
21275         use a class at runtime. Made mono_class_vtable() lock-free
21276         for all the appdomains.
21278 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21280         * metadata-internals.h, image.c: introduce a per-image mempool to
21281         be used for memory that has the same lifetime as the image.
21283 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21285         * domain.c: In mono_init_internal(), instead of selecting the first
21286         runtime version supported by an executable, get a list of all
21287         supported versions and select the one for which an mscorlib exists
21288         (since even if the runtime supports a given version, it doesn't mean
21289         that the framework for that version is installed).
21290         Modified get_runtimes_from_exe to support this behavior.
21291         In supported_runtimes, added information about additional system
21292         assembly versions.
21293         
21294         * assembly.c: Added support for more than one system assembly version
21295         per runtime version. Updated the assembly list.
21296         In mono_assembly_remap_version, removed the initial version check,
21297         since we don't know to which version we need to compare until we
21298         get the version set on which the assembly is based.
21299         Moved the code for loading corlib into the new method
21300         mono_assembly_load_corlib(), so it can be used by the initialization
21301         code.
21302         
21303         * domain-internals.h: Updated data structures and added declaration
21304         for mono_assembly_load_corlib.
21306 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21308         * reflection.c (resolve_object): Fix the creation of the signature in 
21309         the SignatureHelper case.
21311         * assembly.c (mono_assembly_remap_version): Fix binary search.
21312         
21313 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21315         * class.c: Added inheritance check when a method is overloaded (from a
21316         virtual method or when implementing an interface) and when a class is
21317         inherited. Added functions to set a failure for a class and to 
21318         retreive the exception from a failure.
21319         * class-internals.h: Added fields to MonoClass to keep the exception
21320         information status for inheritance (or other exceptions) to be thrown
21321         later (i.e. not at load time).
21322         * object.c: Throw the inheritance SecurityException when a type is to 
21323         be created with either class or method inheritance violations.
21324         * reflection.c|h: Fix when getting declsec from a class. Removed 
21325         unrequired code for class. Improved sanity in parameter naming.
21326         * security-manager.c|h: Added functions to check for class and method
21327         inheritance.
21329 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21331         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21332         and has_finalize in dynamic types as well.
21334 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21336         * culture-info-table.h : fixed currency format for en-GB (and so on).
21338 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21340         * gc.c: ensure the GC handles never have 0 as a value.
21342 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21344         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21345         a pointer to a struct to unmanaged code. Fixes #72625.
21347 2005-02-16  Martin Baulig  <martin@ximian.com>
21349         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21351 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21353         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21355 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21357         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21359         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21360         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21361         etc. Fixes #71471.
21363         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21365         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21367 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21369         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21370         changes to make the current context a field in MonoThread.
21372 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21374         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21375         the last change.
21376         
21377         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21378         extracted from mono_marshal_get_native_wrapper.
21380         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21381         to create wrappers around native functions.
21383         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21384         delegates for arbitrary function pointers. Fixes #71472.
21386 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21388         * threads.c: cleaned up the code a little.
21390 2005-02-15  Martin Baulig  <martin@ximian.com>
21392         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21393         the data table.
21395         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21396         allocate larger chunks if needed.
21398 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21400         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21401         in by mistake.
21403 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21405         * domain.c: keep the domains in an array and ensure the domain ids
21406         are kept small, so they can be used as indexes to domain-specific data
21407         with a small memory overhead.
21409 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21411         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21413 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21415         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21417 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21419         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21421         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21422         values.
21424         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21425         
21426 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21428         * domain-internals.h: add the hashtable here.
21430         * class-internals.h: Remove `info' from MonoMethod
21432         * domain.c: Add a new hashtable, jit_trampoline_hash
21434 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21436         * object.c: don't set the value of static fields
21437         (fixes bug#72494).
21439 2005-02-11  Martin Baulig  <martin@ximian.com>
21441         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21442         (mono_debug_add_method): Silently ignore the method if it's too big.
21443         (mono_debug_add_type): Likewise.
21445 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21447         * threads.c, appdomain.c: remove #ifdefs from the code.
21449 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21451         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21452         common security informations. This allows us to stay in unmanaged code
21453         when doing LinkDemand and it's special cases (except for the first 
21454         time for initialization). The flags a very much used with --security.
21455         * reflection.c|h: Added code to get declarative security attributes 
21456         for LinkDemand and InheritanceDemand. This required to refactor the
21457         existing code for Demand.
21458         * security-manager.c|h: Added new method fields for the special cases
21459         of LinkDemand.
21461 2005-02-10  Martin Baulig  <martin@ximian.com>
21463         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21464         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21466 2005-02-10  Martin Baulig  <martin@ximian.com>
21468         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21469         debugging code; this is almost a complete rewrite.
21471         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21473 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21475         * domain.c, object.h: expose mono_string_equal () and 
21476         mono_string_hash ().
21477         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21478         it's implemented in managed code.
21480 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21482         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21483         lo leak objects between appdomains.
21485 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21487         * assembly.c: old compilers compilation fix from 
21488         robertj@gmx.net (Robert Jordan).
21490 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21492         * class-internals.h: Little reminder for the future.
21494         * debug-helpers.c: Fix up wrapper_type_names
21496 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21498         * image.c, metadata-internals.h: when loading an image from a file,
21499         mmap all of it and use the same codepaths as when using a
21500         in-memory image: the code is simpler and we use less memory
21501         (both writable and readonly).
21503 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21505         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21506         API to alloc runtime data structures that need to be tracked by the
21507         GC and contain pointers.
21508         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21509         make the code more readable and eventually use a different GC.
21511 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21513         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21514         for out arguments.
21515         
21516 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21518         * object.c: In release_type_locks(), don't release the cctor lock
21519         if it has already been released. This fixes a crash in the
21520         thread5 test.
21522 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21524         * gc.c, marshal.c, icall.c: register a delegate for finalization
21525         only when the native function pointer has been allocated for it.
21527 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21529         * object.c: cleaned up some code, allocate objects that are
21530         pointer free with the atomic malloc variant. Allocate memory
21531         for static data from the mempool if it's pointer-free.
21532         Allocate the bounds array at the end of the array data, when needed.
21533         * object-internals.h, object.h: move a private function in a private
21534         header.
21535         * class.c: handle missing case in tracking references in fields.
21537 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21539         * class.c, class-internals.h: keep track if a type has
21540         reference fields in either the instance or static fields.
21542 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21544         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21545         and renamed to MonoRuntimeInfo. Added fields to store the expected
21546         framework assembly version. Changed mono_get_framework_version and
21547         mono_get_runtime_version for a single mono_get_runtime_info method.
21548         
21549         * assembly.c: Added method to remap system assembly versions to the
21550         current executing runtime version. Removed old mapping code.
21551         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21552         
21553         * icall.c, reflection.c: Track api changes.
21555 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21557         * loader.c (method_from_memberref): Improve error reporting,
21558         produce the class name instead of the typeref/typedef index. 
21560 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21562         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21564 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21566         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21567         stdcall and charset name mangling.  Reorganize the code and add
21568         some tracing stuff.
21570 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21572         * monodiet.c: More iters!
21574         * marshal.c: Iter usage.
21576         * icall.c: Iter usage.
21578         * object.c: Use iters.
21580         * debug-helpers.c: More iters
21582 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21584         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21585         under win32.
21587 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21589         * mono-debug-debugger.c: use iters
21591         * class.c, class-internals.h: mono_class_setup_events is static
21592         now
21594         * All callers: use iters
21596 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21598         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21599         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21601 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21603         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21605         * marshal.h: Add prototypes for ldfld/stfld_remote.
21607         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21608         this is called during startup.
21609         
21610 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21612         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21613         MonoThreadsSync struct private in monitor.c. Changed the way
21614         MonoThreadsSync is allocated so it's faster and there is no
21615         need to keep track of it with a finalizer and it uses less memory.
21616         This also finally allows us to allocate mono objects as ptrfree when
21617         there are no reference fields.
21619 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21621         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21622         disappearing link to the GC interface and use them to simplify
21623         the gchandles code.
21625 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21627         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21628         stfld_remote which call mono_load/store_field_new. This allows methods
21629         calling ldfld/stfld wrappers to be AOTed.
21631         * console-io.c: Include sys/filio.h under solaris.
21632         
21633         * console-io.c: Include curses.h if needed correctly.
21635 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21636         
21637         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21638         method->klass as well.
21640         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21642         * class.c (mono_class_init): Switch on lazy initialization of 
21643         methods.
21645         * class.c (mono_class_get_finalizer): Handle the case when the 
21646         finalizer is inherited.
21648 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21650         * console-io.c: <curses.h> is needed by term.h on solaris.
21652 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21654         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21655         mono_class_setup_properties where possible. Remove this ftn from
21656         the header file, and make it static.
21658 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21660         * loader.c: Add missing setup_... call.
21662         * class.c: Add missing setup_... calls.
21664         * class.c (mono_class_init): Switch on lazy initialization of 
21665         the generic vtable.
21666         
21667         * class.c (mono_class_init): Fix generics broken by the recent changes.
21669         * monodiet.c (handle_type): Add missing setup_... calls.
21671         * class.c: Back out garbage in previous patch.
21672         
21673         * class.c: Add missing setup_... calls.
21675         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21676         mono_class_setup_methods () if possible.
21678         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21680         * class-internals.h (MonoCachedClassInfo): New structure.
21682         * class.c: Initialize properties and events fields of MonoClass lazily.
21684         * class.c: Add infrastructure for lazily initializing the methods and
21685         vtable fields of MonoClass. Not yet used.
21687         * class.c (mono_class_get_finalizer): New helper function.
21689         * class.c: Add infrastructure for loading some class related data from
21690         an AOT file.
21692         * object.c: Add infrastructure for initializing the vtable from data
21693         in the AOT file.
21695         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21697         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21698         appropriate initialization function before accessing parts of the
21699         MonoClass structure.
21701         * marshal.c: Fix warnings.
21702         
21703         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21705         * mono-debug-debugger.c (get_exception_message): Use 
21706         mono_class_get_method_from_name_flags ().
21708 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21710         * reflection.c, appdomain.c: Replace a few manual searches that
21711         Zoltan missed. (Paolo approved this part of my initial patch).
21713 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21715         * profiler.c: disable recording statistical events at report time.
21717 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21719         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21720         to byteswap arrays of enum values, too (bug #72080).
21722 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21724         * appdomain.c (set_domain_search_path): Allow this to be called if
21725         domain->setup is not yet set.
21727         * loader.c (mono_method_get_index): New helper function.
21729         * loader.c reflection.c: Use mono_method_get_index ().
21731         * class.c (mono_class_get_method_from_name_flags): New helper method.
21733         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21734         this.
21736         * class.c (mono_class_get_cctor): New helper method.
21738         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21739         mono_class_get_method () to look up methods.
21741 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21743         * console-io.c: Fix the build, this should work on Windows.
21745 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21747         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21748         be set to null to keep things valid
21750 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21752         * icall.c: added Console 2.0 icalls.
21753         * Makefile.am: added console-io.[ch]
21754         * console-io.[ch]: internal calls for Console 2.0 API.
21756 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21758         * class.c: make sure we consider all the interfaces
21759         when calculating max_interface_id (bug found by
21760         Jeroen Frijters running ikvm).
21762 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21764         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21765         valuetype fields to null.
21767         * object.c (set_value): Ditto. Fixes #71669.    
21769 2005-01-31  Martin Baulig  <martin@ximian.com>
21771         * metadata.c (mono_metadata_has_generic_params): New public
21772         function; checks whether something is a generic method.
21774 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21776         * appdomain.c: fix infinite recursion when adding assemblies.
21778 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21780         * object.c: Fix small typo to return all items for Environment.
21781         GetCommandLineArgs.
21783 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21785         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21786         reflection.c: more domain and assembly-unload related fixes
21787         and memory leaks plugs.
21789 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21791         * 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.
21793 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21795         * loader.c (mono_method_signature): Make this method lazy
21796         (mono_get_method_from_token): Don't computate the signature here.
21798         Doing this saves quite a bit of memory. I got 90 kb on starting up
21799         monodoc. It should also save some disk reads on startup.
21801         * *: MonoMethod->signature might be NULL now. You *MUST* use
21802         mono_method_signature.
21804 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21806         * object.c (mono_runtime_get_main_args): Return an array from the
21807         current domain here. Fixes #71938.
21809 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21811         * monitor.c: formatting changes to comply with the
21812         mono coding style and remove #ifdefs from the code.
21814 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21816         * metadata.c, private.h: remove some unneeded data
21817         and use a more compact representation for table schemas.
21819 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21821         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21822         to get a better distribution in hash tables.
21823         * *.c: use mono_aligned_addr_hash() where appropriate.
21824         * assembly.c: make var static.
21826 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21828         * domain-internals.h: Put MonoJitInfo on a diet.
21830         * domain.c: Fix a warning.
21832 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21834         * gc.c: rework the gc handles code to reuse handles
21835         when freed.
21837 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21839         * domain.c: fixed long standing bug in mono_string_equal() which
21840         was brought to light with the ldstr changes.
21842 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21844         * reflection.c: Remove warning by adding missing include for marshal.h
21846 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21848         * domain.c, object.c: change the ldstr_table to hold
21849         MonoString* as keys: makes the runtime isinterned lookup
21850         faster and simplifies memory management.
21852 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21854         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21855         possible to add imperative security checks before calling the icall.
21856         * reflection.c: Return security attributes on the original MonoMethod
21857         (and not the wrapped one). This fix permissions on icalls.
21859 2005-01-25  Dick Porter  <dick@ximian.com>
21861         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21862         the check for mktime() support actually test the mktime() return
21863         value.  "Fixes" bug 71682, though the output is still different to
21864         MS.
21866 2005-01-25  Martin Baulig  <martin@ximian.com>
21868         * class.c (mono_class_is_assignable_from): Make this work for
21869         generic instances.
21871 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21873         * marshal.c (mono_string_utf8_to_builder)
21874         (mono_string_builder_to_utf16): We might not have ownership of the
21875         string. In thise case, we need to create a new buffer.
21877         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21878         be null, in which case, use the default capacity.
21880 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21882         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21883         GC events to the profiler.
21885 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21887         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21888         if you don't want the GC to run.
21890 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21892         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21893         start providing a GC API and keeping different implementations in
21894         their own file.
21895         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21897 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21899         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21900         mmap rather than allocating a huge buffer.
21901         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21902         above.
21904 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21906         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21907         and CheckExecutionRights.
21908         * reflection.c|h: Keep the index of the declarative security to be 
21909         used, instead of the pointer, when AOT compiler is used. Also add 
21910         class initialization when requesting demands.
21911         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21912         CheckExecutionRights. Both properties are now FALSE by default, and
21913         unmodifiable, unless the --security option is used.
21915 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21917         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21918         reflection.c: properly refcount images and assemblies, many leaks fixed.
21920 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21922         * threadpool.c: increase the timeout for threads in the thread pool to
21923         10s.  Fixes bug #67159.
21925 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21927         * class-internals.h: Sun's compiler insists on explicit
21928         signed on bit fields to handle then correctly.
21930 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21932         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21933         Make the size of the array fit only the number of invalid path
21934         chars that we have.
21936         * class.c (_mono_class_get): Improve the error reporting when a
21937         class referenced is not found, to assist debugging. 
21939 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21941         * threads.c: fix off-by-one error.
21942         * domain.c: free data allocated in the domain.
21944 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21946         * reflection.c (mono_method_body_get_object): Fill out exception info
21947         as well.
21949         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21950         structure.
21951         
21952 2005-01-19  Martin Baulig  <martin@ximian.com>
21954         * loader.c (mono_get_method_constrained): Make this work again.
21956 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21958         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21959         guint16 to match the managed side.
21961         * reflection.c (mono_reflection_body_get_object): Fill out local
21962         variables array.
21964         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21965         as well.
21967         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21968         'local_var_sig_token'.
21970 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21972         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21973         System.Drawing.
21975         * reflection.c (mono_method_body_get_object): Handle abstract and
21976         runtime methods.
21978 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21980         * marshal.c, loader.c, class-internals.h, reflection.c:
21981         store the emthod data for a wrapper in an array instead of a list.
21983 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21985         * marshal.c: change the code to allocate memory more
21986         conservatively for method wrappers.
21988 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21990         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21991         fields from MonoClass to the marshal info structure where they belong.
21993 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21995         * class.c, object.c, class-internals.h, marshal.c: rearrange
21996         some fields and tweak some types to lower memory usage.
21998 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22000         * threads.c (signal_thread_state_change): Handle the case when the
22001         target thread is the current thread.
22003         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22005         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22006         emit_ptr_to_object_conv. 
22008         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22009         marshalling. Fixes #71352.
22011 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22013         * metadata.h, blob.h: move table enum to blob.h so it can be included
22014         in any header.
22015         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22016         cut the size of MonoImage/MonoDynamicImage.
22018 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22020         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22022 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22024         * reflection.c, reflection.h, icall.c: add a function to check
22025         if an attribute type is defined for a metadata object.
22027 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22029         * object-internals.h: Added some needed fields from StringBuilder class.
22030         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22032 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22034         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22035         threads before shutting down the runtime.
22037         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22039 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22041         * object-internal.h, threads.c: implement stacksize and 
22042         parameterized thread start functionality (requires
22043         matching corlib). Marked broken code for later removal.
22045 2005-01-12  Martin Baulig  <martin@ximian.com>
22047         * class-internals.h (MonoGenericClass): Moved the `initialized'
22048         flag to MonoDynamicGenericClass, removed `init_pending'.
22049         (MonoGenericInst): Added `is_reference' flag.
22051 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22053         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22054         inside the MSDOS header. Fixes #71201.
22056         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22057         gc thread.
22058         (mono_domain_finalize): Ditto.
22060 2005-01-12  Martin Baulig  <martin@ximian.com>
22062         * class.c (mono_get_shared_generic_class): Use the cache for
22063         non-dynamic generic classes.
22065         * class-internals.h (mono_class_create_generic_2): Removed
22066         function prototype, this function is now static inside class.c.
22068         * class.c (mono_class_create_generic_2): Made this static, only
22069         call it from mono_class_init() and mono_class_setup_parent().
22070         (collect_implemented_interfaces_aux): Call mono_class_init() on
22071         the interfaces we collect.
22072         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22074 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22076         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22077         it a real thread handle.
22079         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22080         MonoJitExceptionInfo, since each catch clause needs its own variable.
22081         
22082 2005-01-11  Dick Porter  <dick@ximian.com>
22084         * image.c (mono_pe_file_open): New variant on mono_image_open()
22085         that does not set up the CLI metadata; used for FileVersionInfo so
22086         it can get the data for windows binaries too.
22087         
22088         * process.c (process_read_string_block): Don't read off the end of
22089         the StringTable block.
22091         These both fix bug 70766.
22093 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22095         * gc.c: set some fields to NULL at GC cleanup time.
22096         * threads.c: if we quit the main thread, call exit ().
22098 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22100         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22102 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22104         * threads.h, threads.c, object.c: added accessor and settor for
22105         main_thread. Handle it specially when exiting from it: wait
22106         for other foreground threads to exit.
22108 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22110         * process.c, verify.c: remove some bloat.
22112 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22114         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22115         the calling convention to cdecl under win32.
22117 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22119         * object.c (mono_object_get_size): New function to get the size of
22120         an object instance.
22122         * profiler.c (simple_allocation): Use above.
22124 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22126         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22127         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22128         get an appdomain by it's id and we can't assume the root's id is 0).
22129         * domain-internals.h: Change the function prototype to match.
22130         * icall.c: Change the icall table for AppDomain.
22132 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22134         * locales.c (string_invariant_compare_char): Only compute
22135         GUnicodeTypes in the case where we need them.  Test for ordinality
22136         first and return if so.
22138         From the commit:
22140                 /*
22141                  * FIXME: here we must use the information from c1type and c2type
22142                  * to find out the proper collation, even on the InvariantCulture, the
22143                  * sorting is not done by computing the unicode values, but their
22144                  * actual sort order.
22145                  */
22147 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22149         * loader.c: for P/Invoke methods, allow the "Internal" shared
22150         library name to refer to the calling process symbol namespace.
22152 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22154         * Makefile.am: Add the security manager to the build.
22155         * security-manager.c|h: New. Initialization of the security manager.
22157 2005-01-07  Dick Porter  <dick@ximian.com>
22159         * threads.c: 
22160         * monitor.c: Update thread state during Monitor and WaitHandle
22161         waits.  Fixes bug 71031.
22163 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22165         * reflection.c (property_encode_signature): Correctly handle when the
22166         property has no methods.
22168 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22170         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22171         
22172         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22173         fields from mb, not rmb. Fixes #71017.
22175         * marshal.c (emit_ptr_to_str_conv): Add support for 
22176         ByValTStr -> string conversion. Fixes #71015.
22178         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22180         * mempool.c (mono_mempool_contains_addr): New helper function.
22182 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22184         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22185         HasSematics encoded fields.
22186         
22187         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22188         invalid string marshalling.
22190         * metadata.c: Fix warnings.
22191         
22192 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22194         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22195         profiler support.
22197 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22199         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22200         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22201         tests.
22203 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22205         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22206         so methods containing these can be AOTed.
22208 2005-01-03  Martin Baulig  <martin@ximian.com>
22210         * loader.c (find_method): Removed the hack for generic instances.
22211         (method_from_memberref): If our parent is a generic instance, pass
22212         its generic type definition to find_method() and then inflate the
22213         method.
22214         (mono_get_method_constrained): Pass the generic type definition to
22215         find_method() and inflate the method later.
22217         * class-internals.h (MonoStats): Added `generic_class_count'.
22219         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22220         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22222         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22223         generic type definitions.
22225 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22227         * loader.c icall.c: Fix warnings.
22229 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22231         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22232         blittable types. Fixes #70864.
22234 2004-12-29  Martin Baulig  <martin@ximian.com>
22236         * icall.c
22237         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22239         * reflection.c (mono_method_get_object): Create a
22240         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22241         call mono_get_inflated_method().
22243         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22245 2004-12-27  Martin Baulig  <martin@ximian.com>
22247         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22248         (MonoMethodInflated): Added `inflated' field.
22250         * class.c (mono_class_inflate_generic_method): Don't really
22251         inflate the method here; just set the `is_inflated' flag in the
22252         MonoMethod.
22253         (mono_class_get_inflated_method): Actually inflate the method here
22254         if it's not already inflated; we use the MonoMethodInflated's new
22255         `inflated' field as a cache.
22257 2004-12-26  Martin Baulig  <martin@ximian.com>
22259         * class.c
22260         (inflate_generic_class): Moved some code out of inflate_generic_type().
22261         (mono_class_inflate_generic_method): If we're already inflated,
22262         inflate the context and use the declaring method; ie. make sure
22263         the declaring method of an inflated method is always the generic
22264         method definition.
22265         (mono_class_create_from_typedef): Create
22266         `class->generic_container->context->gclass'.
22268 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22270         * metadata-internals.h, marshal.c, reflection.c: More
22271         MonoGHashTable->GHashTable.
22273         * domain-internals.h, class.c: Change MonoGHashTable's into
22274         GHashTables for some cases where no gc stuff is used
22276         All users: update apis
22278 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22280         * metadata.c (builtin_types): Make this `const'. Makes this get
22281         put into the shareable section.
22282         (mono_metadata_init): Casts to make gcc happy.
22284 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22286         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22288 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22290         * icall.c: Added an internal call to retrieve the position and length
22291         of assembly-level declarative security attributes (RequestMinimum, 
22292         RequestOptional and RequestRefuse). This is used by the Assembly class
22293         to re-create the corresponding permission sets.
22295 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22297         * marshal.c: fix the stelemref wrapper to be type correct
22298         (and faster).
22300 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22302         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22303         to do key & 0x7fffffff. Hashtable already does this. It just
22304         results in longer code.
22306 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22308         * appdomain.c: Bump corlib version.
22309         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22310         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22311         * reflection.c|h: Add functions to get declarative security infos
22312         (blob position and length) for assemblies, classes and methods.
22314 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22316         * reflection.c: sort the constant table (bug #70693).
22318 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22320         * object-internals.h, threads.c, domain.c: add accessors for
22321         the MonoThread and MonoDomain tls keys.
22323 2004-12-18  Martin Baulig  <martin@ximian.com>
22325         * class.c (inflate_generic_type): If we're inflating a generic
22326         instance, set `ngclass->context->container = context->container';
22327         ie. the container we inflated into.
22329         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22330         inflate_generic_type() changes.
22332 2004-12-17  Martin Baulig  <martin@ximian.com>
22334         * class-internals.h
22335         (MonoGenericClass): Replaced `MonoType *generic_type' with
22336         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22337         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22338         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22340 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22342         * exception.c (mono_exception_from_token): New helper function.
22344 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22346         * assembly.c (mono_assembly_load_with_partial_name): Call 
22347         mono_assembly_loaded before invoking the preload hooks. Fixes
22348         #70564.
22350         * object-internals.h (MonoThread): Change culture_info and 
22351         ui_culture_info into an array.
22353         * threads.c: Cache culture info objects from more than one appdomain.
22355         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22356         current UI culture.
22358 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22360         * threads.h threads.c appdomain.c: Clear the culture_info field of
22361         all threads during unloading if they point to an object in the dying
22362         appdomain.
22364 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22366         * culture-info.h (TextInfoEntry): New struct
22367         * object-internals.h: sync with managed
22368         * locales.c: fill the `text_info_data' field
22369         * culture-info-tables.h: update
22371 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22373         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22374         collector.
22376 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22378         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22379         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22381 2004-12-12  Martin Baulig  <martin@ximian.com>
22383         * mono-debug-debugger.c (write_type): If we're an enum and the
22384         builtin types have already been initialized, call mono_class_init().
22386 2004-12-11  Martin Baulig  <martin@ximian.com>
22388         * metadata.c (mono_metadata_load_generic_params): Added
22389         `MonoGenericContainer *parent_container' argument; automatically
22390         compute `container->is_method'; pass the correct owner to
22391         get_constraints().      
22393         * reflection.c (compare_genericparam): Sort the GenericParam table
22394         according to increasing owners. 
22396 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22398         * profiler.c: allow disabling the default profiler.
22400 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22402         * decimal.c, icall.c: allow disabling System.Decimal support.
22404 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22406         * reflection.c: Add support for null attribute arguments.
22408 2004-12-09  Martin Baulig  <martin@ximian.com>
22410         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22411         names to get rid of compiler warnings.
22413 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22415         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22416         mono_marshal_load_type_info (). Fixes #69625.
22417         (mono_marshal_get_ptr_to_struct): Likewise.
22419 2004-12-08  Martin Baulig  <martin@ximian.com>
22421         * mono-debug.h: Bumped version number to 47.
22423         * mono-debug-debugger.c
22424         (mono_debugger_event_handler, mono_debugger_event): Take two
22425         guint64 arguments insteed of a gpointer and a guint32.  
22427 2004-12-08  Martin Baulig  <martin@ximian.com>
22429         * debug-mono-symfile.h
22430         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22431         `address' to `native_offset'.
22433 2004-12-08  Martin Baulig  <martin@ximian.com>
22435         * class.c (mono_class_create_from_typespec): Only inflate if we
22436         either have `context->gclass' or `context->gmethod'.
22438 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22440         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22442         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22444         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22446         * reflection.c (mono_assembly_get_object): Remove the workaround put
22447         in for the release.
22448         
22449         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22451         * appdomain.c: Bump corlib version.
22453         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22454         be visible in other appdomains.
22456 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22458         * threads.c: Interlocked inc and dec for longs were messed up,
22459         use a KISS based impl for this. Fixes 70234
22461 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22463         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22465 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22467         * icall.c: fix to follow policy not to allow struct
22468         arguments in icalls.
22470 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22472         * process.c: make the patch that handles spaces in file paths work
22473         on mono/windows too.
22475 2004-12-06  Martin Baulig  <martin@ximian.com>
22477         * class.c (mono_class_create_generic): Call
22478         mono_class_setup_supertypes() if we're dynamic.
22479         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22481 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22483         * object-internals.h: Add new fields to MonoThread.
22485         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22487         * icall.c threads-types.h threads.c: Add new icalls.
22489         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22491         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22492         managed side.
22494         * appdomain.c: Bump corlib version.
22496         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22497         internal assemblies. Fixes #69181.
22499 2004-12-05  Martin Baulig  <martin@ximian.com>
22501         * class.c (mono_class_inflate_generic_signature): Make this a
22502         no-op if `context' is NULL or we don't have any type parameters;
22503         also copy `sentinelpos'.        
22505 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22507         * image.c: Add unbox_wrapper_cache.
22509         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22511         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22512         function generator.
22513         
22514         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22515         Fixes #70173.
22517         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22518         
22519 2004-12-04  Martin Baulig  <martin@ximian.com>
22521         * loader.c (mono_method_get_signature_full): New public function;
22522         like mono_method_get_signature(), but with an additional
22523         `MonoGenericContext *' argument.
22525         * class.c (mono_class_inflate_generic_signature): Formerly known
22526         as inflate_generic_signature(); make this public.
22528 2004-12-04  Martin Baulig  <martin@ximian.com>
22530         * metadata.c
22531         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22532         instead of a `MonoGenericContainer *'.  
22533         (mono_metadata_parse_array_full): Likewise.
22534         (mono_metadata_parse_signature_full): Likewise.
22535         (mono_metadata_parse_method_signature_full): Likewise.
22536         (mono_metadata_parse_generic_inst): Likewise.
22537         (mono_metadata_parse_generic_param): Likewise.
22538         (mono_metadata_parse_mh_full): Likewise.
22539         (mono_type_create_from_typespec_full): Likewise.
22541 2004-12-03  Martin Baulig  <martin@ximian.com>
22543         * class-internals.h (MonoGenericContainer): Replaced the
22544         `MonoGenericContext * pointer with a `MonoGenericContext'
22545         structure and made it the first element.
22547 2004-12-03  Martin Baulig  <martin@ximian.com>
22549         * class.c
22550         (inflate_generic_type): Set the `context->container' when creating
22551         a new MonoGenericContext.
22552         (mono_class_inflate_generic_method): Likewise.
22553         (mono_class_create_from_typespec): Just use `context->container'
22554         to get the container.
22556         * loader.c (method_from_methodspec): Set `context->parent' from
22557         `context->container' - and if that's a method container, use its
22558         parent.  Also set the `context->container' when creating a new
22559         MonoGenericContext.
22560         (mono_get_method_from_token): Use just `context->container' to get
22561         the container.
22563         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22564         `gclass->context->container'.
22566         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22567         the `context->container' when creating a new MonoGenericContext.
22569 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22571         * reflection.c (compare_genericparam): Sort params with identical
22572         owner by their number. Fixes gen-111 on sparc.
22574 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22576         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22577         around the domain changes.
22579         * appdomain.c (mono_domain_unload): Handle the case when the thread
22580         calling Unload is itself being aborted during unloading. Fixes #70022.
22582         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22584         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22585         checkpoint_func as an icall so it gets a wrapper.
22586         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22587         in the cross-appdomain wrappers too.
22589         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22591         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22593         * reflection.c: Fix some memory leaks.
22594         
22595 2004-12-02  Martin Baulig  <martin@ximian.com>
22597         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22599         * metadata.c (generic_class_cache): New static hashtable.
22600         (mono_metadata_lookup_generic_class): New public method.
22602 2004-12-02  Martin Baulig  <martin@ximian.com>
22604         * class.c (mono_class_create_from_typedef): Call
22605         mono_class_setup_parent() and mono_class_create_mono_type() before
22606         parsing the interfaces.
22608 2004-12-02  Martin Baulig  <martin@ximian.com>
22610         * metadata.c (generic_inst_cache): New static hashtable.
22611         (mono_metadata_lookup_generic_inst): New public function.
22612         (mono_metadata_inflate_generic_inst): New public function.
22613         (mono_metadata_parse_generic_inst): New public function.
22614         (do_mono_metadata_parse_generic_class): Use the new
22615         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22616         since this'll also use the cache.
22618         * reflection.c (mono_reflection_bind_generic_method_parameters):
22619         Use mono_metadata_lookup_generic_inst() to use the new cache.
22621         * class.c (inflate_mono_type): Use
22622         mono_metadata_inflate_generic_inst() to inflate a generic
22623         instance; this'll also use the new cache.
22625         * loader.c (method_from_methodspec): Use
22626         mono_metadata_parse_generic_inst() and
22627         mono_metadata_inflate_generic_inst() rather than parsing it
22628         manually, so we can use the new cache.
22630 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22632         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22633         the wait times out.
22635 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22637         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22638         iter->args based on whether parameters are passed in registers (i.e.
22639         MONO_ARCH_REGPARMS is defined)
22641 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22643         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22644         the exception message. Fixes #70070.
22645         (method_from_methodspec): Fix warnings.
22647 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22649         * process.c: (complete_path) return the path quoted
22651 2004-12-01  Martin Baulig  <martin@ximian.com>
22653         * class-internals.h (MonoGenericInst): New structure.
22654         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22655         `is_open' with `MonoGenericInst *inst'.
22656         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22657         `is_open' with `MonoGenericInst *inst'.
22659 2004-11-30  Martin Baulig  <martin@ximian.com>
22661         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22663         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22664         to `generic_class_cache'.
22666         * metadata.c
22667         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22668         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22669         (mono_generic_inst_is_valuetype): Renamed to
22670         mono_generic_class_is_valuetype().
22672         * class-internals.h
22673         (MonoGenericInst): Renamed to MonoGenericClass.
22674         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22675         (MonoClass): Renamed `generic_inst' to `generic_class'.
22676         (MonoGenericContext): Renamed `ginst' to `gclass'.
22678         * object-internals.h
22679         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22681         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22682         mono_reflection_generic_class_initialize().
22684         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22685         now known as "System.Reflection.MonoGenericClass".
22686         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22688 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22690         * class-internals.h: Added a flag field to MonoClass to cache the
22691         declarative security attributes actions associated with the class.
22692         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22693         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22694         applicable to the JITted method.
22695         * reflection.c|h: Added functions to extract (as flags) which security
22696         actions are available (declaratively) for a method, class or assembly.
22697         * metadata.c|h: Added functions to search the declarative security
22698         table in the metadata.
22699         
22700 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22702         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22703         EXPORTEDTYPES are already in the class name cache, so there is no
22704         need to add extra code here to look at them. Just removes a bit of
22705         cruft.
22707         (ves_icall_System_Environment_get_TickCount): No need for #if
22708         WINDOWS. We already have the code in io-layer.
22710 2004-11-28  Martin Baulig  <martin@ximian.com>
22712         * loader.c
22713         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22714         Fixes gen-112.cs.
22716 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22718         * assembly.c (do_mono_assembly_open): Instead of having a
22719         conditional WITH_BUNDLE, incorporate support for bundles here, by
22720         having a global `bundles' variable holding a pointer to the actual
22721         bundles. 
22723         (mono_register_bundled_assemblies): New API call used by the
22724         bundle code. 
22726         See mkbundle.1 for details.
22727         
22728 2004-11-27  Martin Baulig  <martin@ximian.com>
22730         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22731         the vtable for generic methods.
22733 2004-11-26  Martin Baulig  <martin@ximian.com>
22735         * metadata.c
22736         (mono_metadata_generic_method_hash): New public function.
22737         (mono_metadata_generic_method_equal): Likewise.
22739         * class-internals.h
22740         (MonoGenericContainer): Added `GHashTable *method_hash'.
22742         * reflection.c (ReflectionMethodBuilder): Added
22743         `MonoGenericContainer *generic_container'.
22744         (reflection_methodbuilder_to_mono_method): Don't create a new
22745         MonoGenericContainer each time we're called.
22746         (mono_reflection_bind_generic_method_parameters): Use
22747         `container->method_hash' to cache the results so we don't create a
22748         different method if we're called several times with the same
22749         arguments.
22751         * loader.c (method_from_methodspec): Use the new
22752         `container->method_hash' here, too.
22754 2004-11-26  Martin Baulig  <martin@ximian.com>
22756         * class.c (inflate_generic_signature): Correctly compute
22757         `res->has_type_parameters'.
22758         (mono_class_vtable): Use the `has_type_parameters' flag to
22759         determine whether we're a generic method.
22761         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22763 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22765         * object.c (mono_runtime_run_main): Fix a small memory leak.
22767 2004-11-25  Martin Baulig  <martin@ximian.com>
22769         * class.c (set_generic_param_owner): Fixed the loop.
22771 2004-11-25  Martin Baulig  <martin@ximian.com>
22773         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22774         generic methods.
22776 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22778         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22779         names. Fixes #69787.
22781 2004-11-24  Martin Baulig  <martin@ximian.com>
22783         * class.c (mono_class_create_generic_2): If we don't have a
22784         `ginst->parent', inflate `gklass->parent' to get our parent.
22786 2004-11-24  Martin Baulig  <martin@ximian.com>
22788         * reflection.c (compare_genericparam): Correctly sort the
22789         GenericParam table; fixes #69779.
22791 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22793         * reflection.c: When writing a PE file, don't create a huge
22794         buffer in memory. Just write the arrays we have to the file.
22795         This reduces memory usage.
22797         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22798         globally.
22800 2004-11-17  Martin Baulig  <martin@ximian.com>
22802         * class.c (mono_class_init): Don't setup `class->parent' for
22803         dynamic instances; moved this to mono_class_generic_2().
22804         (mono_class_create_generic): Also set `klass->inited' for dynamic
22805         generic instances.
22806         (mono_class_create_generic_2): Don't do anything for dynamic
22807         generic instances.  Set `klass->parent' here and also call
22808         mono_class_setup_parent() here. 
22810         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22811         `MonoType *parent' argument; set `ginst->parent' before calling
22812         mono_class_create_generic_2(), so we set the correct parent.
22814 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22816         * reflection.c: allow getting attributes from ModuleBuilder
22817         (used by ikvm).
22819 2004-11-17  Martin Baulig  <martin@ximian.com>
22821         * class.c (mono_class_create_from_typedef): If a type parameter is
22822         inherited from an outer class, set its owner to that class.
22824 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22826         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22827           for (int*) written size. This fixes bug #69592.
22829 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22831         * icall.c: Added IsAuthenticodePresnet internal call.
22832         * image.c|h: New function that check a MonoImage for an Authenticode
22833         signature in the certificate PE data directory.
22834         * security.c|h: New internal call to ask the runtime if an 
22835         Authenticode signature seems referenced in the PE header.
22837 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22839         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22841         * reflection.c (mono_image_create_pefile): Free the assembly streams
22842         after writing out the assembly file.
22844         * object.c (mono_runtime_run_main): Fix small memory leak.
22846         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22847         property access modifiers. Fixes #69389.
22849 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22851         * domain.c, object.c, object-internals.h, domain-internals.h,
22852         object.h, marshal.c: keep dynamic code info per domain.
22854 2004-11-15  Martin Baulig  <martin@ximian.com>
22856         * class.c (mono_type_get_name_recurse): Put type arguments in
22857         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22858         see bug #68387.
22860 2004-11-15  Martin Baulig  <martin@ximian.com>
22862         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22863         (mono_class_setup_vtable): When computing `the_cname' for a
22864         generic instance, don't include the namespace since we'd otherwise
22865         add it twice.
22867 2004-11-15  Martin Baulig  <martin@ximian.com>
22869         * class.c (mono_class_create_generic): Changed return type to void.
22870         (mono_class_create_generic_2): New public function; setup
22871         `class->method', `class->field' and `class->interfaces' here
22872         instead of in mono_class_init().
22874         * class.h (mono_class_create_generic): Moved to class-internals.h.
22876 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22878         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22879         rather than writing to memory, write to this file. Right now,
22880         we are just writting into a buffer, and copying that. However
22881         we can avoid the buffer later.
22883         (mono_dynamic_stream_reset): new function
22885         * icall.c, object-internals.h: update for the above.
22887 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22889         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22890         have been using gc'd memory. First it is slower, unlikely
22891         the comment in the source code said, secondly, it increases
22892         our footprint to do it in the gc.
22894         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22895         the method so that it does not have to copy to managed code.
22897 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22899         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22901 2004-11-12  Martin Baulig  <martin@localhost>
22903         * reflection.c (mono_image_create_token): Allow generic method
22904         definitions here, since they may appear in an `.override'; see
22905         gen-98/gen-99 for an example.
22907 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22909         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22910         #69365.
22912         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22913         descriptive.
22915 2004-11-11  Martin Baulig  <martin@ximian.com>
22917         * class.c (mono_class_setup_vtable): In an explicit interface
22918         implementation, the method name now includes the arity.
22920 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22922         * object.c (mono_array_full_copy): Fix warning.
22924 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22926         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22927         mono_class_get_method_from_name() instead.
22928         
22929         * class-internals.h: Added two new types of wrappers. 
22930         Added MonoRemotingTarget enum. Added new trampoline function type, which
22931         takes an additional MonoRemotingTarget value as parameter, so it is
22932         possible to request a trampoline for a specific target.
22933         
22934         * class.c: Added new mono_class_get_method_from_name() method.
22935         
22936         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22937         general remoting sinks and one specific for cross domain calls.
22938         
22939         * debug-helpers.c: Added new wrapper names.
22940         
22941         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22942         of a remote class.
22943         
22944         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22945         
22946         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22947         with several other methods (mono_marshal_get_xappdomain_dispatch,
22948         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22949         and others) can generate a fast remoting wrapper for cross domain calls.
22950         More information can be found in docs/remoting.
22951         Other changes: Removed mono_find_method_by_name, and used
22952         mono_class_get_method_from_name instead.
22953         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22954         is stored in the remoting invoke hashtable.
22955         
22956         * marshal.h: published the new method for getting the xdomain wrapper,
22957         and also added a method for getting the adequate wrapper for a given
22958         method and target.
22959         
22960         * object-internals.h, object.c: Added a couple of methods for capying and
22961         cloning arrays.
22962         Modified mono_install_remoting_trampoline, which takes the new remoting
22963         trampoline that has a remoting target as parameter.
22964         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22965         will return the most suitable vtable for the target.
22966         Added mono_remote_class_vtable, which returns the vtable of a remote class
22967         (which can be the normal remoting vtable or the xdomain vtable).
22968         
22969         * threads.c: the xdomain invoke and dispatch wrappers must also be
22970         protected against interruptions.
22972 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22974         * icall.c: use memmove in BlockCopyInternal when the source and
22975         destination arrays are the same.
22977 2004-11-09  Martin Baulig  <martin@ximian.com>
22979         * class-internals.h (MonoGenericContainer): Removed `method' and
22980         `signature', replaced them with `is_method' and `is_signature'
22981         flags.  Added `context'.
22983         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22984         instead of a `MonoGenericContainer *'.
22986         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22987         for dynamic type parameters.
22988         (mono_metadata_load_generic_params): Setup `container->context'.
22990         * reflection.c (mono_reflection_setup_generic_class): Setup
22991         `tb->generic_container->context'.
22992         (do_mono_reflection_bind_generic_parameters): Use
22993         mono_class_inflate_generic_type() to correctly inflate types,
22994         rather than using our own hack just for MONO_TYPE_VAR.
22996 2004-11-09  Martin Baulig  <martin@ximian.com>
22998         * class.c (mono_class_inflate_generic_method): Small fix; don't
22999         crash here.
23001         * icall.c
23002         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23003         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23004         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23005         (ves_icall_Type_BindGenericParameters): Likewise.
23006         (ves_icall_Type_get_IsGenericInstance): Likewise.
23007         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23008         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23009         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23010         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23012 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23014         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23015         assembly versions and public key tokens. Fixes #69113.
23017 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23019         * metadata.c: fix bug introduced with the type cache changes
23020         on 2004-11-06.
23022 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23024         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23025         the MonoClass pointer instead of the token in exception clauses.
23026         * reflection.c: updates for the above and make the code not depend
23027         on the structure of MonoExceptionClause.
23029 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23031         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23032         Add support for dynamic assemblies. Fixes #69114.
23034         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23036 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23038         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23039         since most only those methods use it. the code member of
23040         MonoMethodPInvoke was dead, so that can be removed too. Also,
23041         remove inline_count (again, not used), and move slot so that it
23042         can share bits with some other flags. This saves 8 bytes in the
23043         structure and gives us about 50 kb back for mcs helloworld.cs
23045         * *.[ch]: Do naming changes for the above.
23047         * loader.c (mono_method_get_header): Lazily init the header
23048         on first access.
23049         (mono_get_method_from_token): don't init the header here
23050         (mono_free_method): the header may never be allocated
23052         Overall, this saves 150 kb of unmanaged allocations
23053         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23054         memory at runtime.
23055         
23056         * loader.c, loader.h (mono_method_get_header): new accessor.
23058         * *.[ch]: use the above method. Prepares us to lazily load
23059         the header.
23061         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23062         three warnings, which are actual bugs (see 69206).
23064         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23065         unused. Saves a cool 4 bytes / method.
23067 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23069         * metadata.c (builtin_types): Add types for System.Object here.
23070         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23071         for a class or valuetype from klass->this_arg or klass->byval_arg.
23073         On mcs for a hello world, this gets us down from 21836 MonoType's
23074         to 14560.
23076         (mono_metadata_free_type): Account for the above change.
23078 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23080         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23081         exception instead of asserting if name is null.
23082         (ves_icall_System_AppDomain_GetData): Ditto.
23084 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23086         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23087         EnumBuilder.
23089         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23090         Return NULL when the domain does not have entry_assembly set.
23092         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23093         Add a 'resource_modules' argument.
23094         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23096         * reflection.c (mono_reflection_create_runtime_class): Move setting
23097         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23098         for enums too.
23100         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23101         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23102         Throw an ArgumentNullException if 'ptr' is null.
23104         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23105         assemblies here. Fixes #69020.
23107 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23109         * reflection.c (build_compressed_metadata): Fix the previous patch for
23110         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23111         the stack.
23113 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23115         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23116         the cultures is false. Fixes #69090.
23118         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23119         detected by valgrind.
23120         
23121         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23122         TypeResolve multiple times for the same type. Fixes #65577.
23124 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23126         * marshal.c: Avoid using ldftn to call managed functions. It is
23127         much slower than just a call.
23129         * reflection.c (mono_module_get_object): free the basename we
23130         allocate here from glib.
23131         
23132         * reflection.c (ensure_runtime_vtable): make sure to free
23133         overrides.  Also, we were allocating an array of MonoMethod not an
23134         array of MonoMethod*.
23136         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23138         * image.c (mono_image_close): free image->guid here.
23140 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23142         * reflection.c: Fix some spec conformance issues with the PE file
23143         structures so mcs compiled apps run on the Net 2.0 beta.
23145 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23147         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23148         Implement this. Fixes #67264.
23150         * debug-helpers.h debug-helpers.c marshal.c: Move 
23151         mono_find_method_by_name to debug-helpers.c.
23153 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23155         * object.c (mono_release_type_locks): type_initialization_hash is
23156         a GHashTable.
23158         * reflection.c object.c object-internals.h: Fix warnings.
23160         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23161         without accessors. Fixes #61561.
23163         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23164         application base from the root domain if not set. Fixes #65641.
23165         (mono_runtime_init): Fix warning.
23167 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23169         * appdomain.c: call mono_thread_pool_init.
23170         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23171         of worker threads based on the number of CPUs and the environment
23172         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23173         for non-windows (windows) systems.
23175 2004-10-27  Chris Toshok  <toshok@ximian.com>
23177         * mono-debug-debugger.c (write_class): don't call mono_class_init
23178         here, as even with the check for (!klass->init_pending), we get
23179         into a situation where we're hitting cycles in class
23180         initialization.  Fixes #68816.
23182 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23184         * image.c: Avoid overwriting values in the loaded_images_hash when an
23185         assembly is loaded multiple times. Fixes #61152.
23187         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23188         so multiple satellite assemblies for the same name can be loaded.
23189         Fixes #68259.
23191         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23192         not NULL.
23194         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23195         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23197         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23198         pending finalizers are not invoked after the appdomain has been 
23199         unloaded. Fixes #67862.
23201 2004-10-22  Martin Baulig  <martin@ximian.com>
23203         * mono-debug-debugger.c
23204         (mono_debugger_runtime_invoke): Don't box valuetypes.
23206 2004-10-22  Chris Toshok  <toshok@ximian.com>
23208         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23209         don't hide private methods.
23211 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23213         * icall.c: Allows the runtime to "share" (when known) the public key
23214         token of an assembly. This avoid the need to recalculate the token 
23215         (from the public key) in managed code.
23217 2004-10-21  Chris Toshok  <toshok@ximian.com>
23219         * debug-helpers.c (append_class_name): argh, revert last patch.
23220         
23221 2004-10-21  Chris Toshok  <toshok@ximian.com>
23223         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23224         not '/', so that it matches what the debugger uses to look up
23225         methods.
23227 2004-10-21  Martin Baulig  <martin@ximian.com>
23229         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23230         public method; this is called each time an exception is thrown and
23231         allows the debugger to use exception catch points.
23233 2004-10-21  Martin Baulig  <martin@ximian.com>
23235         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23236         the stack pointer and the exception object in some struct and pass
23237         that to the debugger.
23239 2004-10-21  Chris Toshok  <toshok@ximian.com>
23241         * mono-debug-debugger.c (do_write_class): add instance/static
23242         event support.  We don't expose "raise" or "other" yet.
23243         (event_is_static): new method.
23245 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23247         * mono-debug-debugger.c
23248         (mono_debugger_handle_exception): Remove
23249         bogus return value for fussy compilers.
23251 2004-10-20  Martin Baulig  <martin@ximian.com>
23253         * mono-debug-debugger.c
23254         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23255         (mono_debugger_handled_exception): Likewise.
23257 2004-10-20  Martin Baulig  <martin@ximian.com>
23259         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23260         MONO_DEBUGGER_EVENT_EXCEPTION.
23262         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23263         public function to send the debugger a notification for an
23264         exception and inform it about a catch/finally clause.
23266 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23268         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23269         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23270         fix 2.95 build. 
23272         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23274 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23276         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23277         marshalled as [In,Out]. Fixes #58325.
23279 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23281         * reflection.c (mono_method_body_get_object): Implement some fields.
23283 2004-10-12  Martin Baulig  <martin@ximian.com>
23285         * reflection.c (mono_reflection_bind_generic_parameters): Small
23286         fix, correctly retrieve our parent from a generic instance.
23288 2004-10-12  Martin Baulig  <martin@ximian.com>
23290         * metadata.c (mono_metadata_generic_param_equal): We always have
23291         an owner.
23293         * class.c
23294         (mono_class_from_generic_parameter): We need to have an owner.
23295         (my_mono_class_from_generic_parameter): Likewise.
23297         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23298         mono_reflection_create_generic_class() and added a new
23299         mono_reflection_setup_generic_class().  
23300         (mono_reflection_initialize_generic_param): If we're a nested
23301         generic type and inherited from the containing class, set our
23302         owner to the outer class.
23304 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23306         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23308         * reflection.c (mono_method_body_get_object): New function to create
23309         a MethodBody object.
23311         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23313 2004-10-11  Martin Baulig  <martin@ximian.com>
23315         * metadata.c (_mono_metadata_type_equal): Renamed to
23316         do_mono_metadata_type_equal() and made static.
23318 2004-10-11  Martin Baulig  <martin@ximian.com>
23320         * appdomain.c: Bump corlib version number to 28.
23322 2004-10-10  Martin Baulig  <martin@ximian.com>
23324         * class-internals.h
23325         (MonoGenericInst): Added `MonoGenericContainer *container'.
23326         (MonoGenericMethod): Likewise.
23327         (MonoGenericContext): Likewise.
23328         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23330         * metadata.c
23331         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23332         (do_mono_metadata_parse_generic_inst): Likewise.
23333         (mono_metadata_parse_type_full): New public method.  This is the actual
23334         mono_metadata_parse_type() implementation - with an additional
23335         `MonoGenericContainer *' argument.
23336         (mono_metadata_parse_array_full): Likewise.
23337         (mono_metadata_parse_signature_full): Likewise.
23338         (mono_metadata_parse_method_signature_full): Likewise.
23339         (mono_metadata_parse_mh_full): Likewise.
23340         (mono_type_create_from_typespec): Likewise.
23341         (mono_metadata_interfaces_from_typedef_full): New public method;
23342         this is similar to the other _full() methods, but we take a
23343         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23344         (mono_metadata_parse_generic_param): Take an additional
23345         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23346         from that container.
23347         (mono_metadata_generic_param_equal): New static method to compare
23348         two type parameters.
23349         (_mono_metadata_type_equal): New static method; takes an
23350         additional `gboolean signature_only' argument - if true, we don't
23351         compare the owners of generic parameters.
23352         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23353         with a TRUE argument - do a signature-only comparision.
23355         * loader.c: Use the new _full() methods and pass the
23356         MonoGenericContainer to them.
23358         * object-internals.h (MonoReflectionTypeBuilder): Added
23359         `MonoGenericContainer *generic_container' field.
23360         (MonoReflectionMethodBuilder): Likewise.
23362 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23364         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23365         case initial images of dynamic assemblies.
23367         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23369         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23371         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23372         length of event->other array.
23373         (typebuilder_setup_events): Ditto.
23375         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23376         'assembly_by_name' and add an 'assemblies' list.
23378         * assembly.h assembly.c: Add a new search hook for determining whenever
23379         an assembly is already loaded. Use this instead of searching in the
23380         loaded_assemblies list.
23382         * domain.c appdomain.c: Implement the new search hook so loaded 
23383         assemblies are now scoped by appdomain. Fixes #67727.
23385 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23387         * threads.c (mono_thread_attach): Initialize synch_lock field so
23388         mono_thread_detach works again.
23390         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23391         'lib' too. Fixes #63130.
23393 2004-10-06  Jackson Harper  <jackson@ximian.com>
23395         * culture-info-tables.h: regenerated.
23397 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23399         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23400         implemented by other interfaces in the result. Fixes #65764.
23401         
23402         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23403         Handle unloadable modules without crashing.
23405         * image.c (load_modules): Revert the previous patch since modules must
23406         have a fixed index inside the array.
23407         
23408         * image.c (load_modules): Don't include native modules in the modules
23409         array.
23411 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23413         * reflection.h: Add param_defaults field.
23415         * reflection.c: Add support for parameter defaults in dynamic methods.
23416         Fixes #64595.
23418         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23419         an empty string when a type has no namespace. Fixes #64230.
23421 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23423         * tabledefs.h: Added "internal" security actions to support non-CAS
23424         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23425         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23427 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23429         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23430         constructor of abstract class. Fixes #61689.
23432 2004-10-04  Martin Baulig  <martin@ximian.com>
23434         * class-internals.h (MonoGenericContainer): New type.
23435         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23436         `MonoGenericContainer *generic_container'.
23437         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23438         `MonoGenericContainer *generic_container'.
23440         * metadata.c (mono_metadata_load_generic_params): Return a
23441         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23442         removed the `num' argument.
23444 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23446         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23447         for dynamic images.
23449         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23450         machine fields.
23452         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23454         * reflection.c: Save pe_kind and machine values into the generated
23455         image file.
23457         * appdomain.c: Bump corlib version number.
23459         * object-internals.h: Reorganize layout of LocalBuilder.
23461         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23462         New helper function.
23464         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23465         created MonoType for dynamic types. Fixes #66180.
23467 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23469         * threadpool.c: the ares hashtable needs a critical section around it.
23470         this prevents some nasty segfaults
23472 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23474         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23475         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23476         bug 67324).
23477         
23478 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23480         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23481         
23482 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23484         * image.c: Always canonicalize image file names, to avoid loading
23485         the same assembly twice when referenced using a relative path.
23487 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23489         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23491         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23493         * marshal.c: Fix warnings.
23495 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23497         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23498         attempting to marshal the delegate_trampoline as the method_addr.
23499         This patch has a static hashtable of marshalled delegates so that 
23500         we can map delegate_trampoline addresses back to delegates.  This
23501         allows a delegate passed to managed code to be passed back into native
23502         code.  Fixes #67039
23504 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23506         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23508         * reflection.c (method_encode_code): Align method headers properly.
23509         Fixes #66025.
23511 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23513         * marshal.c: In the runtime invoke wrapper, reset the abort
23514         exception if it is cached. This avoids the automatic rethrowal of 
23515         the exception after the catch of the wrapper. Also check for pending
23516         interruptions before calling the managed method. This is done using
23517         the new method emit_thread_force_interrupt_checkpoint, since the
23518         normal checkpoint method is ignored when running the invoke wrapper.
23519         * object.c: If the abort exception is rethrown, set the abort_exc
23520         field of the thread, so it will be rethrown aftere every catch.
23521         * threadpool.c: Only run an interruption checkpoint if what has been
23522         requested is a stop of the thread (aborts will be ignored).
23523         * threads.c: By default, a thread will now never be interrumped while
23524         running the runtime invoke wrapper (this ensures that runtime_invoke
23525         will always return to the caller if an exception pointer is provided).
23526         There is a new special method mono_thread_force_interruption_checkpoint()
23527         to force an interruption checkpoint even if running a protected
23528         wrapper, which is used by the same runtime invoke wrapper to do a check
23529         at a safe point.
23531 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23533         * object.c, object-internals.h: Implemented mono_release_type_locks,
23534         which releases the cctor locks held by a thread.
23535         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23536         by a thread. Added mono_thread_exit() method to be used to safely stop
23537         a thread.
23539 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23541         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23542         Move null check before dereference.  Avoid indexing beyond the end
23543         of the 'modules' array.
23545 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23547         * metadata-internals.h (MonoImage): Add module_count field.
23548         * image.c (load_modules): Set image->module_count.
23549         (mono_image_load_file_for_image): Use image->module_count.
23550         * reflection.c (mono_image_load_module): Append to image->modules array 
23551         of dynamic assembly.
23552         (mono_module_get_object): Fix loop to actually increment index.
23553         Use image->module_count.
23554         * assembly.c (mono_assembly_load_references): Use image->module_count.
23555         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23556         Likewise.
23558 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23560         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23561         Avoid assert on generic types.
23563 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23565         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23567         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23569         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23570         function to convert a MarshalSpec structure to its managed counterpart.
23572         * reflection.c: Fix warnings.
23573         
23574         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23575         field.
23577         * icall.c (mono_create_icall_signature): Fix build.
23579 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23581         * icall.c: Add MakePointType icall.
23583         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23584         warnings.
23586 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23588         * threadpool.c: reuse allocated slots in the queue.
23590 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23592         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23594         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23596         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23597         previous change.
23599         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23600         ThrowOnUnmappableChar.
23602         * icall.c (ves_icall_Type_GetPacking): New icall.
23604 2004-09-24  Martin Baulig  <martin@ximian.com>
23606         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23608 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23610         * appdomain.c:
23611         (mono_domain_set): allow setting a domain that is being unloaded.
23612         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23613         being unloaded.
23615 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23617         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23618         the GetCustomAttributes icall.
23620 2004-09-23  Martin Baulig  <martin@ximian.com>
23622         * object-internals.h (MonoReflectionGenericParam): Replaced
23623         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23624         with `guint32 attrs'.
23626 2004-09-23  Martin Baulig  <martin@ximian.com>
23628         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23630 2004-09-23  Martin Baulig  <martin@ximian.com>
23632         * object-internals.h (GenericParameterAttributes): New enum.
23634 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23636         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23637         
23638         * class.c (init_events): Fill out event->other field.
23640         * class.c: Fix warnings.
23642         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23644 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23646         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23647         walk which doesn't supply the IL offset.
23649 2004-09-22  Martin Baulig  <martin@ximian.com>
23651         * reflection.c (mono_reflection_setup_internal_class): If we're
23652         System.ValueType, System.Object or System.Enum, set
23653         `klass->instance_size' and create the vtable.
23654         (mono_reflection_create_internal_class): If we're an enum type,
23655         get the base class from our current corlib.
23657 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23659         * reflection.h (MonoResolveTokenError): New type.
23661         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23662         icall.
23664         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23666 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23668         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23669         Support also calling constructors, but only for already allocated objects.
23671 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23673         * reflection.c (type_get_qualified_name): If the klass is null
23674         return the typename to avoid a NullRefEx.
23675         (encode_cattr_value): Get the qualified name of the boxed type,
23676         not the underlying enumtype.  Fixes #62984.
23678 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23680         * marshal.c: Fix problems with previous checkin.
23682 2004-09-21    <vargaz@freemail.hu>
23684         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23685         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23687         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23689 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23691         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23692         should only return a type for pointers, arrays, and passbyref types.
23693         Fixes bug #63841.
23695 2004-09-21  Martin Baulig  <martin@ximian.com>
23697         * domain.c (mono_debugger_check_runtime_version): New public
23698         function.
23700         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23702 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23704         * reflection.c: Added missing sort to the declarative security 
23705         attributes table. MS implementation stops seeing the attributes if the
23706         token number regress in the table (as shown by ildasm and permview).
23708 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23710         * object-internals.h (MonoReflectionModule): Add 'token' field.
23711         
23712         * reflection.c (mono_reflection_get_token): Add support for Module
23713         and Assembly.
23714         (mono_module_get_object): Set 'token' field.
23715         (mono_module_file_get_object): Set 'token' field.
23717         * icall.c: Add new Assembly and Module icalls.
23719         * appdomain.c: Bump corlib version.
23721 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23723         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23724         tokens of metadata objects.
23726         * reflection.h reflection.c (mono_reflection_get_token): New function
23727         to obtain the token of a metadata object.
23729         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23731 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23733         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23734         
23735         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23737 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23739         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23740         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23741         AssemblyBuilder to access the permissions set in the class lib.
23742         * reflection.c: Added security attributes encoding step in 
23743         mono_image_build_metadata.
23744         * tabledefs.h: Added new security actions defined in 2.0:
23745         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23747 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23749         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23750         macro parameter.
23752 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23754         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23755           finalized. There where random SIGSEVs at program termination, when
23756           an object being finalized was trying to do a string comparison and
23757           the current culture was already finalized.
23759 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23761         * threads.c: call thread_cleanup before finishing the thread if we get
23762         there.
23764 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23766         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23767         assemblies from the parent. Fixes #65665.
23769 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23771         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23772         modifiers.
23774 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23776         * reflection.h: add prototype for mono_get_dbnull_object
23777         * reflection.c: add prototypes for get_default_param_value_blobs 
23778         and mono_get_object_from_blob for fussier compilers
23780 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23782         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23783         false deadlock checks in class initialization.
23785 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23787         * image.c (mono_image_addref): Fix comment.
23789         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23790         possible.
23792 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23794         * reflection.c (mono_param_get_objects): Modified to return
23795         ParameterInfo.DefaultValue object.
23797         (get_default_param_value_blobs):
23798         (mono_get_object_from_blob):
23799         (mono_get_dbnull_object): New helper routines. 
23801         * object.c (mono_get_constant_value_from_blob): New helper routine
23802         carved out from get_default_field_value ()
23804         * object-internals.h (mono_get_constant_value_from_blob): Added
23805         function declaration.
23807 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23809         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23810         referenced assemblies. Fixes #62135.
23812         * exception.h exception.c (mono_get_exception_file_not_found2): New
23813         helper function.
23815 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23817         * class.h class.c: Add mono_type_get_underlying_type ().
23819 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23821         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23822         Fix GetTypes() to support dynamically created assemblies.
23824 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23826         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23827         
23828         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23829         previous patch.
23831         * reflection.h reflection.c loader.c: Allow dynamic construction of
23832         pinvoke methods. Fixes #65571.
23833         
23834         * reflection.c (mono_reflection_get_type): Revert previous change since
23835         it causes regressions.
23837 2004-09-08  Martin Baulig  <martin@ximian.com>
23839         * class.c (class_compute_field_layout): Don't call
23840         mono_class_layout_fields() for open generic instances.
23842 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23843         * threads.c appdomain.c: fix typo in GC macro
23845 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23847         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23848         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23850 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23852         * image.c (mono_image_close): Applied patch from 
23853         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23854         assembly is loaded multiple times from data.
23855         
23856         * image.c (mono_image_open): Fix warning.
23858 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23860         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23861         once. Fixes #58334.
23862         
23863         * reflection.c (mono_reflection_create_runtime_class): Initialize
23864         klass->nested_classes. Fixes #61224.
23866 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23868         * threads.c: sched_yield() on exit, to allow threads to quit.
23870 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23872         * object.c (mono_unhandled_exception): Remove leftover debug code.
23874 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23876         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23878 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23880         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23881         
23882         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23884 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23886         * marshal.c (emit_marshal_array): Null terminate string arrays.
23887         
23888         * marshal.c (raise_auto_layout_exception): Fix warning.
23890         * reflection.c (mono_param_get_objects): Initialize the default value
23891         with DBNull.Value, not null. Fixes #62123.
23893 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23895         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23896         throw an exception with a cute explanation.
23898 2004-09-06  Dick Porter  <dick@ximian.com>
23900         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23901         Close the new process's thread handle, as we don't use it.  The
23902         handle stays around forever otherwise.
23904 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23906         * object.c (arith_overflow): Fix warning.
23908         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23909         calling conventions in method refs. Fixes #65352.
23911         * reflection.c: Fix warnings.
23913 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23915         * icall.c: Add a new icall for Array.Clear
23917 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23919         * object.c: When allocating an array, we have to throw
23920         an overflow exception if any of the lengths are < 0.
23922 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23924         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23925         properly. Also move implementation of string array marshalling to 
23926         managed code. Fixes #42316.
23928 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23930         * assembly.c: provide more information when loading an assembly fails.
23932 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23934         * filewatcher.c: don't expect the development fam package to be
23935         installed.
23937 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23939         * marshal.c: Make a copy of the signature cookie since it will be
23940         freed by the caller.
23941         
23942         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23944         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23946         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23947         marshal specs.
23949         * marshal.c: More refactoring.
23950         
23951         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23952         smaller functions.
23954 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23956         * object.c: In mono_message_invoke, fill the output parameter array after
23957           calling the managed method (it was done before the call). This fixes
23958           bug #59299.
23960 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23962         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23963         as well.
23965 2004-09-02  Martin Baulig  <martin@ximian.com>
23967         * class.c (mono_class_instance_size): Don't allow generic type
23968         definitions or open generic instances.
23969         (mono_class_array_element_size): If we're a value type, call
23970         mono_class_instance_size() on the original class.
23972         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23973         handle generic instances.
23975         * mono-debug-debugger.c (write_type): Handle generic instances
23976         like classes.
23978 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23980         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23981         the allocation request fails. Fixes #65089.
23983         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23984         
23985         * object.c (mono_runtime_free_method): New function to free a dynamic
23986         method.
23988         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23989         delegate trampoline.
23991         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23992         with hasthis as dynamic,
23994         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23996         * domain.c (mono_jit_info_table_remove): New function to remove an
23997         entry from the jit info table.
23999         * class-internals.h (MonoMethod): Add 'dynamic' field.
24001         * loader.c: Fix warnings.
24003 2004-09-01  Martin Baulig  <martin@ximian.com>
24005         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24006         instead of mono_debugger_lock() because the latter one is a no-op
24007         unless running in the debugger.
24009 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24011         * class.c (class_compute_field_layout): Classes with auto-layout or
24012         reference fields are not blittable.
24013         
24014 2004-09-01  Dick Porter  <dick@ximian.com>
24016         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24017         mono_image_get_filename() to get the assembly location.
24019         * icall.c:
24020         * metadata.h: Fix compile warnings
24022 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24024         * class.c (class_compute_field_layout): System.Object is blittable.
24026         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24027         as in/out. Fixes #59909.
24029 2004-09-01  Martin Baulig  <martin@ximian.com>
24031         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24032         mono_metadata_generic_inst_is_valuetype() if we're a generic
24033         instance to check whether our underlying type is a reference type.
24035 2004-09-01  Martin Baulig  <martin@ximian.com>
24037         * metadata.c (mono_type_size): If we're a generic instance, call
24038         mono_class_value_size() for value types.
24040 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24042         * marshal.c: Implement more custom marshalling functionality. Fixes
24043         #64915.
24045 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24047         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24049 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24051         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24053         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24055         * icall.c: Fix some warnings.
24057         * threads.c (abort_appdomain_thread): Fix unref errors.
24058         (mono_thread_current): Fix THREAD_DEBUG define.
24060 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24062         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24064         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24066 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24068         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24069         string arrays.
24071 2004-08-28  Martin Baulig  <martin@ximian.com>
24073         * metadata.c
24074         (mono_metadata_generic_inst_is_valuetype): New public function.
24076         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24077         mono_metadata_generic_inst_is_valuetype() if we're a generic
24078         instance to check whether our underlying type is a valuetype.
24080 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24082         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24083         #63768.
24085 2004-08-25  Martin Baulig  <martin@ximian.com>
24087         * loader.c (mono_get_method_from_token): Abstract methods can also
24088         be generic and thus have type parameters.
24090         * metadata-internals.h
24091         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24093         * reflection.c (mono_image_get_generic_param_info): Don't create a
24094         metadata row, just add an entry to the `gen_params' array.
24095         (build_compressed_metadata): Sort the `gen_params' array and then
24096         actually create the metadata.
24098 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24100         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24102 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24104         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24106 2004-08-24  Martin Baulig  <martin@ximian.com>
24108         * class.cs (mono_class_is_subclass_of): Like an interface, a
24109         generic instance also derives from System.Object.
24111 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24113         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24114         custom modifiers to be in any order. Fixes #61990.
24116 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24118         * object.c: Register mono_object_new_fast icall.
24119         
24120         * object.c (mono_class_get_allocation_ftn): Return to calling
24121         mono_object_new_fast, since it seems faster to compute the object 
24122         size in unmanaged code than passing it as a parameter.
24124         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24126         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24127         this function with Boehm as the oom handler, so we don't have to check
24128         the result of GC_malloc.
24130         * object.c: Remove checks for oom.
24132         * object.h object.c (mono_class_get_allocation_ftn): New function to
24133         return the icall which can be used to allocate an instance of a given
24134         class. 
24136         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24138         * class-internals.h: Add 'enabled' field.
24140 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24142         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24144 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24145         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24146         value 0x0010.
24148 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24150         * appdomain.c: use the Tls function for appdomain too,
24151         at Zoltan's request. Actually return in mono_context_get
24153         * appdomain.c, profiler.c, threads.c: use __thread
24155 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24157         * appdomain.c threads.c: Call GC_CreateThread on windows.
24159         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24160         multiple libraries since this don't work on windows.
24162 2004-08-18  Martin Baulig  <martin@ximian.com>
24164         * class-internals.h
24165         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24166         MonoMethodHeader.
24168         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24169         MonoMethodNormal since we also need it for abstract and interface
24170         methods.
24172         * reflection.c
24173         (build_compressed_metadata): Sort the GenericParam table.
24174         (mono_image_create_token): Added `gboolean create_methodspec'
24175         argument; this is false when generating a MethodImpl token.
24176         (reflection_methodbuilder_to_mono_method): Abstract and interface
24177         methods may also have generic parameters.
24179 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24181         * appdomain.c: thread local alloc
24183 2004-08-17  Martin Baulig  <martin@ximian.com>
24185         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24187         * icall.c
24188         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24189         argument.
24191         * class.c (mono_type_get_full_name): New public function.
24192         (mono_type_get_name): Don't include the type arguments.
24194 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24196         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24197         for inclusion into the mono executable.
24199 2004-08-16  Martin Baulig  <martin@ximian.com>
24201         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24202         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24204 2004-08-14  Martin Baulig  <martin@ximian.com>
24206         * class.c (dup_type): Also copy the `byref' field.
24208 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24210         * reflection.c (create_dynamic_mono_image): Revert the last change 
24211         since it breaks bootstrap.
24213 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24215         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24217         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24218         not free them with g_free.
24220 2004-08-11  Martin Baulig  <martin@ximian.com>
24222         * reflection.c (mono_reflection_setup_internal_class): Also call
24223         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24225 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24227         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24228         called during default (first) AppDomain creation. Keep track of
24229         Evidence when loading assemblies.
24231 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24233         * opcodes.c, opcodes.h: reduce runtime relocations.
24235 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24237         * culture-info.h, locales.c: fixes and chages to sue the new
24238         optimized format of the locale data.
24239         * culture-info-tables.h: regenerated.
24241 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24242         
24243         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24245 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24247         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24248         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24249         * domain-internals.h: icall declaration.
24250         * icall.c: icall registration.
24251         * object-internals.h: New fields in MonoAssembly for CAS.
24253 2004-08-05  Duncan Mak  <duncan@ximian.com>
24255         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24256         CEE_LDELEM_ANY.
24258 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24260         * reflection.c: fix to deal with object[] arrays in custom ctors
24261         (bug #62550).
24263 2004-08-05  Martin Baulig  <martin@ximian.com>
24265         * class.c (mono_class_array_element_size): Added support for
24266         generic instances and correctly handle "recursive" types.
24268 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24270         * assembly.c: Fix warnings.
24272 2004-08-04  Martin Baulig  <martin@ximian.com>
24274         * class.c
24275         (mono_type_get_name_recurse): Added `gboolean include_arity'
24276         argument specifying whether or not we should include the generic
24277         arity in the type name.
24278         (_mono_type_get_name): New static function.
24279         (mono_class_setup_vtable): If we're a generic instance, don't
24280         include the generic arity in the names of explicit method
24281         implementations.        
24283 2004-08-03  Martin Baulig  <martin@ximian.com>
24285         * class.c (mono_type_get_name_recurse): Enclose the generic type
24286         arguments in `<', '>'.
24288 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24290         * gc.c: make GC warning messages use the trace API, they are just
24291         noise to most of the users.
24293 2004-08-03  Martin Baulig  <martin@ximian.com>
24295         * debug-mono-symfile.c (read_string): Correctly read the string.
24297 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24299         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24300         
24301         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24302         icalls.
24303         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24305 2004-07-30  Martin Baulig  <martin@ximian.com>
24307         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24308         Reflect latest symbol writer changes.   
24310 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24312         * object.c: always create an object if null is passed
24313         to Invoke() where a valuetype is expected.
24315 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24317         * marshal.c (mono_marshal_init): make managed
24318         signatures match native ones better for 64bits.
24320 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24322         * appdomain.c: hack to build correctly the private bin path on windows.
24323         Fixes bug #61991.
24325 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24327         * assembly.c: Load mscorlib from the correct framework directory
24328           (mono/<version>/mscorlib.dll).
24329         * appdomain.h: Added prototypes for new functions.
24330         * internals.h: Added some prototypes.
24331         * domain.c: When initializing the runtime, get from the executable and
24332           the configuration files the runtime version that the app supports.
24333           Added support methods for reading app.exe.config. Added list of versions
24334           supported by the JIT. Added two new methods: mono_init_from_assembly,
24335           which initializes the runtime and determines the required version from
24336           the provided exe file, and mono_init_version, which initializes
24337           the runtime using the provided version.
24338         * icall.c: Get machine.config from version-specific directory.
24339         * reflection.c: When generating an image, embed the version number
24340           of the current runtime.
24342 2004-07-28  Dick Porter  <dick@ximian.com>
24344         * socket-io.c
24345         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24346         returned sockaddr size before creating the remote address object.
24347         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24348         61608.
24350 2004-07-28  Dick Porter  <dick@ximian.com>
24352         * locales.c (string_invariant_compare_char): Fix invariant char
24353         compares between upper and lower cases.  Fixes bug 61458.
24355 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24356         
24357         * marshal.c: actually cache stelem.ref wrappers.
24358         
24359 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24361         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24362         sections and remove the mono_cli_rva_map () function.
24364 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24366         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24367         by Geoff Norton (<gnorton@customerdna.com>).
24369 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24371         * class.c: fix class loads for pointer types (typeof(int) !=
24372         typeof(int*)).
24374 2004-07-27  Martin Baulig  <martin@ximian.com>
24376         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24377         reading the debugging information from an external ".mdb" file.
24379 2004-07-24  Martin Baulig  <martin@ximian.com>
24381         * reflection.c (mono_image_get_type_info): Only write a class
24382         layout entry if we actually have a size or a packing size.
24384 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24386         * reflection.c (type_get_fully_qualified_name): 
24387         insert cast to get type checking of ?: with non-gcc compilers
24389 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24391         * rand.c: use g_getenv for both lookups of
24392         MONO_EGD_SOCKET
24394 2004-07-17  Martin Baulig  <martin@ximian.com>
24396         * reflection.c (mono_reflection_bind_generic_method_parameters):
24397         Set `gmethod->reflection_info'.
24399 2004-07-17  Martin Baulig  <martin@ximian.com>
24401         * class.c (mono_class_create_from_typedef): Insert the newly
24402         created class into the hash table before computing the interfaces
24403         since we could be called recursively.
24405 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24407         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24408         function to implement stelem.ref in managed code
24409         * class-internals.h, debug-helpers.c: a new wrapper type
24410         for the above.
24412 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24414         * gc.c: allow GC handles to work even when no GC is compiled in.
24415         Fix part of bug #61134 (GetAddrOfPinnedObject).
24417 2004-07-13  Peter Williams  <peter@newton.cx>
24419         * process.c (complete_path): Make sure we don't attempt to execute
24420         directories.
24422 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24424         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24425           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24426           and will add/subtract the hour if needed
24428 2004-07-12  Martin Baulig  <martin@ximian.com>
24430         * reflection.c (mono_field_get_object): If we have
24431         `field->generic_info', take the attributes from
24432         `field->generic_info->generic_type'.    
24434 2004-07-12  Martin Baulig  <martin@ximian.com>
24436         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24437         This function must be called before initializing the runtime.
24438         (mono_debug_init_1): New function; call this after initializing
24439         the runtime, but before loading the assembly.  It tells the
24440         debugger to load corlib and the builtin types.
24442         * mono-debug-debugger.c: Did some larger changes in the debugging
24443         code; support recursive class declarations, make sure we actually
24444         add all classes.
24446 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24448         * debug-helpers.c: undo my previous patch and fixed the real issue in
24449         ../mini/exceptions-x86.c
24451 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24453         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24454         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24455         called from other .cctors.
24457 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24459         * loader.c: Removed the mono_loader_wine_init hack now that we are
24460         doing a managed version of Windows.Forms.
24462 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24464         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24465         threadpool.c, threads.c: remove static data from rootset.
24467 2004-07-09  Dick Porter  <dick@ximian.com>
24469         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24470         Don't do any more processing if the matched length was 0.  It was
24471         increasing the size of the string before.  Fixes bug 61167.
24473 2004-07-09  Dick Porter  <dick@ximian.com>
24475         * socket-io.h:
24476         * socket-io.c
24477         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24478         Add support for SO_PEERCRED if its available.
24480 2004-07-09  Peter Bartok <pbartok@novell.com>
24481         * loader.c: winelib.exe.so error message is now only displayed if
24482         MONO_DEBUG is set. To help us avoid questions when people are trying
24483         out the new Managed.Windows.Forms.
24485 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24487         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24488         for isinst and castclass wrappers.
24490         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24491         to libmetadata from the JIT, so they could be used by the marshalling
24492         code and the interpreter.
24494         * marshal.c: Register marshalling related JIT icalls here instead of
24495         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24496         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24498         * metadata.h: Remove unneeded marshalling conversions.
24500         * opcodes.c: Update for new opcodes.
24501         
24502 2004-07-08  Martin Baulig  <martin@ximian.com>
24504         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24505         (mono_debug_get_domain_data): Make this function static.
24507 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24509         * gc.c, object.h: add nice GC handle API for embedders.
24511 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24513         * reflection.c: more changes for the new api
24515         * object.c: When we reflect on a field w/ a constant value, it
24516         will not have a memory location, so we must access metadata. Also,
24517         allow easier reading of strings so that we can read them from
24518         the constant data.
24520         * class.c (mono_class_layout_fields): no need for literal fields here.
24522         * class-internals.h: api changes for const fields
24524         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24526 2004-07-06  Martin Baulig  <martin@ximian.com>
24528         * mono-debug.h: Increment version number to 44.
24530         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24531         now a gpointer, rewrote this whole method.
24533         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24534         function.  Add information about the wrapper in a new "misc table".
24536         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24537         for the new misc table.
24539 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24541         * metadata-internals.h image.c: Add a cache for helper signatures.
24543         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24545 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24547         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24548         delegates from a delegate. Fixes #61033.
24549         
24550         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24551         marshalling of stringbuilder arrays. Fixes #59900.
24553 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24555         * icall.c: Add EnumBuilder:setup_enum_type icall.
24557 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24559         * icall.c: Added a new icall for the property version of
24560         OffsetOfStringData.
24562 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24564         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24565         it has a constant size across platforms.
24567         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24568         stack trace.
24570 2004-06-29  Martin Baulig  <martin@ximian.com>
24572         * mono-debug.c (mono_debug_add_method): Protect the whole function
24573         in mono_debugger_lock(), not just parts of it.
24575 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24577         * reflection.c: make sure padding bytes in heaps are zeroed.
24579 2004-06-24  David Waite  <mass@akuma.org>
24581         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24582         image.c, loader.c, locales.c, marshal.c, metadata.c,
24583         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24584         string-icalls.c, threads.c: change to C90-style comments from C99 /
24585         C++ -style
24587 2004-06-24  Dick Porter  <dick@ximian.com>
24589         * threads.c
24590         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24591         return createdNew.  Fixes bug 60412.
24593         * threads-types.h: 
24594         * icall.c: Add createdNew parameter to CreateMutex icall
24596 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24598         * reflection.c, object-internals.h: save default value in params.
24600 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24602         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24603         no need to build a new path combining that with the application base.
24604         Fixes bug #60442.
24606 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24608         * reflection.c: fixed minor standard compliance issues.
24610 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24612         * reflection.c: fixed issue with encoding some custom attributes
24613         (arrays in properties and fields, bug #60411).
24615 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24617         * reflection.c: fix start address when copying the public key token.
24619 2004-06-23  Martin Baulig  <martin@ximian.com>
24621         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24622         the `exc' object in a static object to put it into the GC's root set.
24624 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24626         * reflection.c: make mono_reflection_setup_internal_class ()
24627         callable a second time to setup a new parent class.
24629 2004-06-23  Dick Porter  <dick@ximian.com>
24631         * threads.c: Check for WAIT_IO_COMPLETION return values.
24633 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24635         * appdomain.c: Removed the g_free on the public key token. Now copy 
24636         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24637         * assembly.c: Added public key token string value when loading 
24638         assemblies. Fix bug #60439.
24639         * icall.c: Added missing informations (like public key) in 
24640         GetReferencedAssemblies. Fix #60519.
24641         * image.h: Changed definition for public key token from const char*
24642         public_tok_value to guchar public_key_token [17];
24643         * reflection.c: Updated for changes to public key token.
24645 2004-06-22  Lluis Sanchez Gual
24647         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24648         for the field in base classes.
24650 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24652         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24653         mark headers as not supported, they are installed only for use by the
24654         debugger.
24656 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24658         * *.c, *.h: avoid namespace pollution in public headers.
24660 2004-06-21  Martin Baulig  <martin@ximian.com>
24662         * exception.c (mono_get_exception_security): It's in
24663         "System.Security", not in "System".
24665         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24666         the exception classes.
24668 2004-06-21  Martin Baulig  <martin@ximian.com>
24670         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24671         Protect the exception object from being finalized.
24673 2004-06-21  Martin Baulig  <martin@ximian.com>
24675         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24676         public function.
24678 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24680         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24681         if it was not loaded before. Fix parts of #60439.
24683 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24685         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24686         code that was broken since Ben's change: wrappers are now
24687         dependent on the method signature only again.
24689 2004-06-21  Martin Baulig  <martin@ximian.com>
24691         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24692         added interface support.
24694 2004-06-21  Martin Baulig  <martin@ximian.com>
24696         * class.c (mono_vtable_get_static_field_data): New public method.
24698 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24700         * filewatcher.c : Windows build fix to be compliant with API changes.
24702 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24704         * class.h, class.c: more accessors.
24705         * metadata.h, metadata.c: prepare for hiding MonoType and
24706         MonoMethodSignature: people should use the accessors from now on
24707         outside of the tree.
24709 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24711         * *.c, *.h: more API cleanups.
24713 2004-06-18  Jackson Harper  <jackson@ximian.com>
24715         * assembly.c: Trace loading assemblies.
24716         * loader.c: Trace loading native libraries.
24717         * mono-config.c: Trace loading config files.
24718         
24719 2004-06-18  Dick Porter  <dick@ximian.com>
24721         * locales.c: Tell ICU the lengths of strings, it can cope with
24722         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24724 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24726         * image.c: swapped name/filename;
24728 2004-06-18  Martin Baulig  <martin@ximian.com>
24730         * mono-debug-debugger.c (write_class): Write the parent class at
24731         the end of the header.
24733 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24735         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24737 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24739         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24740         (bundle_obj): New conditional define.
24741         (BUILT_SOURCES): Remove.
24742         ($(bundle_srcs)): Make parallel-make safe.
24743         (libmonoruntime_la_LIBADD): Make unconditional.
24744         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24745         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24747 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24749         * culture-info-tables.h: It was inconsistent with the latest
24750           supp info files.
24752 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24754         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24755         be loaded.
24757         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24758         with gcc 2.95.
24760 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24762         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24763         cleaned up public header threads.h.
24765 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24767         * Makefile.am, *.c, *.h: more API cleanups.
24769 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24771         * Makefile.am: removed monosn from compilation.
24772         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24773         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24774         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24775         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24776         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24777         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24779 2004-06-15  Jackson Harper  <jackson@ximian.com>
24781         * assembly.c: Make locales lower case when searching the GAC for
24782         assemblies. gacutil will always make locales lowercase when
24783         installing so this effectively makes them case insensitive.
24784         
24785 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24787         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24788         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24789           parameter which allows to choose whether the wait can be interrupted or 
24790           not. Also added the method mono_monitor_enter(), which locks the monitor
24791           using an infinite wait and without allowing interruption.
24792           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24793           interrupted.
24794         * object.h: Added new fields in MonoThread. suspend_event holds the event
24795           used to susped/resume the thread. synch_lock is the lock object to use for
24796           modifying the thread state.
24797         * threads.c: Use the new synch_lock object for locking, instead of "this",
24798           which can generate deadlocks.
24799           Moved thread state change in Thread.Sleep and Thread.Join from managed
24800           to unmanaged code. This avoids a deadlock when the thread was suspended
24801           just after acquiring the thread lock.
24802           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24803           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24804           which is not fully implemented in the io-layer.
24805         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24807 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24809         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24810         threads-types.h: more API cleanups.
24812 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24814         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24815         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24816         threadpool.c, threads.c: first pass at the exported API cleanup.
24818 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24820         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24822 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24824         * icall.c: added internalGetHome.
24826 2004-06-14  Dick Porter  <dick@ximian.com>
24828         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24829         possible to return successfully when '.' or '..' were the only
24830         entries in a directory, but were skipped.  The MonoIOStat was not
24831         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24832         Fixes bug 59574.
24834 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24836         * reflection.c: make binaries run on .Net 1.1 by default.
24838 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24840         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24842 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24844         * marshal.c: keep track of struct size with explicit layout
24845         (bug #59979).
24847 2004-06-12  Martin Baulig  <martin@ximian.com>
24849         * mono-debug-debugger.c: Comment out a debugging g_message().
24851 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24853         * reflection.c, reflection.h: do not free custom attrs that are cached.
24854         * icall.c: use braces to make code clearer.
24856 2004-06-11  Martin Baulig  <martin@ximian.com>
24858         * class.h (MonoInflatedField): New type.
24859         (MonoClassField): Replaced `MonoType *generic_type' with
24860         `MonoInflatedField *generic_info'.
24862         * icall.c
24863         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24865 2004-06-11  Martin Baulig  <martin@ximian.com>
24867         * reflection.c (mono_image_create_method_token): Correctly encode
24868         varargs methods.
24870 2004-06-11  Martin Baulig  <martin@ximian.com>
24872         * metadata.c (mono_metadata_parse_method_signature): When parsing
24873         a MethodDef which has VarArgs, also set sentinelpos if we don't
24874         have any parameters.
24876 2004-06-11  Martin Baulig  <martin@ximian.com>
24878         * verify.c (mono_method_verify): In CEE_CALL, use
24879         mono_method_get_signature() to get the method's signature, unless
24880         we're a PInvoke method.
24882 2004-06-10  Jackson Harper  <jackson@ximian.com>
24884         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24885         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24886         logical name as the supplied path is just a prefix to the gac not
24887         the direct path to it.
24888         
24889 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24891         * reflection.c: make the token for a created method match
24892         the token of the MethodBuilder it was created from
24893         (IKVM requires this behaviour now).
24895 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24897         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24898         reflection.c, socket-io.c: leak fixes.
24900 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24902         * icall.c: handle sentinel pos in vararg methods in position different
24903         from 0.
24905 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24907         * culture-info-tables.h: freshly generated.
24909 2004-06-09  Martin Baulig  <martin@ximian.com>
24911         * loader.c (mono_get_method_constrained): Call `mono_class_init
24912         (constrained_class)'.   
24914 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24916         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24917         any methods. Fixes #59629.
24919 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24921         * culture-info-tables.h: reflecting locale-builder updates.
24923 2004-06-08  Dick Porter  <dick@ximian.com>
24925         * object.h:
24926         * locales.c: Fixed compile warnings, including a real bug in
24927         CompareInfo_internal_compare.
24928         
24929 2004-06-08  Dick Porter  <dick@ximian.com>
24931         * locales.c
24932         (ves_icall_System_Globalization_CompareInfo_internal_index):
24933         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24934         Double-check the resuls of usearches, because ICU currently
24935         ignores most of the collator settings here.  Fixes bug 59720.
24936         
24937 2004-06-08  Dick Porter  <dick@ximian.com>
24939         * locales.c
24940         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24941         Fix memory leak and segfault-causing typo.  No idea how this one
24942         lasted so long without being noticed.
24944 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24946         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24947         any methods. Fixes #59629.
24949 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24951         * assembly.c:
24952         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24953         own the critical section before). Removed dead code (that's done
24954         in the preload hook).
24956         (mono_assembly_load_with_partial_name): call the preload hook.
24958 2004-06-08  Martin Baulig  <martin@ximian.com>
24960         * metadata.c (mono_metadata_signature_alloc): Default
24961         `sentinelpos' to -1.
24963         * reflection.c (mono_image_get_array_token): Likewise.
24965 2004-06-08  Martin Baulig  <martin@ximian.com>
24967         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24969         * metadata.c (mono_metadata_parse_method_signature): When parsing
24970         a MethodDef which has VarArgs, set sentinelpos.
24972         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24973         `gint16' since we're using -1 for non-varargs methods.
24975         * reflection.c
24976         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24977         (method_encode_signature): Added varargs support.
24978         (method_builder_encode_signature): Likewise.
24979         (mono_image_get_varargs_method_token): New static method.
24980         (mono_image_create_method_token): New public method; this is
24981         called via an icall instead of mono_image_create_token() when
24982         calling a varargs method.       
24984 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24986         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24988 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24990         * culture-info-tables.h : Reflecting the latest locale-builder that
24991           fixed empty array representation ({} to {0}).
24993 2004-06-07  Jackson Harper  <jackson@ximian.com>
24995         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24996         looking up extra gac paths. This allows MONO_GAC_PATH to act
24997         exactly like a prefix.
24998         
24999 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25001         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25002         type name before modifying it. Fixes #59405.
25004 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25006         * culture-info.h: added fields for "all datetime patterns".
25007         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25008           _construct_datetime_format ()): fill xxx_patterns fields.
25009         * object.h: added fields for "all datetime patterns" to
25010           MonoDateTimeFormatInfo.
25011         * culture-info-tables.h: reflecting locale-builder updates.
25013 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25015         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25016         the event has no add and remove methods. Fixes #59629.
25018 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25020         * object.c: Fixed possible integer overflow when allocating large
25021         strings.
25023 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25025         * culture-info-tables.h: reflecting locale-builder updates.
25027 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25029         * culture-info-tables.h: reflecting locale-builder updates.
25031 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25033         * culture-info-tables.h: reflecting locale-builder updates.
25035 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25037         * threads.c: Made Thread.Sleep abortable.
25039 2004-06-02  Martin Baulig  <martin@ximian.com>
25041         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25043         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25045 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25047         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25049 2004-05-30  Jackson Harper  <jackson@ximian.com>
25051         * reflection.c: Do not hardcode assembly versions or public key
25052         tokens anymore. All of this except the corlib section was dead
25053         code anyways.
25054         
25055 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25057         * object.c (mono_runtime_invoke_array): Automatically create boxed
25058         objects for byref valuetypes if needed. Fixes #59300.
25059         
25060         * object.c (mono_method_return_message_restore): Handle 
25061         MONO_TYPE_OBJECT as well.
25063 2004-05-28  Jackson Harper  <jackson@ximian.com>
25065         * reflection.c: The modified type encoding was causing build
25066         problems. Reverted for now.
25067         
25068 2004-05-28  Jackson Harper  <jackson@ximian.com>
25070         * reflection.c/h: Take an assembly ref so that we dont create
25071         fully qualified names when encoding types in the same assembly as
25072         the custom attribute being emitted.
25073         * appdomain.c: Increment version number.
25074         
25075 2004-05-26  Duncan Mak  <duncan@ximian.com>
25077         * icall.c
25078         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25079         Set the full version number (major, minor, build, revision).
25081 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25083         * marshal.c (emit_struct_conv): increment src/dst after blit
25084         (mono_marshal_get_managed_wrapper,
25085         mono_marshal_get_native_wrapper): make sure we have marshalling
25086         info before marshalling params (info computation affects
25087         blittable)
25089         * class.c (class_compute_field_layout): correctly deal with
25090         blittable
25091         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25092         value types (as per what windows dows by default)
25093         (mono_class_setup_mono_type): System.ValueType is blittable
25094         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25095         blittable
25097         * marshal.c (mono_marshal_load_type_info): flag types  as
25098         non-blittable if the native layout doesn't match the managed
25099         layout
25101 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25103         * appdomain.c: don't add stuff in the private search path that is
25104         above the application base. If application base is not set, there's
25105         no private search path.
25107 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25109         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25110         byref struct arguments in native->managed marshalling.
25112 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25114         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25115         cache methods using signature (special case for methods
25116         that are value type or string class)
25117         
25118         * image.c (mono_image_close): clean up allocated GSList's
25119         in runtime_invoke_cache.
25121 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25123         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25124         there's no MONO_CFG_DIR environment variable defined.
25126 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25128         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25130 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25132         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25133           is interrumped.
25134         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25135           before waiting for it, and call CloseHandle after the wait to unref it.
25136           This will make sure that handles are not disposed too early.
25138 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25140         * appdomain.c:
25141         * appdomain.h:
25142         * icall.c: removed
25143         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25144         needed now.
25146         * object.c: se the application_base only for the domain that runs
25147         Main. Fixes bug #59216,
25149 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25151         * appdomain.c:
25152         * object.c: only the domain in which Main is run have
25153         SetupInformation.ConfigurationFile set, so moved a few lines from
25154         appdomain.c to object.c.
25156 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25158         * appdomain.c: we tried to load [name].(dll|exe), but according
25159         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25160         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25161         There's a test case attached to bug #58922.
25163 2004-05-27  Dick Porter  <dick@ximian.com>
25165         * icall.c:
25166         * file-io.c: Implemented icalls for locking and unlocking regions
25167         in a file.
25168         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25169         FALSE on error (fixes both compiler warning and real bug.)
25171 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25173         * culture-info-tables.h: reflecting locale-builder updates.
25175           (Added missing ChangeLog entry for 05/26)
25177 2004-05-27  Jackson Harper  <jackson@ximian.com>
25179         * locales.c: Fix some cut and paste errors.
25180         
25181 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25183         * mono-config.c: set the correct path for config. directory on windows.
25185 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25187         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25188           on win32.
25190 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25192         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25193         from pinvoke functions.
25194         
25195         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25197 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25199         * culture-info-tables.h: reflecting locale-builder updates.
25201 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25203         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25204         #59086.
25206 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25208         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25209         * icall.c: Modified icalls for RNG.
25210         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25211         Windows (CryptoAPI).
25213 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25215         * locales.c: Fix build.
25217 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25219         * culture-info-tables.h: reflecting locale-builder updates.
25221 2004-05-25  Jackson Harper  <jackson@ximian.com>
25223         * locales.c: When creating the current culture use the $LANGs
25224         specific culture. So DateTimeFormat and NumberFormat entries are created.
25225         
25226 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25228         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25229         a char array as parameter.
25231 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25233         * image.c: In mono_image_open(), always use an absolute path name to
25234           look for already loaded images.
25236 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25238         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25239         missing in the windows build (like older cygwin include files).
25241 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25243         * icall.c: Fixed check for possible integer overflow in Buffer_
25244         BlockCopy icall. Replaced comments style // by /* */.
25246 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25248         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25249         
25250         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25251         check after MONO_VTADDR. Fixes pinvoke2.exe.
25253         * marshal.h marshal.c metadata.h: Add beginnings of support for
25254         ftnptr -> delegate marshalling.
25256 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25258         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25259         * threads.c: Fix warnings.
25261 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25263         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25264         * icall.c: Registered icalls for Suspend and Resume.
25265         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25266           Thread.Abort.
25267         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25268         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25269         * process.c: Use WaitForSingleObjectEx.
25270         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25271           checkpoints.
25272         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25273           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25274           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25275           background threads. Added basic support for Abort in Windows.
25276           Start new threads using a managed delegate invoke wrapper. This wrapper
25277           has an interruption checkpoint that is needed since an interruption
25278           can be requested before the thread leaves the unmanaged code that starts 
25279           the thread.
25280         * marshal.c: Added interruption checkpoint after every native call, and
25281           also before managed calls for wrappers called from unmanaged code to
25282           go into managed code.
25283         * object.h: Added new field in MonoThread to keep track of interruption
25284           requests.
25286 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25288         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25289         calls.
25291 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25293         * appdomain.c:
25294         * assembly.c:
25295         * gc.c:
25296         * locales.c:
25297         * mono-config.c:
25298         * rand.c: getenv -> g_getenv (windows!)
25300         * process.c: complete_path is also used on non-windows platforms.
25302 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25304         * icall.c: new signature for Process_Start.
25306         * process.[ch]: new signature for Process_Start. If we're on windows
25307         and UseShellExecute is false, we have to search for the program by
25308         ourselves if we don't get a full path.
25310 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25312         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25313         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25315 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25317         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25318         Fixes bug #58373.
25320 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25322         * process.c: use double quotes to quote program name and arguments on
25323         windows. Fixes bug #58575.
25325 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25327         * file-io.c: don't return "." and ".." when using windows Find*File.
25329 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25331         * marshal.c: Don't pass wrappers to message init because method 
25332         addressed used to lookup metadata. part of remoting[2|3] fix.
25334 2004-05-15  Jackson Harper  <jackson@ximian.com>
25336         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25337         path is essentially the same as MONO_PATH except that it points to
25338         GACs instead of lib directories.
25339         * loader.h: The user gac is gone so we dont need function to
25340         enable/disable it.
25341         * mono-config.c: user gac option is now gone.
25342         
25343 2004-05-15  Jackson Harper  <jackson@ximian.com>
25345         * culture-info.h: Make defines more consistent, add calendar data
25346         to the culture info table.
25347         * culture-info-tables.h: Add basic calendar data. Basically
25348         everyone gets default gregorian until all the data is
25349         updated.
25350         * locales.c: Use the new consistent defines. Set calendar data for
25351         culture info objects.
25352         * object.h: add a field for calendar data to CultureInfo
25353         
25354 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25356         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25357         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25358         a signature.
25359         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25360         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25361         an extra param that is the pointer of the method to invoke. The IL for
25362         the invoke method is no longer specific to the method, but to the
25363         signature of the method. Thus, we can share the same code for multiple
25364         methods. This reduces the number of methods that have to be compiled.
25366 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25368         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25370         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25372         * icall.c: Optimize Buffer.BlockCopy.
25374 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25376         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25377         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25378         quote). Changed them to "MMMM yyyy".
25380 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25382         * rand.c
25383         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25385 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25387         * reflection.h: Updated after changes to managed structures.
25389         * appdomain.c: Bump corlib version.
25391 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25393         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25394         windows.
25396 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25398         * Makefile.am: link to ../os/libmonoos.la on windows.
25400         * assembly.c:
25401                 -If MONO_DEBUG, warn about non-existing directories in
25402                 MONO_PATH.
25403                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25404                 compile time variable.
25405                 -Removed init_default_path and call mono_set_rootdir from
25406                 libmonoos.a instead (windows only).
25408         * assembly.h: declare mono_assembly_getrootdir().
25410         * domain.c:
25411         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25413         * loader.c: s/getenv/g_getenv/
25415 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25417         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25419         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25421         * metadata.h: Add new marshalling conversions.
25423         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25424         function.
25426         * reflection.c (mono_reflection_get_type): Lookup the type in all
25427         modules of a multi-module assembly. Fixes #58291.
25429 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25431         * threads.c: Before aborting a background, set the StopRequested
25432         state.  This avoids throwing the Abort exception.
25433         In mono_thread_manage, don't continue with the shutdown until all
25434         aborted threads have actually stopped.
25436 2004-05-10  Jackson Harper  <jackson@ximian.com>
25438         * locales.c: Remove the modifier from culture names.
25439         
25440 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25442         * Makefile.am: monosn is not installed any more. It has been deprecated
25443         in favor of sn.
25445 2004-05-07  Jackson Harper  <jackson@ximian.com>
25447         * locales.c
25448         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25449         Fix array construction, add bailout if the length is 0.
25451 2004-05-07  Dick Porter  <dick@ximian.com>
25453         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25454         machine doesn't have a DNS entry.  Patch by Urs Muff
25455         (umuff@quark.com), fixes bug 57928.
25457 2004-05-06  Jackson Harper  <jackson@ximian.com>
25459         * reflection.c: Handle null PublicTokens properly. alloc mem for
25460         assembly names culture so we dont crash when freeing it.
25461         
25462 2004-05-06  Jackson Harper  <jackson@ximian.com>
25464         * assembly.c: Check the usergac when loading with partial names.
25465         
25466 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25468         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25469         does nothing for now (not required for Linux/Windows) but the class
25470         library can call it (and a newer or modified runtime could need it).
25471         * icall.c: Registred icall.
25473 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25475         * loader.c: prints a message on module loading error we set MONO_DEBUG
25476         environment variable.
25478 2004-05-05  Jackson Harper  <jackson@ximian.com>
25480         * appdomain.c: Handle PublicKeyToken=null properly.
25481         
25482 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25484         * environment.c|h: Added icall ves_icall_System_Environment_
25485         GetOSVersionString to get the current OS version as a string.
25486         * icall.c: Registred icall.
25488 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25490         * object.c: in mono_object_get_virtual_method(), take into account that
25491         non-virtual methods don't have a slot in the vtable. Check needed when
25492         the object is a proxy.
25494 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25496         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25497         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25499         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25501         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25502         passed when a valuetype is expected.
25504         * object.c (mono_unhandled_exception): Only set the exit code if the
25505         exception happens in the main thread. Fixes thread5.exe.
25507         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25508         invalid names. Fixes #58047.
25510 2004-05-03  Jackson Harper  <jackson@ximian.com>
25512         * assembly.c: This line was committed accidently and is unneeded.
25513         
25514 2004-05-03  Jackson Harper  <jackson@ximian.com>
25516         * icall.c: Add new icall for Assembly::LoadWithPartialName
25517         * assembly.c/.h: new function that probes the GAC to load partial
25518         assembly names by Paolo Molaro.
25519         
25520 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25522         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25523         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25524         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25525         full type name.
25527 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25529         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25530         * reflection.c: fix bug when parsing a full type name and Version is not
25531         the last thing in the string.
25533 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25535         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25536         crashes when it is freed.
25538 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25540         * assembly.c: print the compat warning to stderr.
25542 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25544         * assembly.c (mono_assembly_load_references): Add a compatibility
25545         hack to run old applications that might be still referencing the
25546         3300-based assemblies, only do this for System.xxx.
25548 2004-05-01  Jackson Harper  <jackson@ximian.com>
25550         * appdomain.c: If the culture is neutral we set it to "".
25551         
25552 2004-04-29  Jackson Harper  <jackson@ximian.com>
25554         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25556 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25558         * string-icalls.c: added low overhead function for copying chars
25559         * icall.c: added needed icall for the above function
25561 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25563         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25564         Environment.GetLogicalDrives.
25566 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25568         * rand.c: try and talk to egd or prngd
25569         for random bytes if opening devices fail.
25571 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25573         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25574         alignment for the type using the native alignment of its members 
25575         instead of using klass->min_align.
25577         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25579 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25581         * file-io.c:
25582         * socket-io.c: added check for sys/aio.h.
25584 2004-04-28  Dick Porter  <dick@ximian.com>
25586         * threads.c: Don't abort a thread thats already aborting, when
25587         terminating everything.
25589 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25591         * icall.c: added 2 new async calls for Socket.
25593         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25594         IO on *nix systems.
25596         * threadpool.c: removed unused variable.
25598 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25600         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25602 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25604         * locales.c: put back string_invariant_tolower () and
25605         string_invariant_toupper ().
25607 2004-04-26 David Waite <mass@akuma.org>
25609         * file-io.h:
25610         * socket-io.h:
25611         * threads.h:
25612         * unicode.h: remove comma from end of enumeration declarations
25614 2004-04-26 David Waite <mass@akuma.org>
25616         * debug-mono-symfile.h:
25617         * decimal.c:
25618         * mono_debug.h:
25619         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25622 2004-04-26  Jackson Harper  <jackson@ximian.com>
25624         * appdomain.c: Increment version number.
25625         
25626 2004-04-26  Jackson Harper  <jackson@ximian.com>
25628         * appdomain.c: Set assembly references public token value when
25629         PublicKeyToken is specified, not the hash_value. Free public token
25630         values when free assembly name data. Previously the public key
25631         token was hex decoded, however we are using hex encoded public key
25632         tokens, so this is not neccasary.
25633         * assembly.c: Lookup assemblies in the gac if their public token
25634         value is set. Add function to allow enabling user gac
25635         lookups. Specify whether or not the assembly was loaded from the
25636         GAC. Compare full assembly names when checking the cache for
25637         assemblies (Temporarily disabled see comment in code). Remove
25638         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25639         specifies trace-loader they get extra info to stdout on the
25640         loading of assemblies.
25641         * image.h: Add a field for an assembly references public token
25642         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25643         whether an assembly has been loaded from the GAC.
25644         * image.c: Remove a corlib -> mscorlib name mapping.
25645         * loader.h: Add function to enable/disable the user gac.
25646         * mono-config.c: Check if the usergac is enabled in the config
25647         file.
25648         * icall.c: New icall to determine whether or not an assembly has
25649         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25650         * tabldefs.h: Add constant for assemblyref flag that specifies a
25651         full public key is used instead of a public token.
25652         * reflection.c: Remove mscorlib -> corlib mappings. Set
25653         PublicTokenValue instead of hash value. This value is a hex
25654         string so it does not need to be expanded.
25656 2004-04-26  Martin Baulig  <martin@ximian.com>
25658         * mono-debug-debugger.c (mono_debugger_initialize): Set
25659         `mono_debugger_initialized' before calling mono_debug_lock().
25661 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25663         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25664           InternalToUpper/InternalToLower.
25665         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25666           removed invariant culture shortcut.  This is now done in managed code.
25667         * locales.c: (string_invariant_toupper/tolower) removed.
25669 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25671         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25672         Added Poll internal call.
25674         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25675         call for Poll. Select was too heavy for polling a single socket.
25677         * threadpool.[ch]: added mono_threadpool_cleanup.
25678         * threads.c: use it. Don't use Thread_Abort on windows.
25680 2004-04-23  Martin Baulig  <martin@ximian.com>
25682         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25684 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25686         * icall.c: Registred new icalls for key pair protection and added an
25687         icall for Environment.GetFolderPath on Windows.
25688         * security.c|h: Added new icalls for key pair protection.
25690 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25692         * socket-io.c: don't display the non-supported family warning for known
25693         families. Now this is not displayed on windows when checking support
25694         for IPv4/IPv6.
25696 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25698         * class.c: don't display the layout warning for static fields.
25700 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25702         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25703         * locales.c, locales.h: Added new icalls for culture-specific
25704         Char.ToLower and Char.ToUpper.
25706 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25708         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25709         by David Waite.
25711 2004-04-20  Martin Baulig  <martin@ximian.com>
25713         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25714         of the type name before passing it to mono_reflection_type_from_name().
25716 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25718         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25719         encodings here. Fixes #56965.
25721 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25723         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25724         fix test on strstr result not that I can see anything that
25725         relies on the result.
25727 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25729         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25730         Fixes #57081.
25732         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25734         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25735         function to determine which marshalling to use for strings. Fixes
25736         #56965.
25738         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25740         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25742 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25744         * icall.c: #include mono-config.h
25746 2004-04-15  Jackson Harper  <jackson@ximian.com>
25748         * culture-info-tables.h: Fix date formats for en-US culture.
25749         
25750 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25752         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25753         ThreadPool.SetMinThreads.
25754         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25755         ThreadPool.SetMinThreads.
25757 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25759         * mono-config.c: also load the .config file in the directory
25760         where the assembly was found.
25762 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25764         * assembly.c: load per-assembly config files.
25765         * icall.c: decrapified code to get the config dir and moved to
25766         mono-config.c.
25767         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25768         per-assembly config files. When doing a dll map lookup give precedence
25769         to the per-assembly data.
25771 2004-04-14  Martin Baulig  <martin@ximian.com>
25773         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25774         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25775         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25777         * mono-debugger-debugger.c: While the debugger is locked, remember
25778         whether the symbol tables have changes and send one single
25779         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25781 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25783         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25785         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25786         function.
25788         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25789         account when marshalling string arrays. Fixes #56965.
25791 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25793         * icall.c: Add new icalls mapping for security.
25794         * security.c|h: Add internal calls for WindowsIdentity,
25795         WindowsImpersonationContext and WindowsPrincipal.
25797 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25799         * class.c: Added comment to ensure the System.MonoDummy class
25800         is removed when no longer necessary
25802 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25804         * appdomain.c: Pass arguments to the bootstraping exceptions to
25805         minimize JITed methods at boot
25807         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25808         second string to be null.
25810         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25811         Change the protocol to minimize the JIT methods at startup.  Now
25812         it Returns the internal codepage, if the value of "int_code_page"
25813         is 1 at entry, and we can not compute a suitable code page
25814         number, returns the code page as a string.
25816 2004-04-13  Jackson Harper  <jackson@ximian.com>
25818         * culture-info-tables.h: Fix number of decimal digits for all
25819         english locales.
25821 2004-04-13  Jackson Harper  <jackson@ximian.com>
25823         * icall.c: Clairfy out of sync error message. It is not always
25824         your corlib that is out of sync.
25826 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25828         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25829         properties when only the set accessor is overriden. Fixes #55874.
25831 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25833         * assembly.c (mono_assembly_load_references): Make this thread safe.
25834         Fixes #56327.
25836 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25838         * monosn.c: Add missing initialization calls.
25840 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25842         * locales.c:
25843         ves_icall_System_Globalization_CultureInfo_construct_number_format
25844         Fix g_assert so it compiles on fussier compilers re int/ptr
25845         mismatch
25847 2004-04-08  Dick Porter  <dick@ximian.com>
25849         * socket-io.h:
25850         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25851         53992.  Also rearrange the code so that the internal calls return
25852         an error value and exceptions are thrown from managed code.
25854         * icall.c: Add type info to the socket icalls.
25856 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25858         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25859         owes me a beer.
25861 2004-04-07  Martin Baulig  <martin@ximian.com>
25863         * class.c (mono_class_from_generic_parameter): Don't default
25864         `klass->parent' to `mono_defaults.object_type'.
25866 2004-04-07  Martin Baulig  <martin@ximian.com>
25868         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25869         `param->pklass->reflection_info'.       
25871 2004-04-07  Jackson Harper  <jackson@ximian.com>
25873         * culture-info-tables.h: Fix date separator symbol.
25874         
25875 2004-04-07  Martin Baulig  <martin@ximian.com>
25877         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25878         from System.Type to System.MonoType.
25880 2004-04-07  Martin Baulig  <martin@ximian.com>
25882         * reflection.h
25883         (MonoReflectionGenericParam): Added `has_reference_type' and
25884         `has_value_type' fields.
25886         * reflection.c (mono_image_get_generic_param_info): Encode the
25887         correct flags if we have the `class' or `struct' constraint.
25889 2004-04-07  Martin Baulig  <martin@ximian.com>
25891         * reflection.h
25892         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25894 2004-04-07  Jackson Harper  <jackson@ximian.com>
25896         * appdomain.c: Revert extra patches, just wanted to bump the
25897         version number.
25898         
25899 2004-04-07  Jackson Harper  <jackson@ximian.com>
25901         * Makefile.am: Add culture-info private headers.
25902         * icall.c: Add new icalls for contructing locales.
25903         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25904         * locales.h: Declare new culture info construction methods.
25905         * object.h: Add new fields used to avoid the CultureMap to
25906         MonoCultureInfo.
25907         * culture-info.h: Definition of structs used in the culture info
25908         tables.
25909         * culture-info-tables.h: Autogenerated tables that contain culture
25910         info data. This file was generated with the locale-builder tool.
25911         * appdomain.c: Incement corlib version number.
25912         
25913 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25915         * appdomain.c: (mono_runtime_init) move mono_thread_init
25916         to before mono_object_new calls so critical sections
25917         are initialized before use.
25919 2004-04-07  Martin Baulig  <martin@ximian.com>
25921         * icall.c
25922         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25923         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25924         (ves_icall_MonoGenericParam_initialize): Removed.
25925         (monogenericparam_icalls): Removed.
25926         (generictypeparambuilder_icalls): Added new table for
25927         System.Reflection.Emit.GenericTypeParameterBuilder.
25929         * reflection.c
25930         (mono_reflection_define_generic_parameter): Removed.
25931         (mono_reflection_initialize_generic_parameter): This is now called
25932         from GenericTypeParameterBuilder's .ctor.
25934 2004-04-06  Martin Baulig  <martin@ximian.com>
25936         * class.c (mono_class_init): Don't inflate nested classes in a
25937         generic instance.
25938         (mono_type_get_name_recurse): Include the generic arguments for
25939         generic instances and generic type declarations.
25940         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25941         (_mono_class_get_instantiation_name): Removed.
25942         (mono_class_create_generic): Always use `gklass->name' as our name.
25944         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25946         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25947         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25948         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25949         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25950         closed generic methods here.
25952         * reflection.c
25953         (mono_reflection_generic_inst_get_nested_types): Removed.
25954         (inflate_mono_method): Copy the generic parameters from the
25955         MonoMethodHeader into out MonoGenericMethod.
25957 2004-04-06  Martin Baulig  <martin@ximian.com>
25959         * row-indexes.h
25960         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25962         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25964         * reflection.c (build_compressed_metadata): If we have any entries
25965         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25966         set the header version to 1.1.
25968 2004-04-06  Martin Baulig  <martin@ximian.com>
25970         * class.c (mono_class_init): If we're a generic instance,
25971         initialize our nested classes, too.
25972         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25973         suffix. 
25975 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25977         * process.c: quote the argument passed to the shell on windows.
25979 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25981         * threads.c (mono_alloc_special_static_data): Allow this to be
25982         called during startup.
25984 2004-04-02  Martin Baulig  <martin@ximian.com>
25986         * icall.c
25987         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25989 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25991         * icall.c: Fix build.
25993 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25995         * Makefile.am: Added security.c|h.
25996         * icall.c: Added icall for get_UserName;
25997         * security.c: New file for security related icalls. Added function
25998         get_UserName for System.Environment (fix #56144).
25999         * security.h: New. Header file for security.c
26001 2004-04-02  Dick Porter  <dick@ximian.com>
26003         * icall.c: Deleted the icalls that were obsoleted some time ago
26004         by the ICU string code, and which were mixed into the icall
26005         rearranging.  Fixes bug 55969.
26007         * string-icalls.h: 
26008         * string-icalls.c: Deleted the code that those icalls reference.
26010 2004-04-01  Martin Baulig  <martin@ximian.com>
26012         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26014         * class.c (mono_class_from_generic_parameter): Don't set 
26015         TYPE_ATTRIBUTE_INTERFACE.
26016         (my_mono_class_from_generic_parameter): Likewise.
26018 2004-04-01  Martin Baulig  <martin@ximian.com>
26020         * loader.c (find_method): Added an optional `MonoClass *ic'
26021         argument to search in a specific interface.
26022         (mono_get_method_constrained): New public function.
26024 2004-04-01  Martin Baulig  <martin@ximian.com>
26026         * reflection.c (mono_image_get_generic_field_token): Use the
26027         `handleref' cache here.
26029 2004-04-01  Martin Baulig  <martin@ximian.com>
26031         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26033         * reflection.c (create_generic_typespec): Use the `typespec' hash
26034         here, not the `typeref' one.    
26036 2004-04-01  Martin Baulig  <martin@ximian.com>
26038         * class.c (mono_class_inflate_generic_type): Moved the
26039         functionality into a new static inflate_generic_type() which
26040         returns NULL if it didn't do anything.  Only increment the
26041         `mono_stats.inflated_type_count' if we actually inflated
26042         something.
26043         (mono_class_get_full): Check the classes type to see whether we
26044         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26046 2004-04-01  Jackson Harper  <jackson@ximian.com>
26048         * reflection.c: Set culture for assembly references.
26049         
26050 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26052         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26054 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26056         * assembly.c:
26057         (do_mono_assembly_open): the critical section also covers
26058         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26060 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26062         * threads.c:
26063         (mono_manage_threads): abort the background threads when finishing.
26064         Fixes bug #47232.
26066 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26068         * gc.c: only close the done_event handle if there was no timeout.
26069         C-ified comments.
26071 2004-03-30  Martin Baulig  <martin@ximian.com>
26073         * icall.c (icall_entries): It's called "System.Activator", not
26074         "System.Activation".    
26076 2004-03-30  Martin Baulig  <martin@ximian.com>
26078         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26079         (mono_class_create_from_typespec): Likewise.
26081 2004-03-30  Martin Baulig  <martin@ximian.com>
26083         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26084         `has_ctor_constraint' and `initialized'.
26086 2004-03-30  Martin Baulig  <martin@ximian.com>
26088         * reflection.c (encode_new_constraint): New static function to add
26089         the constructor constraint attribute to a type parameter.
26090         (encode_constraints): Call encode_new_constraint() if necessary.
26092         * reflection.h
26093         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26095         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26096         
26097 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26099         * reflection.c, icall.c: add support for pinning variables. 
26101 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26103         * marshal.c (mono_marshal_get_managed_wrapper):
26104         init bool local with zero rather than null.
26106 2004-03-29  Martin Baulig  <martin@ximian.com>
26108         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26109         the "official" behavior here.
26110         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26112 2004-03-29  Martin Baulig  <martin@ximian.com>
26114         * icall.c: Reflect latest API changes.
26116 2004-03-29  Martin Baulig  <martin@ximian.com>
26118         * loader.c (mono_get_method_from_token): Also call
26119         mono_metadata_load_generic_params () for abstract and interface
26120         methods; replace the type arguments in the method signature with
26121         the ones which are loaded from the metadata.
26123 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26125         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26126         of the lock is not the current thread. MS.NET don't do it, in spite of
26127         what the documentation says. See bug #56157.
26129 2004-03-28  Martin Baulig  <martin@ximian.com>
26131         * class.c (mono_class_init): Don't call init_properties() and
26132         init_events() for generic instances; set `prop->parent' when
26133         inflating properties.
26135         * reflection.c (mono_generic_inst_get_object): Call
26136         `mono_class_init (ginst->klass)'.
26137         (mono_type_get_object): Only create a MonoGenericInst if your
26138         generic type is a TypeBuilder.
26139         (do_mono_reflection_bind_generic_parameters): Only set
26140         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26142 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26144         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26145         Fixes #56091.
26147 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26149         * icall.c: added Kill_internal icall.
26150         * process.[ch]: added Kill_internal icall.
26152 2004-03-25  Martin Baulig  <martin@ximian.com>
26154         * class.h (MonoStats): Added `generic_instance_count',
26155         `inflated_method_count', `inflated_type_count' and
26156         `generics_metadata_size'.       
26158 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26160         * reflection.c: no warnings now.
26162 2004-03-25  Martin Baulig  <martin@ximian.com>
26164         * class.c (mono_class_get_full): New public function; does a
26165         mono_class_get(), but also takes a `MonoGenericContext *'.
26167         * loader.c (mono_field_from_memberref): Renamed to
26168         `field_from_memberref', made static and added `MonoGenericContext *'
26169         argument.
26170         (mono_field_from_token): Added `MonoGenericInst *' argument.
26171         (method_from_memberef): Likewise.
26172         (mono_get_method_from_token): Likewise.
26173         (mono_get_method_full): New public function; does a
26174         mono_get_method(), but also takes a `MonoGenericContext *'.
26176         * verify.c (mono_method_verify): Get the method's generic context
26177         and pass it to mono_field_from_token(), mono_get_method_full() and
26178         mono_class_get_full().
26180 2004-03-25  Martin Baulig  <martin@ximian.com>
26182         * class.c (mono_class_inflate_generic_type): Take a
26183         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26184         `MonoGenericMethod *'.
26186 2004-03-25  Martin Baulig  <martin@ximian.com>
26188         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26189         instead of the MonoGenericMethod here.
26191 2004-03-25  Martin Baulig  <martin@ximian.com>
26193         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26194         each time we create a new MonoGenericInst, we also create a new
26195         context which points back to us.
26197         * class.c (inflate_method): Use `ginst->context' instead of
26198         creating a new context.
26200         * loader.c (method_from_memberref): Use
26201         `klass->generic_inst->context' instead of creating a new context.
26203 2004-03-25  Martin Baulig  <martin@ximian.com>
26205         * class.h (MonoGenericContext): New struct.
26206         (MonoGenericMethod): Removed `generic_inst'.
26208         * class.c (mono_class_inflate_generic_method): Take a
26209         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26211 2004-03-25  Martin Baulig  <martin@ximian.com>
26213         * loader.h (MonoMethodInflated): New typedef.
26215         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26216         `generic_param_count' consume just 30 bits, added `is_inflated'
26217         and `has_type_parameters' flags (one bit each).
26219         * class.c (mono_class_inflate_generic_method): Create a
26220         MonoMethodInflated instead of a MonoMethodNormal and set
26221         `is_inflated' in the method signature.
26223         * class.h (MonoGenericMethod): Removed `generic_method'.
26225 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26227         * image.c: Make sure the name of a MonoImage is always an absolute path.
26228           This fixes bug #54415.
26230 2004-03-24  Martin Baulig  <martin@ximian.com>
26232         * class.c (mono_class_setup_vtable): If we're a generic instance,
26233         use our generic type's vtable size.
26235 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26237         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26238         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26239         problems.
26241 2004-03-23  Martin Baulig  <martin@ximian.com>
26243         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26244         `MonoEvent *events'.
26246         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26247         (typebuilder_icalls): Added "get_event_info"; calls
26248         mono_reflection_event_builder_get_event_info(). 
26250         * reflection.c (mono_reflection_generic_inst_initialize): Added
26251         `MonoArray *events'.
26252         (mono_reflection_event_builder_get_event_info): New function.
26254 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26256         * object.h: add mono_type_initialization_init
26258         * object.c (mono_runtime_class_init): 
26259         implement class constructor synchronization rules
26260         to cope with threading issues.  
26261         add mono_type_initialization_init
26263         * appdomain.c (mono_runtime_init): call 
26264         mono_type_initialization_init
26266         * class.h: removing initializing field from MonoVTable
26268 2004-03-23  Martin Baulig  <martin@ximian.com>
26270         * class.c (my_mono_class_from_generic_parameter): Use
26271         `param->name' if it's not NULL. 
26273 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26275         * class.c: do not insert non-virtual methods in the vtable.
26276         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26277         that means the method is non-virtual. This never would have
26278         happened before.
26280 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26282         * profiler.c: Added lock for accessing coverage_hash.
26284 2004-03-22  Martin Baulig  <martin@ximian.com>
26286         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26287         `method->method->signature->generic_param_count != 0' to make it
26288         work for interface methods.
26290 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26292         * process.c: quote the string passed to the shell using g_shell_quote.
26294 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26296         * threads.c:
26297         (mono_threads_manage): don't remove the finalizer thread and self
26298         from the threads hash table so that mono_thread_manage can be called
26299         more than once.
26301 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26303         * process.c: quote the arguments when UseShellExecute is true. Fixes
26304         bug #55790.
26306 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26308         * threads.c: set mono_thread_detach as a cleanup routine for every
26309         thread. This way it's always executed upon thread termination, either
26310         aborted or finished normally. No more xsp hangs!
26312 2004-03-17  Martin Baulig  <martin@ximian.com>
26314         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26315         `int count_nested' and a `MonoType **nested'.
26317         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26318         most of the functionality into a new static
26319         do_mono_reflection_bind_generic_parameters() and don't take a
26320         `MonoType *nested_in' argument any more.  Don't compute nested
26321         types here.
26322         (mono_reflection_generic_inst_get_nested_types): New public method
26323         to get nested types.
26325         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26326         we're a nested class.
26328         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26329         mono_reflection_generic_inst_get_nested_types() to compute the
26330         nested types.
26332 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26334         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26335         descriptive error message under windows.
26336         
26337 2004-03-17  Martin Baulig  <martin@ximian.com>
26339         * class.c (dup_type): Added `const MonoType *original' argument;
26340         copy the attrs from the original type.
26342 2004-03-17  Martin Baulig  <martin@ximian.com>
26344         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26345         `m->generic_inst_cache' here.
26347 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26349         * exception.h exception.c: Add stack_overflow_exception.
26351 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26353         * threadpool.c:
26354         (overlapped_callback): call SetEvent *after* invoking the callback.
26355         No need to call CloseHandle.
26357 2004-03-16  Martin Baulig  <martin@ximian.com>
26359         * reflection.c (mono_image_get_fieldref_token): Take a
26360         `MonoReflectionField *' instead of a `MonoClassField *' and a
26361         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26363 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26365         * appdomain.c: don't add the culture to the filename we're looking for
26366         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26368 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26370         * locales.c: don't ignore symbols when doing case insensitive compares.
26371         Thanks Dick! Fixes bug #54046.
26373         * threads.c: surround 'threads' usage with enter/leave in
26374         mono_thread_manage.
26376 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26378         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26379         implicitly marshalled as [Out]. Fixes #55450.
26381         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26382         an exception.
26384 2004-03-16  Martin Baulig  <martin@ximian.com>
26386         * class.c (mono_class_from_generic_parameter): Use the actual
26387         parameter name. 
26389 2004-03-16  Martin Baulig  <martin@ximian.com>
26391         * reflection.c (type_get_signature_size): New static function.
26392         Compues the size of the type in a method signature.
26393         (method_get_signature_size): New static function; calls
26394         type_get_signature_size() to compute the actual size of the
26395         method's signature.
26396         (method_encode_signature): Use method_get_signature_size() to get
26397         the signature's size rather than using `nparams * 10'.
26399 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26401         * file-io.h: define here WapiOverlapped on windows. I don't want the
26402         regular OVERLAPPED one.
26404         * file-io.c:
26405         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26406         Disabling AIO on windows.
26408 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26410         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26411         bug #55385.
26413 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26415         * appdomain.c: upgraded corlib version.
26417         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26418         and BeginWrite. Allow opening files for asynchrnous operations.
26420         * file-io.h: new struct that maps FileStreamAsyncResult.
26421         * icall.c: added new icalls.
26422         * process.[ch]: support setting child process environment variables
26423         and use the SHELL or COMSPEC when UseShellExecute is true.
26425         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26426         callback for async. IO is here and also BindHandle.
26428         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26429         from here.
26431 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26433         * reflection.c (create_custom_attr): Allow len == 0.
26435         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26436         computation on big-endian machines.
26438 2004-03-13  Martin Baulig  <martin@ximian.com>
26440         * class.h (MonoGenericInst): Added `int count_ifaces'.
26442         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26443         `ginst->count_ifaces' instead `klass->interface_count' since we
26444         may get called before the vtable is created.
26446         * loader.c (mono_method_get_param_names): If we're a generic
26447         instance, return and don't initialize the class.
26449         * reflection.c (mono_reflection_setup_generic_class): Don't call
26450         ensure_runtime_vtable().
26451         (mono_reflection_bind_generic_parameters): Set
26452         `ginst->count_ifaces'.
26454 2004-03-11  Jackson Harper <jackson@ximian.com>
26456         * icall.c:
26457         * unicode.c:
26458         * unicode.h: Remove unused System.Char icalls.
26459         
26460 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26462         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26463         code when we P/Invoke the first library in Windows.Forms, instead
26464         of when we first open the assembly.
26466         * assembly.c: Drop the lookup from here.
26468 2004-03-10  Martin Baulig  <martin@ximian.com>
26470         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26471         class for properties, fields and events.  Finally fixes #54945.
26473 2004-03-10  Martin Baulig  <martin@ximian.com>
26475         * metadata.c (mono_metadata_class_equal): New static function;
26476         checks whether two generic instances or two generic parameters are
26477         equal.
26478         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26479         compare classes.        
26481 2004-03-10  Martin Baulig  <martin@ximian.com>
26483         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26485         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26486         argument and write it into the `reflection_info' field.
26488         * icall.c
26489         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26490         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26492 2004-03-09  Jackson Harper  <jackson@ximian.com>
26494         * char-conversions.h: use 8 bits for numeric data its all we need
26495         * icall.c: numeric data is only 8 bits now.
26497 2004-03-09  Martin Baulig  <martin@ximian.com>
26499         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26501         * class.c (init_properties, init_events): Initialize the new
26502         `parent' field.
26504         * reflection.c (typebuilder_setup_properties): Likewise.
26505         (typebuilder_setup_events): Likewise.
26507         * reflection.h (MonoEventInfo): Replaced `parent with
26508         `declaring_type' and `reflected_type'.
26510         * icall.c (ves_icall_get_property_info): Distinguish between
26511         declaring and reflected type.
26512         (ves_icall_get_event_info): Likewise.
26514 2004-03-09  Martin Baulig  <martin@ximian.com>
26516         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26517         (ves_icall_Type_GetField): Correctly set field->klass.
26519 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26521         * loader.h: Fix warning.
26523 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26525         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26526         library routine if present.  Notice that it will still continue
26527         executing even if its missing, for those working on the Gtk#
26528         edition of Windows.Forms.
26530         * assembly.c (do_mono_assembly_open): If loading the
26531         System.Windows.Forms call mono_loader_wini_init.
26533 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26535         * class.h: Added MonoRemoteClass struct.
26536         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26537         function for MonoStrings.
26538         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26539         Added internal call for getting the proxy type.
26540         * marshal.c: Get the type of transparent proxies from its remote_class.
26541         Added methods that generate the IL for type checks and casts:
26542         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26543         mono_marshal_get_proxy_cancast.
26544         * marshal.h: Declaration of the previous new methods.
26545         * object.c: Added new moethods for creating and updating MonoRemoteClass
26546         instances: mono_remote_class, mono_upgrade_remote_class, 
26547         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26548         * verify.c: FIx transparent_proxy_fields layout.
26549         * appdomain.c: Bump corlib version.
26551 2004-03-04  Jackson Harper  <jackson@ximian.com>
26553         * icall.c: Add icall to access char conversion tables.
26554         * char-conversions.h: Character conversion tables.
26555         * Makefile.am: Add char-conversions.h private header file.
26556         
26557 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26559         * appdomain.c (unload_thread_main): Increase unloading timeout to
26560         10 sec as a temporary workaround for Nant problems.
26562 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26564         * gc.c: Add checks for GC_enable and GC_disable.
26566         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26567         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26568         (bug #54988).
26569         
26570 2004-02-27  Martin Baulig  <martin@ximian.com>
26572         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26573         `MonoReflectionType *' instead of a `MonoType *'.
26575 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26577         * gc.c (run_finalize): Avoid finalizing the object representing the
26578         finalizer thread.
26579         (finalizer_thread): Fix warning.
26581 2004-02-25  Martin Baulig  <martin@ximian.com>
26583         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26584         argument for nested types.
26585         (mono_class_create_generic): Added support for nested generictypes.
26587         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26588         `GList *nested'.
26590         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26592         * reflection.c (method_encode_signature): Increase the minimum
26593         value of `size' from 10 to 11.
26594         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26595         and `MonoType **types' arguments instead of the `MonoArray
26596         *types'; added `MonoType *nested_in'.  Recursively instantiate
26597         nested classes. 
26599 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26601         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26602         stack_overflow_ex members which are used by exception handling.
26604         * appdomain.c (mono_runtime_init): Initialize the new members.
26606         * gc.c (mono_gc_enable): New helper function.
26607         * gc.c (mono_gc_disable): New helper function.
26609 2004-02-23  Martin Baulig  <martin@ximian.com>
26611         * icall.c: I must have been really stupid - make it actually work
26612         this time ;-)
26614 2004-02-23  Martin Baulig  <martin@ximian.com>
26616         * loader.c (method_from_memberref): Only inflate the method if
26617         it's in another klass.
26619 2004-02-23  Martin Baulig  <martin@ximian.com>
26621         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26622         (mono_class_init): If we're a generic instance and an interface,
26623         compute `class->interface_id'; also create `class->interfaces'
26624         here and inflate them.
26626         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26627         `ginst->is_open'.
26628         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26630         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26632 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26634         * reflection.c (method_encode_code): Improved the error message
26635         generated by the exception.
26637 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26639         * icall.c: Martin did not do what he said in the ChangeLog for
26640         2004-02-18, but put back the changes for properties and events.
26641         Commenting those changes out again and adding comment to bug #54518.
26642         
26643         * process.c: removed warning.
26645 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26647         * marshal.c (emit_struct_conv): Print an error message instead of
26648         asserting when a type does not have the StructLayout attribute.
26650 2004-02-20  Martin Baulig  <martin@ximian.com>
26652         * reflection.c (mono_type_get_object): Also use the cache for
26653         generic instances.
26654         (mono_reflection_bind_generic_parameters): Always compute
26655         `ginst->ifaces'.        
26657 2004-02-20  Martin Baulig  <martin@ximian.com>
26659         * class.h (MonoGenericMethod): Removed `klass'.
26661         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26662         *klass' argument.
26664 2004-02-20  Martin Baulig  <martin@ximian.com>
26666         * reflection.c (method_encode_methodspec): Actually use the
26667         uninflated signature for the memberref.
26669 2004-02-20  Martin Baulig  <martin@ximian.com>
26671         * class.h (MonoGenericMethod): Removed `declaring'.
26673         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26674         is NULL, compute it here.
26676 2004-02-20  Martin Baulig  <martin@ximian.com>
26678         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26680         * metadata.c (mono_metadata_generic_inst_hash): New method.
26681         (mono_metadata_generic_inst_equal): New method.
26683         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26684         `klass->image->generic_inst_cache' cache to avoid creating
26685         duplicate MonoGenericInst's.
26687         * class.c (mono_class_inflate_generic_type): Use the cache.
26689 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26691         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26693 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26695         * icall.c: added Socket.WSAIoctl icall.
26697         * socket-io.[ch]: implemented
26698         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26700 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26702         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26704 2004-02-18  Urs C Muff  <umuff@quark.com>
26706         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26707         this work on PPC and other big-endian architectures.
26709         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26710         fields with an underscore to make sure they're only accessed by
26711         the read32() macro.
26713 2004-02-18  Martin Baulig  <martin@ximian.com>
26715         * icall.c: Put the klass->refclass changes back for methods and
26716         fields, but not for properties and events.  We're currently not
26717         distinguishing between DeclaringType and ReflectedType for
26718         properties and events, that's what caused the regressions.
26720 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26722         * object.c:
26723         (mono_async_result_new): the handle can be NULL.
26725         * threadpool.c: Use an event instead of a semaphore, don't initialize
26726         it until needed. This saves quite a few semaphores from being created
26727         when using the threadpool.
26729 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26731         * object.c (mono_string_is_interned_lookup): Fix interning of long
26732         strings. Fixes #54473.
26734         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26736         * icall.c: Revert the klass->refclass changes since they introduce
26737         regressions (bug #54518).
26739 2004-02-18  Martin Baulig  <martin@ximian.com>
26741         * class.c (mono_class_init): If we're a generic instance and don't
26742         come from a TypeBuilder, inflate our members here.
26743         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26744         (mono_class_create_generic): New public method.
26745         (mono_class_initialize_generic): Removed.
26746         (get_instantiation_name): Renamed to
26747         _mono_class_get_instantiation_name() and made it public.
26749 2004-02-18  Martin Baulig  <martin@ximian.com>
26751         * class.c (mono_class_inflate_generic_type): Clear the new
26752         instance's `nginst->klass' when inflating a generic instance.
26753         (mono_class_is_subclass_of): Added (basic) support for generic
26754         instances.
26756 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26758         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26759         MonoMempool to hold compiled native code.
26761 2004-02-17  Martin Baulig  <martin@ximian.com>
26763         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26764         `properties'.
26766         * reflection.c (mono_reflection_generic_inst_initialize): Added
26767         `MonoArray *properties' argument.
26769         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26771 2004-02-17  Martin Baulig  <martin@ximian.com>
26773         * icall.c (ves_icall_Type_GetFields): Renamed to
26774         ves_icall_Type_GetFields_internal() and added a
26775         `MonoReflectionType *rtype' argument; pass it to
26776         mono_field_get_object() to set the field's "reflected" type.
26777         (ves_icall_Type_GetConstructors): Likewise.
26778         (ves_icall_Type_GetEvents): Likewise.
26779         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26780         argument; pass it to mono_method_get_object() to set the method's
26781         "reflected" type.       
26783 2004-02-17  Martin Baulig  <martin@ximian.com>
26785         * class.h (MonoDynamicGenericInst): New type.
26786         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26788         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26789         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26790         (ves_icall_MonoGenericInst_GetFields): New interncall.
26792         * class.c (mono_class_from_generic): Don't call
26793         mono_class_initialize_generic() if this is a dynamic instance;
26794         ie. it's being created from a TypeBuilder.
26795         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26796         `class->byval_arg.type'.
26798         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26799         to `inflate_method' and made static.
26800         (mono_reflection_inflate_field): Removed.
26801         (mono_reflection_generic_inst_initialize): New public method.
26803         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26804         `ctors' and `fields'; added `initialized'.
26806 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26808         * debug-helpers.c (mono_method_full_name): Fix output for empty
26809         namespaces.
26811 2004-02-12  Martin Baulig  <martin@ximian.com>
26813         * class.h (MonoClassField): Added `MonoType *generic_type'.
26815         * reflection.c (mono_image_get_fieldref_token): Added support for
26816         instantiated generic types.
26817         (field_encode_inflated_field): Removed.
26818         (mono_image_get_inflated_field_token): Removed.
26819         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26821         * reflection.h (MonoReflectionInflatedField): Removed.
26823 2004-02-12  Martin Baulig  <martin@ximian.com>
26825         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26826         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26828         * reflection.c (mono_image_get_methodspec_token): Take a
26829         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26830         (mono_image_create_token): Check whether we have a
26831         `method->signature->gen_method' and call
26832         mono_image_get_methodspec_token() if appropriate.
26833         (inflated_method_get_object): Removed.
26834         (mono_reflection_bind_generic_method_parameters): Return a
26835         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26836         (mono_reflection_inflate_method_or_ctor): Likewise.
26838         * reflection.h (MonoReflectionInflatedMethod): Removed.
26840 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26842         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26843         for custom valuetype marshalling.
26845         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26847 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26849         * icall.c: fixed WSAGetLastError_internal name.
26851 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26853         * threads.c (mono_thread_attach): Allow this to be called multiple
26854         times for a thread.
26855         
26856         * threads.c (build_wait_tids): Do not wait for ourselves.
26858         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26859         appdomain list is empty.
26861         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26862         memory returned by mono_string_builder_to_utf16, since it points into
26863         managed memory. Thanks to Bernie Solomon for noticing this.
26865         * icall.c: Add AppDomainSetup icalls.
26867         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26869         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26870         types.
26872         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26873         custom attributes to the method_aux struct. Also fix array indexes etc.
26875         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26876         
26877 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26879         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26880         (both static and runtime) and reduce startup time.
26882 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26884         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26885         AsAny marshalling conversion instead of crashing.
26887         * marshal.c: Fix warnings.
26889 2004-02-09  Martin Baulig  <martin@ximian.com>
26891         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26893         * reflection.h (MonoReflectionInflatedMethod): Removed the
26894         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26896         * reflection.c (method_encode_methodspec): Removed the `method'
26897         argument; we get it from `gmethod->declaring'.
26898         (inflated_method_get_object): Removed the `declaring' argument.
26900 2004-02-09  Martin Baulig  <martin@ximian.com>
26902         * class.h (MonoGenericMethod): New type.
26903         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26904         `generic_method'.
26906         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26907         a `MonoGenericMethod *gen_method' one.
26909         * class.c (mono_class_inflate_generic_type): Take an additional
26910         `MonoGenericMethod * argument.  This is only non-NULL if we're
26911         inflating types for a generic method.   
26912         (mono_class_inflate_generic_signature): Renamed to
26913         inflate_generic_signature() and made static; take a
26914         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26915         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26916         instead of a `MonoGenericInst *' one.
26917         (mono_class_inflate_generic_method): Likewise.
26919         * reflection.c (encode_generic_method_sig): Take a
26920         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26921         (method_encode_methodspec): Likewise.
26922         (inflated_method_get_object): Likewise. 
26924         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26925         field with a `MonoGenericMethod *gmethod' one.  
26927 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26929         * class.h (mono_class_has_parent): add parens to expansion
26930         so you can ! this.
26932 2004-02-08  Martin Baulig  <martin@ximian.com>
26934         * image.h (MonoImage): Removed `generics_cache'.
26936         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26937         instead of a `MonoType *' argument; removed the `inflate_methods'
26938         argument.  Don't inflate methods here.
26940         * loader.c (find_method): If it's a generic instance, call
26941         mono_class_init() on the `sclass->generic_inst->generic_type'.
26943         * metadata.c (mono_type_size): Make this work on uninitialized
26944         generic instances; call it on the `ginst->generic_type's class.
26946         * reflection.c (mono_reflection_bind_generic_parameters): Call
26947         mono_class_from_generic() to create the `ginst->klass'.
26949 2004-02-08  Martin Baulig  <martin@ximian.com>
26951         * class.h (MonoClass): Changed type of `generic_inst' from
26952         `MonoType *' to `MonoGenericInst *'.
26954 2004-02-08  Martin Baulig  <martin@ximian.com>
26956         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26957         mono_type_get_object(), this is now creating a `MonoGenericInst'
26958         for MONO_TYPE_GENERICINST.
26959         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26960         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26962         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26963         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26964         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26965         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26966         and reflected type.
26968         * reflection.h (MonoReflectionInflatedMethod): Removed
26969         `declaring_type' and `reflected_type'.
26971 2004-02-08  Martin Baulig  <martin@ximian.com>
26973         * class.h (MonoGenericInst): Added `MonoType *parent' and
26974         `MonoType **ifaces'.
26976         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26977         `parent' and `interfaces'.
26979         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26980         `MonoType *' argument and return a `MonoType *'.
26982         * icall.c
26983         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26984         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26986 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26988         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26989         valuetype marshalling.
26991 2004-02-06  Martin Baulig  <martin@ximian.com>
26993         * class.c
26994         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26995         (my_mono_class_from_generic_parameter): Likewise.
26997 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26999         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27000         contents of the symbol files lazily.
27002         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27004         * threads.h threads.c icall.c: New icalls for getting and setting the
27005         threads name.
27007 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27009         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27010         Raise an exception when the domain is not found.
27012 2004-02-03  Martin Baulig  <martin@ximian.com>
27014         * reflection.c (mono_image_get_methodspec_token): Use the
27015         uninflated signature; fixes gen-33.
27017 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27019         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27020         the finalizer code can use thread functionality.
27022         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27023         the finalizer thread.
27025         * threads.c: Make some functions more robust.
27027         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27029         * metadata.h: Add new marshalling conventions.
27031         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27032         stringbuilder marshalling. Fixes #53700.
27034         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27036         * reflection.c (mono_image_get_type_info): Save declarative security
27037         info.
27039         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27040         unmanaged fields as well.
27042         * appdomain.c: Bump corlib version.
27044 2004-02-01  Martin Baulig  <martin@ximian.com>
27046         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27047         method type arguments.  
27049 2004-01-30  Duncan Mak  <duncan@ximian.com>
27051         * marshal.h: Add prototype for
27052         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27053         and
27054         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27055         fix the build.
27057 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27059         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27060         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27062 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27064         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27065         custom marshalling of valuetypes.
27067         * marshal.c: Fix some warnings.
27069 2004-01-29  Martin Baulig  <martin@ximian.com>
27071         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27072         for generic method parameters.
27074         * reflection.c (method_encode_methodspec): Write the uninflated
27075         signature into the methodspec table.
27076         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27077         is always the uninflated method.
27078         (reflection_methodbuilder_to_mono_method): Copy the generic
27079         parameters from the MethodBuilder into `header->gen_params'.
27081 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27083         * class.c (mono_class_from_generic_parameter): Fix warning.
27085 2004-01-27  Martin Baulig  <martin@ximian.com>
27087         * class.c (mono_class_from_generic_parameter): Don't create
27088         `klass->methods' here.  
27090 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27092         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27093         extension since it does not work with libraries named lib<FOO>.dll.so.
27095 2004-01-25  Martin Baulig  <martin@ximian.com>
27097         * class.c (mono_class_inflate_generic_type): Added support for
27098         MONO_TYPE_GENERICINST.
27100         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27101         inflate methods on open constructed types.      
27103 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27105         * object.c: fire ProcessExit event in the root AppDomain after running
27106         Main. Fixes bug #53299.
27108 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27110         * socket-io.c: include the new socket-wrappers.h header.
27111         Use the wrappers instead of the unix socket functions to make the code
27112         more clear.
27114 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27116         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27118         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27119         Fixes #22532.
27121 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27123         * reflection.c (mono_image_create_pefile): Handle the case when the
27124         entry point is not a MethodBuilder.
27126         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27127         field to ReflectionMethod since it is not allways a builder.
27129         * reflection.c (type_get_fully_qualified_name): New helper function to
27130         return the fully qualified name of a type.
27132         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27133         type name for custom marshallers.
27135         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27137         * class.c (mono_class_setup_vtable): If a parent class already 
27138         implements an interface, use the implementing methods from that class.
27139         Fixes #53148.
27141 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27143         * threadpool.c: just return instead of ExitThread to allow for thread
27144         clean up earlier.
27146 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27148         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27149         when closing resource modules.
27151         * reflection.c (mono_image_create_pefile): Handle the case when the
27152         entry point is not a MethodBuilder.
27154         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27155         field to ReflectionMethod since it is not allways a builder.
27157 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27159         * marshal.c (mono_marshal_get_managed_wrapper): 
27160         mono_marshal_alloc takes native int so CONV_I
27161         the arg for 64bits.
27163 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27165         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27166         tokens in the cattr table. Fixes #53108.
27168 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27170         * loader.c: don't trim ".dll" before looking up in the config file.
27171         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27173 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27175         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27176         Return the module which contains the resource as well.
27177         (ves_icall_System_Reflection_Module_Close): New icall.
27179         * appdomain.c: Bump corlib version number.
27181         * image.c (mono_image_addref): New public function.
27183         * assembly.c: Call mono_image_addref.
27185         * reflection.c (mono_module_get_object): Increase reference count of 
27186         the image.
27188         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27189         Fixes #22532.
27191         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27192         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27193         proper exceptions on DllImport problems.
27195 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27197         * class.c, metadata.c: eliminate CSIZE macro.
27199 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27201         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27202         * object.h: Added async_callback field in MonoAsyncResult.
27203         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27204         * verify.c: Added async_callback in MonoAsyncResult layout.
27206 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27208         * reflection.c (mono_reflection_get_custom_attrs): Add support
27209         for Modules.
27211 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27213         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27214         marshalling.
27215         (mono_marshal_method_from_wrapper): Add null pointer check.
27217 2004-01-16  Martin Baulig  <martin@ximian.com>
27219         * debug-mono-symfile.h: Set version number to 36 and reflect
27220         latest symbol writer changes.
27222 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27224         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27225         multi-dimensional arrays.
27226         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27227         (mono_class_from_mono_type): Use bounded_array_class_get.
27228         
27229         * class.c (mono_bounded_array_class_get): New function which takes
27230         a 'bounded' bool argument to distinguish vectors from one dimensional
27231         arrays.
27233         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27234         bounded_array_class_get if the array has bounds.
27236         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27237         Search modules loaded using AssemblyBuilder:AddModule as well.
27239 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27241         * appdomain.c: increased corlib version.
27242         * filewatcher.c: removed g_print.
27243         * icall.c:
27244         (get_property_info): only allocate what is actually requested.
27245         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27247 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27249         * Makefile.am: added filewatcher.[ch]
27250         * filewatcher.[ch]: FileSystemWatcher runtime support.
27251         * icall.c: added new FSW icalls.
27253 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27255         * string-icalls.c: fix stringbuilder regression as suggested by
27256         Iain McCoy <iain@mccoy.id.au>.
27258 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27260         * process.c (process_read_stringtable_block): Recognize '007f' as
27261         a language neutral stringtable block.
27263 2004-01-12  Patrik Torstensson
27265         * object.h (MonoStringBuilder) : Changed layout to support our
27266         new stringbuilder class.
27267         * marshal.c: Change marshalling to support the new layout of 
27268         string builder.
27269         * appdomain.c: increased version number because new layout of
27270         string builder.
27272 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27274         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27275         assembly name as an string instead of an AssemblyName, since it is
27276         easier to extract info from it.
27278         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27279         the culture subdirectories too. Fixes #52231.
27281 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27283         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27284         It takes 2 new parameters with an optional name for the method to look
27285         for and case ignoring info.
27287         * threadpool.c: removed unused variable.
27289 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27291         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27292         It takes 2 new parameters with an optional name for the property to look
27293         for and case ignoring info.
27294         Fixes bug #52753.
27296 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27298         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27299         Fix #52451.
27301 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27303         * appdomain.c:
27304         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27305         Fixes bug #52630.
27307 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27309         * reflection.c: Add support for more than one unmanaged resource.
27311         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27312         in field->def_value, as done in all other cases.
27314         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27315         TypeBuilders.
27317         * reflection.c (mono_reflection_create_runtime_class): Remove 
27318         errorneous assignment to klass->element_class, since it is already
27319         done in mono_reflection_setup_internal_class.
27321 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27323         * gc.c: added missing LeaveCriticalSection.
27324         * icall.c: indented a couple of lines.
27325         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27326         if we call EndInvoke inside a callback. Fixes bug #52601.
27328 2004-01-07  Martin Baulig  <martin@ximian.com>
27330         * mono-debug-debugger.h
27331         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27333 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27335         * appdomain.c: Use messages in NotImplementedException.
27337         * exception.c (mono_get_exception_not_implemented): Now this takes
27338         a message argument.
27340         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27341         exception instead of g_asserting an aborting when something is not
27342         implemented.
27344         Add some inline docs.
27346 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27348         * reflection.h: Update after changes to object layout.
27350         * reflection.c: Implement saving of unmanaged aka win32 resources.
27352         * appdomain.c: Bump version number.
27354         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27355         Handle missing domains gracefully.
27357 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27359         * file-io.c : On Windows, there are much more invalid_path_chars.
27361 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27363         * class.h, object.c: prepare for GetType () speedup.
27365 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27367         * profiler.c: workaround for --profile null reference exception on
27368           cygwin. Patch by Patrik Torstensson.
27370 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27372         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27373         make work for unaligned access.
27375 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27377         * class.c: small cleanup (class->fields [i] -> field).
27378         * image.c: check address of metadata is valid.
27380 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27382         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27383         search the list of loaded assemblies.
27385         * reflection.c (mono_reflection_type_from_name): Use 
27386         mono_assembly_loaded instead of mono_image_loaded.
27388         * reflection.c: Fix warnings.
27390 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27392         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27393         is dynamic. This is needed since an assembly can contain both dynamic and
27394         non-dynamic images.
27396         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27397         assembly->dynamic.
27399         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27401         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27402         to store modules loaded using AddModule.
27404         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27405         on Modules.
27407         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27409         * reflection.c (mono_image_fill_export_table_from_module): New function to
27410         fill out the EXPORTEDTYPES table from a module.
27412         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27413         into a separate function. Also handle loaded non-dynamic modules.
27415         * reflection.c (mono_image_basic_init): Fix memory allocation.
27417         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27419         * assembly.c (mono_assembly_load_references): Make this public.
27421 2003-12-19  Martin Baulig  <martin@ximian.com>
27423         * class.c (mono_class_initialize_generic): Made this static, take
27424         a `MonoGenericInst *' instead of a `MonoClass *'.
27425         (mono_class_from_generic): Call mono_class_initialize_generic()
27426         unless we're already initialized or being called from
27427         do_mono_metadata_parse_generic_inst().
27429         * class.h (MonoGenericInst): Added `initialized' and
27430         `init_pending' flags.
27432         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27433         `mono_class_init (gklass)' or mono_class_initialize_generic()
27434         here; set `generic_inst->init_pending' while parsing the
27435         `type_argv'.
27437 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27439         * locales.c: include string.h for memxxx prototypes
27441 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27443         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27444         constructor when accessing literal fields.
27446 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27448         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27450         * reflection.c (assembly_add_resource_manifest): New function to fill
27451         the MANIFESTRESOURCE table.
27453         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27455         * reflection.h: Update to changes in class layout.
27457         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27458         Reenable call to mono_runtime_is_shutting_down ().
27460         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27461         determine if the runtime is shutting down.
27463 2003-12-16  Jackson Harper <jackson@ximian.com>
27465         * icall.c: comment out call to mono_runtime_is_shutting_down to
27466         fix build.
27467         
27468 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27470         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27471         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27473 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27475         * reflection.c: move definition of swap_with_size
27476         to before its first call
27478 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27480         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27482         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27483         icall.
27485         * object.c: Fix warnings.
27487         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27488         members if FlattenHierarchy is set.
27490         * reflection.c (mono_image_add_decl_security): New function to emit
27491         declarative security.
27493         * reflection.h reflection.c: Add support for declarative security.
27495         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27496         
27497 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27499         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27500         
27501         * appdomain.c verify.c: Moved corlib version checking into its own
27502         function in appdomain.c since it needs to create vtables etc.
27504 2003-12-13  Patrik Torstensson <p@rxc.se>
27506         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27507         instead of unwrapped server.
27509 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27511         * verify.c (check_corlib): Fix field index.
27513 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27515         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27516         GetGacPath icall.
27518 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27520         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27521         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27522         cope with sizeof(size_t) != sizeof(guint32).
27524 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27526         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27527         in case of failure.
27529 2003-12-10  Mark Crichton <crichton@gimp.org>
27531         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27532         in managed code.
27534         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27536 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27538         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27539         marked as deleted.
27541 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27543         * verify.c (check_corlib): Handle the case when the version field is 
27544         initialized by a static constructor.
27546 2003-12-08  Patrik Torstensson  <p@rxc.se>
27548     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27550 2003-12-08  Martin Baulig  <martin@ximian.com>
27552         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27553         a MonoReflectionGenericParameter, also take the parameter index
27554         and name as arguments.
27555         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27556         (ves_icall_MonoGenericParam_initialize): New interncall.
27557         (ves_icall_Type_make_byref_type): New interncall.
27559         * reflection.h (MonoReflectionGenericParam): Derive from
27560         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27561         `index' fields.
27563         * reflection.c (mono_reflection_define_generic_parameter): Create
27564         and return a new MonoReflectionGenericParam; don't initialize the
27565         constraints here.
27566         (mono_reflection_initialize_generic_parameter): New public method;
27567         initializes the constraints and creates the `param->pklass'.
27569 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27571         * reflection.h reflection.c: Use the new fields 'num_types', 
27572         'num_fields' and 'num_methods' to track the number of types etc.
27574         * verify.c (check_corlib): Check corlib version number.
27576 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27578         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27579         function works on all methods.
27581 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27583         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27584         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27585         the custom_type_info flag of the transparent proxy.
27586         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27587         objects that supports IRemotingTypeInfo.
27588         * object.h: Added custom_type_info field in transparent proxy.
27590 2003-12-06  Martin Baulig  <martin@ximian.com>
27592         * class.c (mono_class_create_from_generic): Removed.
27593         (mono_class_from_generic): Check `ginst->klass' before doing
27594         anything else.  This is important to fully support "recursive"
27595         generic types.
27597         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27598         empty `generic_inst->klass' before doing anything else.
27600 2003-12-06  Dick Porter  <dick@ximian.com>
27602         * verify.c: 
27603         * object.h:
27604         * icall.c:
27605         * locales.c: Use C structs to access class fields.  Don't do a
27606         conversion between MonoString and UChar because both are
27607         platform-endian UTF-16.  Compare now takes startindex and count
27608         parameters.  Add a char overload for IndexOf.  Speed up the
27609         invariant string IndexOf.
27611 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27613         * Makefile.am (monosn_LDADD): Fix parallel build.
27615 2003-12-04  Martin Baulig  <martin@ximian.com>
27617         * icall.c
27618         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27619         (ves_icall_Type_make_array_type): New interncall.       
27621 2003-12-04  Martin Baulig  <martin@ximian.com>
27623         * locales.c: also change it in the !HAVE_ICU case.
27625 2003-12-04  Dick Porter  <dick@ximian.com>
27627         * icall.c:
27628         * locales.c: construct_compareinfo is now in CompareInfo, not
27629         CultureInfo.
27631 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27633         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27634         image->files array.
27636         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27637         table as well.
27639         * assembly.c (mono_assembly_load_references): Only load references
27640         once.
27642         * class.c (mono_class_from_name): Avoid linear search of the 
27643         EXPORTEDTYPE table.
27645         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27647 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27649         * image.h (MonoImage): Add 'field_cache' field.
27651         * loader.c (mono_field_from_token): Cache field lookups.
27652         
27653         * reflection.c (mono_module_get_object): Fix name property.
27655         * icall.c (ves_icall_get_enum_info): Update after changes to 
27656         mono_metadata_get_constant_index ().
27658         * icall.c: Get rid of get_type_info icall, use a separate icall for
27659         each type property to avoid needless memory allocations. Fixes #51514.
27661         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27662         to avoid needless binary searches.
27664         * class.c (class_compute_field_layout): Move the initialization of
27665         field->def_value to mono_class_vtable ().
27667         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27668         non-corlib types.
27670         * object.c (mono_object_allocate): Make it inline.
27672         * object.c (mono_object_allocate_spec): Make it inline.
27673         
27674 2003-12-02  Dick Porter  <dick@ximian.com>
27676         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27677         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27679 2003-12-01  Dick Porter  <dick@ximian.com>
27681         * threads.c: Fix signature and call in CreateMutex and
27682         CreateEvent.
27684 2003-12-01  Dick Porter  <dick@ximian.com>
27686         * icall.c: 
27687         * locales.c: Implement string compares and searching
27689         * object.h: Add extra Thread field
27691 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27693         * reflection.c (fixup_method): Add support for MonoCMethod.
27695 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27697         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27699         * reflection.c (assembly_name_to_aname): Allow extra characters in
27700         assembly names. Fixes #51468.
27702 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27704         * exception.c (mono_exception_from_name_domain): New helper function.
27706         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27707         exception object in the correct domain.
27709         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27710         formatting + make a copy a the input data.
27712         * loader.c (mono_get_method_from_token): Methods which contain
27713         native code do not have entries in the ImplMap.
27715         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27716         Thanks to Gonzalo for spotting this.
27717         
27718         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27719         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27721         * assembly.h (mono_assembly_load_from): Split the second part of 
27722         assembly loading into a new public function.
27724         * exception.h (mono_get_exception_bad_image_format): New function.
27726 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27728         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27729         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27730         
27731         * icall.c: Add new icall for creating dynamic methods.
27733         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27735         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27737         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27738         create a dynamic method.
27740         * reflection.c (resolve_object): New helper function.
27742         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27743         which manipulate it so they can also work on dynamic methods.
27745         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27746         creating the MonoReflectionMethodAux structure if it is not needed.
27747         
27748         * reflection.h verify.c: Update after changes to object layout.
27750         * reflection.c (method_builder_encode_signature): Fix compilation on
27751         gcc 2.95.x.
27753 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27755         * appdomain.h: Added support for context static fields. Added static_data
27756           field to MonoAppContext and renamed thread_static_fields to a more
27757           generic special_static_fields in MonoAppDomain, since it can now contain
27758           context static fields.
27759         * domain.c: Updated hashtable name.
27760         * object.c: Replaced field_is_thread_static() for a more generic
27761           field_is_special_static() which also checks for context static attribute.
27762           In mono_class_vtable(), added support for static context fields.
27763         * threads.c: Changed methods that manage thread static fields to more
27764           generic methods so they can be reused both for thread and context static
27765           data.
27766         * threads.h: Declared some new methods.
27768 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27770         * reflection.h: Update after changes to the managed types.
27772         * reflection.c (encode_custom_modifiers): New helper function.
27774         * reflection.c (method_encode_signature): Emit custom modifiers.
27776         * reflection.c (field_encode_signature): Emit custom modifiers.
27778 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27780         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27782         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27783         implementation.
27785         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27786         icall.
27788         * object.c (mono_field_get_value_object): New function.
27790         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27791         specific.
27793 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27795         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27796         return a preallocated out-of-memory exception instance.
27798         * object.c (out_of_memory): Use the new function.
27800         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27801         flag is before the custom modifiers. Fixes #49802.
27803 2003-11-16  Martin Baulig  <martin@ximian.com>
27805         * class.c (mono_class_is_open_constructed_type): Implemented the
27806         MONO_TYPE_GENERICINST case.
27808 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27810         * assembly.c (mono_assembly_fill_assembly_name): New function to
27811         fill out the MonoAssemblyName structure.
27812         (mono_assembly_open): Use the new function.
27814         * icall.c (fill_reflection_assembly_name): New helper function.
27816         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27817         new function.
27819         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27821 2003-11-15  Martin Baulig  <martin@ximian.com>
27823         * class.c (mono_class_is_open_constructed_type): New public
27824         function; checks whether a type is an open constructed type,
27825         ie. whether it still contains type parameters.
27826         (mono_class_inflate_generic_type): If we're a type parameter and
27827         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27828         type.
27830         * class.h (MonoGenericInst): Added `guint32 is_open'.
27832         * loader.c (method_from_methodspec): Check whether we're an open
27833         or closed constructed type and set `ginst->is_open'.
27835         * reflection.c (mono_reflection_bind_generic_parameters): Check
27836         whether we're an open or closed constructed type and set
27837         `ginst->is_open'.
27838         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27839         from open constructed types.
27841 2003-11-15  Martin Baulig  <martin@ximian.com>
27843         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27844         a generic instance (instead of a generic type declaration) with
27845         unbound generic parameters, bind them to our actual types.
27847 2003-11-14  Martin Baulig  <martin@ximian.com>
27849         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27851         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27852         an interface type, populate `res->interfaces' with instantiated
27853         versions of all the interfaces we inherit.
27855 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27857         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27858         when MONO_PATH is set but doesn't contain the install dir.
27860 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27862         * icall.c:
27863         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27864         it's also implemented in base classes. Fixes bug #50927.
27866 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27868         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27869         if this method is called from a finalizer. Fixes #50913.
27871 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27873         * threads.c: Implement VolatileRead/VolatileWrite
27875         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27877 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27879         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27880         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27881         2.95.3.
27883         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27884         from Peter Ross (pro@missioncriticalit.com).
27885         
27886 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27888         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27890 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27892         * assembly.c (mono_assembly_load_references): Disable check because it
27893         triggers on older corlibs which lots of people have.
27895 2003-11-12  Jackson Harper  <jackson@ximian.com>
27897         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27898         load corlib.dll if mscorlib.dll is not found.
27899         * assembly.h: Remove corlib name define.
27900         * class.c:
27901         * domain.c:
27902         * image.c: Change corlib name to mscorlib.
27903         
27904 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27906         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27908 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27910         * appdomain.h: Added loader_optimization here to sync with the C#
27911         code, and add disallow_binding_redirects field.
27913 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27915         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27917         * reflection.c (mono_image_build_metadata): Fix crash on modules
27918         with no types.
27920         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27922         * icall.c (ves_icall_get_method_info): Return callingConvention as
27923         well.
27925         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27926         namespaces from the EXPORTEDTYPE table as well.
27928         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27929         from all modules inside the assembly.
27930         
27931 2003-11-11  Martin Baulig  <martin@ximian.com>
27933         * reflection.c (mono_reflection_bind_generic_parameters): Make
27934         this work for interfaces.
27936 2003-11-11  Martin Baulig  <martin@ximian.com>
27938         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27940 2003-11-11  Martin Baulig  <martin@ximian.com>
27942         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27943         "MonoInflatedMethod" and "MonoInflatedCtor".
27945 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27947         * reflection.c (resolution_scope_from_image): Use the assembly table
27948         from the manifest module, since other modules don't have it.
27950         * debug-helpers.c (mono_type_full_name): New helper function.
27952         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27954         * image.c (mono_image_load_file_for_image): New public function which
27955         is a replacement for the load_file_for_image in class.c.
27957         * assembly.c (mono_assembly_load_module): A wrapper for the function
27958         above which does assembly association and reference loading too.
27960         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27962 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27964         * appdomain.c: not all of the attributes for the full assembly name
27965         are required and the order doesn't matter. Fixes bug #50787.
27967 2003-11-10  Dick Porter  <dick@ximian.com>
27969         * locales.c: Use platform-endian UTF16
27971 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27973         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27974         
27975 2003-11-10  Martin Baulig  <martin@ximian.com>
27977         * metadata.c
27978         (mono_metadata_load_generic_params): Make this actually work.
27980         * reflection.c (mono_reflection_bind_generic_parameters): If our
27981         parent is a generic instance, pass all the `types' to it, no
27982         matter whether it has the same number of type parameters or not.
27984 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27986         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27988         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27989         assignment code to this function so it gets called recursively for all
27990         modules.
27992         * image.c (load_modules): Remove the assembly assignment since it is
27993         now done by mono_assembly_load_references.
27994         
27995         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27996         Add 'module' argument.
27997         (mono_module_get_types): New helper function.
27998         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28000 2003-11-08  Martin Baulig  <martin@ximian.com>
28002         * class.c (mono_class_inflate_generic_method): Interface method
28003         don't have a header.
28005         * reflection.c (mono_image_get_methodspec_token): Take an
28006         additional `MonoGenericInst *' argument instead of reading it from
28007         the header; this is necessary to support interfaces.
28008         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28009         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28010         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28011         argument.
28013         * reflection.h (MonoReflectionInflatedMethod): Added
28014         `MonoGenericInst *ginst'.
28016 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28018         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28020 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28022         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28024 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28026         * reflection.c 
28027         (reflection_methodbuilder_from_method_builder):
28028         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28029         initialize a ReflectionMethodBuilder structure.
28030         (mono_image_get_methodbuilder_token):
28031         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28032         tokens which point to types in another module inside the same assembly.
28034         * reflection.c: Use the new helper functions.
28035         
28036         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28038         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28039         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28041         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28042         neccesary.
28044         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28045         current module. Emit the manifest only for the main module.
28047         * reflection.c (mono_image_create_token): Add assertion when a 
28048         memberref needs to be created.
28050         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28052         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28053         larger buffer for the custom attribute blob. Fixes #50637.
28054         
28055 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28057         * threadpool.c: notify listener on async processing handles after
28058         invoking the async callback. Thanks to Zoltan.
28060 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28062         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28063         avoid code duplication.
28065         * reflection.h (MonoDynamicImage): New type which is currently unused,
28066         but will be used through the ref.emit code in place of 
28067         MonoDynamicAssembly.
28069         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28070         object layout.
28072         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28073         a MonoDynamicImage instead of just a MonoImage.
28074         
28075         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28076         icalls to ModuleBuilder but keep their semantics, so they will work
28077         with moduleb->assemblyb. This will change later.
28078         
28079 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28081         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28082         object layout.
28084         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28085         main module, since it is now done by the managed code.
28087 2003-11-03  Martin Baulig  <martin@ximian.com>
28089         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28090         `ginst->klass' here.
28091         (method_encode_methodspec): Don't use the `ginst->generic_method's
28092         klass if it's a generic instance, use `ginst->klass' in this case.
28094 2003-11-03  Martin Baulig  <martin@ximian.com>
28096         * reflection.c (mono_image_get_generic_method_param_info):
28097         Removed, use mono_image_get_generic_param_info() instead.
28098         (mono_image_get_type_info): Write the GenericParam table before
28099         the Method table.  This is neccessary because in the GenericParam
28100         table, type parameters of the class (ie. '!0' etc.) must come
28101         before the ones from its generic methods (ie. '!!0' etc).
28103 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28105         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28107 2003-11-02  Martin Baulig  <martin@ximian.com>
28109         * reflection.c (create_generic_typespec): Take a
28110         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28111         the generic parameters from it.
28113 2003-11-02  Martin Baulig  <martin@ximian.com>
28115         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28116         instead of a `MonoClassField *' since we just need the type.
28117         (create_generic_typespec): New static function.  Creates a
28118         TypeSpec token for a generic type declaration.
28119         (mono_image_get_generic_field_token): New static function.
28120         (mono_image_create_token): If we're a FieldBuilder in a generic
28121         type declaration, call mono_image_get_generic_field_token() to get
28122         the token.
28124 2003-11-02  Martin Baulig  <martin@ximian.com>
28126         * reflection.h
28127         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28128         `MonoReflectionGenericInst *declaring_type' and
28129         `MonoReflectionGenericInst *reflected_type' fields.
28131         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28132         `MonoReflectionGenericInst *declaring_type' and a
28133         `MonoReflectionGenericInst *reflected_type' argument instead of a
28134         single `MonoReflectionGenericInst *type' one.  Set
28135         `res->declaring_type' and `res->reflected_type' from them.
28136         (mono_reflection_inflate_field): Likewise.      
28138 2003-11-02  Martin Baulig  <martin@ximian.com>
28140         * class.c (mono_class_setup_vtable): Don't store generic methods
28141         in the vtable.  
28143 2003-11-02  Martin Baulig  <martin@ximian.com>
28145         * reflection.h (MonoReflectionGenericInst): Added
28146         `MonoReflectionType *declaring_type'.
28148         * reflection.c (mono_reflection_bind_generic_parameters): Use
28149         `if (tb->parent)' instead of `klass->parent'.
28151 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28153         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28154         with an empty ASSEMBLY table.
28156         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28157         variable in the inner and outer loops.
28159 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28161         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28162         argument.
28164         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28165         
28166         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28167         icalls. Instead, do everything in managed code. This is needed since
28168         it is hard to restore the original domain etc. in unmanaged code in the
28169         presence of undeniable exceptions.
28171         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28172         New icalls to push and pop appdomain refs.
28174 2003-10-31  Martin Baulig  <martin@ximian.com>
28176         * class.c (inflate_generic_type): Renamed to
28177         mono_class_inflate_generic_type() and made it public.
28179         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28180         New interncall.
28182         * loader.c (mono_field_from_memberref): Also set the retklass for
28183         typespecs.
28185         * fielder.c (mono_image_get_inflated_field_token): New static
28186         method; creates a metadata token for an inflated field.
28187         (mono_image_create_token, fixup_method): Added support for
28188         "MonoInflatedField".
28189         (fieldbuilder_to_mono_class_field): New static function.
28190         (mono_reflection_inflate_field): New public function.
28192         * reflection.h
28193         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28194         (MonoReflectionInflatedField): New typedef.     
28196 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28198         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28199         for Solaris and other platforms without s6_addr16
28201 2003-10-30  Martin Baulig  <martin@ximian.com>
28203         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28204         argument instead of two.
28205         (mono_class_inflate_generic_signature): Likewise.
28206         (inflate_generic_header): Likewise.
28207         (mono_class_inflate_generic_method): Likewise.  In addition, if
28208         `ginst->klass' is set, it becomes the new `method->klass'.
28210         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28211         field.
28213         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28214         first byte. [FIXME]
28215         (method_encode_methodspec): If we have generic parameters, create
28216         a MethodSpec instead of a MethodRef.
28217         (fixup_method): Added support for "MonoInflatedMethod" and
28218         "MonoInflatedCtor".
28219         (mono_image_create_token): Added support for "MonoInflatedMethod"
28220         and "MonoInflatedCtor".
28221         (inflated_method_get_object): New static function; returns a
28222         managed "System.Reflection.MonoInflatedMethod" object.
28223         (mono_reflection_bind_generic_method_parameters): Return a
28224         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28225         (mono_reflection_inflate_method_or_ctor): Likewise.
28226         (mono_image_get_generic_method_param_info): Initialize unused
28227         fields to zero.
28228         (mono_image_get_generic_param_info): Likewise.
28230         * reflection.h (MonoReflectionInflatedMethod): New public
28231         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28232         "S.R.MonoInflatedCtor" classes.
28234         * loader.c (method_from_memberref): If we're a TypeSpec and it
28235         resolves to a generic instance, inflate the method.
28237 2003-10-28  Dick Porter  <dick@ximian.com>
28239         * object.c (mono_runtime_run_main): Convert command-line arguments
28240         into utf8, falling back to the user's locale encoding to do so.
28242 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28244         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28245         at this time.
28247         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28249         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28250         up icalls at method definition time. Partially fixes #33569.
28252 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28254         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28255         marshalling of arrays. Fixes #50116.
28257         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28259         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28260         points to a vtable in the dying appdomain.
28262         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28263         listeners into unmanaged code inside the lock.
28265         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28266         domains and add some comments.
28268 2003-10-25  Martin Baulig  <martin@ximian.com>
28270         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28272         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28274         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28275         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28276         currently parsing.  Create the generic class and store it in
28277         `generic_inst->klass' before parsing the type arguments.  This is
28278         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28279         for an example.
28280         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28281         to support recursive typespec entries.
28283         * class.c (mono_class_setup_parent): If our parent is a generic
28284         instance, we may get called before it has its name set.
28285         (mono_class_from_generic): Splitted into
28286         mono_class_create_from_generic() and mono_class_initialize_generic().
28288 2003-10-25  Martin Baulig  <martin@ximian.com>
28290         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28291         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28292         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28293         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28295         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28296         (create_typespec): Likewise.
28297         (mono_reflection_bind_generic_parameters): Return a
28298         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28299         (mono_reflection_inflate_method_or_ctor): New public function.
28301         * reflection.h (MonoReflectionGenericInst): New typedef.        
28303 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28305         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28306         inside the domain lock. Fixes #49993.
28307         
28308         * object.c (mono_class_vtable): When typed allocation is used, 
28309         allocate vtables in the GC heap instead of in the mempool, since the
28310         vtables contain GC descriptors which are used by the collector even
28311         after the domain owning the mempool is unloaded.
28313         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28315         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28316         reflect what it does. Also invalidate mempools instead of freeing
28317         them if a define is set.
28319         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28320         of the appdomain.
28321         
28322         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28323         hold the finalizable objects in this domain.
28325         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28326         appdomain.
28328         * appdomain.c (mono_domain_set): New function to set the current
28329         appdomain, but only if it is not being unloaded.
28331         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28332         appdomain which is being unloaded.
28333         
28334         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28335         unloading of the root appdomain.
28337         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28338         icall to execute a method in another appdomain. Intended as a 
28339         replacement for InternalSetDomain, which can confuse the code 
28340         generation in the JIT.
28342         * appdomain.c (mono_domain_is_unloading): New function to determine
28343         whenever an appdomain is unloading.
28345         * appdomain.c (mono_domain_unload): New function to correctly unload
28346         an appdomain.
28348         * assembly.c (mono_assembly_load_references): Check that an assembly
28349         does not references itself.
28351         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28352         domain manually, it asks the finalizer thread to do it, then waits for
28353         the result. Also added a timeout.
28355         * icall.c: Register the new icalls.
28357         * threads.h threads.c: Export the mono_gc_stop_world and 
28358         mono_gc_start_world functions.
28359         
28360         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28361         function to fill out the mempool with 0x2a.
28363 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28365         * reflection.h (MonoReflectionMethodAux): New structure to store
28366         information which is rarely used, thus is not in the MonoMethod
28367         structure.
28369         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28370         store the aux info.
28372         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28373         and marshalling info into the aux structure.
28375         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28376         from the aux structure.
28378         * loader.c (mono_method_get_param_names): Retrieve the param names from
28379         the aux structure.
28380         
28381 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28383         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28384         warning.
28386 2003-10-21  Dick Porter  <dick@ximian.com>
28388         * socket-io.c
28389         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28390         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28392 2003-10-21  Martin Baulig  <martin@ximian.com>
28394         * reflection.c (mono_reflection_bind_generic_parameters):
28395         `klass->parent' is NULL for interfaces.
28397 2003-10-21  Martin Baulig  <martin@ximian.com>
28399         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28401 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28403         * exception.c (mono_exception_from_name_msg): New helper function for
28404         creating exceptions and initializing their message field.
28406         * exception.c: Simplify functions using the new helper.
28408         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28409         New function.
28411         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28412         mono_raise_exception, since otherwise gcc doesn't generate the function
28413         epilog for raise_exception, confusing the stack unwinding in the JIT.
28414         Fixes #45043.
28416         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28417         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28418         Fixes #49499.
28420 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28422         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28423         utf8.
28425 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28427         * icall.c: Removed GetUninitializedObject method because
28428           AllocateUninitializedClassInstance does the same.
28430 2003-10-18  Martin Baulig  <martin@ximian.com>
28432         * class.c (inflate_generic_signature): Renamed to
28433         mono_class_inflate_generic_signature() and made it public.
28434         (my_mono_class_from_generic_parameter): New static function; if we
28435         don't already have the generic parameter's MonoClass, create a
28436         very simple one which is just used internally in the runtime and
28437         not passed back to managed code.
28439         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28441         * metadata.h (MonoMethodSignature): Moved the
28442         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28443         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28445         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28446         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28447         interncall on the MonoMethod class, not on MethodInfo.
28448         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28449         calling mono_reflection_bind_generic_method_parameters() directly.
28451         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28452         return the already computed `method->signature'.
28453         (method_from_methodspec): New static function to load a method
28454         from a MethodSpec entry.
28455         (mono_get_method_from_token): Call the new method_from_methodspec()
28456         for MethodSpec tokens.  
28457         (mono_get_method_from_token): If we're a generic method, load the
28458         type parameters.
28460         * reflection.c (mono_image_get_memberref_token): Allow
28461         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28462         table.
28463         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28464         (mono_image_create_token): First check whether it's a generic
28465         method (so we'd need to create a MethodSpec), then do the other
28466         two alternatives.
28467         (mono_reflection_bind_generic_method_parameters): Return a
28468         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28469         called directly from the interncall.
28471 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28473         * reflection.c (load_public_key): Move loading of the public key
28474         into managed code.
28476         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28478         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28479         fields.
28481         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28482         culture, hash_alg and public_key. Fixes #49555.
28484 2003-10-17  Martin Baulig  <martin@ximian.com>
28486         * class.h (MonoGenericInst): Moved this declaration here and added
28487         `MonoMethod *generic_method'.
28489         * icall.c
28490         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28491         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28493         * metadata.c (mono_metadata_type_equal): Two types of
28494         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28495         index; ie. don't compare the address of the `MonoGenericParam'
28496         structure.
28497         (mono_metadata_load_generic_params): Removed the `MonoMethod
28498         *method' argument.
28500         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28501         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28503         * reflection.c (method_encode_signature): Encode the number of
28504         generic parameters.
28505         (encode_generic_method_sig): New static function.
28506         (method_encode_methodspec): New static function; creates an entry
28507         in the MethodSpec table for a generic method.
28508         (mono_image_get_methodspec_token): New static function.
28509         (mono_image_create_token): Call mono_image_get_methodspec_token()
28510         for generic methods.
28511         (mono_reflection_bind_generic_method_parameters): New public
28512         function.  Instantiates a generic method.
28514 2003-10-16  Martin Baulig  <martin@ximian.com>
28516         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28517         *gen_params' here from MonoMethodHeader.
28519         * metadata.c (mono_metadata_parse_method_signature): If we have
28520         generic parameters, initialize `method->gen_params' and then set
28521         the correct `type->data.generic_param' in all the parameters.
28523 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28525         * threads.c (mono_threads_get_default_stacksize): New function to 
28526         return the default stacksize.
28528         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28529         termination of the finalizer thread, since the previous method had
28530         race conditions. Fixes #49628.
28532         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28533         as for the other managed threads.
28535 2003-10-16  Martin Baulig  <martin@ximian.com>
28537         * class.c (inflate_generic_signature): Copy `generic_param_count'
28538         and `gen_params'.
28540         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28541         New interncall.
28543         * metadata.c (mono_metadata_parse_method_signature): Actually set
28544         the `method->generic_param_count' here.
28545         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28547 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28549         * object.h: Add a new field to TypedRef to simplify the implementation
28550         of the REFANY opcodes in the JIT.
28552         * icall.c: Make use of the new field.
28554         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28555         dynamically.
28557 2003-10-15  Martin Baulig  <martin@ximian.com>
28559         * class.c (mono_class_from_gen_param): Renamed to
28560         mono_class_from_generic_parameter() and moved most of the
28561         functionality from mono_reflection_define_generic_parameter()
28562         here; ie. we create a "real" class here.
28563         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28564         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28565         previously been called.
28567         * class.h (MonoGenericParam): Moved the declaration of this struct
28568         here from metadata.h and added `MonoMethod *method'.
28570         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28571         interncall.
28573         * loader.c (mono_get_method_from_token): If we have any generic
28574         parameters, call mono_metadata_load_generic_params() to read them
28575         from the MONO_TABLE_GENERICPAR.
28577         * metadata.c (mono_metadata_load_generic_params): Added
28578         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28580         * metadata.h (MonoMethodSignature): Replaced
28581         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28582         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28584         * reflection.c (mono_reflection_define_generic_parameter): Moved
28585         most of the functionality into the new
28586         mono_class_from_generic_parameter(); set the `method' field if
28587         we're a method parameter.       
28589 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28591         * marshal.c (emit_struct_conv): if native size is 0
28592         emit no code.
28594 2003-10-14  Martin Baulig  <martin@ximian.com>
28596         * icall.c: The generics API has changed in the spec since it was
28597         added to System.Type; these modifications make it match the spec
28598         again.
28599         (ves_icall_Type_GetGenericParameters): Renamed to
28600         `ves_icall_Type_GetGenericArguments'.
28601         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28602         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28603         `ves_icall_MonoType_get_HasGenericArguments'.
28604         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28605         `ves_icall_MonoType_get_IsGenericParameter'.
28606         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28607         this is no interncall anymore.
28608         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28609         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28611 2003-10-14  Martin Baulig  <martin@ximian.com>
28613         * reflection.c (mono_reflection_bind_generic_parameters): Also
28614         inflate generic methods if we're reading the class from IL.
28616 2003-10-13  Martin Baulig  <martin@ximian.com>
28618         * reflection.c (mono_reflection_define_generic_parameter): This
28619         method isn't called directly from the icall anymore; take a
28620         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28621         method generic parameters.
28622         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28623         (method_builder_encode_signature): Encode generic parameters.
28624         (mono_image_get_method_info): Write generic params to the
28625         MONO_TABLE_GENERICPARAM table.
28627         * reflection.h (MonoReflectionMethodBuilder): Added
28628         `MonoArray *generic_params'.
28630         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28632         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28633         wrapper for mono_reflection_define_generic_parameter().
28634         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28636 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28638         * marshal.h: Add missing function to fix build.
28640         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28641         the SetLastError pinvoke attribute.
28643         * marshal.c (mono_marshal_set_last_error): New helper function called
28644         by the generated code.
28645         
28646         * marshal.c (mono_mb_emit_branch): New helper function.
28648         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28650         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28651         classes as parameters and return values of delegates. Fixes #29256. 
28653 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28655         * locales.c: use gint32 in non HAVE_ICU case
28657 2003-10-11  Martin Baulig  <martin@ximian.com>
28659         * mono-debug.c (mono_debug_add_method): Added a workaround for
28660         bug #48591.
28662 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28664         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28665         delegates passed to native code must use the STDCALL calling 
28666         convention. Fixes #35987.
28668 2003-10-10  Martin Baulig  <martin@ximian.com>
28670         * class.c (inflate_generic_type): If we're inflating for a generic
28671         type instance (and not for a generic method), return
28672         MONO_TYPE_MVAR unchanged.
28674 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28676         * string-icalls.c: Join ignores null strings in the source array.
28677         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28678         * threads.c: GetAvailableTheads is slightly more accurate.
28680 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28682         * threads.h threads.c : add mono_threads_set_default_stacksize
28683         and pass default to CreateThread calls.
28685 2003-10-09  Dick Porter  <dick@ximian.com>
28687         * icall.c:
28688         * locales.h:
28689         * locales.c: Internal calls for constructing CultureInfo and
28690         related objects from libicu (if its available.)
28692 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28694         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28696 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28698         * threadpool.c: added an argument to async_invoke_thread that is the
28699         item to process, pass the MonoAsyncResult to the thread start function
28700         when creating a new thread. This way we don't need to acquire any lock
28701         when we're creating a new thread. Readded a semaphore for faster
28702         response times (instead of that Sleep i added).
28704 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28706         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28707         get daylight change dates better on Windows, fix handling
28708         of platforms without tm_gmtoff.
28710 2003-10-06  Martin Baulig  <martin@ximian.com>
28712         * class.c (inflate_generic_method): Renamed to
28713         mono_class_inflate_generic_method() and made public.
28714         (mono_class_init): Don't inflate the generic methods here.
28715         (mono_class_from_generic): Added `gboolean inflate_methods'
28716         argument.  Inflate the methods here.
28718         * loader.c (mono_method_get_param_names): Ignore instances of
28719         generic types for the moment.
28721         * reflection.c (fixup_method): Added support for inflated methods.
28722         (mono_image_create_token): Use mono_image_get_methodref_token()
28723         for inflated methods.
28724         (mono_custom_attrs_from_param): Ignore instances of generic types
28725         for the moment.
28726         (mono_reflection_bind_generic_parameters): New public function.
28727         Moved all the functionality from
28728         ves_icall_Type_BindGenericParameters() here and added support for
28729         dynamic types.
28730         (mono_reflection_define_generic_parameter): Initialize
28731         `klass->methods' here.
28733         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28734         functionality into mono_reflection_define_generic_parameter().
28735         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28736         TypeBuilder, return that TypeBuilder.
28738 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28740         * appdomain.c: removed mono_delegate_semaphore.
28742         * threadpool.c:
28743         (mono_thread_pool_add): moved hash table creation inside and the thread 
28744         creation outside of the critical region.
28745         (mono_thread_pool_finish): removed obsolete code.
28746         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28747         continue or exit the thread depending on the queue.
28749 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28751         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28752         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28753         handle more bool marshalling options
28755 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28757         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28758         arrays of structs. Also add a more descriptive error message when
28759         a structure member is marshalled as LPArray.
28761 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28763         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28764         marshalling arrays of complex types. Fixes #29098. Also remove an
28765         usused and incomplete function.
28767 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28769         * gc.c: report heap_size - free_bytes as total memory allocated
28770         (bug#49362).
28772 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28774         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28775         fix timezone handling problems on Windows.
28776         
28777         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28778         asserts when the year is outside the range handled by ms the functions.
28780         * class.c (setup_interface_offsets): If the class is an interface,
28781         fill out its interface_offsets slot.
28783 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28785         * threadpool.c: mark threadpool threads as background.
28787 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28789         * decimal.c - define DECINLINE to nothing if not using GCC
28791 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28793         * assembly.c: More refcount fixes.
28795 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28797         * string-icalls.c: if we're not trimming, return the same string.
28798         When not splitting, don't create a new string.
28800 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28802         * image.c:
28803         (mono_image_open): increment the ref_count inside the critical section.
28805 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28807         * image.c (mono_image_open): Fix reference counting bug.
28809 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28811         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28812         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28813         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28814         mono_lookup_pinvoke_call throws.        
28816 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28818         * reflection.c (mono_reflection_parse_type): Fix #49114.
28820         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28821         temporary workaround for cygwin header problem.
28823         * object.c (mono_object_isinst): Synchronize this with the code
28824         generated by the JIT for casts.
28826 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28828         * reflection.c (encode_type): Fix #38332.
28830 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28832         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28833         the original method from the wrapper method.
28835 2003-09-25  Martin Baulig  <martin@ximian.com>
28837         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28838         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28839         (ves_icall_Type_get_IsGenericInstance): New interncall.
28841 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28843         * object.c: fix cast warning in big endian code.
28845 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28847         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28848         
28849 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28851         * assembly.c: don't call check_env from mono_assembly_load. It's
28852         already done once in mono_assemblies_init and may cause headaches when
28853         multiple threads are loading assemblies.
28855 2003-09-19  Martin Baulig  <martin@ximian.com>
28857         * reflection.c (mono_reflection_define_generic_parameter): Don't
28858         allocate `klass->methods', set `klass->flags' to
28859         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28861 2003-09-18  Martin Baulig  <martin@ximian.com>
28863         * class.c (mono_class_init): Don't create `class->methods' if it's
28864         already initialized.
28866         * metadata.c (mono_metadata_load_generic_params): Make this
28867         actually work.
28869         * reflection.c (mono_reflection_define_generic_parameter): Set
28870         parent class and interfaces from the constraints.
28872         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28873         to keep this struct in sync with the declaration in TypeBuilder.cs.
28875 2003-09-17  Martin Baulig  <martin@ximian.com>
28877         * metadata.h (MonoType): Replaced the data's `int type_param'
28878         field with `MonoGenericParam *generic_param'.
28879         (MonoGenericParam): Added `MonoClass *klass'.
28881         * class.c (mono_class_from_gen_param): Removed the
28882         `MonoImage *image' and `int type_num' arguments.
28884         * metadata.c (mono_metadata_parse_generic_param): New static
28885         method; creates a MonoGenericParam which just contains the index.
28886         (do_mono_metadata_parse_type): Call
28887         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28888         MONO_TYPE_MVAR.
28890         * reflection.c (mono_image_typedef_or_ref): Generic type
28891         parameters may be in the same assembly, but never use a typedef
28892         for them.
28893         (mono_reflection_define_generic_parameter): We're now creating a
28894         "real" class for the type parameter; it's now safe to call
28895         mono_class_from_mono_type() on the class'es type, it'll do the
28896         right thing.
28898 2003-09-16  Martin Baulig  <martin@ximian.com>
28900         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28901         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28902         the `symfile' data structure must be fully initialized before it
28903         gets added to the table.
28905 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28907         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28909         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28910         class init trampolines.
28912 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28914         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28915         to the built-in profiler to turn off time and allocation profiling
28916         respectively.
28918 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28920         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28921         g_direct_equal.
28923         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28924         in human readable form.
28926 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28928         * reflection.c icall.c: Fixed warnings.
28930         * image.c (load_class_names): Use a temporary hash table to hold the
28931         namespaces in order to avoid doing many string comparisons.
28933         * image.h: Fix typo.
28935         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28936         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28937         since the NULL case is short-circuited inside g_hash_table_lookup, 
28938         leading to better performance.  
28940         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28941         obtain the first custom attribute for a given index. Depends on the
28942         CustomAttribute table being sorted by the parent field.
28944         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28945         for better performance.
28947 2003-09-07  Martin Baulig  <martin@ximian.com>
28949         * class.c (mono_class_init): If we're a generic instance, inflate
28950         all our methods instead of loading them from the image.
28951         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28953 2003-09-07  Martin Baulig  <martin@ximian.com>
28955         * mono-debug-debugger.c: Added support for constructors.
28957 2003-09-06  Martin Baulig  <martin@ximian.com>
28959         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28960         New interncall.
28962         * reflection.c (mono_reflection_setup_generic_class): Call
28963         ensure_runtime_vtable() to create the vtable.
28965 2003-09-05  Martin Baulig  <martin@ximian.com>
28967         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28968         MONO_TYPE_MVAR.
28970 2003-09-04  Martin Baulig  <martin@ximian.com>
28972         * reflection.c (mono_reflection_define_generic_parameter): Generic
28973         parameters start with zero.
28975 2003-09-04  Martin Baulig  <martin@ximian.com>
28977         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28979         * reflection.h (MonoReflectionGenericParam): New typedef.
28980         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28981         the generic parameters from the managed TypeBuilder.
28983         * reflection.c (mono_reflection_define_generic_parameter): New function.
28984         (mono_reflection_create_runtime_class): Encode generic parameters.
28985         (mono_reflection_setup_generic_class): New function; this is
28986         called after adding adding all generic params to the TypeBuilder.
28987         (encode_type): Added MONO_TYPE_VAR.
28989 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28991         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28992         here from the JIT.
28994         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28995         load hook.
28997 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28999         * reflection.h reflection.c class.h class.c: Delete duplicate 
29000         definition of mono_type_get_name () from reflection.c and export the
29001         one in class.c.
29003         * class.c: Class loading fixes from Bernie Solomon 
29004         (bernard@ugsolutions.com).
29006         * reflection.c: Endianness fixes from Bernie Solomon 
29007         (bernard@ugsolutions.com).
29008         
29009 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29011         * assembly.h assembly.c: Define a file format version for AOT
29012         libraries.
29013         
29014         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29016         * appdomain.h (MonoJitInfo): New field to determine whenever the
29017         code is domain neutral.
29018         
29019 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29021         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29023 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29025         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29026         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29027         Avoid caching the result since strings must be domain specific. Fixes
29028         #48050.
29030 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29032         * marshal.c (mono_marshal_init): Make this callable multiple times
29033         since it is hard to find a correct place to call it.
29035         * object.c (mono_runtime_class_init): Execute static constructors in
29036         the correct appdomain.
29038         * image.c (build_guid_table): Handle the case when multiple images have
29039         the same GUID.
29041 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29043         * icall.c: added a couple of icalls for System.Web.
29045 2003-08-28  Martin Baulig  <martin@ximian.com>
29047         * icall.c (ves_icall_Type_BindGenericParameters): Use
29048         `klass->generic_inst' instead of `&klass->byval_arg' in the
29049         mono_type_get_object() call.  The returned type must be
29050         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29052 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29054         * NOTES: New file.
29056         * object.c (mono_class_proxy_vtable): Make it thread safe.
29058         * pedump.c: Fix warning.
29060         * object.c appdomain.h: Get rid of metadata_section. 
29061         It is no longer needed and it was causing deadlocks with domain->lock.
29063         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29065 2003-08-26  Martin Baulig  <martin@ximian.com>
29067         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29069 2003-08-26  Martin Baulig  <martin@ximian.com>
29071         * pedump.c (main): Call mono_metadata_init(),
29072         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29073         and mono_loader_init().
29075 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29077         * loader.h: Add missing include to fix build.
29079         * image.h: mono_image_load_references is no more.
29081         * assembly.c: Reworked assembly loading to make it really thread safe.
29082         After these changes, the assembly returned by mono_assembly_open is
29083         fully initialized, i.e. all its references assemblies are loaded.
29085         * assembly.c (mono_image_load_references): Renamed to 
29086         mono_assembly_load_references, and made private, since clients no
29087         longer need to call it.
29089         * class.c: Removed calls to mono_assembly_load_references, since it was
29090         a source of deadlocks.
29092         * loader.h loader.c class.h class.c: Protect data structures using a 
29093         new lock, the loader lock.
29095         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29096         GPtrArrays only when needed.
29098         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29099         into empty structures by mcs. Fixes pinvoke7.cs.
29100         
29101         * domain.c (mono_init): Call a new initialization function.
29103         * appdomain.c (mono_runtime_init): Call the new initializer function
29104         of the marshal module.
29106         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29107         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29109         * marshal.h marshal.c: Added locks around the wrapper caches to make
29110         this module thread safe.
29112         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29113         this argument. Fixes pinvoke1.exe.
29115 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29117         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29118         enumeration of values. Removed fields to store remote call output values in
29119         MonoAsyncResult. Not needed any more.
29120         * object.c: Initialize call_type and async_result fields in mono_message_init.
29121         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29122         dispatching the message.
29123         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29124         async call to finish. To do it use a message with EndInvoke call type.
29126 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29128         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29129         determines whenever a method has marshalling info.
29131 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29133         * assembly.c: fix the build on windows.
29135 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29137         * object.cs: Fixed bug #47785.
29139 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29141         * string-icalls.c (StringReplace): If their are no occurances of
29142         the old string found return a reference to the supplied
29143         string. This saves some memory and matches MS behavoir.
29144         
29145 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29147         * socket-io.c: fixed compilation for systems that define AF_INET6
29148         and don't define SOL_IP/SOL_IPV6.
29150 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29152         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29153         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29155         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29157         * domain.c: Make this module thread safe.
29159         * domain.c (mono_init): Call new initialization function.
29161         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29162         reference types too. Fixes #38812.
29164         * image.c (mono_image_init): Fixed warnings.
29166         * class.c (mono_class_from_typeref): Handle assembly load failure
29167         correctly.
29169         * appdomain.c (add_assemblies_to_domain): Handle the case when
29170         the references of an assembly are not yet loaded.
29172         * metadata.c image.c assembly.c: Moved initialization of global
29173         variables to a separate function called at startup since lazy 
29174         initialization of these variables is not thread safe.
29175         
29176         * image.c assembly.c: Made this module thread safe by adding locks in 
29177         the appropriate places.
29179         * domain.c (mono_init): Call the new initialization functions of the
29180         three modules.
29182 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29184         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29185           make a direct call. It is proxy's work to make the call asynchronous.
29186           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29187           the return values.
29188         * object.cs: mono_method_call_message_new(): read AsyncResult and
29189           state object from parameters list, if this info is requested.
29190         * object.h: Added fields to store remote call output values in
29191           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29193 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29195         * object.h: add needed fields to MonoThread.
29196         * threads.c, threads.h: allow registering a function to cleanup data
29197         allocated per thread by the JIT.
29199 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29201         * loader.h: portability fix by Bernie Solomon
29202         * <bernard@ugsolutions.com>.
29204 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29206         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29207         return a MonoArray. This simplifies the code and also ensures that
29208         the cache allways contains an object reference as a value.
29210         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29211         function.
29213 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29215         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29216         fixes a problem with byte ordering when getting the address family for
29217         a socket.
29219 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29221         * .cvsignore: Added monosn.
29223         * reflection.h reflection.c loader.c: Added support for parameter
29224         marshalling to dynamically created types. Fixes #47295.
29226 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29228         * rand.c: remove useless warnings.
29230 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29232         * class.c: implemented ldtoken for methods and fieldrefs.
29234 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29236         * threadpool.c: when mono_async_invoke was called, no one took care of
29237         monitoring the queue. So if the method invoked took some time and we
29238         got new async invoke requests after 500 ms (the thread created waited
29239         that long in WaitForSingleObject), the new async invoke was not called
29240         until the previous one finished.
29242         This is fixed now. Thanks to Totte for helping with it.
29244 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29246         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29248 2003-08-11  Martin Baulig  <martin@ximian.com>
29250         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29252 2003-08-06  Martin Baulig  <martin@ximian.com>
29254         * mono-debug-debugger.c: Added support for static fields,
29255         properties and methods.
29257 2003-08-06  Martin Baulig  <martin@ximian.com>
29259         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29260         make this work for applications with multiple application domains.
29262 2003-08-04  Martin Baulig  <martin@ximian.com>
29264         * mono-debug-debugger.c: Completely reworked the type support; the
29265         most important thing is that we're now just using one single
29266         `MonoType' instance per type.
29268 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29270         * mono-endian.h, mono-endian.c, icall.c: Added icall
29271         ves_icall_System_Double_AssertEndianity to assert double word endianity
29272         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29274 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29276         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29277         support, icalls and fixes.
29279 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29281         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29282         classes that are a punctuation character in .NET is not the same a
29283         g_unichar_ispunct.
29285 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29287         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29289 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29291         * icall.c: Add new MemCopy internalcall.
29292         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29293         Simplified code; It is not necessary to handle all the cases here,
29294         as the C# code takes care of it.  Only handle the case of the name
29295         resource embedded into the assembly.
29297         Changed signature to return the data pointer and the size of the
29298         data. 
29300 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29302         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29303         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29305 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29307         * socket-io.c: ignore EINTR error in select.
29309 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29311         * class.h, class.c: removed unused subclasses field in MonoClass.
29313 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29315         * icall.c: improve fix of get_base_definition(). If the parent class
29316           doesn't have the mehod, look at the parent of the parent.
29317         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29318           to check if a parameter is an in or out parameter
29319           (PARAM_ATTRIBUTE_IN is not set by default).
29320           mono_method_return_message_restore(): Use mono_class_value_size to
29321           get the size of a value type. mono_type_stack_size (parameterType)
29322           does not return the correct value if parameterType is byRef.
29323           mono_load_remote_field(), mono_load_remote_field_new(),
29324           mono_store_remote_field(), mono_store_remote_field_new():
29325           raise exception if the remote call returns an exception.
29327 2003-07-28  Martin Baulig  <martin@ximian.com>
29329         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29330         method.  This is a wrapper around mono_runtime_invoke() which
29331         boxes the instance object if neccessary.
29333 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29335         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29336         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29338 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29340         * icall.c: disable mcs bug workaround.
29342 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29344         * object.c (mono_runtime_class_init): Take the metadata_section
29345         mutex before obtaining the domain mutex.
29347         * appdomain.h: Added definition of metadata_section mutex here. 
29349         * object.c: define metadata_mutex here.
29351 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29353         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29354         fixed.
29356 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29358         * reflection.c: Fix bug #46669
29360 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29362         * exception.c:
29363         * exception.h:
29364         * icall.c:
29365         * object.h: fill in the type name for TypeLoadException.
29367 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29369         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29370         relationship between TypeBuilders while compiling corlib) and bug
29371         45993 (Array types returned from the runtime while compiling
29372         corlib were from the loaded corlib).
29374 2003-07-22  Martin Baulig  <martin@ximian.com>
29376         * mono-debug-debugger.c: Reworked the type support a bit more;
29377         distinguish between types and classes.
29379 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29381         * icall.c: add IsArrayImpl icall.
29383 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29385         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29386         initializing real_size only once. Also fix bug #46602.
29388 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29390         * object.c: Renamed mono_metadata_section to metadata_section.
29392 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29394         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29395           empty array if the type is an array. Fixed.
29396           ves_icall_MonoMethod_get_base_definition: if the base method
29397           is abstract, get the MethodInfo from the list of methods of
29398           the class.
29399         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29400           and it was 1-based. Fixed in mono_param_get_objects.
29402 2003-07-20  Martin Baulig  <martin@ximian.com>
29404         * mono-debug.h: Set version number to 31.
29405         (mono_debug_init): Added `MonoDomain *' argument.
29407         * mono-debug-debugger.c: Reworked the type support; explicitly
29408         tell the debugger about builtin types; pass the `klass' address to
29409         the debugger.
29411 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29413         * image.c: Allow new metadata tables to be loaded without a
29414         warning. Also update the warning message to give the new constant value.
29415                 
29416 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29418         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29419         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29420         array type representation changes.
29422 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29424         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29425         on Environment.Exit () call.
29427 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29429         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29430         requires a matching corlib.
29432 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29434         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29435           Committed again without the CRs.
29436         
29437 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29439         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29440           getting it from the "this" socket instance. Did not work
29441           if the socket is a subclass of Socket.
29442           Also fixed bug #35371.
29444 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29446         * metadata.c: fixed size for TypedByRef.
29447         * loader.c: when searching for a method, consider the vararg amrker.
29448         * unicode.c, decimal.c: constify some arrays.
29450 2003-07-15  Dick Porter  <dick@ximian.com>
29452         * socket-io.c: Fixed compilation for gcc < 3.2.
29454         Fixed compilation for machines that don't have AF_INET6 (thanks to
29455         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29457         Fixed compile warnings.
29458         
29459         Fixed formatting and line endings.
29461 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29463         * socket-io.h:
29464         * socket-io.c: Added IPv6 support.
29466 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29468         * class.c (mono_class_is_assignable_from): New function to implement
29469         the is_assignable_from logic. Used by mono_object_isinst, 
29470         Type::IsAssignableFrom () and the interpreter.
29472         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29473         Object, even interfaces.
29474         
29475         * object.c (mono_object_isinst): Implement in terms of 
29476         is_assignable_from.
29478         * icall.c (ves_icall_type_is_assignable_from): New icall.
29480 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29482         * domain.c (foreach_domain): fix compiler warning.
29484 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29486         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29487         not available on all plattforms
29489 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29491         * image.h image.c: Store the metadata version string in MonoImage.
29492         * icall.c: New icall to retrieve the image version.
29493         * reflection.c (create_dynamic_image): Fill in the image version field
29494         * reflection.c (build_compressed_metadata): Use the image version
29495         from the image structure.
29497 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29499         * appdomain.c: modified comment.
29500         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29501         That will be its last iteration when mono_gc_cleanup is called from
29502         mono_runtime_cleanup and before the domain is unloaded.
29504         Fixes bug #45962.
29506 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29508         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29509         attributes.
29511 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29513         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29514         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29515         Bernie Solomon <bernard@ugsolutions.com>.
29517 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29519         * object.c, object.h: provide mono_object_new_fast() for faster
29520         allocation in some special cases.
29522 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29524         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29525         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29527 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29529         * threadpool.c: fix leaks.
29531 2003-07-01  Dick Porter  <dick@ximian.com>
29533         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29534         using MonoGHashTables.  Fixes threadpool bug posted to list.
29536 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29538         * image.h, image.c: added support to load an assembly from a byte array.
29539         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29540         assembly bundle support.
29542 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29544         * threadpool.c (mono_thread_pool_add): keep a reference to the
29545         AsyncResult to prevent GC
29547 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29549         * class.c: leak fix.
29551 2003-06-25  Dick Porter  <dick@ximian.com>
29553         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29554         for the async object, the WaitHandle object will close the handle.
29555         Fixes bug 45321.
29557 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29559         * class.c: in mono_array_class_get (), lookup from the hash with the
29560         same type we insert: this works around a bug in
29561         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29562         lluis. The real fix will have to wait for after the release.
29564 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29566         * icall.c: fix memory leak when getting type members.
29568 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29570         * reflection.c: added more pubtoken special cases.
29572 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29574         * class.c: handle field offset correctly when class size
29575         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29577 2003-06-20  Martin Baulig  <martin@ximian.com>
29579         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29580         *image' field.
29582 2003-06-20  Martin Baulig  <martin@ximian.com>
29584         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29586 2003-06-20  Martin Baulig  <martin@ximian.com>
29588         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29589         just distinguish between variables in registers and variables at
29590         an offset relative to a register.
29592 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29594         * icall.c: #ifdef out latest changes until mcs is fixed.
29596 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29598         * icall.c: return members in metadata order.
29600 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29602         * icall.c: avoid infinite loop in GetTimeZoneData.
29604 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29606         * icall.c: added Marshal.Prelink/All icalls.
29608 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29610         * object.c, object.h: fix warnings and do some overflow checking
29611         when creating arrays.
29613 2003-06-17  Dick Porter  <dick@ximian.com>
29615         * file-io.h:
29616         * file-io.c: File attributes need to be tweaked slightly when
29617         passed from the managed to the w32 world.
29619 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29620         * profiler.h profiler-private.h profiler.c: Rework last patch
29621         based on suggestion by Paolo.
29622         
29623 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29625         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29626         instruction level coverage data collection.
29627         * profiler.h profiler.c (: Added new callback function which can be
29628         used by the profiler to limit which functions should have coverage
29629         instrumentation.
29630         * profiler.c (mono_profiler_load): Call g_module_build_path to
29631         generate the file name of the profiler library.
29633 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29635         * profiler.c, profiler.h, profiler-private.h: added basic block 
29636         coverage profiling API.
29638 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29640         * reflection.c (mono_reflection_create_runtime_class): Add support
29641         for events in dynamically generated code.
29643         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29644         not allocated.
29646 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29648         * icall.c: when getting timezone info, return reasonable values if we
29649         can't get the actual data.
29651 2003-06-14  Dick Porter  <dick@ximian.com>
29653         * threads.c (start_wrapper): Remove the reference to the thread
29654         object in the TLS data, so the thread object can be finalized.
29655         This won't be reached if the thread threw an uncaught exception,
29656         so those thread handles will stay referenced :-( (This is due to
29657         missing support for scanning thread-specific data in the Boehm GC
29658         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29660 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29662         * reflection.c: ensure streams and tables are first allocated with
29663         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29665 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29667         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29669 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29671         * reflection.c (mono_reflection_create_runtime_class): Add support for
29672         properties to dynamically created classes.
29673         * reflection.c: Fix a few places where non-MonoObjects were inserted
29674         into the tokens hashtable.
29676 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29678         * object.c: some support to handle out of memory exceptions.
29680 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29682         * marshal.c (mono_marshal_get_native_wrapper): support reference
29683         return types
29685 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29687         * object.h, object.c: more portability stuff from Bernie Solomon.
29688         Unexport mono_object_allocate(). Added mono_object_unbox ().
29689         Set exitcode when an unhandled exception is thrown.
29691 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29693         * marshal.c (mono_marshal_get_native_wrapper): use custom
29694         marshaler for return types.
29696 2003-06-10  Dick Porter  <dick@ximian.com>
29698         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29699         ip_mreq is available
29701 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29703         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29704         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29705         by Bernie Solomon <bernard@ugsolutions.com>.
29707 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29709         * gc.c (mono_gc_init): Avoid error message on shutdown when
29710         GC_DONT_GC=1 is used.
29712         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29713         New icall to return the GUID of a module.
29715 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29717         * class.c: ensure instance size always includes the parent's size
29718         even whem class size is set explicitly (fixes bug#44294).
29720 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29722         * profiler.h, profiler.c: made the simple profiler thread-safe,
29723         get more accurate timing info. Allow the loading of an
29724         externally-developed profiler module.
29726 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29728         * marshal.c (mono_marshal_get_native_wrapper): improved
29729         class/byref arguments.
29730         (mono_marshal_get_native_wrapper): better string marshaling support.
29732 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29734         * class.c: ensure .pack and .size are handled correctly and
29735         simplified layout of static fields.
29737 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29739         * appdomain.c
29740         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29742         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29743         current directory (fix bug 44008)
29745 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29747         * marshal.c (mono_marshal_get_native_wrapper): started support for
29748         custom marshalers.
29749         (mono_delegate_to_ftnptr): consider marshalling specifications
29751 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29753         * reflection.c, reflection.h: emit custom marshal info.
29755 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29757         * object.c: free the GError.
29758         * icall.c: added CloseEvent_internal.
29759         * threads.[ch]:
29760         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29761         call.
29763 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29765         * loader.c (mono_method_get_signature): Add support for dynamic
29766         assemblies.
29768 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29770         * reflection.c: fixed bug #43905.
29772 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29774         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29775         handling TypedReference and ArgIterator.
29776         * loader.c, loader.h: added function to get signature at call site.
29778 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29780         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29781         data readonly. Buglets and warning fixes. Some MethodSpec support.
29783 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29785         * class.h, class.c, object.c: remove relative numbering support.
29787 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29789         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29790         free the string, until we get a chance to fix Gtk#
29792 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29794         * marshal.c: revert last patch.
29796 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29798         * icall.c: updates for new mono_class_vtable() not calling
29799         the type constructor anymore.
29801 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29803         * object.h, object.c: separate vtable creation from type
29804         initialization. Make running the .cctor thread safe.
29806 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29808         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29810 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29812         * loader.c (mono_get_method): consider calling convention
29814 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29816         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29817         to return the invisible global type for a module.
29819         * reflection.c (mono_image_build_metadata): Emit global fields too.
29821 2003-05-20  Peter Williams  <peterw@ximian.com>
29823         * loader.c (mono_lookup_internal_call): Add a few newlines.
29825 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29827         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29828         literal strings.
29830         * appdomain.c (set_domain_search_path): Recalculate search path when
29831         AppDomainSetup.PrivateBinPath changes.
29833         * object.c (mono_class_compute_gc_descriptor): It turns out some
29834         parts of the class libs (like System.Thread) holds pointers to
29835         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29836         to treat native int a pointer type here.
29837         
29838 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29840         * appdomain.h, domain.c: add hashtable for jump target resolution.
29842 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29844         * reflection.h reflection.c icall.c: Added new icalls 
29845         GetManifestResourceInfoInternal, GetModulesInternal and support
29846         infrastructure.
29848 2003-05-16  Dick Porter  <dick@ximian.com>
29850         * icall.c:
29851         * file-io.h:
29852         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29854 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29856         * object.c: mono_store_remote_field: little fix to previous patch.
29858 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29860         * class.c: add constructors to array classes.
29861         * icall.c: special case array construction for InternalInvoke (),
29863 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29865         * class.h class.c reflection.c object.c: Added support for field
29866         defaults in dynamically generated classes.
29868 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29870         * reflection.c: properly encode charset for ddlimport.
29872 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29874         * threads.c: allow compiling without GC.
29876 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29878         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29879         handling of thread static data.
29881 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29883         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29885 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29887         * class.c (mono_array_class_get): always set the serializable flags
29888         (mono_array_class_get): always set the SEALED attribute for array types
29890 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29892         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29893         attributes (fix for bug 42021).
29895 2003-05-12  Dick Porter  <dick@ximian.com>
29897         * gc.c: Don't run finalizers when the finalizer thread is
29898         finishing up, because the default domain has already been
29899         destroyed.
29901 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29903         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29904         value is null, we should throw an exception.   This is slightly
29905         different than the other conventions used for the constructor.
29907 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29909         * socket-io.c: fixed windows build.
29911 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29913         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29915 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29917         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29918         compilers.
29920 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29922         * class.c (mono_class_layout_fields): Add experimental GC aware
29923         auto layout facility. Requires class library changes to work correctly.
29925         (mono_class_setup_vtable): Avoid overriding explicit interface
29926         method implementations. Fixes iface3.exe test.
29928         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29929         object reference.
29930         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29931         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29933         * metadata.h: Add new type classification macro which determines
29934         whenever the type holds an object reference.
29936 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29938         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29940 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29942         * gc.c (finalizer_thread): Work around a GC bug.
29944 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29946         * marshal.c (emit_struct_conv): allow unions
29948         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29950 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29952         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29954 2003-05-06  Martin Baulig  <martin@ximian.com>
29956         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29958 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29960         * socket-io.c:
29961         (Select_internal): allow NULLs, don't create arrays if not needed.
29962         Coupled with Socket.cs changes.
29964         * threadpool.c:
29965         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29966         register a finalizer for it that will close the semaphore handle. This
29967         fixes the leak and make Lupus' test run with > 4080 loops.
29969 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29971         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29972         Jerome Laban (bug #42287)
29974 2003-05-02  Martin Baulig  <martin@ximian.com>
29976         * debug-mono-symfile.h
29977         (MonoSymbolFile): Moved declaration into mono-debug.h.
29978         (MonoDebugMethodJitInfo): Likewise.
29979         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29980         argument.
29981         (_mono_debug_address_from_il_offset): Take a
29982         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29984         * mono-debug.h
29985         (MonoDebugDomainData): New struct.
29986         (mono_debug_get_domain_data): New function.
29987         (mono_debug_add_method): Take an additional `MonoDomain *'
29988         argument.
29989         (mono_debug_source_location_from_address): Likewise.
29990         (mono_debug_il_offset_from_address): Likewise.
29991         (mono_debug_address_from_il_offset): Likewise.
29993 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29995         * reflection.c: one more check for null type in custom attrs.
29997 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29999         * reflection.c: avoid warning (comparison is always false due to limited
30000         range of data type).
30002 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30004         * icall.c: throw an exception in Type.GetField if the argument 'name'
30005         is NULL.
30007 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30009         * reflection.c: fixed handling of enums in named arguments to custom
30010         attributes (bug #42123).
30012 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30014         * reflection.c: use the right array element type and handle
30015         a null for a Type argument, too.
30017 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30019         * reflection.c: handle arrays as arguments to custom attributes.
30021 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30023         * reflection.c: handle a string value in a custom attr
30024         ctor that takes an object.
30026 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30028         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30029         (fix bug #42063)
30031 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30033         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30035 2003-04-27  Martin Baulig  <martin@ximian.com>
30037         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30038         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30039         MONO_DEBUGGER_EVENT_BREAKPOINT.
30040         (mono_breakpoint_trampoline_code): Removed.
30041         (mono_debugger_event_handler): The last argument is now a
30042         `guint32'.
30043         (mono_debugger_insert_breakpoint_full): Removed the
30044         `use_trampoline' argument.
30045         (mono_debugger_method_has_breakpoint): Likewise.
30046         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30047         mono_debugger_breakpoint_callback(); take the method and
30048         breakpoint number as arguments.
30050 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30052         * metadata.c: fix off by one when loading parameters attributes.
30054 2003-04-24  Martin Baulig  <martin@ximian.com>
30056         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30058 2003-04-24  Martin Baulig  <martin@ximian.com>
30060         * mono-debug-debugger.c: Moved all code which interacts with the
30061         Mono Debugger here.
30063         * debug-mono-symfile.c: This code now just deals with the symbol
30064         file itself, the debugger code is now in mono-debug-debugger.c.
30066 2003-04-23  Martin Baulig  <martin@ximian.com>
30068         * mono-debug.c (mono_debug_source_location_from_il_offset):
30069         New method; like mono_debug_source_location_from_address(), but
30070         takes an IL offset instead of a machine address.
30072 2003-04-23  Martin Baulig  <martin@ximian.com>
30074         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30075         `line' field; this is now computed by the debugger.
30077 2003-04-23  Martin Baulig  <martin@ximian.com>
30079         * mono-debug.[ch]: New files.  This is the new debugging interface.
30081         * mono-debug-debugger.[ch]: New files.  Moved all code which
30082         interacts with the Mono Debugger here.
30084 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30086         * domain.c (mono_init): initialize mono_defaults.monitor_class
30088 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30090         * reflection.c (method_encode_code): Add a spicy exception to help
30091         future compiler authors.
30093 2003-04-21  Martin Baulig  <martin@ximian.com>
30095         * icall.c
30096         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30097         Make this work with relative pathnames; g_filename_to_uri() needs
30098         an absolute filename.
30100 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30102         * icall.c: Track name changes in Object and ValueType.
30104 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30106         * metadata.c (mono_type_stack_size): size should be a multiple of
30107         sizeof (gpointer)
30109 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30111         * gc.c:
30112         (internal_domain_finalize): moved into mono_domain_finalize. No need
30113         to create another thread because the finalizers will be run in the
30114         finalizer thread.
30115         
30116         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30117         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30118         to be run (MS does this too).
30120 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30122         * object.c (mono_class_compute_gc_descriptor): Update comment.
30124         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30126         * image.h: Add synchronized wrapper cache.
30128         * image.c (do_mono_image_open): Initialize cache.
30130         * reflection.c (create_dynamic_mono_image): Initialize cache.
30132 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30134         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30135         ves_icall_System_Buffer_ByteLengthInternal.
30137 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30139         * reflection.c: setup klass->nested_in earlier. Allow
30140         a dash in the assembly name.
30142 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30144         * metadata.c (mono_type_to_unmanaged): dont access
30145         type->data.klass for MONO_TYPE_OBJECT
30146         (mono_type_to_unmanaged): consider System.Delegate class
30148 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30150         * class.c: just setup supertypes in the proper place instead of
30151         initializing the full element class for arrays.
30153 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30155         * class.c: ensure the element class of arrays is initialized.
30156         Setup the supertype info for array classes, too.
30158 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30160         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30162 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30164         * Makefile.am: re-added -m option when running cygpath. This way,
30165         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30166         separator.
30167         * mono-config.c: same codepath for locating mono config file for WIN32
30168         and the rest.
30169         * assembly.c: if mono_assembly_setrootdir is called, don't override
30170         the value set.
30172 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30174         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30175         MONO_ASSEMBLIES variable.
30177 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30179         * icall.c: added Assembly::GetNamespaces() icall.
30181 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30183         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30185 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30187         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30188         * object.c: fixed bug in the construction of vtable for proxies
30190 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30192         * object.c (mono_array_new): Mark mono_array_new as an icall.
30194 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30196         * class.c: fixed test for public method when overriding interfaces.
30197         Closes bug #40970.
30199 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30201         * appdomain.h, domain.c: added mono_domain_foreach() to
30202         be able to access the currently loaded appdomains.
30203         * object.c: make string interning work across sppdomains.
30204         Mark some functions for use as icalls.
30206 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30208         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30210         * reflection.h reflection.c: Allocate long living data using 
30211         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30213         * reflection.c: Double the allocation size in streams instead of
30214         increasing it, to prevent unneccesary copying on large assemblies.
30215         
30216         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30217         creation if the assembly does not have the Run flag set.
30219 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30221         * class.h: avoid the C++ keywords in header files (Jerome Laban
30222         spotted and fixed this).
30224 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30226         * object.c:
30227         (mono_unhandled_exception): fill in the arguments for the
30228         UnhandledException event. Only trigger that event for the default
30229         domain (as MS does).
30231 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30233         * object.c: Improve typed allocation stuff based on suggestions from
30234         Paolo. Also turn it on if the GC library supports it.
30236 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30238         * object.c object.h class.h: Added experimental typed allocation
30239         facility using the interfaces in gc_gcj.h.
30241         * os/gc_wrapper.h: Added new include files.
30242         
30243 2003-04-03  Martin Baulig  <martin@ximian.com>
30245         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30246         which is not yet enabled by default.
30248         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30249         functions.
30250         (mono_gc_lock, mono_gc_unlock): New static functions.
30252         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30253         functions; stop/start the world for the garbage collector.  This
30254         is using the windows API; we need to complete the SuspendThread()/
30255         ResumeThread() implementation in the io-layer to make this work on Unix.
30256         (mono_gc_push_all_stacks): New public function; tells the garbage
30257         collector about the stack pointers from all managed threads.
30259 2003-04-03  Martin Baulig  <martin@ximian.com>
30261         * object.h (MonoThread): Added `gpointer stack_ptr'.
30263         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30265 2003-04-03  Martin Baulig  <martin@ximian.com>
30267         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30269 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30271         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30272         field.last.
30274 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30276         * loader.c (mono_lookup_internal_call): Report the corlib that is
30277         out of sync.
30279 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30281         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30282         System.DBNull (it's class not valuetype).
30284 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30286         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30287         if the array method was already assigned a token (fixes bug#40646).
30289 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30291         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30292         if no assembly is given.
30294 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30296         * metadata.h: Added the new tables.
30298         * row-indexes.h: Added definitions for new tables.
30300         * metadata.c: Add schemas for new tables, and add support for
30301         computing the sizes of them.
30303         * class.c: Update for handling the new type cases.
30305 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30307         * metadata.h (MONO_TYPE_IS_VOID): new macro
30309 2003-03-31  Martin Baulig  <martin@ximian.com>
30311         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30313         * threads.c (mono_thread_new_init): Call `thread_created' in the
30314         mono_thread_callbacks.
30316 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30318         * loader.h: added marshalbyrefobject_class to mono_defaults
30319         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30320         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30321           generation of output parameters.
30322           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30323         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30324           contextbound and the target object belongs to the context of the caller.
30325         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30326         * object.c: Implemented support for interfaces and abstract classes
30327           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30328           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30330 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30332         * class.h class.c (mono_class_is_subclass_of): New function.
30333         
30334         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30335         routines for most common case (calls from ArrayList::ToArray).
30337         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30338         routine so programs which call Environment::Exit() can be profiled.
30340         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30341         Added MONO_ARCH_SAVE_REGS.
30343         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30345 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30347         * blob.h: Add a couple of new MonoType types definitions.
30349         * tabledefs.h: Add a couple of new call convs.
30351 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30353         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30354         the layout of the class.
30356         * reflection.c (alloc_table): double the size on overflow to avoid
30357         unnecessary copying.
30359         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30360         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30361         null so it can be garbage collected.
30362         
30363 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30365         * reflection.c (mono_reflection_get_type): Return the resolved type
30366         only if it is in the assembly we searched.
30368         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30370         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30371         method.
30373 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30375         * appdomain.c:
30376         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30377         the right one is 'file:///blah', but MS allows it.
30378         * assembly.c:
30379         (mono_assembly_open): allow 'file://blah'
30381         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30383 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30385         * socket-io.c: fixes bug #40310.
30387 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30389         * reflection.c (mono_reflection_parse_type): handle deeply nested
30390         types correctly.
30392         * reflection.c (mono_image_create_token): Use unique token values
30393         since they will be put into a hash table.
30395         * class.c (mono_class_setup_vtable): If a method occurs in more than
30396         one place in the vtable, and it gets overriden, then change the
30397         other occurances too.
30399         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30400         object as return type.
30402 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30404         * icall.c: Deleted "ToString" implementation for double and float
30405         because they are full implemented in managed code.
30407 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30409         * reflection.c, reflection.h: implemented and exported functions
30410         to retrieve info about custom attributes.
30412 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30414         * appdomain.c: moved Uri handling to assembly.c
30415         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30416         work when using a file Uri in *nix and windows.
30418         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30419         GetReferencedAssemblies.
30421 2003-03-18  Dick Porter  <dick@ximian.com>
30423         * icall.c: Rename a couple of internal calls
30425         * threads.c: Set the thread state to Stopped when a thread exits.
30426         Fixes bug 39377.
30428 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30430         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30431         New icall.
30433         * object.c (mono_class_vtable): fix warning.
30435 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30437         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30439         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30440         memory.
30441         (method_encode_clauses): Create exception info structures in the right
30442         order.
30443         (mono_reflection_setup_internal_class): Initialize supertypes field.
30445         * class.c object.c: Handle interfaces which implement other interfaces 
30446         correctly.
30448         * class.h class.c: Move the supertypes array initialization code into 
30449         a separate function so it can be used for dynamic types too. Also call
30450         it earlier, in mono_class_init(), since it can be used before the
30451         type is initialized.
30453 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30455         * Makefile.am:
30456         * assembly.c:
30457         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30459         * appdomain.c:
30460         * appdomain.h:
30461         * marshal.c:
30462         * object.c: remove warnings.
30464 2003-03-13  Martin Baulig  <martin@ximian.com>
30466         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30467         (MonoDebugLexicalBlockEntry): New types.
30469         * debug-mono-symfile.c
30470         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30472 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30474         * process.c: ret can be any non-zero value accroding to MS doc.
30476 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30478         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30479         fixing a warning for a miss-used prototype, would have cause
30480         random memory corruption.
30482 2003-03-07  Martin Baulig  <martin@ximian.com>
30484         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30485         getting really annoying ....
30487 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30489         * reflection.c (fixup_method): added support for array methods.
30491 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30493         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30494         (pointed out by Michael Adams).
30496 2003-03-04  Dick Porter  <dick@ximian.com>
30498         * icall.c: Temporarily reverted the Double and Single ToString()
30499         change, because it broke nunit.
30501 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30503         * object.h, threads.h: make include files compatible with C++
30504         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30506 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30508         * icall.c: Erased ToString helper functions for Double and Single.
30509         Now, that implementations ar all in managed code (Double and Single
30510         Formatters).
30512 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30514         * appdomain.c: Added method for initializing the default context of
30515         a domain. Added internal call for getting the default context.
30516         * appdomain.h: Added context variable in MonoDomain struct.
30517         * domain.c: mono_domain_set also sets the default context of the domain
30518         * icall.c: Mapped internal method InternalGetDefaultContext.
30519         * object.c: mono_object_get_virtual_method returns always a remoting
30520         wrapper if the object is a transparent proxy.
30521         mono_runtime_invoke_array: when creating an object by calling the
30522         constructor, if the created object is a proxy, then the constructor should
30523         be called using the a remoting wrapper.
30525 2003-03-03  Dick Porter  <dick@ximian.com>
30527         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30528         variable so it compiles on solaris.  Problem spotted by
30529         Christopher Taylor <ct@cs.clemson.edu>
30531 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30533         * appdomain.c:
30534         (get_info_from_assembly_name): don't leak value.
30536         * icall.c:
30537         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30538         result.
30540 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30542         * assembly.c: export mono_image_load_references ().
30543         * class.c: handle function pointers. mono_class_from_name() now
30544         supports nested type names directly.
30546 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30548         * reflection.h reflection.c: Encode already created dynamic methods 
30549         and fields correctly as a DEF instead of a REF.
30551         * reflection.c: Get rid of the force_ref argument to 
30552         mono_image_typedef_or_ref since it was wrong in the first place.
30554         * string-icalls.c: add error checking to string constructors according
30555         to the MSDN docs.
30557         * reflection.c: Emit types in the order their TypeBuilders were 
30558         created. Previously, a new table index was assigned to each type before
30559         the tables were emitted. This was wrong because the signature blob
30560         might already refer to a type by its original table index.
30562 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30564         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30565         change.
30566         
30567 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30569         * Makefile.am: make assemblies dir have \ instead of / on windows.
30571 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30573         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30574         iterate over the NESTEDCLASS table using a linear search since the
30575         table is not guaranteed to be sorted by the secondary key.
30577         * class.c (mono_class_create_from_typedef): fixed up call to
30578         mono_metadata_nesting_typedef.
30579         
30580 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30582         * marshal.c (mono_string_to_byvalstr): clear the memory as
30583         suggested by Jerome Laban <jlaban@wanadoo.fr>
30585 2003-02-26  Dick Porter  <dick@ximian.com>
30587         * process.c: Cope with padding in .rsrc blocks
30589 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30591         * metadata.h: reverted the filter_len change, it breaks reflection
30592         
30593 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30595         * metadata.h: added a new field to store the filter_len
30596         
30598 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30600         * reflection.c: handle custom attributes for types and members
30601         created with Reflection.Emit (bug#38422).
30603 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30605         * reflection.c: define RTSpecialName automatically for constructors for
30606         compatibility with MS.NET.
30608         * reflection.c (mono_reflection_create_runtime_class): initialize
30609         nested_in field of dynamically created classes.
30611 2003-02-22  Martin Baulig  <martin@ximian.com>
30613         * debug-mono-symfile.h: Incremented version number.
30615 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30617         * object.h icall.c process.c: fix warnings.
30619 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30621         * appdomain.h appdomain.c:
30622         (mono_domain_try_type_resolve): split the 
30623         name_or_tb argument into a name and a tb argument.
30624         (mono_domain_has_type_resolve): new function to check whenever the
30625         application has registered a TypeResolve event handler.
30626         
30627         * icall.c reflection.h reflection.c: move the type resolve logic into
30628         mono_reflection_get_type () so it will be invoked when 
30629         Assembly::GetType () is called.
30631         * reflection.c:
30632         (mono_reflection_get_type): renamed to get_type_internal.
30633         (mono_reflection_get_type): fixed type name generation so it works 
30634         for nested types too.
30635         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30636         costly type name generation if there is no resolve event handler.
30638 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30640         * class.c, image.c: load exported types from file references.
30642 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30644         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30645           used to cache the managed methods used to create proxies and make 
30646           remote invocation of methods.
30647         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30648           to be remotely created.
30649         * object.c: Modified the method mono_class_vtable(). It now initializes 
30650           the remote flag of the vtable. Modified mono_object_new_specific(), 
30651           so now it checks the remote flag.
30652         * icall.c: Added a couple of internal methods, one for enabling instance 
30653           creation interception for a type, and one for creating objects bypassing
30654           the remote check.
30656 2003-02-18  Martin Baulig  <martin@ximian.com>
30658         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30659         New interncall to get a method's metadata token.
30661         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30662         New interncall for the debugger.
30664 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30666         * class.c (mono_class_setup_vtable): allocate supertype array
30668 2003-02-18  Martin Baulig  <martin@ximian.com>
30670         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30672 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30674         * reflection.c:
30675         (assembly_name_to_aname): jump over unknown properties (i've found
30676         something like: 'type, assembly, version=xxx, custom=null, public...',
30677         so now will ignore custom=null and still get the rest of the values).
30679 2003-02-17  Dick Porter  <dick@ximian.com>
30681         * threads.c: Have Thread.Start() wait for a semaphore to signal
30682         that the thread has set up all its local data.  This fixes bug
30683         34323, where Abort() raced the new thread's TLS data.
30685         Also removes the handle_store() call from start_wrapper, because
30686         threads are now always created suspended and there is no longer a
30687         race between the parent and child threads to store the info.
30689 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30691         * image.c: explain the #- heap issue in a message, hopefully
30692         avoiding FAQs on mono-list.
30694 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30696         * icall.c:
30697         (GetEntryAssembly): if the domain has not invoked
30698         AppDomain.ExecuteAssembly yet, return the assembly of the default
30699         AppDomain.
30701 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30703         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30705 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30707         * metadata.c, reflection.c: simple speedup to type hash
30708         and equals code.
30710 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30712         * image.c, image.h, class.c, assembly.c: move module loading
30713         to MonoImage. When loading metadata, consider alignemnet from
30714         the start of metadata, not from the metadata address in memory.
30716 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30718         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30719         AssemblyBuilder objects. Factored out custom attribute creation into
30720         a separate function.
30721         (create_custom_attr): new function to create custom attributes.
30723 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30725         * Makefile.am: Got tired of typing the full pathname to pedump.
30726         Until there is another option, am installing this.
30728 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30730         * class.c (class_compute_field_layout): always set field->parent 
30731         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30733 2003-02-11  Dick Porter  <dick@ximian.com>
30735         * threads-types.h:
30736         * monitor.c: Rewrote Monitor, making lock much faster and
30737         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30738         creates them as needed.
30740         * exception.c: Added SynchronizationLockException
30742         * threads.c: Deleted old Monitor implementation.  The new one is
30743         in a new file.
30745 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30747         * class.c: handled TypedReference type code. Set the correct size for
30748         class data. Setup interface_offsets for interface classes, too.
30750 2003-02-09  Martin Baulig  <martin@ximian.com>
30752         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30754 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30756         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30757         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30758         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30759         * verify.c: check for code that runs after the end of the method.
30761 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30763         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30764         "System.Math::Round2".
30765         * sysmath.h: Added Floor, Round and Round2 definitions.
30766         * sysmath.c: Modified certain functions that were not 100% compliant
30767         with MS.NET (math precision) and added the implementation of Floor,
30768         Round and Round2.
30770 2003-02-07  Martin Baulig  <martin@ximian.com>
30772         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30774 2003-02-07  Martin Baulig  <martin@ximian.com>
30776         * debug-mono-symfile.c: Reflected latest symwriter changes.
30777         (mono_debug_create_mono_symbol_file): Removed.
30778         (mono_debug_open_mono_symbol_file): Take an argument which
30779         specifies whether to create a dynamic symbol file.
30781 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30783         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30785 2003-02-05  Martin Baulig  <martin@ximian.com>
30787         * reflection.c (mono_image_build_metadata): Make this public,
30788         protect it against being called multiple times, don't create
30789         resources and don't build the compressed metadata here.
30790         (mono_image_create_pefile): Do this here.
30792         * icall.c
30793         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30795 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30797         * socket-io.c: fixed bug #36322.
30799 2003-02-06  Piers Haken <piersh@friskit.com>
30801         * appdomain.[ch]:
30802         * class.h:
30803         * debug-mono-symfile.c:
30804         * icall.c:
30805         * loader.c:
30806         * mono-config.c:
30807         * monosn.c:
30808         * reflection.c:
30809         * socket-io.c: warning cleanups
30811 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30813         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30814         function. works like remoting invoke, but does a check for the Proxy first.
30816 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30818         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30820 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30822         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30823         array of pointers.
30824         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30825         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30827         * object.c (mono_store_remote_field_new): used by the new jit
30828         instead of mono_store_remote_field
30829         (mono_load_remote_field_new): used by the new jit
30830         instead of mono_load_remote_field
30832 2003-02-05  Patrik Torstensson
30834         * appdomain.c: changed unload to take the domain id instead
30835         of domain
30836         
30837         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30840 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30842         * appdomain.c: don't look for assemblies in ApplicationBase if
30843         PrivateBinPathProbe is set.
30845 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30847         * object.c: make the first argument in main_args contain the absolute
30848         path to the assembly. Fixes bug #37511.
30850 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30852         * icall.c: get correct UTC offset for countries not using daylight
30853         time saving. Fixes bug #30030.
30855 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30857         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30858         and 1 are the family).
30860 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30862         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30864         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30866 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30868         * reflection.c: added support for SignatureHelper tokens, which is
30869         needed by the Calli opcode.
30871         * reflection.h: track changes to SignatureHelper class.
30873         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30875 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30877         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30879 2003-02-03  Patrik Torstensson
30880         * appdomain.[c|h], domain.c : 
30881          - Added support for getting a domain via domain id
30882          - Support for setting and getting domain from System.AppDomain 
30883            (used in cross appdomain channel)
30884          - Added support for get/set for a MonoAppContext on a thread 
30885            (Context class in System.Runtime.Remoting.Contexts),
30886          - Removed hack in Get/SetData and ExecuteAssembly.
30887         
30888         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30889         the managed world to get control when a proxy is created.
30891         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30892         
30893 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30895         * icall.c
30896         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30897         Populate the codebase field as well.
30899 2003-02-02  Martin Baulig  <martin@ximian.com>
30901         * debug-mono-symfile.c
30902         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30903         (mono_debug_symfile_add_method): Allow interncalls.
30905 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30907         * icall.c: throw parse exception if strtod fails or the string is empty.
30909 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30911         * marshal.c: handle object type separately from defined
30912         class types.
30914 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30916         * marshal.c: handle NATIVE_LPSTR for strings when it's
30917         explicitly specified.
30919 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30921         * reflection.c, reflection.h, icall.c: setup the reflection
30922         handle cache for ModuleBuilders and AssemblyBuilders.
30924 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30926         * reflection.c (reflection_methodbuilder_to_mono_method): set
30927         pinvoke flag
30929 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30931         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30933 2003-01-29  Dick Porter  <dick@ximian.com>
30935         * threads.c: No need for the fake_thread kludge now that Thread
30936         doesn't run a class constructor
30937         
30938 2003-01-29  Dick Porter  <dick@ximian.com>
30940         * threads.c: Use g_direct_hash instead of the rather bogus
30941         g_int_hash
30943 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30945         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30946         (fix pinvoke12.exe)
30947         (mono_marshal_get_struct_to_ptr): generate valid IL code
30948         (mono_marshal_get_ptr_to_struct): generate valid IL code
30949         (*): correctly set sig->pinvoke, we need to memdup the signature
30950         to do that
30952 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30954         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30955         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30957 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30959         * profiler.c: provide more callers information.
30961 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30963         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30965         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30967         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30969 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30971         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30972         exception instead of going into an infinite loop on dates which it 
30973         can't yet handle.
30975         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30976         out-of-range exception if needed.
30978         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30979         an implementation for an interface method and to override an inherited
30980         method at the same time. 
30981         Imagine a scenario when a virtual method is used to override a
30982         virtual abstract method in a parent class, and this same method 
30983         provides an implementation for an method inherited from an interface. 
30984         In this case, the interface resolution code will set im->slot, which 
30985         means that the virtual method override pass will skip this method 
30986         which means a pointer to the abstract method inherited from the parent
30987         will remain in the vtable of this non-abstract class.
30989         * class.c: (mono_class_setup_vtable): continue search for a real 
30990         method if only an abstract method is found.     
30992 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30994         * reflection.c: add size to encoding for ByValStr and ByValArray
30995         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30997 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30999         * class.c (mono_class_setup_vtable): pass the override info as an
31000         argument.
31002         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31003         correctly.
31004         
31005         * reflection.c (ensure_runtime_vtable); add support for method 
31006         overrides.
31007         
31008 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31010         * reflection.c (resolution_scope_from_image): Hack to work to work with
31011         dynamic assemblies.
31013         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31014         added a 'force_ref' argument to force this function to allways return 
31015         a TypeRef. This is needed by mono_image_get_memberref_token ().
31016         
31017 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31019         * reflection.c (mono_image_get_type_info): interfaces really don't have
31020         a parent.
31022         * reflection.c (mono_image_basic_init): fill out missing fields of
31023         image structure.
31025         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31026         dynamic assemblies. This is required so dynamic assemblies show up in
31027         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31028         Type::GetType() etc. This is consistent with MS behaviour.
31030         * image.c image.h reflection.c: add newly created classes to the name 
31031         cache so mono_class_get () will find them.      
31033 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31035         First part of changes to get IKVM.NET running under mono.
31036         
31037         * appdomain.h, appdomain.c: added new function 
31038         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31039         This function will call AppDomain::DoTypeResolve to do the actual work.
31041         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31042         moved existing code dealing with dynamic tokens to a new function 
31043         called mono_reflection_lookup_dynamic_token (). This function will 
31044         raise TypeResolve events when appropriate. Since reflection.c is not 
31045         part of libmetadata, a new hook function called 
31046         mono_lookup_dynamic_token() is added to class.c which will call this.
31048         * assembly.h assembly.c: make the invoke_load_hook function public,
31049         so it can be called for dynamic assemblies.
31051         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31053         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31054         type isn't found.
31056         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31057         MonoGHashTable, since it contains pointers to objects which the GC 
31058         needs to track.
31060         * assembly.c (search_loaded): remove unused variable.
31061         
31062 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31064         * object.c: fixed issue exposed by gcc-generated IL programs
31065         that use RVA data for pointers.
31067 2003-01-25  Martin Baulig  <martin@ximian.com>
31069         * threads.c (start_wrapper): Moved the initialization of
31070         `start_func' above the mono_new_thread_init() call to which we
31071         pass it as argument.
31073 2003-01-24  Martin Baulig  <martin@ximian.com>
31075         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31076         the MonoThread pointer.
31078 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31080         * icall.c: Rename `PowImpl' to Pow.
31082 2003-01-23  Dick Porter  <dick@ximian.com>
31084         * threads.c (start_wrapper): Create a Thread object if needed, so
31085         the Main() thread can do the class initialisation in a subthread
31086         that has been set up to allow managed code execution.
31088         Pass the thread ID instead of the MonoThread pointer to the thread
31089         start and attach callbacks.  This change is required, because the
31090         jit thread start callback must be called _before_ the Thread
31091         object can be created.
31092         
31093         (mono_thread_init): Removed much object creation code that is no
31094         longer needed.  No managed code is called from here now.
31096         * object.c (mono_runtime_exec_managed_code): Create a subthread
31097         for Main, and call back to the runtime to use it.
31098         Set the exit code when Main exits.
31100         * gc.c: Make sure domain finalisation happens in a subthread.
31101         Re-enable threaded GC, fixing bug 31333 (again).
31103         * environment.c: System.Environment internall calls (so far just
31104         ExitCode is here, the others are still in icall.c)
31106         * appdomain.c (mono_runtime_cleanup): All threads running managed
31107         code should have finished before mono_runtime_cleanup() is
31108         reached, so no need to clean up threads.
31110 2003-01-22  Martin Baulig  <martin@ximian.com>
31112         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31113         `gpointer func' arguments.      
31114         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31115         but added `MonoThread *thread' argument.
31116         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31118         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31119         and pass it to the mono_thread_start_cb callback.
31120         (mono_install_thread_callbacks): New public function to install a
31121         set of callbacks which are set by the debugger.
31122         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31124 2003-01-22  Martin Baulig  <martin@ximian.com>
31126         * Makefile.am: Install debug-mono-symfile.h.
31128 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31130         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31132 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31134         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31135         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31136         (mono_array_class_get): correctly set access levels of arrays
31138 2003-01-20      Patrik Torstensson
31139         * image.h (MonoAssemblyName): changed major, minor, build, revision
31140         from signed to unsigned.
31142 2003-01-20  sean kasun <skasun@azstarnet.com>
31144         * reflection.c (load_cattr_value): Now this handles
31145         MONO_TYPE_SZARRAY.  Fixes bug #35629
31147 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31149         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31150         integer value
31152 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31154         * decimal.c: fixed bug #26056.
31156 2003-01-17  Martin Baulig  <martin@ximian.com>
31158         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31160 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31162         * exception.[ch]:
31163         (mono_get_exception_type_initialization): new function.
31165         * object.c: throw a TypeInitializationException when an exception is
31166         thrown invoking the class constructor.
31168 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31170         * reflection.c: fixed attribute reading.
31172 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31174         * icall.c:
31175         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31176         provided, look for the type in the calling assembly and then in
31177         mscorlib; if the assembly name is provided, only try that one.
31179 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31181         * object.c: register the vtable before there is a chance it's
31182         queried again recursively.
31184 2003-01-13  Duncan Mak  <duncan@ximian.com>
31186         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31187         gc-internal.h. 
31188         
31189 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31191         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31193 2003-01-11  Martin Baulig  <martin@ximian.com>
31195         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31196         this to 20 for the release.
31198 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31200         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31202         * loader.c (mono_method_get_marshal_info): bug fix
31204         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31205         structures with explicit layout
31207 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31209         * profiler.c: made the output more readable (and sorted). 
31210         Added caller information for the allocation profiler.
31212 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31214         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31216 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31218         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31219         to get value types.
31220         
31221 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31223         * object.c, profiler.h, profiler.c, profiler-private.h:
31224         Added object allocation profiler.
31226 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31228         * reflection.h, reflection.c: handle global methods.
31229         Compress blob entries.
31231 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31233         * marshal.c: fix compilation.
31235 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31237         * loader.c (mono_method_get_marshal_info): impl.
31239         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31241 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31243         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31244         for reference types.
31246 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31248         * loader.c: fixed off by one error in loaded parameter names.
31250 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31252         * marshal.c (mono_marshal_get_icall_wrapper): like
31253         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31254         instead of a MonoMethod.
31256 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31258         * decimal.c: fixed bug #36537.
31260 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31262         * marshal.c: throw a missing method exception if a
31263         P/Invoke method is not found.
31265 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31267         * icall.c: allow a null this for constructors.
31269 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31271         * icall.c: raise the proper exceptions if the arguments to the
31272         internal Invoke are incorrect.
31274 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31276         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31278 2003-01-03  Martin Baulig  <martin@ximian.com>
31280         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31282 2002-12-31  Martin Baulig  <martin@ximian.com>
31284         * debug-mono-symfile.c: Completely rewrote the type section.
31285         Instead of using individual malloc()ed fields, we use one big
31286         continuous memory area and offsets into this area.
31287         See the comments in the source code for details.
31289 2002-12-30  Martin Baulig  <martin@ximian.com>
31291         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31293 2002-12-30  Martin Baulig  <martin@ximian.com>
31295         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31296         line number table in this data blob instead of using an external
31297         pointer.
31299 2002-12-28  Martin Baulig  <martin@ximian.com>
31301         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31303 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31305         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31306         as a boxed return type.
31308 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31310         * appdomain.c
31311         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31312         g_build_filename to properly get separators on the filename created.
31314         * object.h: Small change, introduce MonoMarshalByRefObject to
31315         track the layout of that structure in the C# universe as we make
31316         changes there.
31318 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31320         * object.c: removed assert to allow static fields on interfaces.
31321         * loader.c: a TypeSpec may be used for any type, not just arrays.
31323 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31325         * class.c, class.h: added mono_class_array_element_size ().
31326         Ignore static methods in interfaces.
31328 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31330         * threads.c: fixed the build under cygwin.
31332 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31334         * reflection.c: handle nullref constants. Allocate keys for
31335         reflection handles with the GC.
31337 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31339         * threads.c, threads.h: added mono_thread_get_abort_signal()
31340         to get a suitable signal for thread abort.
31342 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31344         * metadata.c: fix handling of ExportedType table.
31346 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31348         * icall.c: added WriteWindowsDebugString internal call.
31350 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31352         * reflection.h: added fields to match C# implementation.
31354 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31356         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31358 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31360         * gc.h, gc-internal.h: Rename header for GC internal calls to
31361         gc-internal.h from gc.h as to not clash with Boehm GC having its
31362         header installed as <gc.h> in outside include paths.
31363         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31364         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31366 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31368         * icall.c: assign minor, build and revision in FillName.
31370 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31372         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31373         Added support for running code generated by Reflection.Emit.
31375 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31377         * appdomain.c: check for NULL argument in LoadFrom.
31379 2002-12-10  Dick Porter  <dick@ximian.com>
31381         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31383 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31385         * appdomain.c: fix buglet when building exe file name.  Handle full
31386         assembly name (needed after latest changes to AssemblyName).
31387         * image.c:
31388         (mono_image_close): free some hashtables.
31390 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31392         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31393         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31394         on some systems (redhat 7.3) 
31396 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31398         * threads.c: delete the critical section of a sync block,
31399         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31401 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31403         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31405 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31407         * appdomain.[ch]: handle the assembly preload event to try loading the
31408         assemblies using the paths we have in the current domain.
31410         * assembly.[ch]: created an assembly preload hook that is called to try
31411         loading the assembly by other means that the ones provided here.
31413         * domain.c: initialize the domain search path.
31415         From now on, assemblies (TODO: except corlib and System) are loaded
31416         according to these rules when using mono_assembly_load ():
31418                 1. It tries to load the assembly from the ApplicationBase
31419                 of the current domain appending .dll and .exe (TODO: have to
31420                 try loading from name/name.dll and name/name.exe).
31422                 2. It tries the search path specified in PrivateBinPath for the
31423                 current domain (if any).
31425                 3. Previous behavior.
31427 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31429         * icall.c: implemented GetInterfaceMap() related icall.
31430         * domain.c, loader.h: load MethodInfo in mono_defaults.
31432 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31434         * gc.c: disable the finalizer thread for now, untill all the issues
31435         with it are resolved.
31437 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31439         * string-icalls.c: handle embedded nulls in string ctor when the
31440         length is specified.
31442 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31444         * class.c: look for explicit interface implementation in parent
31445         classes, too.
31447 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31449         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31451 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31453         * gc.c: protect handles with a critical section.
31455 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31457         * icall.c:
31458         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31459         parameters. If no assembly specified, try getting the type from all
31460         the assemblies in the current domain, else, load the assembly and get
31461         the type from it.
31463 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31465         * marshal.c: applied patch from Aleksey Demakov that fixes
31466         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31468 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31470         * icall.c: fixed get_location.
31472 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31474         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31475         declarations to make it work with older gcc. 
31477         * loader.c (mono_get_method): set signature->pinvoke for native calls
31479 2002-11-20  Dick Porter  <dick@ximian.com>
31481         * threads.c (mono_thread_init): Set the main thread's handle
31483 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31485         * gc.c: allow compilation without GC support. Changed to match the
31486         mono coding style.
31488 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31490         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31492 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31494         * reflection.c: set a public key token on the core assemblies.
31496 2002-11-18  Dick Porter  <dick@ximian.com>
31498         * threads.c: Split out some thread initialisation so that other
31499         files can set the start callback function.
31501         * gc.c: Run finalisers in a separate thread, to avoid stack
31502         overflow.  Fixes bug 31333.
31504         * appdomain.c: Set up GC finalisation thread.
31506         * reflection.c: 
31507         * object.c: 
31508         * domain.c: Use gc.h macros for GC_malloc
31509         
31510 2002-11-15  Dick Porter  <dick@ximian.com>
31512         * threadpool.c: 
31513         * threads.c:
31514         * appdomain.c: Removed mono_runtime_init_with_attach(),
31515         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31516         merging the extra parameter with the existing function.  Removed
31517         unneeded code in mono_thread_attach().
31519 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31521         * image.c (mono_image_loaded_by_guid): a method to get loaded
31522         images by guid. 
31523         (load_metadata_ptrs): we store the guid as string.
31525 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31527         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31529         * metadata.c (mono_guid_to_string): imported method form Zoltan
31530         Varga (slightly modified)
31532         * assembly.c (mono_assembly_open): load precompiled code
31534         * loader.h (MonoMethod): we store the method token for use in the
31535         aot compiler. 
31537 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31539         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31540         the hook function called when an assembly is loaded.
31541         
31542         * domain.c: Modified file.
31543         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31545         Fixes bug #33196.
31547 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31549         * reflection.c: Map PEFileKind to the value expected by the WinNT
31550         image loader. 
31552 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31554         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31555         Read until the buffer is filled completely.
31557 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31559         * icall.c: implemented MonoType.InternalGetEvent ().
31561 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31563         * appdomain.c: implemented InitAppDomainSetup. Delayed
31564         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31565         the entry_assembly.
31567         * assembly.c: base_dir is now an absolute path ending with
31568         G_DIR_SEPARATOR.
31570         * icall.c: modified get_location according to the above changes.
31572         * object.c: init AppDomain.SetupInformation for the default domain after
31573         we have the entry assembly.
31575         * domain.c: when unloading a domain, setup = NULL.
31577 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31579         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31581 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31583         * object.h, object.c: introduced mono_object_get_virtual_method ()
31584         to lookup the method invoked on an object when a callvirt is done on
31585         a method.
31586         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31588 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31590         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31591         current domain when loaded an assembly and failed to load it.
31593         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31595 2002-10-31  Dick Porter  <dick@ximian.com>
31597         * icall.c: 
31598         * file-io.h: 
31599         * file-io.c: Return the error status in a parameter, as the
31600         GetLastError() value has long since been blown away if we try and
31601         look it up in a subsequent internal call invocation.  Delete the
31602         GetLastError() internal call, because it's useless.
31604 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31606         * class.[ch]: added cast_class to fix bug 29517
31608 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31610         * marshal.c: create valid IL code in the filter clause:
31611         the new JIT is less forgiving:-)
31613 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31615         * icall.c: removed get_property internal call.
31617 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31619         * appdomain.h domain.c: Added an ID to appdomains.
31620         
31621         * threads.c threads.h icall.c: Implement icall
31622         Thread:GetDomainID(), and remove unused icall 
31623         CurrentThreadDomain_internal.
31625 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31627         * icall.c: Don't recurse through the base types in GetConstructor.
31628         Fixes bug #32063. 
31630 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31632         * mempool.h, mempool.c: added mono_mempool_empty() and
31633         mono_mempool_stats().
31635 2002-10-23  Dick Porter  <dick@ximian.com>
31637         * file-io.c: 
31638         * file-io.h: 
31639         * icall.c: Added MonoIO.GetFileType internal call
31641 2002-10-17  Dick Porter  <dick@ximian.com>
31643         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31644         delegate semaphore before waiting for all threads to finish,
31645         because new threads can also call async delegates.  Fixes bug
31646         32004.
31648         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31649         of 3 seconds, in case another async job is queued.  (This part is
31650         needed because the bug fix reintroduced the 3s exit lag.)  This
31651         makes the mono_runtime_shutdown flag superfluous.
31653 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31655         * reflection.c: include ehader size in method section headers.
31656         Really check for suplicated modules entries.
31658 2002-10-17  Martin Baulig  <martin@gnome.org>
31660         * debug-mono-symfile.c: Added back support for locals.
31662 2002-10-14  Martin Baulig  <martin@gnome.org>
31664         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31665         MONO_TYPE_VOID.
31667 2002-10-14  Martin Baulig  <martin@gnome.org>
31669         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31670         mono_class_get() instead of looking in the class cache. 
31672 2002-10-13  Martin Baulig  <martin@gnome.org>
31674         * debug-mono-symfile.c: Set version number to 28, include the
31675         signature in method names.
31677 2002-10-13  Martin Baulig  <martin@gnome.org>
31679         * debug-mono-symfile.h: Set version number to 27.
31681 2002-10-11  Martin Baulig  <martin@gnome.org>
31683         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31685 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31687         * metadata.c, metadata.h: added helper function to allocate signatures.
31689 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31691         * icall.c: added internal call to get the location of machine.config.
31693 2002-10-08  Martin Baulig  <martin@gnome.org>
31695         * debug-mono-symfile.c: Ignore classes with a pending init for the
31696         moment.
31698 2002-10-03  Dick Porter  <dick@ximian.com>
31700         * threads.c: Freebsd pthread_t is a pointer
31702 2002-10-03  Dick Porter  <dick@ximian.com>
31704         * socket-io.c: Implemented GetHostName_internal
31706 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31708         * mono-config.c:
31709         (mono_config_parse_file): don't leak the text.
31711 2002-10-02  Martin Baulig  <martin@gnome.org>
31713         * debug-mono-symfile.c: Added support for methods.
31715 2002-10-01  Martin Baulig  <martin@gnome.org>
31717         * debug-mono-symfile.c: Don't emit methods and line numbers for
31718         the dynamic symbol file, just write the type table.  We can easily
31719         have an external helper program which creates a symbol file for an
31720         IL file.        
31722 2002-10-01  Dick Porter  <dick@ximian.com>
31724         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31725         Only add the handle to the cleanup array when we're about to
31726         launch the thread.  Bug 31425 deadlocked when the test was run on
31727         mono under w32.
31729 2002-10-01  Martin Baulig  <martin@gnome.org>
31731         * debug-mono-symfile.c: Added support for properties.
31733 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31735         * reflection.c: unaligned store fix from Mark Crichton
31736         <crichton@gimp.org>.
31738 2002-09-27  Martin Baulig  <martin@gnome.org>
31740         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31741         New interncall.
31743 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31745         * assembly.h, assembly.c: use a sane API to hook into the assembly
31746         loading process instead of a useless special-purpouse hack
31747         (ngen needs a hook, too, for example).
31749 2002-09-27  Dick Porter  <dick@ximian.com>
31751         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31752         io-layer can set up some process handle info.  Not needed on w32,
31753         but doesn't hurt either.
31755         * process.c: Pass the program name in the second parameter to
31756         CreateProcess, so the path is searched.  Include the working
31757         directory. Implemented process name, process enumeration, and some
31758         process detail internal calls.
31759         
31760         * icall.c: Added internal calls for process lookup, and some
31761         process details
31763 2002-09-26  Martin Baulig  <martin@gnome.org>
31765         * assembly.c (mono_install_open_assembly_hook): New global
31766         function to install a function to be invoked each time a new
31767         assembly is loaded.
31768         (mono_assembly_open): Run this callback function if set.
31770         * debug-mono-symfile.c: Put back line numbers for the dynamic
31771         symbol file and also record the .il file as source file.  This
31772         allows us to install the temporary symbol file as `file.dbg' just
31773         like a compiler-generated one.
31775 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31777         * Corrected typo in gc.c (BOHEM vs BOEHM).
31779 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31781         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31782         GetProperties. Also avoid calling g_slist_length in GetProperties and
31783         GetMethods.
31785 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31787         * reflection.c: avoid unaligned stores (bug spotted by
31788         Mark Crichton  <crichton@gimp.org>).
31790 2002-09-25  Martin Baulig  <martin@gnome.org>
31792         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31793         instead of guint64 for addresses and added prologue/epilogue info.
31795 2002-09-25  Martin Baulig  <martin@gnome.org>
31797         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31798         store line number info.  For the dynamic symbol file, we only need
31799         to provide the JIT generated dynamic line number info for the dynamic
31800         symbol file.
31802 2002-09-25  Martin Baulig  <martin@gnome.org>
31804         * debug-mono-symfile.h: Incremented version number.
31806 2002-09-24  Martin Baulig  <martin@gnome.org>
31808         * class.c (mono_debugger_class_init_func): New global function
31809         pointer variable.
31810         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31811         call it.
31813         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31814         function.  This is called via the mono_debugger_class_init_func
31815         hook to add all types to the dynamic type table.
31816         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31817         from its metadata token.
31819         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31820         New interncall for the debugger.
31822 2002-09-24  Nick Drochak <ndrochak@gol.com>
31824         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31825         before using it in case it is null.
31826         
31827 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31829         * metadata.c: allow custom modifiers in local var signatures
31830         (bug spotted by Zoltan Varga).
31832 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31834         * class.c: deal with the <Module> class that may have a NULL vtable.
31835         Eliminate warnings.
31837 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31839         * image.c, image.h: more strong name helpers.
31840         * monosn.c: more work: convert pem keys to cryptoapi format.
31842 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31844         * string-icalls.c: speedup IndexOf.
31846 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31848         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31850 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31852         * icall.c: cleanup: use mono_object_domain ().
31854 2002-09-23  Martin Baulig  <martin@gnome.org>
31856         * debug-mono-symfile.c: Improved type support.
31858 2002-09-22  Martin Baulig  <martin@gnome.org>
31860         * debug-mono-symfile.c: Added support for reference types and strings.
31862 2002-09-22  Martin Baulig  <martin@gnome.org>
31864         * debug-mono-symfile.c: Started to work on the type table.
31866 2002-09-21  Martin Baulig  <martin@gnome.org>
31868         * debug-mono-symfile.c: Largely reworked the symbol table format.
31869         The symbol table is now incrementally updated each time a new
31870         method is added.  We're now also using our own magic and version
31871         so that you don't need to recompile all your classes if the
31872         dynamic table changes.
31873         (mono_debug_update_mono_symbol_file): Removed.
31874         (mono_debug_symfile_add_method): New function to add a method.
31876 2002-09-21  Martin Baulig  <martin@gnome.org>
31878         * icall.c
31879         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31880         New interncall.
31882         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31883         New interncall to get a method from its metadata token.
31885 2002-09-21  Martin Baulig  <martin@gnome.org>
31887         * debug-mono-symfile.c: Create type table.
31889 2002-09-20  Martin Baulig  <martin@gnome.org>
31891         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31893 2002-09-20  Martin Baulig  <martin@gnome.org>
31895         * debug-mono-symfile.c: Provide information about params and locals.
31897 2002-09-20  Martin Baulig  <martin@gnome.org>
31899         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31900         New interncall.
31902         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31903         interncall to get a method from its metadata token.
31905 2002-09-20  Martin Baulig  <martin@gnome.org>
31907         * debug-mono-symfile.c: Added a few checks for method->header
31908         being non-NULL.  This should never happen, but for the moment
31909         let's use a g_warning() rather than a g_assert().
31911 2002-09-19  Mark Crichton  <crichton@gimp.org>
31913         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31914         even if support for it isn't present.  Added an #ifdef to fix this.
31916         * socket-io.c: Added checks back for Solaris support.
31918 2002-09-19  Martin Baulig  <martin@gnome.org>
31920         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31921         changes in the symbol file format.
31923 2002-09-18  Martin Baulig  <martin@gnome.org>
31925         * debug-mono-symfile.c: Set version number to 21.
31927 2002-09-18  Dick Porter  <dick@ximian.com>
31929         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31930         on netbsd.  Fixes bug 30051.
31932 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31934         * reflection.c:
31935         (set_version_from_string): little fix.
31937 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31939         * monosn.c, Makefile.am: added strong name utility.
31940         * reflection.h, reflection.c: implemented delayed signing,
31941         locale, version and hash id assembly attributes.
31943 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31945         * loader.c, metadata.c: load param attributes in signatures.
31947 2002-09-16  Martin Baulig  <martin@gnome.org>
31949         * debug-mono-symfile.c: Added string table with all method names.
31951 2002-09-14  Martin Baulig  <martin@gnome.org>
31953         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31954         fast method lookup.
31956 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31958         * reflection.c: record the public key token of referenced assemblies.
31960 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31962         * image.c, image.h: added functions to get the strong name and the
31963         public key of an assembly.
31964         * pedump.c: use them.
31966 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31968         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31970 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31972         * marshal.c (mono_marshal_get_managed_wrapper): Added
31973         MONO_TYPE_BOOLEAN 
31975 2002-09-11  Martin Baulig  <martin@gnome.org>
31977         * gc.c: Call GC_unregister_disappearing_link() on all links when
31978         finalizing them, this is necessary to aviod a crash in boehm's
31979         finalize handler.
31981 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31983         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31984         nick@chemlab.org.
31986 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31988         * icall.c: implemented MonoType::Module.
31989         * reflection.c, reflection.h: mono_module_get_object () from
31990         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31992 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31994         * icall.c: ignore overridden methods in GetMethods ().
31995         Fix for FieldInfo::SetValue().
31996         * object.c: handle float/double in runtime invoke.
31998 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32000         * object.c: allow a constructor to be called again on an object.
32002 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32004         * class.h, class.c: move field layout code to it's own function and
32005         export it. Get an interface id earlier. Move fields in MonoClass
32006         so they are more cache friendly and align the bitfields.
32007         * loader.c: temporary handle get_param_names() for a runtime method.
32008         * reflection.c, reflection.h: more code to handle runtime creation of
32009         types.
32011 2002-09-09  Martin Baulig  <martin@gnome.org>
32013         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32014         signature with the pinvoke field being set for the actual call.
32016 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32018         * icall.c: removed some unused icalls. Start of map of glib charsets
32019         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32021 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32023         * debug-helpers.c: break infinite loop (found and fixed by
32024         Holger Arnold <harnold@gmx.de>).
32026 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32028         * icall.c: target may be null in create_delegate.
32030 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32032         * marshal.c: handle a boolean return type.
32034 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32036         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32038 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32040         * gc.c: fix weakreferences.
32042 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32044         * icall.c: added icall to get default codepage.
32046 2002-09-03  Dick Porter  <dick@ximian.com>
32048         * threads.h: 
32049         * threads.c: Use MonoThread instead of MonoObject where
32050         apropriate.
32052         Store running thread objects in a hash table, so that we have all
32053         the info to hand when waiting for them to finish
32054         (means we don't need OpenThread() any more, so mingw builds should
32055         be fully functional again.)
32057         * verify.c:
32058         * object.h: Added thread ID to MonoThread
32060 2002-09-03  Martin Baulig  <martin@gnome.org>
32062         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32064 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32066         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32068 2002-09-03  Martin Baulig  <martin@gnome.org>
32070         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32071         argument to store the end address of the disassembled instruction.
32073         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32074         here from debug-symfile.h.
32075         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32076         JIT into this struct.
32077         (MonoSymbolFile): Added `char *image_file' field.
32078         (MonoDebugGetMethodFunc): Removed.
32079         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32080         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32081         (mono_debug_find_method): New method.
32083         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32084         create a full symbol file.
32085         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32086         and static symbol files.
32087         (mono_debug_find_method): The symbol file keeps an internal method hash,
32088         call this to get a MonoDebugMethodInfo from a MonoMethod.
32090         * debug-symfile.[ch]: Removed.
32092 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32094         * image.c (do_mono_image_open): Remove linker version check.
32096 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32098         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32099         wrappers for instance methods.
32100         
32101 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32103         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32105 2002-08-28  Dick Porter  <dick@ximian.com>
32107         * Makefile.am: Export HOST_CC for w32 builds
32109 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32111         * file-io.c process.c: MonoString are null terminated, no
32112         need for mono_string_to_utf16() anymore.
32114 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32116         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32118 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32120         * icall.c, reflection.h: speedup System.MonoType.
32122 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32124         * reflection.c: allow null as the value of a string argument in
32125         custom attributes constructors.
32127 2002-08-27  Martin Baulig  <martin@gnome.org>
32129         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32130         `trampoline_address' field.
32132 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32134         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32135         check (fixes bug #29486) 
32137 2002-08-27  Martin Baulig  <martin@gnome.org>
32139         * debug-mono-symfile.c: Changed the file format in a way that allows us
32140         open it read-only and to use a specially malloced area for all the
32141         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32142         debugging IL code and there is no MCS generated symbol file for it.
32144 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32146         * object.c: added a define for a good string and array
32147         creation speedup (not enabled by default because we need to deal with
32148         the synch stuff).
32150 2002-08-26  Martin Baulig  <martin@gnome.org>
32152         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32153         function to create a dynamic symbol file.  This is used by the
32154         debugger to create a symbol file for IL code on-the-fly.
32156 2002-08-26  Martin Baulig  <martin@gnome.org>
32158         * loader.c (mono_lookup_pinvoke_call): Include the error message
32159         from g_module_error() in the error message.
32161 2002-08-24  Martin Baulig  <martin@gnome.org>
32163         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32164         function to update the symbol file.  The symbol file is mmap()ed
32165         writable, but private.  This allows us to install the symbol file
32166         together with the assembly.
32168 2002-08-24  Martin Baulig  <martin@gnome.org>
32170         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32171         but they can read the new symbol file format which mcs is now creating.
32173         * debug-symfile.c (mono_debug_find_source_location): Moved to
32174         debug-mono-symfile.c; this is now operating on the new symbol file.
32176 2002-08-23  Martin Baulig  <martin@gnome.org>
32178         * debug-helpers.c (mono_method_desc_from_method): New function to get
32179         a MonoMethodDesc from a MonoMethod.
32181 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32183         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32184         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32186 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32188         * string-icalls.[ch]: make helper methods static.
32190 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32192         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32193         types to it and to SetValueInternal.
32195         * object.c: Moved handle_enum label to its proper place. This was the
32196         f... bug! ;-)
32198         This time i compiled mcs and gtk-sharp and they both work.
32200 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32202         * icall.c: reverted partially my previous patch until 
32203         object.c:set_value handles enums correcly.
32205 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32207         * icall.c:
32208         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32209         (ves_icall_System_Environment_get_MachineName): removed warning when
32210         compiling under cygwin.
32212 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32214         * object.c: fixed field_get_value() for reference types.
32216 2002-08-22  Dick Porter  <dick@ximian.com>
32218         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32219         Don't free a buffer while it's still needed.  Patch from Jonathan
32220         Liger <Jonathan.liger@wanadoo.fr>
32222 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32224         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32225         internal call.
32227 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32229         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32230         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32232         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32233         we call unmanaged code which throws exceptions.
32235 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32237         * appdomain.h: added per-domain entry_assembly.
32238         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32239         arguments.
32240         * icall.c: Assembly::GetEntryAssembly icall.
32241         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32242         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32244 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32246         * appdomain.h, gc.c: added mono_domain_finalize ().
32248 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32250         * object.c:
32251         (mono_print_unhandled_exception): changed g_warning by g_printerr
32252         because g_log has a 1024 characters limit (yeah, i got a big stack
32253         trace). Don't print exception name, that should be in ToString 
32254         returned string.
32256 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32258         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32259         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32261 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32263         * object.c:
32264         (mono_print_unhandled_exception): after previous commit, i realized
32265         that MS calls ToString on the exception. I changed this function to
32266         do that. This way we get stack_trace for free.
32268 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32270         * object.c:
32271         (mono_print_unhandled_exception): invoke Message property instead of
32272         getting 'message' field from Exception. Don't allocate memory for
32273         'trace' and 'message' if not needed.
32275 2002-08-18  Dick Porter  <dick@ximian.com>
32277         * unicode.c: Fix asserts to match Encoder.cs checks
32279 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32281         * marshal.c: fix unaligned store issue and a few wrong
32282         opcode argument types.
32284 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32286         * icall.c: added GetUninitializedObjectInternal internal call.
32288 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32290         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32291         to the right domain.
32293 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32295         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32297         * class.c (class_compute_field_layout): set blittable to false for Strings
32299         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32301 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32303         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32304         first chunk of code to create types at runtime. Code to
32305         handle ReflectedType/DeclaringType. Make reflection handles
32306         domain specific.
32308 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32310         * class.c: set correct name in arrays.
32312 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32314         * appdomain.c (mono_domain_transfer_object): make it work with
32315         valuetypes. bug fixes.
32317 2002-08-12  Dick Porter  <dick@ximian.com>
32319         * object.h: Rename some parameters to avoid c++ keywords (Patch
32320         from Joseph Wenninger <kde@jowenn.at>)
32322 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32324         * icall.c: added icall to implement Assembly.GetFile*.
32326 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32328         * reflection.h, reflection.c: code to embed managed resources.
32330 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32332         * class.c: move all the type size stuff into
32333         class_compute_field_layout().
32335 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32337         * class.c: ensure enums have always the correct instance size.
32338         * unicode.c: remove wrong assert.
32340 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32342         * assembly.c: fix mem corruption issue.
32343         * image.h, image.c: added mono_image_get_resource () to access
32344         managed resources.
32345         * icall.c: implemented Assembly.EntryPoint property and some
32346         Managed Resources related internalcalls.
32349 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32351         * image.c, image.h: impemented mono_image_get_entry_point ().
32352         * appdomain.c: use mono_image_get_entry_point.
32354 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32356         * reflection.c: support the object type argument when loading
32357         custom attributes.
32359 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32361         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32362         String as return type.
32364 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32366         * reflection.c: fix encoding of named args for custom attrs to match
32367         the ms implementation. Read them back when instantiating custom
32368         attributes.
32370 2002-08-02  Radek Doulik  <rodo@ximian.com>
32372         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32373         by Dietmar as quick fix
32374         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32375         16 as stack size, used on more places as quick fix before Dietmar
32376         will fix it properly
32378 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32380         * object.h, object.c: added accessors for fields and properties.
32382 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32384         * class.c, class.h: made mono_class_get_field_from_name ()
32385         loop on parent types.
32386         Added mono_class_get_property_from_name ().
32388 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32390         * class.c, class.h: move the code to setup the type vtable in its own
32391         function so that it can be reused also for types created at runtime.
32392         Eliminate the "class" identifier from the header file.
32393         * reflection.c: setup the vtable for enums so that we can create
32394         objects for use in SetConstant ().
32396 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32398         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32399         instead of the delegate itself as this pointer (bug #28383)
32401 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32403         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32404         conversions.
32406 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32408         * loader.c: don't set the pinvoke bit on icalls.
32410 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32412         * debug-helpers.c (mono_method_full_name): only print a number to
32413         indicate wrapper type (so that the output is more readable in traces).
32415 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32417         * class.c (mono_class_init): include method override patch from Paolo
32419 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32421         * icall.c: fixed GetTypeCode().
32423 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32425         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32426         use real delegate invoke function to make it work with multicast
32427         delegates (fix bug# 28291).
32429 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32431         * object.c: load constant strings.
32433 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32435         * reflection.c: no magic numbers.
32436         * tabledefs.h: security action enum.
32438 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32440         * assembly.c: fix possible memory corruption.
32442 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32444         * reflection.h, reflection.c: added support for linking resources.
32445         * verify.c: check we have an updated corlib.
32447 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32449         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32450         string arrays.
32451         (mono_marshal_string_array): null terminate unmanaged string arrays.
32452         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32454 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32456         * icall.c: Type.GetType () can now return also types from the
32457         calling assembly.
32459 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32461         * loader.h, loader.c: stack walking support.
32462         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32463         GetCallingAssembly.
32465 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32467         * marshal.c: added optimisations for blittable types 
32469         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32470         (mono_class_setup_mono_type): set blittable attribute for single
32471         and double.
32473         * marshal.c (mono_string_utf8_to_builder): impl.
32474         (mono_string_builder_to_utf8): impl.
32475         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32477 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32479         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32480         (mono_marshal_get_managed_wrapper): impl. byref types
32482 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32484         * icall.c:
32485         (search_method): don't display debug message. 
32487 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32489         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32491 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32493         * appdomain.c: set the missing filename when throwing exception.
32495 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32497         * metadata.c (mono_type_size): code cleanup
32498         (mono_type_stack_size): removed some test code
32500 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32502         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32503         mono_get_exception_file_not_found now.
32505         * exception.c (mono_exception_from_name_two_strings): New version
32506         that will call a constructor with two string arguments. 
32507         (mono_get_exception_file_not_found): New helper routine, used to
32508         report file-not-found errors.
32510 2002-07-20  Dick Porter  <dick@ximian.com>
32512         * process.h:
32513         * process.c: Pass file handles to CreateProcess
32514         
32515         * icall.c:
32516         * file-io.h:
32517         * file-io.c: Implemented CreatePipe
32519 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32521         * metadata.c (mono_get_param_info): set alignment for value types
32523 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32525         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32526         Constify mono_domain_assembly_open().
32527         * loader.c: handle null namespace in icalls.
32529 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32531         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32532         (emit_str_to_ptr_conv): marshal object as structs
32534         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32536         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32538 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32540         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32541         (mono_marshal_get_native_wrapper): we an now return value types
32543 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32545         * verify.c: more checks implemented.
32547 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32549         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32550         (fix bug #27695)
32551         (mono_marshal_get_native_wrapper): allow byref arguments
32552         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32553         impl. PtrToStringXXX methods
32554         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32555         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32556         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32557         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32558         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32560 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32562         * reflection.c: fix buglet in parsing an assembly name.
32564 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32566         * marshal.c (emit_ptr_to_str_conv): first impl.
32568 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32570         * object.c, class.h: cache the vtable in the class as suggested by
32571         vargaz@freemail.hu (Zoltan Varga).
32573 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32575         * class.h, loader.c: added mono_field_from_token().
32576         * verify.c: first cut of type checking code.
32578 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32580         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32582 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32584         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32585         (fix bug #27782)
32586         (mono_marshal_get_remoting_invoke): impl.
32587         (mono_delegate_begin_invoke): impl.
32588         (mono_mb_emit_save_args): impl.
32589         (mono_delegate_end_invoke): impl.
32590         (mono_marshal_get_delegate_begin_invoke):
32591         (mono_marshal_get_delegate_end_invoke):
32592         (mono_marshal_get_delegate_invoke): generate a special name for
32593         those methods (including the signature) and associate them whith
32594         the delegate class. 
32596 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32598         * reflection.[ch]: 
32599         (mono_reflection_type_from_name): now it has a MonoImage parameter
32600         which is used as the default image to search the type in. If the image
32601         is NULL or getting the type from it fails, it defaults to corlib.
32603         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32604         new parameter.
32606 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32608         * reflection.c: update the parameter table index.
32610 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32612         * domain.c: don't include the mark byte in the string hash.
32614 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32616         * icall.cs: icall for Type.GetTypeCode ().
32617         * verify: a couple of fixes and disabled local initialization checks.
32619 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32621         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32623         * debug-helpers.c (mono_method_full_name): print the type of the
32624         runtime wrapper
32626         * metadata.c (mono_signature_hash): a hash function for signatures
32627         (mono_signature_hash): better hash algorithm
32629         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32631         * debug-helpers.c (mono_method_full_name): this can now generate
32632         method names with signatures
32634         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32635         method dont have this pointers.
32637 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32639         * reflection.c: fixup typebuilder tokens.
32640         * image.c: fix buglet.
32641         * marshal.h: remove whitespace.
32642         * metadata.h, metadata.c: reinstate code that was removed.
32643         * verify.c: handle catch directives and fix another couple of bugs.
32645 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32647         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32648         (mono_marshal_get_native_wrapper): make it comp. with the old code
32649         (mono_marshal_get_native_wrapper): support boolean
32650         (mono_marshal_get_managed_wrapper): support more types
32652 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32654         * class.c (class_compute_field_layout): compute class->blittable attribute.
32656 2002-07-09  Dick Porter  <dick@ximian.com>
32658         * threads.c: Make the thread cleaning up cope with threads that
32659         call ExitThread()
32661 2002-07-08  Radek Doulik  <rodo@ximian.com>
32663         * reflection.c (method_encode_code): use non-translated values to
32664         compute finally_start, this fixes exception handling on ppc, yay!
32666         * decimal.h (struct signscale): fix endianess
32668 2002-07-07  Radek Doulik  <rodo@ximian.com>
32670         * reflection.c: swap box_val and not val
32672 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32674         * reflection.c, reflection.h: handle full assembly info in type name.
32675         Handle Type arguments when loading custom attributes.
32676         * icall.c: updated to use new mono_reflection_type_from_name () method.
32678 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32680         * loader.c:
32681         (method_from_memberref): also print assembly name when method not found.
32683 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32685         * icall.c:
32686         (ves_icall_TypeGetProperties): fixed bug #27473. 
32688 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32690         * reflection.c: display image name and token when cannot find the
32691         .ctor for an attribute.
32693 2002-07-05  Martin Baulig  <martin@gnome.org>
32695         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32697 2002-07-04  Dick Porter  <dick@ximian.com>
32699         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32700         compile on mingw.  This will cause mingw builds to not wait for
32701         subthreads to terminate after the main thread does.  I've lodged a
32702         bug with the mingw developers for them to wrap OpenThread().
32704 2002-07-03  Dick Porter  <dick@ximian.com>
32706         * threads.c: Store thread IDs instead of handles, because
32707         GetCurrentThread() returns a pseudohandle and therefore stores
32708         useless values.  mono_thread_cleanup() continues checking the
32709         array of threads until it is empty, to cope with subthreads
32710         spawning new threads after the main thread has finished.
32712         * profiler.h:
32713         * profiler.c:
32714         * profiler-private.h: Pass the thread ID to thread profiler
32715         functions, instead of a handle
32717 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32719         * verify.c: fixes to make it more usable.
32720         * pedump.c: added --verify code to verify IL code in an assembly.
32722 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32724         * reflection.c: turn errors into warnings to allow compiling corlib.
32726 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32728         * reflection.c: add special cases to compile corlib.
32730 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32732         * reflection.c: handle properties with only a set method.
32734 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32736         * opcodes.h: add enum with opcodes in opval order.
32738 2002-07-01  Dick Porter  <dick@ximian.com>
32739         
32740         * object.h:
32741         * object.c (mono_runtime_run_main): Removed unneeded argument
32743 2002-06-28  Martin Baulig  <martin@gnome.org>
32745         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32747 2002-06-27  Dick Porter  <dick@ximian.com>
32749         * threads.c: Store the handle in both the parent thread and in the
32750         subthread, to minimise the time between starting a new thread and
32751         storing its ID.
32753 2002-06-26  Dick Porter  <dick@ximian.com>
32755         * appdomain.c (mono_runtime_cleanup): Close the socket library
32756         after all the threads have finished, not before
32758 2002-06-26  Martin Baulig  <martin@gnome.org>
32760         * debug-symfile.c (mono_debug_find_source_location): Added
32761         `guint32 *line_number' argument.  If it's not NULL, store the line number
32762         there and return the file name without the line number.
32764 2002-06-25  Dick Porter  <dick@ximian.com>
32766         * icall.c:
32767         * process.h:
32768         * process.c: Process forking and other support functions
32770 2002-06-25  Dick Porter  <dick@ximian.com>
32772         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32773         things dont happen when the image is closed.
32774         (mono_image_lookup_resource): Walk the resource section looking
32775         for a particular entry
32777         * cil-coff.h: PE resource section decoding
32779 2002-06-25  Dick Porter  <dick@ximian.com>
32780         
32781         * assembly.h:
32782         * assembly.c: 
32783         (mono_assembly_foreach): Accessor functions to walk the list of
32784         loaded assemblies
32785         (mono_assembly_set_main):
32786         (mono_assembly_get_main): Process methods need to know which
32787         assembly is the "main" one
32789         * object.c (mono_runtime_run_main): Record the main assembly
32791         * debug-helpers.c: Fix typo
32793 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32795         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32796         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32798 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32800         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32802 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32804         * image.c (do_mono_image_open): Initialize reference count,
32805         otherwise we leak the MonoImage.
32807 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32809         * reflection.c: small tweak to handle self-hosting.
32811 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32813         * reflection.c: fix type name parse code.
32815 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32817         * reflection.c: break out of the loop.
32818         * image.c: special case corlib.
32820 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32822         * reflection.c: add all the custom attrs at the end to ensure the
32823         ctors have been properly initialized when the attributes are defined
32824         in the current assembly.
32826 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32828         * reflection.c: handle correctly multiple-nested types.
32830 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32832         * row-indexes.h: fix typos.
32833         * reflection.c: adjust for typos and fix method_def_or_ref
32834         encoding in MethodImpl table.
32836 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32838         * reflection.c: fix entry point patching (thanks Serge!).
32840 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32842         * verify.c: add check for System.Exception
32844 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32846         * image.c, class.c: minifix for code just c&p'ed.
32847         * reflection.c: warning fix.
32848         * object.h, loader.h, domain.c: load also StringBuilder.
32850 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32852         * marshal.h, marshal.c: some support code to handle complex marshaling.
32854 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32856         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32857         Better signatures with vtable error dump.
32859 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32861         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32863 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32865         * icall.c (ves_icall_Type_GetField): impl.
32867 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32869         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32870         to retrieve a marshal description blob for a field or param.
32872 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32874         * reflection.h, reflection.c: change order of nested type emission
32875         to avoid table corruption. The NestedTypes table is sorted.
32876         * icall.c: change order of GetConstructor results to workaround mcs bug.
32878 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32880         * reflection.h, reflection.c: handle field and param marshal
32881         information.
32883 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32885         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32887 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32889         * reflection.c: fix call convention.
32891 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32893         * reflection.h, reflection.c: mono_image_get_memberref_token()
32894         takes a type instead of a class, now. Added
32895         mono_image_get_array_token() to create tokens for the special
32896         multi-dim array methods.
32898 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32900         * assembly.c: handle modules (no assembly table). Split
32901         loading references in its own function.
32902         * class.c: handle moduleref resolution scope.
32903         * image.c, image.h: cache module name in image.
32905 2002-06-07  Martin Baulig  <martin@gnome.org>
32907         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32908         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32910 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32912         * icall.c: more signature fixes that used uint instead of int.
32914 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32916         * reflection.c: fixed signature of field refs.
32918 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32920         * class.c, reflection.c: handle typerefs of nested types
32921         (both on read and when writing files).
32923 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32925         * icall.c: fix method signatures that tried to workaround the previous
32926         typo, d'oh!
32928 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32930         * debug-helpers.c: fix typo.
32932 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32934         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32935         rewrote the PE/COFF writing code (our programs are understood by the
32936         ms runtime, now).
32938 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32940         * gc.c, gc.h, icall.c: weakreference support.
32942 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32944         * Makefile.am, mono-config.c: use $(sysconfdir).
32946 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32948         * icall.c: changed default precision of Double.ToString() to 15.
32949         Fixed memory leak. Unified with Single.ToString.
32951 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32953         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32955 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32957         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32958         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32959         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32960         and myself.
32962 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32964         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32966 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32968         * reflection.c, socket-io.c: more compilation fixes.
32970 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32972         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32973         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32974         unicode.c: warning and compiler compatibility fixes.
32976 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32978         * class.h, metadata.c: fixed warnings/compilation errors.
32980 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32982         * Makefile.am, mono-config.c, mono-config.h: configuration file
32983         support routines.
32984         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32985         config file. Export methods to insert and lookup mappings.
32987 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32989         * reflection.c: handle types and boxed objects in custom attr
32990         constructors.
32992 2002-05-30  Martin Baulig  <martin@gnome.org>
32994         * debug-symfile.c
32995         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32997 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32999         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33000         to lookup the implmap row for a P/Invoke method.
33001         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33002         P/Invoke method from the runtime on an as needed basis.
33004 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33006         * metadata.c (mono_metadata_parse_signature): impl.
33008 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33010         * class.c: handle .pack directive.
33012 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33014         * object.c: initialize static fields with RVA data.
33016 2002-05-25  Martin Baulig  <martin@gnome.org>
33018         * debug-symfile.c
33019         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33021 2002-05-24  Martin Baulig  <martin@gnome.org>
33023         * debug-symfile.c
33024         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33025         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33026         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33028 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33030         * object.c: special case string ctros in invoke.
33031         * gc.c: silly whitespace changes.
33033 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33035         * threadpool.[ch]: impl. a threadpool that can
33036         be used by mint and mono.
33038 2002-05-22  Martin Baulig  <martin@gnome.org>
33040         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33041         The first argument is now a `MonoReflectionModuleBuilder *', the return
33042         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33043         `methods' field to get the method builder.  The `token' argument is the
33044         unfixed token.
33046         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33047         invalid characters instead of g_assert_not_reached()ing.  This seems
33048         to be the behaviour of mscorlib.
33050 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33052         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33053         Hestilow to fix bug #25104
33055 2002-05-21  Martin Baulig  <martin@gnome.org>
33057         * debug-symfile.c (mono_debug_find_source_location): New function.
33058         Looks up an IL offset in the line number table and returns the source
33059         location as a string.
33061 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33063         * icall.c:
33064         (mono_double_ToStringImpl): changed %f by %g until we have something
33065         better.
33067 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33069         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33070         parameters first in C#.
33072 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33074         * icall.c, reflection.h: added icall to get info about an event.
33076 2002-05-20  Radek Doulik  <rodo@ximian.com>
33078         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33079         endian
33080         (mono_value_box): don't use memcpy for small sizes on
33081         architectures with unaligned access
33083 2002-05-20  Martin Baulig  <martin@gnome.org>
33085         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33086         if `tb->parent == NULL'.
33087         (mono_reflection_create_internal_class): New function.  This is
33088         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33089         for enum types.
33091         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33092         New interncall.
33094 2002-05-19  Martin Baulig  <martin@gnome.org>
33096         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33097         argument to get the length, don't default to the array length.
33099 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33101         * assembly.c (mono_assembly_setrootdir): New function used to
33102         override the MONO_ASSEMBLIES directory.
33104 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33106         * icall.c: ValueType_GetHashCode() initialize local var.
33108 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33110         * reflection.c: sort custom attributes table.
33112 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33114         * reflection.c: support named args in custom attributes (write support).
33116 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33118         * reflection.c: fix finally position calculation.
33120 2002-05-15  Radek Doulik  <rodo@ximian.com>
33122         * reflection.c: fixed endianess at many places
33124         * icall.c (ves_icall_InitializeArray): comment out debug msg
33126 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33128         * object.c (mono_unhandled_exception): new function to handle
33129         unhandled exceptions.
33130         (mono_unhandled_exception): call the UnhandledException event.
33131         (mono_runtime_delegate_invoke): impl.
33133 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33135         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33136         returns the RVA, not the direct pointer to the data. Handle the case
33137         when the class size is fixed.
33139 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33141         * reflection.c: fix some endianess issues.
33143 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33145         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33147         * threads.c (mono_thread_init): added a callback which is invoked
33148         at thread start.
33150 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33151         
33152         * icall.c: make GetHashCode return non-negative values.
33154 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33156         * object.c, icall.c, gc.c: revert to address-based hashcode.
33158 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33160         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33162 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33164         * icall.c, class.c: special case <Module>.
33166 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33168         * icall.c: fix bug in GetNow().
33170 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33172         * object.c (mono_runtime_class_init): make sure that we call all
33173         static class constructors.
33175 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33177         * reflection.c: sort methodsemantics table.
33179 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33181         * reflection.h, reflection.c: honour init locals setting.
33183 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33185         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33187 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33189         * reflection.c: support ContructorBuilders in attribute blob creation.
33191 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33193         * reflection.c: some changes to build a binary that can be run
33194         directly in windows.
33196 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33198         * loader.c: print a big message when an icall can't be found.
33200 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33202         * string-icalls.c: fix bug 24248.
33204 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33206         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33207         icall.c, reflection.h: separate assembly loading by pathname and by
33208         assembly name. Use the MONO_PATH env var to search for assemblies.
33210 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33212         * assembly.c, image.h: add some support for assemblies
33213         with multiple modules.
33214         * class.c, class.h: export mono_class_from_typeref().
33215         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33216         instead.
33218 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33220         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33221         documentation says (the ECMA one is correct).
33223 2002-05-02  Dick Porter  <dick@ximian.com>
33225         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33226         Don't name the synchronisation mutex.
33228 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33230         * rand.c
33231         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33232         Make the prototypes match.
33233         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33234         Same.
33236         * icall.c
33237         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33238         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33239         all systems have tm.tm_zone, so use strftime() with %Z to print
33240         the timezone abreviation into a temp string.
33242         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33243         rather than mono_array_addr() on a MonoString on Big Endian
33244         machines.
33246 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33248         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33249         fix bug 24041
33251 2002-04-30  Dick Porter  <dick@ximian.com>
33253         * socket-io.c: Cope with SOCKET being an integer rather than a
33254         pointer now.
33256         * threads.c: Added Thread_free_internal, to deal with thread
33257         handle cleanup.  Moved calls to handle_store() and handle_remove()
33258         to start_wrapper(), so each can only be called once.  Allocate
33259         synchronisation blocks with GC_malloc(), and use GC finalisation
33260         to close the handles.
33262         * icall.c: added System.Threading.Thread::Thread_free_internal
33264 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33266         * icall.c: support Environment.Exit, CommandLineArgs().
33268 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33270         * object.c, object.h: added mono_runtime_run_main () and
33271         mono_runtime_get_main_args () for use in System.Environment.
33273 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33275         * gc.c: fix thinko, enable actual finalization since the jit is now
33276         fixed.
33278 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33280         * gc.c, object.c: take into account that an object may be offset wrt the address
33281         returned by GC_malloc().
33283 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33285         * image.c: handle files without entries in the assembly table (modules).
33287 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33289         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33290         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33291         allowed to be null when it's System.Object class setup.
33293 2002-04-27  Martin Baulig  <martin@gnome.org>
33295         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33296         if `tb->parent == NULL' rather than crashing.
33298 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33300         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33301         calling acos() where asin() should have been called.
33303 2002-04-26  Martin Baulig  <martin@gnome.org>
33305         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33306         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33307         there's a subdirectory called `System', but we don't want to read that
33308         subdirectory as an assembly.
33310 2002-04-25  Martin Baulig  <martin@gnome.org>
33312         * debug-symfile.c: Reflect latest MonoString changes.
33314 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33316         * rand.c, rand.h: instance method icalls need to have an explicit
33317         this pointer as first argument in the C implementation.
33319 2002-04-25  Nick Drochak <ndrochak@gol.com>
33321         * icall.c: Fix typo in map for GetNonZeroBytes
33323 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33325         * string-icalls.c : String does now passes unit tests without any 
33326         errors, the following changes has been made:
33327         
33328         Implemented replace methods.
33329         Renaming of methods to (try) follow the standard.
33330         Fixed compare ordinal
33331         Made all memory allocated directly to function instead of via icall function.
33332         Small performance fix in is_in_array function
33333                         
33334  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33336         c (mono_string_Internal_ctor_charp_int_int):
33337         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33338         sindex < 0, throw ArgumentOutOfRangeException instead of
33339         ArgumentNullException.
33341         Added new check for length == 0, however
33342         I need to make it return String.Empty from the C code.
33343         
33344         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33345         that calculate the length for us here.
33346         
33347         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33348         mono_string_new_utf16 with mono_string_new, since value is utf8.
33350 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33352         * object.c: register the object for finalization if needed.
33353         Allocate one more char in the string for the terminating 0 char.
33355 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33357         * class.c, class.h, image.c: check if a type implemenst a destructor.
33358         Use the proper key for array class lookups.
33359         * icall.c: register the icalls in the System.GC class.
33360         * gc.c, gc.h: GC-related functions and icalls.
33362 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33364         * icall.c:
33365         * socket-io.c:
33366         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33367         changed a couple of free () by g_free ().
33369         * decimal.c: one-liner in the comments for decimal2string ().
33371 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33373         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33375 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33377         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33378         * object.c (mono_runtime_invoke_array) : handle null in params
33380 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33382         * string-icalls.c: fixed bug in split (one off bug)
33384 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33386         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33387         * icalls.c: added String::Equals as internal method
33389 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33391         * threads.c: fixed bug in the double interlocked functions
33393 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33395         * threads.c: implemented all of the new interlocked icalls.
33396         * string-icalls.c: fix a bug in insert.
33397         * icalls.c: added the icalls for interlocked, removed old string functions.
33398         
33399 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33401         * loader.c: fix off-by-one error when reading argument names.
33403 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33405         * profiler.c: win32 counter implementation (untested).
33406         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33407         (the latter needs testing and more complete impl. from win32 folks).
33409 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33411         * object.c: mono_array_new_full workaround mono_array_class_get
33412         problem.
33414 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33416         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33417         * object.h (mono_string_chars): Changed casting type.
33419 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33421         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33422                            method signatures to use gunichar2 instead of gint16.
33424 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33426         * object.h, object.c: domain-specific versions of mono_object_new and
33427         mono_array_new.
33429 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33431         * object.c: changed String layout
33433         * string-icalls.c (mono_string_Internal_ctor_chara): added
33434         internal string constructors.
33436 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33438         * threads.c: pass 'this' to the thread start routine.
33440 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33442         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33443         InternalCompareStr don't call twice mono_string_cmp_char for the last
33444         character. Improved performance in mono_string_cmp_char.
33446 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33448         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33449         code into its own library: libmonoruntime.
33451 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33453         * object.h, object.c: changed array format so that szarrays do not
33454         require a bounds structure.
33455         * icall.c, appdomain.c: support for new szarray format.
33457 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33459         * metadata.c: compare also the retuns type when comparing signatures:
33460         we didn't do this as an optimization since really overloaded methods
33461         must differ also in the arguments, but this doesn't work with
33462         low-level IL code (or when using explicit conversion operators: see
33463         bug#23498 for an example).
33465 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33467         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33469 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33471         * icall.c: make MonoType::GetElementType its own icall.
33473 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33475         * icall.c: remove MonoMethod_get_Name().
33476         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33477         object.
33479 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33481         * string-icalls.c: optimized a few methods.
33483 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33485         * icall.c: added all new string internal calls
33486         * string-icalls.c: added, new string internal call implementation.
33487         * object.c: added mono_string_new_size for allocating a string a size
33489 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33491         * object.c (mono_object_isinst): use the same code as in the
33492         optimized x86 version.
33494 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33496         * profiler.c: TSC-based timer code (faster and more accurate).
33497         Not hooked up in configure, yet (set USE_X86TSC to 1).
33499 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33501         * profiler.c, profiler.h: track time spent compiling methods.
33502         * threads.c: track thread creation/destruction.
33504 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33506         * profiler.c, profiler.h, profiler-private.h: profiling interface
33507         and sample implementation. Moved here so that it can be used also by
33508         the jit.
33510 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33512         * reflection.c, reflection.h: keep types and other handles separate in
33513         the hash tables for referred tokens. Add guid for modules.
33515 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33517         * assembly.c: fix bugs found with valgrind.
33518         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33520 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33522         * threads: added icall support for getting current domain for
33523                    the thread.
33525 2002-04-13  Martin Baulig  <martin@gnome.org>
33527         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33528         (MonoDebugVarInfo): Added `index' field for register based addresses.
33529         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33530         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33531         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33532         `MonoDebugVarInfo *this_var'.
33534         * debug-symfile.c (relocate_variable): New static function to write
33535         a location description for a local variable or method parameter.
33537 2002-04-12  Martin Baulig  <martin@gnome.org>
33539         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33540         stack offset and begin/end scope address of a local variable.
33541         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33542         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33543         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33545         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33546         Added new relocation types for start/end scope of a local variable.
33548 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33550         * object.h: add mono_object_domain() macro.
33551         * reflection.c: handle typespecs.
33552         * icall.c: MonoMethod::get_Name() implementation.
33554 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33556         * icall.c: String::GetHashCode() icall implementation.
33558 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33560         * icall.c: String::IndexOfAny icall.
33561         * object.c, object.h: make array->max_length more useful.
33562         Intrduced mono_object_class() and mono_string_length() macros.
33564 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33566         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33567         instead of g_unichar_isdigit.
33569 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33571         * icall.c: Implement a simple Double.ToString().
33573 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33575         * appdomain.h: only io-layer.h is supposed to be included.
33576         * icall.c: explicitly import environ. Fix warning.
33578 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33580         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33581                 return true even if it's not Daylight Savings time.
33582                 Only return false for the case where the function isn't
33583                 implemented for a plaform (read Windows).
33585 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33587         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33588         data with a mutex.
33590 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33592         * mempool.c (mono_mempool_alloc): only use g_malloc when
33593         absolutely necessary.
33595 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33597         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33599         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33600         (mono_class_proxy_vtable): use domain mempool
33602 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33604         * appdomain.h, appdomain.c: split initialization that requires the
33605         execution engine support into mono_runtime_init().
33607 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33609         * class.c (mono_class_init): don't include vtable inside MonoClass
33610         to save some memory, gather some statistics.
33611         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33613 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33615         * icall.c: internalcall implementation for ValueType.Equals().
33617 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33619         * object.c (mono_message_init): moved 
33620         (mono_runtime_exec_main): new arch. independent impl.
33621         (mono_runtime_invoke_array): new method - like
33622         mono_runtime_invoke, but you can pass an array of objects.
33623         (mono_remoting_invoke): new arch. independent impl.
33624         (mono_message_invoke): new arch. independent impl.
33625         (mono_runtime_class_init): new arch. independent impl.
33626         (mono_runtime_object_init): new arch. independent impl.
33628 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33630         * metadata.c, object.c, reflection.c: documented the exported
33631         functions.
33633 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33635         * icall.c: simpler code to pass the assembly builder data to corlib.
33636         Implement GetNestedTypes() internalcall.
33638 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33640         * class.c: warn if a type can't be loaded.
33642 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33644         * image.h: typedef MonoImageOpenStatus
33645         * types.h: removed unused file
33646         
33647 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33649         * icall.c: Enum_ToObject accepts enum value arguments.
33651 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33653         * class.c: move initialization of properties, events and nested
33654         classes, so that they happen for interfaces, too.
33656 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33658         * icall.c: cleanup some ugly casts in Array_SetValue*.
33660 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33662         * icall.c: the values array fro enums is of the correct type, now.
33663         Implement (correctly) getFullName instead of assQualifiedName for
33664         MonoType.
33665         * reflection.h, reflection.c: added mono_type_get_name ().
33667 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33669         * assembly.c, image.h: for each MonoImage, record from wich assembly
33670         it was loaded.
33671         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33672         Make Type.Assembly work.
33674 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33676         * debug-symfile.h: use char* instead of gpointer to avoid
33677         unnecessary casts.
33679         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33681         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33682         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33684 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33686         * icall.c (mono_message_init): impl. (code cleanup)
33687         (ves_icall_InternalExecute): impl. FieldGetter
33689         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33690         defined we call all (non-static)methods through the vtable. 
33692 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33694         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33695         finalizer even though the memory is still referenced (and the chunk of
33696         memory is not freed).
33698 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33700         * assembly.c: fix brokeness.
33702 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33704         * class.c: kill some warnings. Check explicit interface method
33705         implementation also without considering the namespace.
33706         Load also literal strings in static class data.
33708 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33710         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33711         (default_assembly_name_resolver): Make the resolver take the
33712         "base" directory where the assembly was originally defined, so we
33713         can load DLLs that are in the same directory as the assembly that
33714         is being referenced.
33716 2002-03-28  Dick Porter  <dick@ximian.com>
33718         * file-io.h: 
33719         * file-io.c:
33720         * socket-io.c: 
33721         * unicode.h: 
33722         * unicode.c: Warning cleanups
33724 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33726         * object.h, reflection.h: use the correct type instead of MonoObject.
33728 2002-03-28  Martin Baulig  <martin@gnome.org>
33730         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33731         (mono_debug_update_symbol_file): Initialize classes if necessary.
33733 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33735         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33736         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33738 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33740         * assembly.h: fix function prototype.
33741         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33742         * mono-endian.h: use const cast.
33744 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33746         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33748 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33750         * loader.c: don't assert when a typeref can't be loaded, give
33751         a chance to the runtime to trow an exception instead.
33752         * loader.h: fix warning.
33754 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33756         * class.c (mono_class_proxy_vtable): added proxy support
33758 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33760         * icall.c: removed last of PAL calls, added System.Environment
33761         * file-io.h, file-io.c: MonoIO implementation
33762         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33764 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33766         * appdomain.c: do not use the byte marker in ldstr table lookup.
33767         * debug-helpers.c: allow two ':' to separate class and method name.
33768         * object.c: allocate arrays bounds with the GC, too.
33769         * verify: add a few more checks.
33771 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33773         * reflection.c: output also literal strings. Allocate parameter data
33774         with GC_malloc() (thanks, Martin, for catching this!).
33776 2002-03-26  Martin Baulig  <martin@gnome.org>
33778         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33779         include the `this' offset in the `param_offsets'.
33781 2002-03-25  Martin Baulig  <martin@gnome.org>
33783         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33784         mono_debug_get_class() function to get the classes. Added new
33785         relocation types for arrays and strings.
33786         (mono_debug_get_class): New static function to search in all
33787         referenced assemblies for a metadata token.
33789         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33791 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33793         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33794         hold gc-allocated objects. Make the string heap a stream like the
33795         others. Removed duplicated code when writing stream info.
33796         Added asserts to catch possible buffer overflows. Set the sorted map
33797         for tables that need sorting. Added some documentation.
33799 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33801         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33802         for interned strings and vtables.
33804 2002-03-24  Martin Baulig  <martin@gnome.org>
33806         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33807         it in the array since it was created with g_slist_prepend().
33809 2002-03-24  Martin Baulig  <martin@gnome.org>
33811         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33812         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33813         (mono_debug_method_from_token): Renamed to
33814         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33815         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33817         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33818         relocation types.
33820         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33822 2002-03-24  Martin Baulig  <martin@gnome.org>
33824         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33825         (mono_debug_method_from_token): New func.
33827         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33828         New interncall, calls mono_debug_local_type_from_signature().
33829         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33830         calls mono_debug_method_from_token().
33832 2002-03-23  Martin Baulig  <martin@gnome.org>
33834         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33835         specifies the number of bytes to be converted, not the array size.
33836         Return the number of chars, not the number of bytes.
33837         (ves_icall_iconv_get_chars): The `byteCount' argument
33838         specifies the number of bytes to be converted, not the array size.
33840 2002-03-23  Martin Baulig  <martin@gnome.org>
33842         * reflection.h (MonoReflectionSigHelper): New type.
33844         * reflection.c (mono_reflection_sighelper_get_signature_local),
33845         (mono_reflection_sighelper_get_signature_local): New functions.
33847         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33848         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33849         interncalls.
33851 2002-03-23  Martin Baulig  <martin@gnome.org>
33853         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33854         is_writeable is set.
33855         (mono_raw_buffer_update): New function to write the modified map
33856         back to disk.
33858         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33860         * debug-symfile.c (mono_debug_update_symbol_file): Call
33861         mono_raw_buffer_update() when done writing.
33863 2002-03-23  Martin Baulig  <martin@gnome.org>
33865         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33867         * debug-symfile.c: Added support for arguments and local variables.
33869 2002-03-23  Dick Porter  <dick@ximian.com>
33871         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33872         protected by ifdefs, hence breaking the w32 build.
33874 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33876         * object.c: implement is_interned() the right way.
33878 2002-03-21  Martin Baulig  <martin@gnome.org>
33880         * debug-symfile.[ch]: New files to handle debugging information
33881         files. There's also support to dynamically update these symbol
33882         files to include machine dependent information.
33884 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33886         * threads.c (mono_thread_create): new function to create thread
33887         from C
33889 2002-03-20  Martin Baulig  <martin@gnome.org>
33891         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33892         method is a constructor.
33893         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33894         points to ves_icall_InternalInvoke().
33896 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33898         * file-io.c: Flush shouldn't throw exceptions.
33900 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33902         * file-io.c: FileStream flush support; FileSetLength now
33903         restores file pointer.
33905 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33907         * class.c: set image for pointer classes.
33909 2002/03/19  Nick Drochak <ndrochak@gol.com>
33911         * sysmath.c: Forgot one.
33913 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33915         * sysmath.c: Avoid redefining existing names.
33917 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33919         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33920         handled by runtime as icall rather than dllimport from libm.so
33921         * file-io.c, file-io.h: fixed handle argument type.
33923 2002-03-18  Dick Porter  <dick@ximian.com>
33925         * reflection.c (mono_image_get_type_info): rename interface to
33926         iface, because of "#define interface struct" on windows.
33928 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33930         * class.c, class.h: rename and export mono_ptr_class_get().
33931         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33932         * reflection.c, reflection.h, icall.c: better/saner type name
33933         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33934         method signatures.
33936 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33938         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33940         * icall.c (ves_icall_InternalInvoke): impl.
33942 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33944         * reflection.c: output the interface map table, too.
33946 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33948         * class.c (class_compute_field_layout): separate computation of 
33949         static field layout
33951 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33953         * icall.c: added System.Buffer support.
33954         * file-io.c: moved file icalls from PAL to FileStream.
33956 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33958         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33960 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33962         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33964 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33966         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33968 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33970         * debug-helpers.{c,h}: moved here from monograph some useful functions
33971         to locate a method by name/signature in a class or image. Included
33972         also a small and flexible IL disassembler.
33974 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33976         * reflection.c: fixup tokens in methods with small header size, too.
33978 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33980         * object.c (mono_string_to_utf8): remove assert(!error), instead
33981         print a warning. 
33983 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33985         * icall.c: update to the new mono_Array_class_get interface.
33987 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33989         * appdomain.c, object.c: Boehm-GC enable.
33990         * icall.c: make get_data_chunk() support split data requests.
33991         Ensure a class is initialized in more cases. Return only the first
33992         property found in GetProperties() or the compiler gets confused. 
33993         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33994         * reflection.h, reflection.c: add fixup mechanism for field and method
33995         tokens. Initialize assembly->typeref in a single place. Output
33996         properties after events. Support custom attributes for events, too.
33997         Typo fix for paramter custom attrs.
33999 2002-03-07  Martin Baulig  <martin@gnome.org>
34001         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34003 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34005         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34007 2002-03-06  Martin Baulig  <martin@gnome.org>
34009         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34010         non-zero lower bounds. See testcases #F10-#F13.
34012 2002-03-05  Martin Baulig  <martin@gnome.org>
34014         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34016         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34017         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34018         here.
34019         (ves_icall_System_Array_SetValue): Likewise.
34020         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34021         as argument and does the actual work. This function is used when copying a
34022         multi-dimensional array.
34023         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34024         now do all the widening conversions of value types.
34025         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34027 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34029         * class.c: remove some magic numbers and use the smbolic names,
34030         instead. Added init_events() to load event info at class init time.
34031         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34032         and mono_metadata_methods_from_event().
34033         * reflection.h, reflection.c: added support for writing out the evnets
34034         related information.
34036 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34038         * reflection.h, icall.c: use a different method (GetInterfaces)
34039         to gather interface info and add isbyref, isprimitive and
34040         ispointer to the ves_icall_get_type_info() return value.
34042 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34044         * class.h: stared adding support for events.
34045         * icall.c: split find_members implementation. Added debug icall to get
34046         the address of an object.
34047         * reflection.c: handle TypeBuilders in mono_type_get_object().
34049 2002-03-01  Martin Baulig  <martin@gnome.org>
34051         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34052         ArgumentOutOfRangeException(), not an ArgumentException().
34053         (ves_icall_System_Array_GetLowerBound): Likewise.
34054         (ves_icall_System_Array_GetValue): Improved argument checking.
34055         (ves_icall_System_Array_SetValue): Improved argument checking.
34057 2002-03-01  Martin Baulig  <martin@gnome.org>
34059         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34060         called with invalid arguments rather than just dying with g_assert().
34061         (ves_icall_System_Array_SetValue): Likewise.
34062         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34063         raise a NotImplementedException instead.
34064         (ves_icall_System_Array_GetLength): Added argument checking.
34065         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34067 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34069         * object.h (mono_assert): new macros mono_assert and
34070         mono_assert_not_reached
34072 2002-02-28  Martin Baulig  <martin@gnome.org>
34074         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34075         and "System::String::IsInterned" to "System::String::_IsInterned".
34077 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34079         * icall.c: remove hacks for typebuilder. Added icall to create a
34080         modified type from a tybebuilder.
34081         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34082         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34083         to create a backing MonoClass for a TypeBuilder.
34085 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34087         * class.c, class.h: more refactoring of class init.
34088         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34090 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34092         * marshal.c, marshal.h: start of marshaling interface.
34094 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34096         * icall.c: fix order in assembly qualified name icall.
34098 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34100         * class.c: do not free str, since we store it in the hash table.
34101         * reflection.h: add label field to MonoILExceptionInfo.
34102         * reflection.c: handle references to more than one assembly. Handle
34103         case when there isn't a module created in the assembly.
34105 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34107         * class.c: Fix typo. Start refactoring of class init code.
34109 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34111         * appdomain.c: exit with 1 on error.
34112         * class.c: we already have the name in MonoClassField.
34113         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34114         MonoStreamHeader instead of an offset of image->raw_metadata.
34116 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34118         * appdomain.c (mono_init): Be even more descriptive about the error.
34120 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34122         * appdomain.c: give the user an informative message when corlib can't
34123         be loaded.
34125 2002-02-26  Martin Baulig  <martin@gnome.org>
34127         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34128         New icall to get the time zone data.
34130 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34132         * reflection.c: set virtual and raw size of section correctly.
34133         * threads.c: transfer domain information to newly created threads.
34135 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34137         * class.c: when instancing a class in a domain, load the default
34138         vaules for static fields from the constant table. Fix System.Enum to
34139         not be an enum.
34140         * icall.c: implement Object::GetType() internalcall. Implemented
34141         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34142         Fixed checking of binding flags in find_members().
34143         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34144         * reflection.c: handle enumerations when writing to the constant
34145         table. Use a different object cache for types.
34148 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34150         * object.c (mono_object_isinst): fix for arrays
34152         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34154 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34156         * object.c: don't use mprotect ()  and fix intern pool hash table
34157         lookup for big endian systems.
34159 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34161         * icall.c: change type_is_subtype_of () signature.
34163 2002-02-21  Mark Crichton  <crichton@gimp.org>
34165         * rand.c, rand.h: Added random number generator for
34166         System.Security.Cryptography classes.
34168         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34170         * icall.c: Added System.Security.Cryptography calls.
34172 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34174         * class.c, icall.c, metadata.c: better support for pointer types.
34175         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34176         * reflection.c: Add support for getting custom attrs for properties
34177         and simplify some code.
34179 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34181         * icall.c: change getToken () and add custom attribute GetBlob()helper
34182         method.
34183         * reflection.h: add custom attrs array to the reflection builder structures.
34184         * reflection.c: encode and emit custom attributes for all the relevant
34185         reflection objects. Cache fieldref and methodref tokens. Change
34186         mono_image_create_token() interface to take a MonoDynamicAssembly.
34187         More complete custom attributes decoder. Load custom attributes for
34188         Assembly, Field, Method and Constructor objects, too. Make the
34189         returned array an Attribute[] one, not object[]. Added
34190         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34191         custom attribute constructor.
34193 2002-02-20  Dick Porter  <dick@ximian.com>
34195         * icall.c:
34196         * rawbuffer.c:
34197         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34198         problem code out for now).
34200 2002-02-19  Radek Doulik  <rodo@ximian.com>
34202         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34204 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34206         * icall.c: register the GetCustomAttributes method.
34207         * object.c, object.h: add mono_string_new_len ().
34208         * reflection.h, reflection.c: added mono_runtime_invoke(),
34209         mono_install_runtime_invoke(). Added
34210         mono_reflection_get_custom_attrs () to load custom attributes and
34211         create the attribute objects.
34213 2002-02-19  Dick Porter  <dick@ximian.com>
34214         * threads-dummy-types.c:
34215         * threads-dummy-types.h:
34216         * threads-dummy.c:
34217         * threads-dummy.h:
34218         * threads-pthread-types.c:
34219         * threads-pthread-types.h:
34220         * threads-pthread.c:
34221         * threads-pthread.h:  Deleted obsolete files
34223 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34225         * class.c (mono_class_vtable): runtime init the class when we
34226         allocate static class data.
34228         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34230         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34231         and String - but we will need generic marshalling support in the
34232         future. 
34233         (mono_init): set the domain name in a ms compatible way
34235         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34236         String[].
34238 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34240         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34241         for sizes
34243         * appdomain.c (mono_domain_unload): impl.
34245 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34247         * appdomain.c, object.c: fix intern pool implementation.
34248         * class.c: fix alignment code.
34250 2002-02-16  Radek Doulik  <rodo@ximian.com>
34252         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34253         and s2 > s1, just copy lower bytes to be compatible with little
34254         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34255         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34257         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34258         force big_endian to be 1 for big endian machines 
34259         (ves_icall_iconv_new_decoder): ditto
34261 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34263         * socket-io.c (convert_sockopt_level_and_name): If the system
34264         doesn't define SOL_IP or SOL_TCP, get them by hand using
34265         getprotobyname() and caching the values (because this could be a
34266         slow operation).
34267         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34268         Use the appropriate struct when the system does support it. Ie,
34269         not all systems have struct ip_mreqn so use struct ip_mreq when
34270         appropriate.
34272 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34274         * reflection.c: handle finally clauses.
34276 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34278         * socket-io.c: use g_snprintf() instead of snprintf.
34280 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34282         * reflection.c (mono_param_get_objects): Cast second argument to
34283         mono_method_get_param_names to a const char** to silence the
34284         compiler warning.
34286         * appdomain.c (mono_domain_assembly_open): Put parens around the
34287         truth statement in the for-loop.
34289         * unicode.c (iconv_convert): Got rid of a compiler warning about
34290         int i being unused when the system has a new iconv.
34291         (iconv_get_length): Same.
34293         * image.c (load_class_names): Cast the second argument to
34294         g_hash_table_insert() to char* to hush compiler warnings about the
34295         arg being a const.
34296         (mono_image_open): Same here.
34298         * socket-io.c: Don't conditionally include sys/filio.h or
34299         sys/sockio.h here anymore since we now get them from
34300         io-layer/io-layer.h
34301         (inet_pton): If the system doesn't support inet_aton, implement
34302         using inet_addr and also #define INADDR_NONE if it isn't defined
34303         by the system.
34305 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34307         * metadata.c, metadata.h: added function to get packing and size info
34308         of a typedef.
34309         * reflection.h, reflection.c: handle field RVA data. Save info about
34310         the table layout if needed. Assign typedef indexes to all the types
34311         before dumping the info about them to avoid forward reference problems.
34313 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34315         * socket-io.c (convert_sockopt_level_and_name): ifdef
34316         SO_ACCEPTCONN because it is not defined on my system (old debian)
34318 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34320         * opcode.c: use stddef.h to get NULL.
34322 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34324         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34325         for FIONBIO, FIONREAD and SIOCATMARK.
34326         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34327         define INADDR_NONE and besides, inet_addr() is deprecated and
34328         should not be used. Use inet_pton() instead - it also has the
34329         added bonus that it can easily handle IPv6 addresses as well.
34330         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34332 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34334         * decimal.c: remove _MSC_VER conditional.
34336 2002-02-13  Dick Porter  <dick@ximian.com>
34338         * socket-io.c: 
34339         * icall.c: Internal calls for Blocking, Select, Shutdown,
34340         GetSocketOption and SetSocketOption
34342 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34344         * assembly.cs: better resolver: use it instead of some kludgy
34345         code.
34347 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34349         * reflection.c: the best way to speed-up the compiler is to avoid
34350         infinite loops.
34352 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34354         * class.c (mono_class_vtable): changed the object layout
34355         (obj->vtable->class). 
34356         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34358 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34360         * assembly.c: look for assemblies in the assembly dir, too.
34362 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34364         * class.c: fix thinko in mono_class_from_type().
34366 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34368         * exception.h, exception.c: added TypeLoadException.
34369         * object.h, object.c: added mono_array_clone ().
34370         * icall.c: handle throwOnError in AssemblyGetType().
34371         Added Array.Clone().
34372         * opcode.h, opcode.c: use a single value for the opcode val.
34373         Compile fix for non-gcc compilers.
34375 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34377         * opcodes.c, opcodes.h: export interesting info about opcodes.
34379 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34381         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34382         icalls. 
34384         * class.c (class_compute_field_layout): set element_class for enums
34385         (mono_class_create_from_typedef): set element_class for normal classes
34387         * icall.c (ves_icall_System_Enum_get_value): impl.
34389         * class.c (mono_class_create_from_typedef): do not set valuetype
34390         flag for System.ValueType and System.Enum
34392 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34394         * unicode.c (iconv_convert): fix big endian problem.
34396 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34398         * class.c: add asserts if we are ever going to scribble over memory.
34399         * socket-io.c: not all systems have AF_IRDA defined.
34401 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34403         * class.c (class_compute_field_layout): do not consider static
34404         fields to compute alignment
34406 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34408         * appdomain.c (mono_appdomain_get): impl.
34409         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34411 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34413         * icall.c: ignore "file://" prefix when loading an assembly.
34415 2002-01-23  Dick Porter  <dick@ximian.com>
34417         * socket-io.c:
34418         * icall.c:
34419         * Makefile.am: Added socket support
34421 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34423         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34424         code back.  This should return the assemblies that are loaded by
34425         the runtime on behalf of an application domain. 
34427         The current implementation is still broken, it just returns every
34428         assembly loaded, but until we get real applications domain this
34429         will do.
34431 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34433         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34434         AppDomain object.
34436 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34438         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34439         the mono_class_from_name lookup.
34440         (ves_icall_get_parameter_info): ditto.
34441         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34442         method.
34443         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34445 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34447         * class.c: load also nested classes on class init.
34448         System.ValueType instance methods gets passed boxed
34449         values, unless methods in derived classed that get a pointer to the
34450         data.
34451         * icall.c: use better name parsing code in GetType().
34452         * image.c, image.h: add mono_image_loaded ().
34453         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34454         * reflection.c, reflection.h: added mono_reflection_parse_type().
34456 2002-01-22  Veronica De Santis <veron78@interfree.it>
34458         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34459         * threads.c : Added the implementation of internal calls for events
34460         * threads.h : Added prototypes of internal calls for events
34461         
34462 2002-01-21  Radek Doulik  <rodo@ximian.com>
34464         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34466 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34468         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34469         (mono_class_value_size): use min_align
34471 2002-01-20  Dick Porter  <dick@ximian.com>
34473         * threads.h:
34474         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34475         so it compiles on w32.
34477 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34479         * metadata.c (mono_type_stack_size): impl.
34481         * class.c (mono_class_get_field): impl. memberref token
34483 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34485         * icall.h : Added the internal calls mapping for CreateMutex_internal
34486                     and ReleaseMutex_internal.
34487         * threads.h : Added the prototype of mutexes internal calls.
34488         * threads.c : Added the implementations of mutexes internal calls.
34490 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34492         * metaparse.h: removed unused file.
34493         * reflection.c, reflection.h: added stream_data_align () function 
34494         to align data in streams and keep stream aligned. Add support for
34495         exception support in method headers.
34497 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34499         * unicode.c: make iconv_convert () return the number of bytess written
34500         in the output buffer.
34502 2002-01-15  Dick Porter  <dick@ximian.com>
34503         * threads.c: Make the runtime's idea of infinite timeouts coincide
34504         with the class library's
34506         Fix a particularly egregious bug in mono_thread_cleanup(). That
34507         code was so utterly bogus it must have been written on a Monday.
34509 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34511         * reflection.h: add subtypes field to TypeBuilder.
34512         * reflection.c: encode constants for literal fields.
34513         Handle subtypes. Fix user string token (and add a zero byte)
34514         at the end.
34515         
34516 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34518         * class.c (mono_class_init): bug fix: assign slot numbers for
34519         abstract methods.
34521 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34523         * reflection.c: don't try to output a code RVA for abstract methods.
34524         Small fixes for method header format. Output parameter info to the
34525         ParamDef table. Save method overriding info to MethodImpl table.
34526         Fix property support. Allow typedef.extends to be a type in the
34527         building assembly.
34528         * verify.c: fix off-by-one error.
34530 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34532         * class.c: fix mono_class_from_mono_type () for szarray types.
34533         Remove unused cache check in mono_class_from_type_spec().
34534         * icall.c: *type_from_name () functions handle simple arrays and byref.
34535         * reflection.c: handle byref and szarray types. Handle methods without
34536         body (gets P/Invoke compilation working). Handle types and fields in
34537         get_token ().
34538         * reflection.h: add rank to MonoTypeInfo.
34540 2002-01-10  Dick Porter  <dick@ximian.com>
34542         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34543         internal calls
34545 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34547         * icall.c: initialize class in type_from_handle ().
34548         Loop also in parent classes for get_method ().
34549         * reflection.c: properly encode class and valuetype types.
34550         Start on encoding TypeBuilder types. Handle fieldrefs.
34551         Use correct length when registering a user string.
34552         Handle ConstructorBuilder and MonoMethod in get_token ().
34553         Make mono_type_get_object () aware of cached types.
34554         * object.c: back out change to mono_string_new ().
34556 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34557         * object.c: mono_string_new should return a NULL when the string 
34558         passed in is NULL -- not try to deference it.
34559         
34560 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34562         * icall.c: hack to make IsSubType work for TypeBuilders.
34563         * reflection.c: emit constructors before methods.
34564         Retrieve param names in mono_param_get_objects().
34566 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34568         * Makefile.am: fix list of headers and sources so automake 1.5
34569         doesn't complain. Removed \# at end of list.
34571 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34573         * reflection.c: get token for a method ref. Set return type of
34574         constructor to void.
34575         * loader.c: debug message.
34576         * class.c: typo fix.
34578 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34580         * icall.c: fix array init with rank > 1. FindMembers
34581         loops in parent class as well.
34582         * image.c: do not insert nested types in name cache.
34583         * reflection.c: warning fix.
34584         * reflection.h: add override method (for interface impl).
34586 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34588         * metadata.c: fix customattr decoding.
34590 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34592         * rawbuffer.cs: Added native Win32 implementation, avoids using
34593         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34595 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34597         * class.c: make the low-level routines handle the cache.
34599 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34601         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34603 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34605         * class.c: fix mono_array_element_size() for objects.
34606         * class.h, class.c: add properties to MonoClass and load them
34607         at init time.
34608         * icall.c: check with isinst() when assigning a value to an array
34609         instead of requiring the classes to match exactly.
34610         Implemented icall for System.Type::GetType().
34611         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34612         enums. Handle bindingflags when looking for methods and fields.
34613         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34614         and mono_metadata_methods_from_property().
34615         * reflection.h, reflection.c: added structures for propreties,
34616         parameters and enums. Implemented mono_property_get_object() and
34617         mono_param_get_objects().
34619 2001-12-18  Dick Porter  <dick@ximian.com>
34621         * file-io.c: Use mono_string_to_utf16() instead of
34622         mono_string_chars()
34624         * object.c: Added mono_string_to_utf16(), which copies the non
34625         NULL-terminated MonoString into a new double-null-terminated
34626         buffer.
34628 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34630         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34632 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34634         * file-io.c: raise exceptions if handle is invalid.
34636 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34638         * assembly.c: yet another check for mscorlib.
34639         * class.c, class.h: load nesting info for classes.
34640         * icall.c: many new functions to support the Reflection classes.
34641         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34642         * reflection.h, reflection.c: mono_image_create_token(),
34643         mono_assembly_get_object(), mono_type_get_object(),
34644         mono_method_get_object(), mono_field_get_object(): methods to return
34645         objects that parallel the C representation of assemblies, types,
34646         methods, fields.
34648 2001-12-11  Dick Porter  <dick@ximian.com>
34650         * icall.c:
34651         * file-io.c: Internal calls for file IO.
34653 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34655         * tabledefs.h: missing FileAttributes.
34656         * verify.h, verify.c: use is_valid_string () to simplify and check for
34657         valid strings more correctly. Fix warnings and speeling.
34658         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34659         Check code: branches, maxstack, method calls.
34661 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34663         * object.c (mono_object_allocate): removed static, so that the jit
34664         can allocate value types.
34666         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34668 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34670         * class.c: init enum types right away and register the
34671         token->MonoClass map in mono_class_create_from_typedef ().
34672         * verify.h, verify.c: first cut of the verifier.
34673         * pedump.c: add --verify switch to verify metadata tables.
34674         * tabledefs.h: add some missing enums.
34676 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34678         * class.c (mono_install_runtime_class_init): impl.
34679         (mono_class_init): renamed mono_class_metadata_init to
34680         mono_class_init, also removed the metadata_inited flag
34682         * object.c (mono_object_isinst): use faster algorithm
34684 2001-11-30  Radek Doulik  <rodo@ximian.com>
34686         * mono-endian.h: reverted last change
34687         added function prototypes
34689         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34690         add mono-endian.c back
34692         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34693         for unaligned access, I've mistaked it with endianess. I am
34694         sorry.
34695         (mono_read16): fix reverted endianess
34696         (mono_read64): ditto
34697         (mono_read32): ditto
34699 2001-11-30  Dick Porter  <dick@ximian.com>
34701         * exception.c: Implement mono_exception_from_name()
34703 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34705         * metadata.h, metadata.c: remove params_size and locals_size and their
34706         calculation from the metadata code: they are only usefult to the
34707         interp.
34709 2001-11-29  Radek Doulik  <rodo@ximian.com>
34711         * object.c (mono_ldstr): swap bytes here, it's probably not the
34712         best place, but works for me now, I'll redo it once I know mono
34713         better, also note that I add PROT_WRITE and don't reset back, also
34714         note that it's only affects big endians, so x86 should be OK
34716         * mono-endian.h (read16): use just glib macros for both endians
34718         * mono-endian.c: removed as glib macros are used in in
34719         mono-endian.h so we don't need to care about endianess for read
34720         macros as glib does that for us already
34722 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34724         * class.h, class.h: take minimum alignment into consideration so
34725         that the fields of a class remain aligned also when in an array.
34727 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34729         * loader.h, loader.c: add mono_method_get_param_names().
34730         * class.c: 0-init class fields.
34732 2001-11-26  Dick Porter  <dick@ximian.com>
34734         * icall.c:
34735         * threads-types.h:
34736         * threads.c: New file that handles System.Threading on all platforms
34738         * object.c: 
34739         * object.h: Remove the synchronisation struct from MonoObject,
34740         replace it with a pointer that gets initialised on demand
34742         * Makefile.am: Replace all the system-specific threading code with
34743         a single file that uses the new wrapper library
34745 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34747         * class.c, class.h: add mono_install_trampoline() so that the runtime
34748         can register a function to create a trampoline: removes the ugly
34749         requirement that a runtime needed to export arch_create_jit_trampoline.
34750         * object.h, object.c: added mono_install_handler() so that the runtime
34751         can install an handler for exceptions generated in C code (with
34752         mono_raise_exception()). Added C struct for System.Delegate.
34753         * pedump.c: removed arch_create_jit_trampoline.
34754         * reflection.c: some cleanups to allow registering user strings and
34755         later getting a token for methodrefs and fieldrefs before the assembly
34756         is built.
34757         * row-indexes.h: updates and fixes from the new ECMA specs.
34759 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34761         * class.h, class.c: add enum_basetype field to MonoClass.
34762         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34763         to get index in the constant table reated to a field, param or
34764         property.
34765         * reflection.h, reflection.c: handle constructors. Set public-key and
34766         version number of the built assembly to 0.
34767         * row-indexes.h: update from new ECMA spec.
34769 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34771         * class.h, class.c: add a max_interface_id to MonoClass.
34772         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34773         since it's used to do that. Added mono_type_type_from_obj().
34774         Make GetType() return NULL instead of segfaulting if the type was not
34775         found. Handle simple arrays in assQualifiedName.
34776         * object.h: add a struct to represent an Exception.
34777         * reflection.c: output call convention in method signature.
34778         Add code to support P/Invoke methods and fixed offsets for fields.
34780 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34782         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34783         the value.
34784         * icall.c: use mono_array_addr instead of array->vector: fixes the
34785         reflection image writing.
34786         * reflection.c: init call convention byte to 0 in method signature.
34787         Encode the property signature. Don't output property-related methods
34788         twice. Really process the properties for a type (don't cast a field to
34789         a property, my mom always told me that).
34790         Fix 64 bit issues in pointer alignment in a different and more
34791         readable way.
34793 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34795         * loader.h: Removed type class from MonoDefaults, added monotype
34797         * loader.c: Loaded MonoType, removed loading of Type
34799         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34800         and fills in System.Type._impl with a RuntimeTypeHandle rather
34801         than the actual MonoClass *
34803         (ves_icall_type_from_handle): change from type_class to
34804         monotype_class
34806         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34807         implemented
34809         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34810         implemented
34812         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34814         (ves_icall_System_Reflection_Assembly_GetType): implemented
34816         (ves_icall_System_MonoType_assQualifiedName): implemented
34818         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34820 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34822         * assembly.c (mono_assembly_open): Implement a cache for the
34823         assemblies. 
34825         (mono_assembly_close): only destroy the assembly when the last
34826         reference is gone.
34827         
34828 2001-11-09  Dick Porter  <dick@ximian.com>
34830         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34832 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34834         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34836 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34838         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34839         from Martin Weindel.
34840         * object.h: add mono_string_chars ().
34842 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34844         * reflection.c (build_compressed_metadata): Eliminates warnings
34845         and uses 64-bit clean code.
34847         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34848         (mono_type_equal): Change signature to eliminate warnings.
34850 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34852         * icall.c, loader.c: remove the internalcall array constructors.
34853         Changes to match the new MonoArray structure.
34854         * object.h, object.c: an array object doesn't allocate an extra
34855         vector. Add mono_array_new_full () to create jagged arrays easily.
34857 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34859         * metadata.h, metadata.c: add mono_metadata_field_info () to
34860         retreive all the info about a field from vairous tables.
34861         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34862         * class.h, class.c: augment MonoClassField with more info.
34863         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34864         policy and load a field's RVA if needed.
34866 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34868         * class.c (mono_class_metadata_init): create a trampoline for all
34869         virtual functions instead of actually compiling them.
34871 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34873         * class.h, class.c: include name in MonoClassField.
34874         * class.c: fix fundamental type of System.Object and System.String.
34875         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34876         tokens in ldtoken.
34877         * icall.c: remove internalcalls for the Reflection stuff that is now
34878         done in C# code.
34879         * loader.c: mono_field_from_memberref () implementation.
34880         * mono-endian.c: thinko (s/struct/union/g).
34881         * object.c, object.h: make the mono_string_* prototypes actually use
34882         MonoString instead of MonoObject.
34883         * reflection.c, reflection.h: updates for changes in the reflection
34884         code in corlib: we use C structures that map to the actual C# classes.
34885         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34886         fat method header if needed and use the info from the ILGenerator for
34887         methods. Handle fields in types. Misc fixes.
34889 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34891         * class.c (mono_class_metadata_init): bug fix: always allocate
34892         space for static class data
34894 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34896         * class.c (mono_compute_relative_numbering): use relative
34897         numbering to support fast runtime type checks.
34899 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34901         * class.c (mono_class_create_from_typeref): added debugging output
34902         to print class name when MonoDummy is returned instead of real class
34904 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34906         * class.c (mono_class_metadata_init): interface offset table now
34907         contains pointers into the vtable - this is more efficient for the jit
34909 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34911         * class.c (mono_class_metadata_init): use a temporary vtable (the
34912         old algorithm only worked for the interpreter, but not for the jit)
34914 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34916         * loader.c (method_from_memberref): use mono_class_get to get the
34917         class of an array instead of using System.Array directly.
34918         (mono_get_method): also add MEMBERREF methods to the method cache
34919         which usefull for arrays.
34921 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34923         * pedump.c (arch_compile_method): added to compute vtable entry
34925         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34926         number of interfaces.
34927         
34928         * class.h: merged MonoArrayClass into MonoClass
34930         * class.c (mono_class_create_from_typedef): compute the vtable size and
34931         allocate space to include the vtable inside MonoClass
34932         (mono_class_metadata_init): initialize the vtable
34934 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34936         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34937         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34938         * image.c: endian fixes by Laurent Rioux.
34939         * object.h, object.c: rename MonoStringObject to MonoString and
34940         MonoArrayObject to MonoArray. Change some function names to conform to
34941         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34942         guint16* as first argument, so don't use char*.
34943         Provide macros to do the interesting things on arrays in a portable way.
34944         * threads-pthread.c: updates for the API changes and #include <sched.h>
34945         (required for sched_yield()).
34946         * icall.c: updates for the API changes above.
34947         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34948         platforms that need them.
34950 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34952         * class.c: set the correct type for all the fundamental
34953         type when loading the class.
34955 2001-10-05  Dick Porter  <dick@ximian.com>
34957         * threads-pthread.c (pthread_mutex_timedlock): Simple
34958         compatibility version for C libraries that lack this call.
34960 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34962         * class.c: MonoTypes stored in MonoClass are stored as
34963         fundamental MonoTypes when the class represents a
34964         fundamental type (System.Int32, ...).
34965         The TypeHandle return by ldtoken is a MonoType*.
34966         * icall.c: ves_icall_get_data_chunk () write out all the
34967         PE/COFF stuff. Implement ves_icall_define_method (),
34968         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34969         * image.c: properly skip unknown streams.
34970         * loader.h, loader.c: add type_class to mono_defaults.
34971         * metadata.c, metadata.h: export compute_size () as
34972         mono_metadata_compute_size () with a better interface.
34973         Typo and C&P fixes.
34974         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34975         * reflection.c, reflection.h: many cleanups, fixes, output method
34976         signatures and headers, typedef and typeref info, compress the metadata
34977         tables, output all the heap streams, cli header etc.
34978         * row-indexes.h: typo fixes.
34980 2001-10-04  Dick Porter  <dick@ximian.com>
34982         * object.h: Add a synchronisation mutex struct to MonoObject
34984         * object.c (mono_new_object): Initialise the object
34985         synchronisation mutexes
34987         * icall.c: System.Threading.Monitor internal calls
34988         
34989         * threads-pthread.h:
34990         * threads-pthread.c: System.Threading.Monitor internal calls
34992         * threads-types.h: New file, includes the system-specific thread
34993         structures
34994         
34995         * threads-pthread-types.h:
34996         * threads-pthread-types.c: New files, handle pthread-specific
34997         synchronisation types
34999         * threads-dummy-types.h: 
35000         * threads-dummy-types.c: New files of dummy support for
35001         thread-specific types
35003         * metadata.c:
35004         * image.c:
35005         * pedump.c: include mono-endian.h not endian.h
35006         
35007         * Makefile.am: More threads files.
35008         Name mono-endian.h not endian.h
35010 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35012         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35013         stuff and implement a few more bits.
35014         * icall.c: a field needs to be dereferenced twice. Do not use the same
35015         name for two variables in the same scope.
35016         * image.c, image.h: cleanups.
35018 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35020         * class.c (mono_class_metadata_init): bug fix: compute the right size
35022 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35024         * icall.c: implemented some of the Reflection internalcalls.
35025         * image.c, image.h: start writing out the PE/COFF image.
35026         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35027         that does the reverse than decode_blob_size ().
35028         * object.c: use mono_metadata_encode_value (). Move here
35029         temporary implementation of mono_string_to_utf8 ().
35030         * rawbuffer.c: make malloc_map static.
35032 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35034         * metadata.c: fix type comparison for arrays.
35035         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35036         Added a couple of new classes to monodefaults.
35037         * icall.c: added a couple of Reflection-related internalcalls.
35038         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35039         Added a byval_arg MonoType to MonoClass.
35041 2001-09-28  Dick Porter  <dick@ximian.com>
35043         * icall.c:
35044         * threads-pthread.h: 
35045         * threads-pthread.c: Implemented internal calls for
35046         LocalDataStoreSlot operations.  Applied mutexes around all shared
35047         data.  Reworked the thread creation and Start() operations to
35048         avoid a race condition.
35049         
35050         * threads-dummy.h:
35051         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35053 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35055         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35057 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35059         * class.c, loader.c: warn and return NULL instead of erroring out.
35060         * icall.c: added System.AppDomain::getCurDomain().
35061         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35063 2001-09-25  Dick Porter  <dick@ximian.com>
35065         * threads-pthread.h:
35066         * threads-pthread.c: Implemented timed thread joining and added
35067         System.Threading.Thread::Join_internal internal call
35069         * icall.c: Added System.Threading.Thread::Join_internal internal call
35071         * threads-dummy.h:
35072         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35074 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35076         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35077         mono_string_intern () to implement the semantics of the ldstr opcode
35078         and the interning of System.Strings.
35079         * icall.c: provide hooks to make String::IsIntern and String::Intern
35080         internalcalls.
35082 2001-09-23  Dick Porter  <dick@ximian.com>
35084         * threads-dummy.c: 
35085         * threads-dummy.h: New files of dummy threading routines
35087         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35088         support code based on system specifics
35090         Rename PTHREAD_LIBS to THREAD_LIBS
35091         
35092 2001-09-23  Dick Porter  <dick@ximian.com>
35094         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35095         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35096         internal calls.
35097         (mono_thread_init): Set up a Thread object instance to return when
35098         the main thread calls Thread.CurrentThread
35099         (mono_thread_cleanup): Wait for all subthreads to exit
35101         * icall.c: New internal calls for System.Threading.Thread::Sleep
35102         (including Schedule) and CurrentThread
35104         * threads.h: New file, to insulate thread-specific stuff from the
35105         rest of the code
35107 2001-09-21  Dick Porter  <dick@ximian.com>
35109         * threads-pthread.h: 
35110         * threads-pthread.c: New file, for handling pthreads-style
35111         threading support.  Start() now starts a new thread and executes
35112         the ThreadStart delegate instance.
35114         * icall.c: Added the internalcall for
35115         System.Threading.Thread::Start_internal
35117         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35119 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35121         * loader.c: work around the different signatures for delegates
35122         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35124 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35126         * class.h, class.c: add mono_class_get_field_from_name ().
35127         * *: Fix C comments and other ANSI C issues.
35129 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35131         * endian.h, assembly.c: fix some endianness issues.
35133 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35135         * loader.h, load.c: add delegate_class to mono_defaults.
35136         Handle runtime provided methods in mono_get_method ().
35138 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35140         * loader.c (mono_get_method): use pinvoke for internal call
35142         * icall.c: use pinvoke for internal call
35144         * loader.c (method_from_memberref): set the method name
35146 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35148         * metadata.c: help the compiler generate better code for
35149         mono_class_from_mono_type ().
35151 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35153         * class.c (mono_class_metadata_init): delayed computing of the
35154         class size to mono_class_metadata_init ()
35156 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35158         * class.c, class.h: add an interfaces member to MonoClass.
35159         * image.c, image.h: add assembly_name field to MonoImage
35160         from the assembly table.
35161         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35163 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35165         * class.c: Handle Array in mono_class_from_mono_type ().
35166         * metadata.c, pedump.c: some endian fixes.
35168 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35170         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35171         * metadata.c: fix small problem introduced with the latest commit.
35173 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35175         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35176         We don't need a MonoMetadata pointer anymore to compare signatures in
35177         mono_metadata_signature_equal (), update callers.
35178         Reduced memory usage an number of allocations for MonoMethodHeader and
35179         MonoMethodSignature.
35181 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35183         * metadata.c: added compare for szarray.
35185 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35187         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35188         and add a couple more types to it and mono_defaults. Give an hint on
35189         classes that need implementing in our corlib and are referenced
35190         in mscorlib.
35192 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35194         * class.h, class.c: keep track if a class is also an Enum.
35195         * loader.c: Implement a couple more types for use in libffi
35196         marshalling. Gives better diagnostics when failing to dlopen
35197         a library. Set method->klass for P/Invoke methods, too.
35199 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35201         * class.c, class.h: add a MonoType this_arg to MonoClass that
35202         represents a pointer to an object of the class' type that
35203         can be used by the interpreter and later the type cache.
35204         Add best guess alignment info for valuetype objects.
35206 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35208         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35209         into MonoType: one less level of indirection and allocation and
35210         simplifies quite a bit of code. Added cache for MonoTypes that are
35211         used frequently, so that we don't need to allocate them all the time.
35213 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35215         * class.c (mono_class_create_from_typedef): System.Enum is also a
35216         value type, although it does not derive from System.ValueType
35217         (maybe a bug in the ms compiler?)
35219         * metadata.c (mono_type_size): return the right size for value types
35221         * loader.c (mono_get_method): only initialize method header if not abstract
35223         * class.c (mono_class_from_mono_type): use mono_default values. 
35225 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35227         * *: use MonoClass pointers instead of <type_tokens>
35228         
35229         * class.h: new flag: metadata_inited.
35231         * class.c (mono_class_metadata_init): impl.
35232         (mono_class_instance_size): impl.
35233         (mono_class_data_size): impl.
35235 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35237         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35238         MonoClass now has the name and name_space fields. 
35239         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35240         mono_get_method () takes and optional MonoClass as argument.
35241         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35242         instead that takes advantage of a map from class names to typedef
35243         tokens in MonoImage.
35245 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35247         * metadata.c: zero is not a valid alignment boundary.
35248         Merge MONO_TYPE_VOID in default decoding code.
35250 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35252         * image.h: merged MonoMetadata into MonoImage
35254         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35255         identify the type of elements.
35257 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35259         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35260         * cil-coff.h: split MonoMSDOSHeader and add size info.
35261         * image.c: add some consistency checks.
35262         * metadata.c: fix row size computation: one programmer
35263         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35264         add explanation for the locator routine.
35265         Fix decoding of size in method header.
35266         
35267 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35269         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35270         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35271         function from gnome-libs.  This uses the right path separator
35272         based on the OS, and also works around a bug in some systems where
35273         a double slash is not allowed. 
35274         (default_assembly_name_resolver): Use g_concat_dir_and_file
35275         (mono_assembly_open): ditto.
35277 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35279         * metadata.c (mono_metadata_signature_equal): impl.
35281         * *: void is now a realy MonoType (instead of using NULL)
35282         
35283         * metadata.c (do_mono_metadata_parse_type): use
35284         mono_metadata_parse_type to parse void value.
35286 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35288         * metadata.c, metadata.h: in the signature and method header store
35289         only the space required for holding the loca vars and incoming arguments.
35291 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35293         * metadata.c (do_mono_metadata_parse_type): treat void like any
35294         other type (instead of assigning NULL);
35296 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35298         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35300 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35302         * image.c (do_mono_image_open): added a cache for arrays.
35304 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35306         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35307         decode a single column from a row in a metadata table and changes
35308         to take advantage of it in the typedef locator (gives a nice speed up).
35309         Store offset info for function params.
35311 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35313         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35315 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35317         * assembly.c: how could mono_assembly_close () had ever worked?
35318         * metadata.c, metadata.h: provide offset info for local vars.
35319         Implement mono_type_size () to take care of alignment as well
35320         as size (it was mono_field_type_size in cli/class.c before).
35322 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35324         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35326         * assembly.h (CORLIB_NAME): set to corlib.dll
35328         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35330 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35332         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35333         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35334         tokentype.h: massive namespace cleanup.
35336 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35338         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35340 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35342         * metadata.c (mono_metadata_free_type): added check for type !=
35343         NULL (void) before calling mono_metadata_free_type()
35345 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35347         * metadata.h, row_indexes.h: added header with enumerations to use
35348         to index in the columns from tables in metadata and to decode coded
35349         tokens: we should start using this instead of embedding magic numbers
35350         all over the code.
35352 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35354         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35355         Move metadata_t info from cli_image_info_t to MonoImage, where
35356         it's easily accessible. Changed all the uses accordingly.
35357         Added the method and class caches to MonoImage.
35358         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35359         and mono_metadata_decode_value () signature to be more consistent
35360         with the other parse functions (and simplify code). Taken advantage
35361         of zero-length array allocation with GCC. Removed reduntant (and
35362         wrong) MonoFieldType struct and use MonoParam instead. Changed
35363         mono_metadata_parse_field_type () to use common code for parsing.
35364         Added mono_metadata_typedef_from_field () and
35365         mono_metadata_typedef_from_method () to lookup a typedef index from a
35366         field or method token.
35367         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35369 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35371         * metadata.c (mono_metadata_parse_field_type): Implement. 
35372         (do_mono_metadata_parse_type): Split engine from
35373         mono_metadata_parse_type, so that we can create smaller structures
35374         for things that just have one pointer to the MonoType (look at
35375         the MonoFieldType)
35377 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35379         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35380         as Jan Gray found out, it is incorrect. 
35382 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35384         * assembly.c: Implement asssembly loading.  This loads an image
35385         and loads all the referenced assemblies.  Come to think of it, we
35386         could always do lazy loading of the assemblies. 
35388         * image.c (mono_image_open): Keep loaded images in a hashtable.
35390         * image.h (MonoImage): Add reference count.
35392 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35394         * assembly.c (mono_assembly_open): Keep track of the file name in
35395         case the assembly has no ASSEMBLY table.
35397         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35398         from get.c here.
35400 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35402         * metadata.c, metadata.h: decode local vars in method header
35403         parse function. Change callers accordingly.
35405 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35407         * metadata.h, cil-coff.h: protect against multiple inclusion.
35408         Added some new structures to hold information decoded from metadata:
35409         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35410         and relevant decoding/free functions.
35411         * metadata.c: implement decoding functions. Add warning for out of bounds
35412         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35413         all the info about a method signature and invocation. Remove check on
35414         uninitialized local var in parse_mh() and fix memory leak.
35416 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35418         * metadata.h: More macros.
35420         * tokentype.h: New file.
35422 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35424         * assembly.c: added a consistency check and initialize
35425         some structures with g_new0().
35426         * metadata.c: fixed a couple more bugs in table size computation
35427         and add other checks for out-of bound access to metadata.
35429 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35431         * metatada.c: fix bugs computing table sizes. Spew a
35432         warning when index in string heap is out of bounds.
35434 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35436         * metadata.h: Add a couple of macros to manipulate tokens. 
35438 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35440         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35441         cli_section_tables).
35443 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35445         * metadata.c (mono_metadata_user_string): New function, provides
35446         access to the UserString heap. 
35448 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35450         * metadata.c: Add inline documentation.
35452 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35454         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35455         files. 
35457 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35459         * typeattr.h: New file, TypeAttribute flags. 
35461 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35463         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35464         mono_assembly_ensure_section): Section loading code.
35465         (load_section_tables): Load the sections.
35467         * mono/metadata/metadata.c (mono_metadata_locate_token,
35468         mono_metadata_locate): Functions to locate the information
35469         definition given a token or a table and an index.
35470         (mono_metadata_compute_table_bases): New.
35471         (compute_size): New function to compute the sizes of the various
35472         tables.
35474         * mono/metadata/metadata.h: Finish listing the different index
35475         types. 
35477         * mono/metadata/pedump.c: Improve to dump new information.
35479 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35481         * mono/metadata/metadata.c: Entered all the tables matching
35482         Beta2. 
35484         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2