2009-12-16 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob4005fb488bd15ce5d24c956ec8a643420494f256
1 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
3         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
5 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
7         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
8         as they are no longer used.
9         
10          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
12         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
14 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
16         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
17         if the owner class has not been finished before returning reflection_info.      
19         Fixes #565127.
21 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
23         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
24         param doesn't have custom attributes. Fixes #565117.
26         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
27         #565120.
29 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
31         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
33 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
35         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
36         same amount done by a core-clr enabled runtime.
38 2009-12-15  Marek Habersack  <mhabersack@novell.com>
40         * appdomain.c (mono_make_shadow_copy): make sure access mode of
41         the target files is reset to writable by owner and readable by
42         everyone else to prevent problems when updating shadow copies of
43         files whose source is read-only. Fixes bug #556884
45 2009-12-15  Mark Probst  <mark.probst@gmail.com>
47         * class.c (mono_generic_class_get_class): Allocate the generic
48         class via malloc again, so that it can be freed when any one of
49         the images of its constituent types is closed.
51         * metadata.c: When closing an image, don't free generic insts and
52         generic classes right away, but put them into a list for later
53         freeing.
55         * image.c, metadata-internals.h: Store the free list and in the
56         second pass of closing an image, free it.
58 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
60         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
62         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
63         types in type_hash.
65         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
67 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
69         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
70         user type.
72         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
73         is used.
75 2009-12-14  Miguel de Icaza  <miguel@novell.com>
77         * verify.c (mono_method_verify): The Unused opcodes produce an
78         InvalidProgramException on .NET
80 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
82         * loader.c (mono_method_get_header): Move assert after the verifier
83         has been called on the method header.
85 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
87         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
89         * appdomain.c: Bump corlib version.
91 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
93         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
94         types as well since otherwise generic instances would not return UT as arguments but
95         their undelying system type.
97         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
98         to reflect the fact that they can have now multiple different types.
100         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
102         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
104         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
106         * reflection.c (mono_reflection_register_with_runtime): Init super types
107         if the image is not dynamic.
109         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
110         check if the generic type definition is a TypeBuilder.
112         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
113         doesn't belong to a dynamic image, skip initialization.
115         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
116         base definition is not a dynamic type.
118 2009-12-11  Marek Habersack  <mhabersack@novell.com>
120         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
121         mono_profiler_string_allocation
123         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
124         if string profiling is enabled, call
125         mono_profiler_string_allocation
127         * profiler.h: added two MonoProfileFlags -
128         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
129         installation functions for the hooks below.
131         * profiler-private.h, profiler.c: added two hooks:
132         mono_profiler_string_allocation called whenever a string is
133         allocated by InternalAllocateStr and mono_profiler_iomap called
134         whenever IOMAP code performs an adjustement on a file path.
136 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
138         * boehm-gc.c: fixed race condition while getting the target of a
139         disappearing link (bug #522233).
141 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
143         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
144         the error.
146 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
148         * reflection.c: Add mono_reflection_register_with_runtime icall to
149         allow a MonoGenericClass to register itself as the managed mirror of
150         a given generic instance.
151         This is a temporary workaround until all MGC instantiation happens in
152         managed code.
154         * object-internals.h: Ditto.
156         * icall-def.h: Ditto.
158 2009-12-10  Mark Probst  <mark.probst@gmail.com>
160         * sgen-gc.c (find_in_remsets): Also search the generic store
161         remsets.
163 2009-12-10  Mark Probst  <mark.probst@gmail.com>
165         * sgen-gc.c: Don't access class names in debugging code when
166         unloading a domain, because they might not be valid anymore.
168 2009-12-10  Mark Probst  <mark.probst@gmail.com>
170         * domain.c, domain-internals.h: New function mono_domain_unset().
172         * appdomain.c (unload_thread_main): Detach the thread again at the
173         end.
175         * threads.c: When a thread exists or is detached, unset its domain
176         so that it's NULL when, for example, a pthread destructor runs.
178         * sgen-gc.c: Assert that there is no domain set after a thread is
179         done.
181 2009-12-10  Mark Probst  <mark.probst@gmail.com>
183         * class.c (mono_generic_class_get_class),
184         metadata.c (free_generic_class): Allocate generic MonoClass's from
185         the image mempool, not via malloc.  The problem with malloc is
186         that when unloading a domain those classes are freed before
187         clearing the heap and SGen needs the classes.  Rewriting the
188         unloading code to do the free later would be more work and there's
189         no point in using malloc anyway.
191 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
193         * loader.c (mono_method_signature): Always call mono_loader_unlock 
194         before returning.
196 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
198         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
199         user string blobs.
201         * verify-internals.h: Add new function to the internal API.
203         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
204         check if it's a valid string.
206         * object.c (mono_ldstr): Ditto.
208         Fixes #561943.
210 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
212         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
213         from a method before returning it. This is the expected behavior.
215 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
217         * reflection.c (inflate_method): Handle the case of a regular system type.
219 2009-12-08  Mark Probst  <mark.probst@gmail.com>
221         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
222         gathering code.
224         * mempool.c, mempool-internals.h: New function
225         mono_mempool_get_bytes_allocated().
227         * Makefile.am: sgen-pinning-stats.c added.
229 2009-12-08  Mark Probst  <mark.probst@gmail.com>
231         * sgen-gc.c (create_allocator): Only use the fast path if the
232         object size is within the small object size limit.
234 2009-12-07  Mark Probst  <mark.probst@gmail.com>
236         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
237         possibly adding padding to sizeof (GCMemSection).
239 2009-12-07  Mark Probst  <mark.probst@gmail.com>
241         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
242         reference is not in the nursery.
244 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
246         * class.c (mono_class_from_typeref): Bounds check idx against the 
247         assemblyref table.
249 2009-12-07  Mark Probst  <mark.probst@gmail.com>
251         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
252         through the potential roots, then sort the results and find the
253         pinned objects from there.
255         * Makefile.am: sgen-pinning.c added.
257 2009-12-07  Mark Probst  <mark.probst@gmail.com>
259         * sgen-gc.c: Record generic stores in specialized remset buffers.
261 2009-12-06  Mark Probst  <mark.probst@gmail.com>
263         * sgen-gc.c: Make pinned chunks the same size as major heap
264         sections, and align them as well, so that we can check whether an
265         object is in a pinned chunk or a major section in constant time.
267 2009-12-06  Mark Probst  <mark.probst@gmail.com>
269         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
271 2009-12-06  Mark Probst  <mark.probst@gmail.com>
273         * sgen-gc.c: Make all major heap sections the same size (currently
274         128k) and allocate them on aligned addresses.  Small heap sections
275         give us better granularity with pinned objects - we can free up
276         much more memory.
278 2009-12-06  Mark Probst  <mark.probst@gmail.com>
280         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
281         output removed.
283 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
285         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
287         * mono/metadata/assembly.c: When opening an assembly image, pass the real
288         names in addition to the runtime generated one.
290         * mono/metadata/image.h: Add a function to take the real name of the assembly
291         image.
293         * mono/metadata/image.c: If a real name has been passed to load an assembly,
294         use it instead of the runtime generated one.
296         Code is contributed under MIT/X11 license.
298 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
300         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
301         before the other checks to prevent problems if the DateTime class is blittable.
302         Hopefully fixes #559600.
304 2009-12-05  Mark Probst  <mark.probst@gmail.com>
306         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
307         returns the largest string length that will not be put into the
308         LOS.
310         * sgen-gc.c, gc-internal.h: New function that returns the largest
311         object size that will not be put into the LOS.
313         * appdomain.c: Bump corlib version.
315 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
317         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
319         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
321 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
323         * reflection.c (inflate_method): Fix signature.
325         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
326         in managed code.
328 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
330         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
332 2009-12-03  Mark Probst  <mark.probst@gmail.com>
334         * sgen-gc.c: Abstract to-space handling.
336 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
338         * loader.c (find_method_in_class): Ignore methods with broken signatures.
340         Fixes #559906.
342 2009-12-03  Mark Probst  <mark.probst@gmail.com>
344         * sgen-gc.c: Only add references from outside the nursery to
345         within the nursery to the global remset list.
347 2009-12-03  Mark Probst  <mark.probst@gmail.com>
349         * appdomain.c (create_exceptions): Set the domain temporarily if
350         necessary to avoid cross-domain references.
352 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
354         * verify.c (get_stack_type): Return that the type is invalid instead of
355         asserting.
357         * verify.c (mono_method_verify): Verify that all locals and arguments
358         have valid stack types.
360         Fixes #559913.
362 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
364         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
365         bounds checking overflow aware.
367         Fixes #559910.
369 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
371         * verify.c (do_invoke_method): Check for invalid method signatures.
373         Fixes #553450.
375 2009-12-02  Jb Evain  <jbevain@novell.com>
377         * appdomain.c (MONO_CORLIB_VERSION): bump.
378         * icall-def.h (get_base_definition): renamed to get_base_method
379         and add a boolean argument indicating we want the original
380         method definition, or the immediate base method.
381         * icall.c: apply the get_base_definition to get_base_method change.
383 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
385         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
387         Fixes #558042.
389 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
391         * class.c: remove asserts for invalid type token in
392         mono_class_name_from_token(), mono_assembly_name_from_token() and
393         mono_class_create_from_typedef () (fixes bug #553318).
395 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
397         * metadata.c, class.c, loader.c: remove assert after bsearch() for
398         incorrect assemblies (bug #553322).
400 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
402         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
404         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
406         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
408         * class.c (inflate_generic_context): Ditto.
410         * loader.c (method_from_methodspec): Ditto.
412         Fixes #558230.
414 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
416         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
418         * class.c (mono_class_create_from_typespec): Ditto.
420         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
422         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
424         Fixes #558184.
426 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
428         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
430         * verify.c (verify_delegate_compatibility): Ditto.
432         * verify.c (do_newobj): Ditto.
434         Fixes #558046.
436 2009-12-02  Mark Probst  <mark.probst@gmail.com>
438         * sgen-gc.c: Use a gray queue instead of requiring that gray
439         objects are in a contiguous region.
441         * sgen-gray.c: The gray queue implementation.
443         * Makefile.am: sgen-gray.c added.
445 2009-12-02  Mark Probst  <mark.probst@gmail.com>
447         * appdomain.c: When unloading a domain, zero its static data and
448         perform a minor collection when using SGen.  That will get rid of
449         all the remsets pointing into that domain's static data.
451         * sgen-gc.c: Allow remsets into static data.  By doing this we
452         need less checks so we're more efficient.
454 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
456         * verify.c (mono_method_verify): Check for catch clauses with broken
457         types.
459         Fixes #558465.
461 2009-12-01  Jb Evain  <jbevain@novell.com>
463         * class.c (make_generic_param_class): set the namespace of
464         the generic parameter class from its owner, if available.
466 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
468         * verify.c (code_bounds_check): Do proper overflow checking.
470         * verify.c (mono_method_verify): The number of switch entries is
471         an unsigned int. Properly bounds check it.
473         Fixes #558594.
475 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
477         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
478         mono_metadata_method_has_param_attrs which only checks if a given param
479         list has a non zero flags entry.
481         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
482         to inform how many params should we expect to decode.
484         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
485         as it's faster than mono_metadata_get_param_attrs.
487         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
488         add mono_metadata_method_has_param_attrs.
490 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
492         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
493         failures.
495         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
496         is -1 but its class is broken.
498         Fixes #558522.
500 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
502         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
503         for parameter overflow.
505         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
506         of mono_metadata_get_param_attrs.
508         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
509         API.
511         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
513 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
515         * class.c (mono_class_setup_fields): Check for fields with broken types.
517         Fixes #558741.
519 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
521         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
522         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
523         its TypeBuilder::CreateType ().
525         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
526         if not needed.
528         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
529         to make setup_interface_offsets happy.
531         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
532         compilation now works.
534 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
536         * appdomain.c (create_exceptions): New helper function extracted from
537         mono_runtime_init () to precreate objects used during exception handling.
538         (mono_runtime_init): Call it.
539         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
541 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
543         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
544         compilation until the proper one is found.
546 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
548         * class.c (mono_class_setup_vtable_general): Cache the result of
549         get_virtual_methods () since it can be slow because of the metadata
550         optimization.
552         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
553         from a MonoValueHashTable for now, since the later is based on an earlier
554         version of hpj's internal probing code and seems to have serious collision
555         issues.
557         * loader.c (mono_get_method_full): Update after the change above.
559 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
561         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
563 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
565         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
566         the GTD instead of the DGC instead of crashing.
568         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
569         required. Inflate fields if needed.
571         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
572         finished. Renamed.
574 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
576         * class.c (check_interface_method_override): Check for NULL signatures and fail
577         the type.
579         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
581         Fixes #553428.
583 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
585         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
586         the MONO_METHOD_FLAGS column instead of decoding the whole row.
588 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
590         * loader.c (field_from_memberref): Resolve the class first then the field
591         signature. Remove a lot of duplicated code and make sure we don't pass valid
592         values to mono_loader_set_error_field_load.
594         Fixes #553306.
596 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
598         * class.c (inflate_generic_type): Change code to use new signature of
599         mono_error_set_bad_image.
601         Fixes #558124.
603 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
605         * verify.c (mono_method_verify): Don't free ctx.params items if 
606         we aborted while inflating the ctx.locals. Complete previous fix
608 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
610         * verify.c (mono_method_verify): Use the uninflated type name, 
611         when the inflated is null, to report errors. Also take care when
612         freeing, not to free everything since, in case of an error, some
613         stuff would be copies (i.e. not allocated by the function itself)
614         Fix bug #558145
616 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
618         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
619         or overflow. The caller must have done this check explicitly. This guard us
620         from accessing invalid memory.
622         * verify.c (do_push_static_field): Check for stack overflow.
624         Fixes #553333.
626 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
628         * loader.c (find_method_in_class): Don't crash if the signature cannot
629         be resolved.
631         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
632         of asserting for the case of invalid params.
634         Fixes #553304.
636 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
638         * image.c (mono_image_load_module): Fix crash when a bad assembly
639         has no module at all (fix bug #553412) and also replace the 
640         g_assert with a return NULL (documented return value for failure)
642 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
644         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
646 2009-11-23  Miguel de Icaza  <miguel@novell.com>
648         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
649         file attribute to managed code and avoid doing the mask/attribute
650         checks here. 
652 2009-11-22  Miguel de Icaza  <miguel@novell.com>
654         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
655         the managed world.
657         * icall-def.h: New entry points.
658         
659 2009-11-19  Mark Probst  <mark.probst@gmail.com>
661         * process.c: Don't put references to managed objects into a
662         g_ptr_array.
664 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
666         * class.c (can_access_internals): Allow CoreCLR to participate in
667         allowing (or not) [InternalsVisibleTo] between assemblies.
668         * security-core-clr.c|h: Make sure that only trusted code (a 
669         superset of platform code) can access the internals of platform
670         code.
672 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
674         * reflection.c: use the correct base class to get the virtual method
675         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
677 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
679         * security-core-clr.c (get_caller_no_reflection_related): 
680         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
681         it's still reflection and must be filtered correctly.
683 2009-11-16  Mark Probst  <mark.probst@gmail.com>
685         * object.c (compute_class_bitmap): Fix for large bitmaps.
687 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
689         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
691         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
692         koush@koushikdutta.com). Disable GC_no_dls on android.
694 2009-11-12  Mark Probst  <mark.probst@gmail.com>
696         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
697         tlab_next points outside the TLAB because the allocator was
698         interrupted.
700 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
702         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
704 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
706         * object-internals.h: Change signature for mono_string_to_utf8_image.
708         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
709         argument.
711         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
712         exceptions due to mono_string_to_utf8.
714 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
716         * object-internals.h: Change signature for mono_string_to_utf8_mp.
718         * object.c (mono_remote_class): Make sure all resources are released before
719         raising an exception.
721         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
723 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
725         * mono-perfcounters.c (network_get_impl): Change variable initialization
726         ordering to fix potential memory leak in case of exceptions.
728         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
729         encoded strings.
730         
731 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
733         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
734         variable initialization ordering to fix potential memory leak in case
735         of exceptions.
737 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
739         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
740         needed.
742 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
744         * appdomain.c: Fix shadow path code to better deal with exceptions.
746 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
748         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
749         exception in the middle of the runtime code.
751 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
753         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
754         leak memory with broken envvar value.
756 2009-11-06  Mark Probst  <mark.probst@gmail.com>
758         * reflection.c (mono_reflection_setup_internal_class): Because
759         nested classes are not added to the name cache, we must put them
760         in the reflection_info_unregister_classes list.
762 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
764         * class.c: When CoreCLR is enabled don't call mono_init_com_types
765         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
766         platform (trusted) code. Instead we return a TypeLoadException to
767         be thrown later. This is the exception thrown by Silverlight 2 if
768         a type, inside application (user) code is marked with [ComImport]
770 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
772         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
773         mono_is_debugger_attached () too.
775         * mono-debug.c (mono_is_debugger_attached): New helper function.
776         (mono_set_is_debugger_attached): Ditto.
778 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
780         * object-internals.h: Add mono_string_to_utf8_checked.
782         * object.c: Implement mono_string_to_utf8_checked.
784 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
786         * class.c: Add missing check for load errors after every
787         call to mono_class_setup_fields
789         Fixes #552282.
791 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
793         metadata-verify.c (verify_tables_schema): Fix the error message.
795 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
797         * metadata.c: Change event table schema to use TDOR for event type
798         as this is what it's meant to be.
800         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
801         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
802         entry.
804         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
805         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
806         rows in MONO_TABLE_GENERICPARAM.
808         Fixes #552289.
810 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
812         * class.c (mono_image_add_to_name_cache): Assert on duplicate
813         insertion.
815         * reflection.c (mono_reflection_setup_internal_class): Avoid
816         registering a gc root the same MonoClass multiple times.
817         Don't register nested types on the global scope as they should
818         not be available there.
820 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
822         * culture-info-tables.h: regenerated.
824 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
826         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
828 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
830         * string-icalls.c|h: Remove string internal calls that are not 
831         used anymore by the class libraries.
832         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
833         which is not used in the class librairies.
834         * icall-def.h: Update tables.
836 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
838         * class.h: Move mono_class_inflate_generic_type_checked...
840         * class-internals.h: to here and make it internal. We don't want to
841         further expose MonoGenericContext. 
843 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
845         * verify.c (mono_method_verify): Improve error message.
847 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
849         * reflection.c (fieldref_encode_signature): If field_image is NULL then
850         the token is already properly encoded. Fixs 4.0 build.
852 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
854         * locales.c (construct_number_format): Check if the number index is
855         valid before trying to use it, if not, just return.
856         
857 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
859         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
860         since that loses the abort state. Fixes #539394.
862 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
864         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
865         explicit this argument to the call signature.
866         (mono_marshal_get_icall_wrapper): Ditto.
868 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
870         * reflection.c (fieldref_encode_signature): Add new field_image parameter
871         to indicate which assembly to use when resolving a custom-mod.
873         Fixes handling of volatile fields used across assemblies as reported in #551513.
875 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
877         * loader.c: Improve error messages.
879 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
881         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
882         of interfaces. Fixes IKVM.
884         * class.c (mono_class_setup_vtable_general): Improve debug spew.
886 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
888         * verify.c (verifier_inflate_type): Return the inflated type on success.
890 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
892         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
894         * threads.c (mono_thread_attach): Call the profiler thread start callback.
896         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
898         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
899         flag set.
901         * profiler.c: Add new profiler callbacks for runtime invoke.
903         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
905 2009-11-01  Mark Probst  <mark.probst@gmail.com>
907         * sgen-gc.c: Keep track of the reason for a major collection and
908         write it to the heap-dump file.
910 2009-10-31  Miguel de Icaza  <miguel@novell.com>
912         * threads.c: refactor the code that initializes the
913         thread_start_args into a reusable function and use this in the two
914         methods that start up threads.
916 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
918         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
919         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
921 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
923         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
924         Until now, we only had the per-cpu(core) counters.
926 2009-10-28  Mark Probst  <mark.probst@gmail.com>
928         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
929         mono_gc_get_suspend_signal(), which returns the suspend signal
930         number used by the GC.
932 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
934         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
936         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
937         signalling start_notify.
939 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
941         * appdomain.c: do not test the st_mode field for shadow-copies.
942         Fixes bug #545276.
944 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
946         * threadpool.[ch]: added hooks for thread start/finish and item
947         processing begin/end. For monotouch use only.
949 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
951         * threads.c (mono_thread_get_name): New helper function.
953         * reflection.c (resolve_object): Set handle_class for strings too.
954         (mono_reflection_create_custom_attr_data_args): New helper function to decode
955         a cattr blob into a set of arrays and structures without creating the custom
956         attributes themselves.
957         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
959         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
961         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
962         function.
964 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
966         * verify.c: Replace calls to mono_class_inflate_generic_type with
967         mono_class_inflate_generic_type_checked. Fixes #480005.
969 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
971         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
972         object since not all paths lead to callees initing it.
974 2009-10-23  Alp Toker  <alp@nuanti.com>
976         Fix embedding API breakage from r144688. mono-compiler.h is an internal
977         header and should not be shipped:
979         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
980         which is specific to the mono build. Not going to work.
982 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
984         * security-manager.c: Report if core-clr is active from
985         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
986         to allow Moonlight BCL to behave appropriately (both in browser
987         and outside, e.g. smcs)
989 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
991         * mono-config.c: ignore UTF-8 BOM and report parser errors.
992         Fixes bug #549108.
994 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
996         * class.c: fix typo.
998 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1000         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1001         a MonoError parameter.
1003         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1004         version that can does proper error handling.
1006         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1008         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1010         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1012 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1014         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1015         NO_UNALIGNED_ACCESS is defined.
1017 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1019         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1020         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1021         Fixes #549173.
1023 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1025         * sgen-gc.c: Shorten sections whenever possible.
1027 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1029         * sgen-gc.c: Use our portable semaphore #defines.
1031 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1033         * sgen-gc.c: A debug option for dumping the heap layout to a file
1034         after each collection.
1036 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1038         * sgen-gc.c: Make managed write barriers atomic via
1039         thread-restarts.
1041 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1043         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1044         methods. Fixes #543021.
1046 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1048         * socket-io.[ch]: fix VS build.
1050 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1052         * icall-def.h:
1053         * socket-io.[ch]: implemented SendFile.
1055 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1057         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1058         before the interfaces to avoid crashes later if class initialization fails.
1059         Fixes #548417.
1061         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1062         Fixes #548276.
1064 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1066         * domain.c: Bump 4.0 version.
1068 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1070         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1071         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1072         check since 'pubkey' can't be NULL at this stage
1073         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1074         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1075         initialization of 'iter'
1077 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1079         * cominterop.c : Search the interface parts of vtable to find 
1080           method matches.  Fixes 547030.
1082         Code is contributed under MIT/X11 license.
1084 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1086         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1087         multiple targets. Fixes bug #574426.
1089 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1091         * profiler.h: Put here the definition of
1092         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1093         (and fix the build...).
1095 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1097         * profiler.c, profiler.h, profiler-private.h:
1098         Added support for different ways of getting call chains in stat mode.
1100 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1102         * object.c, object-internals.h: New function for computing the
1103         size of an array, factored out of mono_array_new_full().  Use
1104         SGen's functions for allocating arrays and vectors.
1106         * sgen-gc.c, gc-internal.h: Special functions for allocating
1107         arrays and vectors without race conditions.  A managed array
1108         allocator method.
1110         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1112 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1114         * object.c, object.h, icall.c: Write barriers do the copying now,
1115         as well, so no need for an additional memcpy.
1117         * sgen-gc.c: Lock when storing remsets.  Do the memory
1118         copying/moving in the write barriers.
1120         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1122         * reflection.c: Added an assert.
1124 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1126         * threads.c, process.c: A few missing write barriers.
1128 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1130         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1131         network performance counters for bytes sent per second, bytes
1132         received per second, and bytes total per second.
1134         Code is contributed under MIT/X11 license.
1136 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1138         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1139         Fix warning.
1141 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1143         * threads.c, object-internals.h, object.c: Move code for
1144         transferring an object to a different domain (via
1145         serialization/remoting) to object.c.
1147         * object.c (call_unhandled_exception_delegate): If the exception
1148         is in a different domain than the delegate, transfer the exception
1149         to that domain.
1151 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1153         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1154         Fixes #322934.
1156 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1158         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1160 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1162         * object.c (mono_method_return_message_restore): Handle the case
1163         where the argument is an instance of a generic type.  Fixes
1164         #544446.
1166 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1168         * object.c (set_value): Write barrier fix - we must pass the
1169         count, not the size.
1171 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1173         * domain.c (mono_init_internal): Print a useful error message when encountering
1174         an old mscorlib, instead of crashing. Fixes #544307.
1176 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1178         * appdomain.c (copy_app_domain_setup): Fix a warning.
1180         * debug-helpers.c (dis_one): Ditto.
1182 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1184         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1185         into the new domain, instead of referencing the original one.
1187         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1188         non-static.
1190         * appdomain.c: Corlib version bump.
1192 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1194         * threadpool.c: one more...
1196 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1198         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1199         threads to die because we're shutting down. delgate5.exe works again.
1201 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1203         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1204           ccw_interface_hash table when a ccw is finalized.
1206         Code is contributed under MIT/X11 license.
1208 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1210         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1211         domain and image unloading into two steps.  We must do this
1212         because clearing the domain in SGen requires the class metadata to
1213         be intact, but we need to free the mono_g_hash_tables in case a
1214         collection occurs during domain unloading and the roots would trip
1215         up the GC.
1217 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1219         * object-internals.h: Remove serialized culture fields from
1220         MonoInternalThread.
1222         * icall-def.h, thread-types.h, threads.c: Remove serialized
1223         culture icalls.
1225         * appdomain.c: Corlib version bump.
1227 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1229         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1230         Fixes #543133.
1232 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1234         * sgen-gc.c: Try to shorten the new section after a major
1235         allocation to avoid ever-growing sections.
1237 2009-10-13  Martin Baulig  <martin@ximian.com>
1239         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1240         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1241         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1242         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1244         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1246 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1248         * threadpool.c: fixed the order in which 'completed' and the wait
1249         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1250         No need to use the wait_handle field of ASyncCall. Make sure the
1251         threadpool is active when adding a job or queueing an idle thread.
1253 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1255         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1257         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1258         when using --compile-all.
1260 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1262         * metadata.c (free_generic_class): Unregister the field_objects
1263         roots if we're using SGen.
1265 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1267         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1268         for GenericParamTableEntry.gparam.
1270 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1272         * marshal.c: don't create the handle when calling. It is created later
1273         if needed.
1275 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1277         * sgen-gc.c: Warning fixes.
1279 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1281         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1282         whole heap for cross-domain references before each collection.
1284         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1285         object.
1287         * threadpool-internals.h, threadpool.c: New function
1288         mono_thread_pool_is_queue_array() for checking whether a given
1289         array is used as a (cross-domain) queue by the thread pool code.
1291 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1293         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1294         searches the whole heap for objects containing a specific
1295         reference.  Only for debugging.
1297 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1299         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1301         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1302         byte arrays between domains.
1304 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1306         * threadpool.c:
1307         * class-internals.h:
1308         * mono-perfcounters-def.h:
1309         * mono-perfcounters.c:
1310         -There is a list of idle threads
1311         -Each of those idle threads wait on their own WaitHandle instead
1312         of all of them using the same semaphore. When a new work item is
1313         added, the job is assigned directly to an idle thread or a newly
1314         created one if possible and then the handle for that thread is
1315         signaled. Compare that to the current approach where all the
1316         threads in the pool compete to dequeue a job from the same
1317         queue.
1318         -New struct ThreadPool that brings together the bunch of static
1319         variable for each threadpool (IO and regular).
1320         -New performance counters: # of items added and its rate per
1321         threadpool. The rate will be used later, perhaps together with
1322         other perf. counters, to decide when idle threads should exit.
1324 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1326         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1327         Fix typo on Windows build.      
1328         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1329         
1330         Code is contributed under MIT/X11 license.
1332 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1334         * object-internals.h: The Thread class is split up into Thread and
1335         InternalThread now.  We have exactly one InternalThread per
1336         thread, and at most one Thread per appdomain per thread.  Most
1337         data is stored in InternalThread.  All InternalThread objects live
1338         in the root domain.
1340         * class-internals.h: Add internal_thread_class to MonoDefaults.
1342         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1343         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1344         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1345         resulting from the split of the Thread class.
1347         * gc-internal.h: Prototype for new function for checking whether a
1348         thread is the finalizer thread.
1350         * appdomain.c: Corlib version bump.
1352 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1354         * appdomain.c|h: Add a mono_domain_try_unload method which is
1355         equivalent to mono_domain_unload, except that it returns an exception
1356         instead of throwing it. Make mono_domain_unload use the
1357         mono_domain_try_unload method to avoid code-duplication.
1359 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1361         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1362         a problem.
1364 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1366         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1367         aborting when a conversion is not implemented.
1369 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1371         * verify.c: when comparing culture strings, use g_ascii_strcmp
1373         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1374         when comparing public key tokens to use memcmp on 16 bytes.   I do
1375         not believe this ever worked as advertised in the past.
1377         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1378         which would have always failed earlier.
1380 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1382         * gc.c: Raise a NullArgumentException if the object passed is
1383         null.
1385 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1387         * image.c (mono_image_close): Atomically decrement the reference count and
1388         remove the image from the hash tables, to prevent another thread from seeing a
1389         dying MonoImage. Fixes #541194.
1391 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1393         * threadpool.c: actually use the minimum number of 'completion ports'
1394         (for us is just a potential worker thread).
1396 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1398         * threadpool.c: remove ares_htable. It does not make sense any more
1399         since the same objects are now stored in GC-tracked arrays while they are
1400         in the queue.
1402 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1404         * threadpool.c: increase the minimum length of the queues to 128.
1405         Remove warning.
1407 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1409         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1410         return the modified signature used by string ctors.
1412 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1414         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1415         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1416         method, to be used by full-aot.
1418 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1420         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1421         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1422         be known to be good.
1424         * class.c (mono_class_init): Fail array types if their element type fails initialization
1425         as well.
1427         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1428         initialization, additionally we request the element_type vtable to be initialized as well.
1430         This is fine and should not increase the working set in any meaningful way since it's reasonable
1431         to assume       that most code will create an array and eventually populate it, which will require the
1432         type's vtable to be initialized.
1434         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1436 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1438         * normalization-tables.h : regenerated.
1440 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1442         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1443         a leb128 encoding can take up to 5 bytes.
1445 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1447         * class.c (verify_class_overrides): Remove useless argument.
1449         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1450         before interface enumeration as this is no longer required.
1452 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1454         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1455         used under mono_class_init context. This functions avoid any code path that
1456         calls mono_class_init, which leads it to be slow as some things like the interface
1457         bitmap are not available.
1459         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1460         of it's own broken version. Fixes the verifier part of #538588.
1462         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1463         API.
1465 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1467         * class.c (mono_class_init): Always set an exception in a class if
1468         vtable setup fails.  Fixes #538577.
1470         * generic-sharing.c: Raise an exception if mono_class_vtable()
1471         returns NULL.
1473 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1475         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1476         methods of vtypes, as they could be incorrectly shared with static methods
1477         taking an IntPtr argument.
1479 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1481         * domain.c:
1482         * object.c:
1483         * class-internals.h: renamed waithandle_class to
1484         manualresetevent_class.
1485         * marshal.c: propagate the exception if a remoting BeginInvoke call
1486         fails.
1488 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1490         * object.c: Properly handle vtable failures.
1492 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1494         * socket-io.c: Assert on vtable failure.
1496         * mono-mlist.c: Assert on vtable failure.
1498 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1500         * marshal.c: Assert on vtable failure.
1502 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1504         * icall.c: Properly handle vtable failures.
1506 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1508         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1510 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1512         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1514         * console-unix.c (do_console_cancel_event): Same.
1516 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1518         * class-internals.h: Add mono_class_vtable_full function that allows control
1519         if an exception should be raised or not.
1521         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1522         to do what its documentation say, that is to return NULL and set exception_type on
1523         failure.
1525         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1526         and change the code to honor it.
1528 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1530         * verify.c: Fix typo in error message.
1532 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1534         * security-core-clr.c: Fix default_platform_check so it can run
1535         the runtime coreclr tests (without an infinite recursion when
1536         throwing an exception).
1538 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1540         object.c (mono_delegate_ctor_with_method): Guard against null method.
1542 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1544         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1545         that should be replaced with error handling later.
1547 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1549         * marshal.c (mono_delegate_end_invoke): Fix warning.
1551 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1553         * loader.c (mono_field_from_token): Properly handle invalid
1554         dynamic tokens.
1556 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1558         * pedump.c (verify_image_file): Skip types that can't be
1559         decoded.
1561 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1563         * verify.c: Look for recursive valuetypes only against the
1564         type been initialized as this is a lot simpler and works.
1566 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1568         * verify.c: Ensure that fields are properly loaded before
1569         checking them.
1571 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1573         * object.c (mono_object_get_virtual_method) : Call 
1574           mono_cominterop_get_invoke if the object is a COM object.
1576         Code is contributed under MIT/X11 license.
1578 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1580         * verify.c: Check for recursive valuetype definitions.
1582 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1584         Use inheritance-aware interface offsets. Inherited types use the same offsets
1585         of their parents. This reduce offset duplication in case more than one type in
1586         the inheritance tree explicitly implements the same interface.
1588         This also removes a source of vtable bubbles found in #532409. An abstract type
1589         isn't required to provide abstract methods to all interfaces it implements, which
1590         resulted in a bubble with the previous scheme as the child would get a non-full
1591         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1592         should be fixed.
1594         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1595         it's expected to not cause any significant increase beyond that.
1597         * class.c (setup_interface_offsets): Compute super class iface offsets
1598         first to force sharing.
1600         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1601         dumping only the relevant ones.
1603         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1604         methods a new slot regardless if they belong to an interface or not. This allows
1605         an inherited type to override the iface method separately from the class one.
1607 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1609         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1610         applications that take less than 2s to execute.
1611         Bug #524984 fixed.
1613 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1615         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1617         * object.c (mono_get_runtime_callbacks): New helper function to return
1618         the runtime callbacks.
1620         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1621         mono_get_runtime_build_info () as the display name.
1622         
1623 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1625         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1626         argument, since NEWARR expects a native int. Fixes #481559.
1628 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1630         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1631         against broken SRE methods.
1633 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1635         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1636         a NULL variable. Abort early on failure.
1638 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1640         * class.c (can_access_type): Fail visibility test for non nested
1641         types with nested visibility.
1643 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1645         * assembly.c (parse_public_key): Avoid allocating (and not 
1646         freeing) the public key array when it's not requested by the 
1647         caller.
1648         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1649         ves_icall_System_Threading_Thread_Thread_internal): Free 
1650         allocated memory on error.
1652 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1654         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1656 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1658         * class.c (mono_class_setup_fields): Remove duplicated local variable
1659         named gklass.
1660         Rename gklass to gtd to reflect the fact that it points to the generic
1661         type definition.
1662         Remove the duplicated call to mono_class_setup_fields on gtd and move
1663         the error check to the beginning.
1665 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1667         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1668         Remove cruft of the previous patch.
1670 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1672         * metadata-verify.c (verify_method_table): Check for abstract + final.
1673         Fixes #534175.
1675 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1677         * verify.c (verify_class_fields): Check for duplicate fields.
1679 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1681         * metadata-verify.c: Verify the typeref table for duplicates.
1683 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1685         This reverts r140936 and properly handles interfaces with static methods. The
1686         right fix is to ensure vtables without bubles which is an easier to verify
1687         constraint. We should avoid such special cases as of the reverted patch as those
1688         only make the runtime more brittle.
1690         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1691         static methods on interfaces.
1693         * class.c (setup_interface_offsets): Use the number of virtual methods when
1694         calculating interface offsets instead of the number of methods. This way we
1695         avoid bubles on the layout.
1697 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1699         * metadata-verify.c (verify_metadata_header): Some very smart
1700         obfuscators like to add extra stream headers. Ignore them.
1702 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1704         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1705         methods correctly.
1707 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1709         * metadata-verify.c: Verify for duplicated types.
1711 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1713         * metadata-verify.c (verify_typedef_table): Verify for nested types
1714         without an entry on the nested class table.
1716 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1718         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1719         <tom_hindle@sil.org>. Add locking around hash table accesses.
1721 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1723         * verify.c (mono_verifier_verify_class): Verify all interface if
1724         really are interfaces. Fixes #534184.
1726 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1728         * pedump.c: Initialize all types during metadata validation so we report
1729         errors only detected as part of class initialization.
1731 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1733         * metadata-verify.c (verify_method_table): PInvoke requires method to
1734         be static. Fixes #534189
1736 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1738         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1739         being NULL.
1741 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1743         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1744         for holes or bad methods. Fixes #525314.
1746 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1748         * class.c (setup_interface_offsets): Don't allocate slot
1749         for the same interface multiple times. This creates bubbles
1750         that waster space and make vtable verification harder.
1752         The same interface get a slot multiple times since we need
1753         to get the closure of all implemented interfaces, which means
1754         the same interface is reported multiple times.
1756 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1758         * verify.c (mono_verifier_verify_class): Don't check the fields
1759         of generic instances since the context on which they got expanded
1760         might lead to false positives.
1762         Such thing happens when a generic type is inflated in the context
1763         of a generic method and the inflated type of a field turns into a
1764         generic method argument, which causes the checking code to think
1765         it's an invalid class when it's not.
1767 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1769         * verify.c (mono_type_is_valid_in_context): Verify if type
1770         is NULL and remove duplicate test.
1772 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1774         * verify.c (mono_verifier_verify_class): Check fields for
1775         invalid generic arguments.
1777 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1779         * class.c (verify_class_overrides): Verify if for static
1780         and non virtual methods.
1782 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1784         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1785         Check for errors after retrieving the vtable.
1787 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1789         * class.c (mono_class_setup_vtable_general): Verify
1790         if method overrides are valid before processing them.
1792 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1794         * marshal.c (mono_array_to_lparray): Fix minimal build with
1795         cominterop disabled.
1797         * marshal.c (mono_free_lparray): Same.
1799 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1801         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1802         the hash function for the ares_htable.
1804 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1806         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1807         bit for assembly flags. MS is ok with it but there is no spec anywhere
1808         on its mean
1810 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1812         * class.c (mono_class_create_from_typedef): Emit profiler events
1813         in all cases.
1815 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1817         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1818         Release memory on failure.
1820 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1822         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1823         to the internal API.
1825         * metadata.c (get_constraints): Use a single-linked table as we don't
1826         traverse it backward. Fail and return FALSE if only of the contraint types
1827         is not found.
1829         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1830         to mono_metadata_load_generic_param_constraints except for having a return value.
1831         This has to be done since the later is part of the public API.
1833         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1834         and fail the type.
1836         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1837         and fail the method.
1839 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1841         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1842         with MS broken behavior of emmitting EH section sizes without the
1843         header size added.
1845 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1847         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1848         memory until we're sure that we'll need it. This avoids leaking for
1849         broken types or duplicated instantiation.
1851 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1853         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1854         mistake.
1856 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1858         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1859         and expected size calculation.
1861 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1863         * class.c (mono_class_get_field_idx): Add fixme for broken
1864         behavior for types with multiple fields with the same name.
1865         I would rather fix it, but have no idea on how to generate
1866         such artifact for testing.
1868 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1870         * verify.c (verifier_load_field): We should allow references to
1871         fields to be made using the generic type definition. It's up to
1872         the loader system to fail invalid ops.
1874         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1875         are invalid.
1877 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1879         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1881         * metadata-internals.h: Fix declaration of 
1882         mono_metadata_interfaces_from_typedef_full.
1884         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1885         heap_alloc_result parameter that controls if the result should be
1886         g_malloc'd.
1888         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1889         array be g_malloc'd and properly document this public API function.
1891 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1893         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1894         remove METHOD_HEADER_TINY_FORMAT1.
1896         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1898         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1900         Both spec and MS uses only 2 bits to enumerate the kind of header.
1901         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1902         is superfluous, only used for tiny headers with odd code lengths.
1904         This change also make sure that mono doesn't wronly interpret bit 2
1905         of fat header flags, which is currently reserved.
1907 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1909         * metadata.c (do_mono_metadata_parse_type): Do error
1910         checking for element types. Don't abort if presented
1911         with a broken type kind.
1913 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1915         * metadata.c (mono_metadata_parse_method_signature_full):
1916         Gracefully fail bad vararg signatures.
1918 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1920         * profiler.c:
1921         * class.c: Fix warnings for uninitialized variables.
1923 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1925         * icall.c: Fix _NSGetEnviron method declaration warning.
1927 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1929         * icall.c:
1930         * reflection.c: Make bitwise checks explicit.
1932 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1934         * debug-helpers.c:
1935         * marshal.c: Fix printf warnings.
1937 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1939         * reflection.c (encode_cattr_value): Fix a warning.
1941 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1943         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1944         of array bounds.
1946 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1948         * loader.c (mono_method_signature): Don't assert on broken
1949         signature. Print a more useful error message.
1951 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1953         * loader.c (mono_method_get_marshal_info): Assert if
1954         signature is invalid. Bounds check stores to the
1955         mspecs array;
1957 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1959         * loader.c (field_from_memberref): Fix warning.
1961 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1963         * loader.c (mono_method_get_param_names): Check if signature
1964         is null. Don't store beyond the size of the name array.
1966 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1968         * loader.c (mono_get_method_constrained): Check if signature
1969         is null.
1971 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1973         * loader.c (mono_loader_set_error_bad_image): Improve
1974         error messages.
1976 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1978         * loader.c (mono_get_method_full): Convert an assertion
1979         into a loader error.
1981 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1983         * class-internals.h, class.c: Better naming and documentation.
1985 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1987         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1988         obj is NULL.
1990 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1992         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1993         parsing fails.
1995 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1997         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1998         errors with no class set.
2000         * loader.c (field_from_memberref): If the field signature is of the wrong
2001         type fail with a MissingFieldException instead of a BadImageException as
2002         this is the behavior observed on MS. 
2004 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2006         * loader.c (field_from_memberref): Don't crash if either the field
2007         signature or the typespec class are invalid.
2009 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2011         * verify.c (verifier_load_field): Don't allow field related
2012         ops to reference fields on generic type definition.
2014 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2016         * metadata-verify.c: Add new warning level for errors specified
2017         by ECMA 335 but that MS ignores.
2019         * metadata-verify.c (verify_method_table): Make compiler controled
2020         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2021         this check is safe because the end result will only be some visibility
2022         exceptions been thrown.
2024 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2026         * verify.c (get_boxable_mono_type): Don't allow the
2027         use of the generic type definition on boxed type positions.
2029         Fixes #531237.
2031 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2033         * threadpool.c: Make sure no cross-domain references remain in
2034         ares_htable or the arrays that are thrown away when resizing.
2036 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2038         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2039         list of classes for which we have to unregister reflection_info
2040         with the GC and which are not in the namespace cache.
2042         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2043         the class to the list.
2045 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2047         * domain.c (mono_domain_free): Unregister the GC roots in
2048         MonoDomain.
2050 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2052         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2054 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2056         * class.c: Add mono_class_get_field_from_name_full which does
2057         the same as mono_class_get_field_from_name but does check field
2058         signature as well.
2060         * class-internals.h: Export mono_class_get_field_from_name_full as
2061         part of the internal API.
2063         * loader.c (field_from_memberref): Search fields by name and signature
2064         as it's valid to have two fields with same name but different types.
2066         Fixes #528055.
2068 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2070         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2072         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2074         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2075         System.Type.
2077 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2079         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2081         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2083 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2085         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2086         to sgen-scan-object.h, which can be included and parameterized via
2087         macros.
2089         * Makefile.am: sgen-scan-object.h added.
2091 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2093         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2095 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2097         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2098         before clearing a domain in the GC.
2100 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2102         * exception.c (mono_exception_from_name_domain): Actually create
2103         the exception in the specified domain.
2105         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2106         OutOfMemoryException a bit later so that the domain is inialized
2107         "enough" that it works.
2109 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2111         * threads.c (thread_cleanup): Clean up the cached_culture_info
2112         array to prevent cross-domain references.
2114 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2116         * metadata.c: more documentation for MonoType accessors.
2118 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2120         Fix incorrect size definitions where the tail array isn't a list
2121         of pointers
2122         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2123         define size.
2124         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2125         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2126         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2128 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2130         * reflection.h:
2131         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2133 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2135         * metadata.c:
2136         * loader.c:
2137         * metadata-internals.h:
2138         * method-builder.c:
2139         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2141 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2143         * cominterop.c:
2144         * metadata.c:
2145         * metadata.h:
2146         * loader.c:
2147         * marshal.c:
2148         * reflection.c: #define for sizeof in MonoType and
2149         MonoMethodSignature.
2151 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2153         * domain.c:
2154         * domain-internals.h: add and use #define's instead of sizeof()
2155         for MonoJitInfo and MonoJitInfoTable.
2157 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2159         * object.c:
2160         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2162 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2164         * metadata.c:
2165         * metadata.h:
2166         * object.c:
2167         * class-internals.h:
2168         * generic-sharing.c:
2169         * marshal.c: use a #define instead of sizeof() for a few
2170         structures that use a zero-length array.
2172 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2174         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2175         to handle inflated generic methods.
2177         * appdomain.c: Bump corlib version.
2179         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2180         instances.
2182         * reflection.c (fixup_method): Same
2184         * reflection.c (resolve_object): Same.
2186         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2187         g_error and a decent message.
2189 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2191         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2192         from the object because it could not yet be available globally
2193         (it happens if the profiler tries to create a gchandle on the
2194         MonoThread object of a thread that is still registering itself
2195         with the runtime).
2197 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2199         * reflection.c (mono_generic_class_get_object): Initialized the
2200         managed type arguments array.
2202         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2204         * appdomain.c: Bump corlib version.
2206 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2208         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2209         #527902.
2211 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2213         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2214         Avoid a crash if synch_cs is not set.
2215         
2216         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2217         Handle the case when the handle is 0.
2219         * appdomain.c: Bump corlib version.
2221 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2223         * reflection.c (mono_type_get_object): Fix a warning.
2225 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2227         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2228         descriptor here.  We assume it's already been computed.
2230         * generic-sharing.c (instantiate_other_info): Compute the GC
2231         descriptor for info type MONO_RGCTX_INFO_KLASS.
2233 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2235         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2236         type, so don't use MONO_OBJECT_SETREF to set a field.
2238 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2240         * gc.c: We were missing one case where invoking a finalizer would
2241         not reset the domain.  Also, in the finalizer thread loop, assert
2242         that we're in the root domain.
2244 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2246         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2247         if the type is not an array.
2249 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2251         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2252         method bound to the declaring type of the method. Raise an exception
2253         if the type is not a generic param.
2255 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2257         * class.c (print_unimplemented_interface_method_info): Print the
2258         full type name.
2260         * class.c (mono_class_setup_vtable_general): When dealing with a
2261         generic instance first check if the generic type definition is
2262         not broken.
2264 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2266         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2268         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2270         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2272         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2274         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2276         Code is contributed under MIT/X11 license
2278 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2280         * verify.c: Fix naming of stelem and ldelem.
2282 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2284         * generic-sharing.c: Replace the templates lock with the loader
2285         lock because of very hard to resolve deadlock issues.
2287 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2289         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2290         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2291         directly. Fixes #525338.
2293         * class.c (mono_class_get_vtable_size): New helper function.
2295         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2296         the field belongs to the type. Fixes #525733.
2298 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2300         * sgen-gc.c: When we stop a thread and its stack top is not within
2301         its allocated stack (because it's in an altstack signal handler),
2302         restart it and stop it again, until it is.
2304 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2306         * sgen-gc.c: Take a thread's stack top and registers from the
2307         sigcontext in the suspend signal handler.
2309         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2310         stuff to sgen-archdep.h.
2312         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2313         caller, because have code in sgen-archdep.h to acquire that data.
2315 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2317         * profiler.c, profiler.h, profiler-private.h:
2318         Added support for keeping track of code chunks and buffers.
2320 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2322         * metadata-verify.c: Fix endianness problems on decoding functions.
2323         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2325 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2327         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2328         schema for vectors and one dimension SZARRAY.
2330 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2332         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2333         schema for vectors and one dimension SZARRAY.
2335 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2337         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2338         Interlocked.(Compare)Exchange with object arguments, which invoke
2339         write barriers.
2341 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2343         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2344         passed invalid arguments.   Fixes another crasher in the
2345         Silverlight test suite.
2347         * class.c (mono_class_array_element_size): Return 0 for the size
2348         of the class;  This fixes the crasher exposed by :
2350         typeof (void).MakeArrayType ();
2352         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2353         if there is no method to dereference.    Put all the code that
2354         depends on this inside the if (method) block.
2356         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2357         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2359         With this change, we pass the test.
2360         
2361         * reflection.c (mono_reflection_sighelper_get_signature_local):
2362         Only dereference the assembly if it has been set.    Fixes a
2363         crasher exposed by #525328
2365 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2367         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2368         don't perform the store in mono_gc_wbarrier_generic_nostore().
2369         Remove the second argument (value), which is not needed.
2371 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2373         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2374         the build.
2376         * boehm-gc.c: Ditto.
2377         
2378 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2380         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2381         not perform the store itself.  Introduce
2382         mono_gc_wbarrier_generic_nostore(), which is the same as
2383         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2384         store.
2386 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2388         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2389         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2390         we still need the memcpy().
2392 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2394         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2395         so that big arrays are handled correctly.  Always use
2396         safe_object_get_size() to calculate array object sizes, which
2397         takes bounds into account.
2399 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2401         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2402         GC descriptor is computed before we use it.
2404 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2406         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2407         write barrier if necessary.
2409 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2411         * icall-def.h, icall.c, thread-types.h: New separate icall for
2412         VolatileWrite(object&,object) that uses a write barrier.
2414         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2415         barriers in icalls which write to "ref" or "out" arguments.
2417 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2419         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2420         handler in a separate icall, to reduce the size of the wrappers.
2422 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2424         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2426 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2428         * metadata-verify.c (parse_field): Allow byref field.
2430         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2432         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2434 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2436         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2437         Fixes #522784.
2439 2009-07-20  Robert Jordan  <robertj@gmx.net>
2441         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2442         Fix invalid IL in valuetype handling (STOBJ must push the
2443         corresponding class). Fixes bug #523149.
2445         Code is contributed under MIT/X11 license.
2447 2009-07-20  Geoff Norton  <gnorton@novell.com>
2449         * gc.c: Use proper semaphores where available on posix and darwin.
2451 2009-07-19  Geoff Norton  <gnorton@novell.com>
2453         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2455 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2457         * refletion.c (is_sre_usertype): Change name to is_usertype and
2458         invert it's result so it returns true if the type is an user type
2459         and not the opposite.
2461         * reflection.c (is_*_type): Change all of those to use new macro
2462         check_corlib_type_cached that cached the type lookup so we don't
2463         need to do string comparisons all the type. Changed the signature
2464         to take a MonoClass instead.
2466         * reflection.c: Change mono_image_create_token and resolve_object
2467         to use is_sre_* functions.
2469 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2471         * sgen-gc.c: Check for writes to the stack in the managed
2472         wbarrier as well.
2474 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2476         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2477         but put them on a list which is processed with the other thread's
2478         remsets.
2480 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2482         * sgen-gc.c: Fix and enable the internal allocator instead of
2483         using malloc/free (which causes deadlocks).
2485 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2487         * refletion.c: Fix builds with SRE disabled by adding a minimal
2488         implementation of mono_reflection_type_get_handle.
2490 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2492         * refletion.c: Make mono_reflection_type_get_handle non static.
2494         * object-internals.h: Export mono_reflection_type_get_handle.
2496         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2497         unmanaged handle using mono_reflection_type_get_handle.
2499 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2501         * refletion.c: Replace all reads of MonoReflectionType::type with
2502         calls to mono_reflection_type_get_handle. Only the functions that
2503         deal with constructing TypeBuilder::type have not been changed
2504         because they have to deal with NULL values.
2506         This is a first step into supporting reflection types that don't
2507         map directly into their unmanaged counterpart.
2509 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2511         * metadata-verify.c (parse_locals_signature): Don't complain
2512         on signature with zero locals since MS generates it and doesn't
2513         bother with.
2515 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2517         * reflection.c (mono_image_get_array_token): Resolve return
2518         type using mono_reflection_type_get_handle.
2520         * reflection.c (mono_image_get_array_token): Resolve array method
2521         parent type using mono_reflection_type_get_handle.
2523 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2525         * reflection.c (mono_image_basic_init): Applied patch from
2526         <Dax@daxxfiles.net>. Set the public key token from the assembly
2527         builder. Fixes #518909.
2529         * appdomain.c: Bump corlib version.
2531 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2533         * class.c (mono_class_needs_cctor_run): Make this return false if
2534         the class has no cctor.
2536 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2538         * sgen-gc.c: When the minor GC needs to allocate a new section,
2539         invoke the major GC afterwards.
2541 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2543         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2544           Applying the window_style field to the SHELLEXECUTEINFO struct.
2546         Code is contributed under MIT/X11 license.
2548 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2550         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2551         locking earlier.  Fix it in the managed allocator by making sure
2552         that no thread is stopped there before the GC runs.  If we do stop
2553         a thread there, we restart it and let it run a but, until it stops
2554         somewhere else.
2556         * gc-internal.h, gc.c: Function for getting the IP from a signal
2557         context via a function registered by mini.
2559 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2561         * object-internals.h (MonoIntPtr): New structure describing a boxed
2562         IntPtr.
2564         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2565         returns. Fixes #519953.
2567         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2569 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2571         * class-internals.h, generic-sharing.c: New RGCTX info type for
2572         getting a remoting invoke with check wrapper.
2574 2009-07-07  Geoff Norton  <gnorton@novell.com>
2576         * icall-def.h: Fix the enable-minimal build.
2578 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2580         * object-internals.h: Add MonoReflectionDerivedType.
2582         * reflection.c: Implement support for PointerType.
2583         Fixed tons of warnings.
2585 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2587         * object-internals.h: Add MonoReflectionByRefType.
2589         * reflection.c: Implement support for ByRefType.
2591 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2593         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2595         * object-internals.h: Add MonoReflectionArrayType and
2596         mono_reflection_create_unmanaged_type.
2598         * reflection.c: Implement support for ArrayType.
2600 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2602         * metadata-verify.c (is_valid_method_header): Parse EH block
2603         flags correctly.
2605 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2607         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2608         processing the disappearing links, and process disappearing links
2609         in a loop until no new objects are copied.
2611 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2613         * object.c (handle_enum): Invoke the write barrier when copying
2614         value type instances.
2616         * sgen-gc.c: Register remsets for unmanaged write barriers only
2617         when the address written to is actually on the heap.  This makes
2618         set_value() in object.c work without requiring that the result be
2619         on the heap.
2621 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2623         The runtime wrappers are all bound to a given type that must
2624         exist in the same image. For regular images we use the <Module>
2625         type, which is required to exist for all images.
2627         The <Module> type can't be used for dynamic images because it
2628         might not exist at the time the wrapper is required, so we create
2629         a synthetic type to use instead.
2631         The current code works because of the 2 stage setup of MonoClass,
2632         but once this is gone it will no longer work.
2634         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2636         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2638         * object-internals.h: Export mono_image_set_wrappers_type icall
2639         as part of the internal API.
2641         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2642         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2644         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2645         image wrappers_type to the provided value.
2647 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2649         * appdomain.c (deregister_reflection_info_roots): No need
2650         to use the image lock here.
2652 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2654         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2656 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2658         * threads.c: Store the thread start argument in a hash table instead of
2659         registering it as a root, as libgc doesn't support unregistering roots
2660         under windows, leading to 'too many root sets' errors when many threads
2661         are created.
2663         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2664         shutdown, they can still be referenced by the other dying objects.
2665         Fixes #514506.
2667 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2669         * socket-io.c: DontLinger does not allow LingerOptions.
2671 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2673         * metadata-verify.c: The spec doesn't mention that it's possible to add
2674         custom attribute to a generic parameter. Fixed.
2676 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2678         * class.c (inflate_generic_type): Don't crash while trying to output a message
2679         on why we're aborting.
2681 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2683         * socket-io.c: DontLinger can take an int or a boolean too.
2685 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2687         * gc.c: check for a null argument to SuppressFinalize () and
2688         ReRegisterForFinalize ().
2690 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2692         * loader.c (method_from_methodspec): Call into the verifier to check
2693         the signature.
2695         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2697         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2698         part of the internal API.
2700 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2702         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2703         the signature.
2705         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2707         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2708         part of the internal API.
2710 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2712         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2713         the signature.
2715         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2716         blob verification.
2718         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2719         part of the internal API.
2721 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2723         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2724         when doing basic verification. 
2726         This check must be done since the runtime peeks into signatures in much
2727         more places than it does decoding so it makes sense to ensure that all
2728         pointers to blob objects are well formed.
2730 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2732         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2733         Use proper overflow dectection. Fix usage of it.
2735 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2737         * loader.c (field_from_memberref): Call into the verifier to check
2738         the signature.
2740         * loader.c (mono_method_get_signature_full): Same.
2742         * loader.c (method_from_memberref): Same.
2744         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2746         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2747         part of the internal API.
2749 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2751         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2752         or unloaded, still return an AsyncResult, but don't add it to the
2753         threadpool.
2755 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2757         * threads.c: fix missing colon when DEBUG is defined.
2759 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2761         * threadpool.c: Don't add new calls to a threadpool if the domain
2762         of the call is unloading or unloaded.  When dequeuing a job, null
2763         the reference in the queue.
2765 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2767         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2768         generation if an object was moved.
2770 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2772         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2773           parameters of type SAFEARRAY[VARIANT].
2775         * reflection.c (encode_marshal_blob): Properly generate element type
2776           (SafeArraySubType marshal attribute option).
2778         Code is contributed under MIT/X11 license.
2780 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2782         * reflection.c: in mono_method_clear_object () really ensure all the
2783         objects are removed.
2785 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2787         * loader.c (mono_method_signature): Call into the verifier to check
2788         the method signature.
2790         * metadata-verify.c (verify_method_table): Move signature verification
2791         to verify_method_table_full.
2793         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2795         * verify-internals.h: Export mono_verifier_verify_method_signature as
2796         part of the internal API.
2798 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2800         * loader.c (mono_method_get_header): Call into the verifier to
2801         check the method header.
2803         * metadata-verify.c: Add mono_verifier_verify_method_header.
2805         * verify-internals.h: Export mono_verifier_verify_method_header as
2806         part of the internal API.
2808 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2810         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2811         check the field signature. Replace an assert with an explicit check.
2813         * class.c (mono_class_setup_fields): Call into the verifier to check
2814         the field signature.
2816         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2818         * verify-internals.h: Export mono_verifier_verify_field_signature as
2819         part of the internal API.
2821 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2823         * class.c (mono_class_find_enum_basetype): Simplify this function
2824         by moving code outside of the loop and not decoding static fields.
2826 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2828         * metadata-verify.c (verify_typedef_table): Check the extends
2829         token here. Move to here a flags check from verify_typedef_table_full.
2831 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2833         * metadata-verify.c (is_valid_method_header): Fix a warning.
2835         * metadata-internals.h (MonoImage): Remove the unused 
2836         static_rgctx_invoke_wrapper_cache.
2838         * image.c marshal.c: Ditto.
2840 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2842         * image.c (do_mono_image_load): Enable table data verification.
2844 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2846         * metadata-verify.c (is_valid_constant): Fix nullref check.
2848 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2850         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2852 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2854         * sgen-gc.c: Managed allocation with pthreads TLS.
2856         * threads.c, threads-types.h: Functions for the JIT to tell the
2857         runtime whether it supports the MONO_TLS opcode.
2859 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2861         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2862         without methods.
2864 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2866         * metadata-verify.c (is_valid_constant): Fix the string length check.
2867         Use safe overflow checking. Add decent error messages.
2869 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2871         * metadata-verify.c: Move remaininh blob checks to the offline
2872         verification path.
2874 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2876         * metadata-verify.c: Move more blob checks to the offline verification
2877         path.
2879 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2881         * object-internals.h : Adding interrupt_on_stop field.
2883         * threads.c (mono_thread_request_interruption) : On Windows exit the
2884           thread if interrupt_on_stop is set.
2886         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2887          Removing old interrupt logic and setting the interrupt_on_stop for the
2888          thread when calling accept.
2890         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2891          setting the interrupt_on_stop for the thread when calling accept.
2893         Contributed under MIT/X11 license.
2895 2009-06-20  Martin Baulig  <martin@ximian.com>
2897         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2899 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2901         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2902         running in no-exec mode.
2904 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2906         * metadata-verify.c (verify_method_table): Move header
2907         checking to verify_method_table_full.
2909         * metata-verify.c (mono_verifier_verify_full_table_data):
2910         Call verify_method_table_full.
2912 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2914         * metadata-verify.c (verify_field_table): Move signature
2915         checking to verify_field_table_full.
2917         * metata-verify.c (mono_verifier_verify_full_table_data):
2918         Call verify_field_table_full.
2920 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2922         * metadata-verify.c (verify_typedef_table): Move remaining
2923         stuff to verify_typedef_table_full.
2925 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2927         * metadata-verify.c: Kill is_corlib from VerifyContext.
2928         It is only used by the offline mode.
2929         So we better remove it from the runtime path.
2931 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2933         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2934         function that perform the offline metadata verification steps.
2936         * metadata-verify.c (verify_typedef_table): Move some checks to
2937         verify_typedef_table_full and make it been called by new function
2938         mono_verifier_verify_full_table_data.
2940         * pedump.c: Call mono_verifier_verify_full_table_data.
2942         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2943         part of the internal API.
2945 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2947         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2948         check.
2950         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2951         flags bits. SupportLastError was confused as bit 7 instead of 6.
2953         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2954         to check against the module ref table instead of module.
2956         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2958         * pedump.c: Call mono_image_load_names.
2960 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2962         * image.c: Extract mono_image_load_names from do_mono_image_load.
2964         * metadata-internals.h: Export mono_image_load_names as part of
2965         the internal API.
2966         
2967 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2969         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2970         first, as it could reference data in the other caches.
2972 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2974         * metadata-verify.c: Finished with method header verification.
2976 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2978         * metadata-verify.c: Added more header verification code.
2979         Now only EH clauses are missing.
2981 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2983         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2984         for return values.
2986 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2988         * metadata-verify.c: Initial method header verification.
2990 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2992         * metadata-verify.c (verify_import_table): The IAT contents
2993         might end been patched by the windows DL when running with
2994         coree enabled.
2996 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2998         * class.c (mono_class_from_typeref): If the enclosing type is not
2999         found return null instead of crashing. Fixes #508487.
3001 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3003         * normalization-tables.h : updated to the latest unicode charcter
3004           data.
3005         * appdomain.c : bump corlib version.
3007 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3009         * class.c (mono_class_from_name): Fix support for assembly references
3010         in the EXPORTEDTYPE table. Fixes #511704.
3012 2009-06-13  Geoff Norton  <gnorton@novell.com>
3014         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3015         assembly in the target domain.
3017 2009-06-12  Robert Jordan  <robertj@gmx.net>
3019         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3020         because "this" of the managed signature has become an
3021         ordinary parameter in the unmanaged signature.
3023 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3025         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3026         field for owner-less generic containers.
3028         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3029         image field of the owner-less generic containers created here.
3031         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3032         contain is ownerless until the caller sets its owner.
3034         * metadata.c (type_in_image): Handle owner-less generic containers
3035         correctly.
3036         
3037 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3039         * image.c (mono_image_close): Support debug_assembly_unload for
3040         dynamic images too.
3042 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3044         * class.c: Fix some typos in comments.
3046 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3048         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3050         * threads.c (mono_thread_execute_interruption): Avoid creating the
3051         abort exception object while holding the synch_cs lock.
3053 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3055         * metadata-verify.c: Verify basic cattr content.
3057 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3059         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3060         nested types.
3061         
3062         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3063         support for nested types. Fixes #511704.
3065 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3067         * metadata-verify.c: Verify methodspec signatures.
3069 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3071         * metadata-verify.c: Verify typespec signatures.
3073 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3075         * metadata.c (free_inflated_method): Call 
3076         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3078 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3080         * mono-config.c: Small change to report the PPC64/ILP32 model.
3082 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3084         * metadata-verify.c (parse_type): Check szarray.
3086 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3088         * metadata-verify.c (parse_type): Check fnptr.
3090 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3092         * metadata-verify.c (parse_type): Check generic instances.
3094 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3096         * metadata-verify.c (parse_type): Check array shape.
3098 2009-06-05  Robert Jordan  <robertj@gmx.net>
3100         * class.c (mono_class_create_from_typedef): Check only for
3101         mscorlib's System.Array.
3103 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3105         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3106         and generic params. 
3108         * metadata-verify.c (parse_field): Check the signature.
3110 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3112         * metadata-verify.c: Implement locals signature check.
3114 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3116         * domain.c: Add .NET 4.0 Beta 1 version.
3118 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3120         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3121           For QueryInterface on CCWs consider the base class
3122           interfaces as well.
3124         Code is contributed under MIT/X11 license.
3126 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3128         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3130         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3131         used.
3133         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3134         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3136         * generic-sharing.c (inflate_other_data): Ditto.
3137         
3138 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3140         * metadata-verify.c: Implement property signature check.
3142 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3144         * sgen-gc.h: Register saving support for PPC.
3146 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3148         * sgen-gc.c: Fixed a pthread TLS screwup.
3150 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3152         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3153         supported.
3155 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3157         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3158         keyword is not supported.
3160 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3162         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3163         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3164         the inflated method is freed. Fixes #508389.
3166         The code is contributed under the MIT/X11 license.
3167         
3168 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3170         * marshal.c (get_wrapper_target_class): New helper function.
3171         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3172         the <Module> class of the image. Fixes #509049.
3174 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3176         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3177         Check if the thread was interrupted and proccess it straight away.
3178         Makes abortion much more responsive.
3180 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3182         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3183         MonoThread::interruption_requested to match it's counterpart.
3185         Fixes a hang in abort-stress-1 on a 2 core x86.
3187         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3188         Fix warning.
3190 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3192         Change MonoImage::name_cache to be protected by the image lock
3193         instead of the loader lock.
3195         * appdomain.c (deregister_reflection_info_roots): Protect access
3196         to name_cache.
3198         * class.c (mono_image_init_name_cache): Change from the loader lock
3199         to the image lock. Check if the cache wasn't already created.
3201         * class.c: Change from the loader to the image lock.
3203         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3204         the code to hold the image lock while iterating over name_cache and
3205         not go into mono_array_new holding it.
3207         * metadata-internals.h: Add a comment about this change.
3209 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3211         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3212         Under the 2.0 profile raise the loader error.
3214         Fixes #508532.
3216 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3218         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3219         of ldind opcode for generic instances so we don't fail for direct wrappers.
3220         This only affect direct calls.
3222 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3224         * reflection.c (create_dynamic_mono_image): Fix warnings.
3226         * generic-sharing.c (other_info_equal): Ditto.
3227         
3228 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3230         * metadata-verify.c: Implement field signature check.
3232 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3234         * metadata-verify.c: Implement standalone signature check.
3236 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3238         * metadata-verify.c: Implement methodref signature check.
3240 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3242         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3243         callbacks supplied by the runtime.
3245         * object.c (mono_install_callbacks): New internal function to install
3246         the callbacks.
3248         * object.c (mono_create_ftnptr): Move the implementation of this to
3249         mini/.
3251         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3253 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3255         * metadata-verify.c (parse_return_type): Proper byref check.
3256         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3257         generic signatures and method params.
3259 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3261         * metadata-verify.c (decode_signature_header): Fix bounds check.
3263         * metadata-verify.c (parse_custom_mods): Check custom mods.
3265         * metadata-verify.c (parse_type): Do initial basic verification
3266         of valid values.
3267         
3268         * metadata-verify.c (is_valid_method_signature): Parse the generic
3269         param count.
3271 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3273         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3274         discarded based on their most specific definition so we set the method_slots
3275         array before checking if the method is acceptable or not.
3277         Fixes #506757.
3279 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3281         * icall.c: Free the old array when resizing a mono_ptr_array.
3283 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3285         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3286         for the hashes whose keys are managed objects.
3288 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3290         * object-internals.h, threads.c: Set the execution context on
3291         thread start here, not in corlib.
3293         * appdomain.c: Bump corlib version.
3295 2009-05-27  Martin Baulig  <martin@ximian.com>
3297         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3298         if `_mono_debug_using_mono_debugger' is set to make things work
3299         properly when embedding Mono.
3301 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3303         * class.c (mono_class_setup_fields): Don't mark simd types as having
3304         16 bytes alignment as the whole runtime doesn't support.
3306 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3308         * metadata-verify.c (safe_read): Use endian safe read macros.
3310 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3312         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3313         it is read-only when using full aot.
3315 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3317         * metadata-verify.c (is_valid_method_signature): Verify parts
3318         of the return type. Provide an error message in case of failure.
3320 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3322         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3324 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3326         * metadata-verify.c: Include the size prefix in the bounds check.
3328 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3330         * icall.c: Remove warnings.
3332         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3333         prevent auto-detection based on GCC defines.
3335         Add PS3
3337         * metadata-verify.c: Do not include signal.h
3339         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3340         messages.  Not sure why the g_assert_not_reached is not enough to
3341         quiet the compiler.
3342         
3344         * appdomain.c: Remove code that is not used when
3345         DISABLE_SHADOW_COPY is set.
3347         * image.c: use g_getenv
3349 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3351         * reflection.c: Remove code that it not used with
3352         DISABLE_REFLECTION_EMIT is defined.
3354 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3356         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3357         invoke wrappers.
3359 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3361         * socket-io.c
3362         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3363         the ifdef here and instead put that on io-layer
3365 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3367         * metadata-verify.c: Verify the generic param constraint table.
3369 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3371         * metadata-verify.c (verify_generic_param_table): Fix
3372         thinko on the valid flags bits for generic params.
3374 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3376         * metadata-verify.c: Verify the methodspec table.
3378 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3380         * metadata-verify.c: Verify the generic param table.
3382 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3384         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3386 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3388         * sgen-gc.c: Use generation enum more consistently and use the
3389         correct generation in mono_gc_register_for_finalization().
3391 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3393         * metadata-verify.c: Verify the nested class table.
3395 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3397         * metadata-verify.c: Verify the manifest resource table.
3399 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3401         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3403 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3405         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3406         wrappers, this is now done in the JIT.
3407         
3408         * class.c (mono_set_generic_sharing_supported): New internal function.
3409         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3411 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3413         * metadata-verify.c: Verify the exported type table.
3415 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3417         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3419 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3421         * metadata-verify.c: Verify the file table.
3423 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3425         * metadata-verify.c (verify_assembly_table): Fix an error message.
3427         * metadata-verify.c: Verify the assemblyref table.
3429 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3431         * metadata-verify.c (verify_assembly_table): Fix the valid
3432         bits mask for flags.
3434 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3436         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3437         generic methods as well.
3439 2009-05-15  Geoff Norton  <gnorton@novell.com>
3441         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3442         use-case and is significantly more performant than the wapi layer.
3444 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3446         * metadata-verify.c: Verify the assembly table.
3448 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3450         * metadata-verify.c: Fix rows limit check.
3452 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3454         * metadata-verify.c: Verify the fieldrva table.
3456 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3458         * sgen.c: Speed up weak links and finalizers by grouping them by
3459         generation.
3461 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3463         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3464         free the old GCHandle (only applies to SGen).
3466 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3468         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3469         mono_metadata_load_generic_params () for non-generic methods.
3471 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3473         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3474         New function for returning a monitor's weak link if it has one.
3476         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3477         one) when clearing a domain.  These can still be around because
3478         the object might not have been collected.
3480 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3482         * gc.c: Fix a warning.
3484 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3486         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3487         prevous wait that resulted in a deadlock on Windows when initializing
3488         the runtime form DllMain. Also results in improved startup time.
3489         (finalizer_thread): Get rid of thread_started_event.
3490         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3491         resulting MonoThread.
3493         Contributed under MIT/X11 license.
3495 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3497         * metadata-verify.c: Verify the implmap table.
3498         Don't require that #US and #Strings be present.
3500 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3502         * security-core-clr.c: Delegate checks are done at creation time,
3503         not a invocation time. Fix exception for Telerik Silverlight demo
3505 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3507         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3508         case for the Thread class.
3510         * threads.c: Do clean-up of abort exception/state in
3511         thread_cleanup() instead of Thread.free_internal().  Also clean up
3512         current_appcontext.  The reason we have to do that is because
3513         those references might point into another domain and if that
3514         domain is unloaded before the thread is finalized, they point to
3515         invalid data.
3517 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3519         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3520         stub signatures.
3521         
3522         Contributed unter MIT/X11 license.
3524 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3526         * verify.c, metadata-verifier.c: Add support for disabling the
3527         verifier in some builds.
3529         [ Sorry, my previous commit accidentally commited some work in
3530         progress ]
3532 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3534         * class.c (mono_class_setup_fields): Set class->field.first for
3535         generic instances.
3537 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3539         * metadata-verify.c: Verify the typespec table.
3541 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3543         * metadata-verify.c: Verify the module table.
3545 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3547         * metadata-verify.c: Verify the methodimpl table.
3549 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3551         * metadata-verify.c: Verify the property table.
3553 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3555         * debug-helpers.c (mono_method_desc_match): Add support for generic
3556         glob patterns.
3558 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3560         * metadata-verify.c: Verify the propertymap table.
3562 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3564         * metadata-verify.c: Verify the event table.
3566         * metadata-verify.c (search_sorted_table): Fix offset
3567         calculation.
3569 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3571         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3573 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3575         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3576         because mono_delegate_free_ftnptr() needs it.
3578 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3580         * metadata-verify.c: Verify the eventmap table.
3582 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3584         * metadata-verify.c: Verify the standalonesig table.
3586 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3588         * metadata-verify.c: Verify the field layout table.
3590 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3592         * class.c (mono_type_get_name_recurse): Don't crash
3593         for ownerless generic params.
3595         * debug-helpers.c (mono_type_get_desc): Correct the format
3596         for ownerless generic params.
3598 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3600         * metadata-verify.c: Verify the class layout table.
3602 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3604         * metadata-verify.c: Verify the decl security table.
3606 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3608         * domain.c (mono_domain_set_internal_with_options): Don't do
3609         anything if the old domain is the same as the old one.  Fixes
3610         #499326.
3612 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3614         * appdomain.c: Deregister the reflection_info roots when unloading
3615         a domain.
3617         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3618         memory allocated by a domain and frees its disappearing links.
3620         * boehm-gc.c, null-gc.c: Empty implementation of
3621         mono_gc_clear_domain().
3623 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3625         * appdomain.c (clear_cached_vtable): Free the static fields memory
3626         block.
3628 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3630         * gc.c: Set the correct domain when invoking finalizers.
3632         * appdomain.c: Set the correct domain when creating threads.
3634 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3636         * sgen-gc.c: Fix skip size for vectors.
3638 2009-05-03  Martin Baulig  <martin@ximian.com>
3640         * mono-debug-debugger.c
3641         (mono_debugger_check_breakpoints): Check class init handlers even
3642         if we don't have any method load handers.
3644 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3646         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3647         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3649 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3651         * metadata-verify.c: Verify the field marshal table.
3653 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3655         * metadata-verify.c: Verify the custom attribute table.
3657 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3659         * metadata-verify.c: Verify the constant table.
3661 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3663         * metadata-verify.c: Verify the memberef table.
3665 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3667         * metadata-verify.c (get_coded_index_token): Remove
3668         dead argument.
3670 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3672         * metadata-verify.c: Verify the interfaceimpl table.
3674 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3676         * verify.c: Improve error message.
3678         * debug-helpers.c (mono_type_get_desc): Harden the code that
3679         deals with VAR and MVAR.
3681 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3683         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3684         part of #498692.
3686 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3688         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3689         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3691 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3693         * security-core-clr.c: Avoid redundant checks for platform code, 
3694         e.g. check for method and for class (very common) and check
3695         for class and outer class (less common)...
3697 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3699         * reflection.c: Avoid returning random cattrs for synthetic methods.
3700         Fixes #498545.
3702 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3704         * assembly.c: assemblies in the GAC should never be shadow-copied.
3706 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3708         * domain.c, domain-internals.h: Disable
3709         track_resurrection_{objects,handles}_hash in MonoDomain if using
3710         SGen.
3712 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3714         * metadata-verify.c: Verify the param table.
3716 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3718         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3719         MethodList.
3721         * metadata-verify.c (verify_method_table): Proper check the ParamList
3722         field.
3724 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3726         * metadata-verify.c (verify_method_table): Check for runtime
3727         implemented functions such as delegate .ctors. Remove spurious
3728         printf.
3729         
3730 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3732         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3734 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3736         Don't allocate MonoGenericInfo for ownerless generic params.
3737         * class-internals.h (MonoGenericParam::info): Move field to ...
3738         (MonoGenericParamFull): ... this.  New struct.
3739         (MonoGenericContainer::type_params): Change type to
3740         MonoGenericParamFull.
3741         (MonoGenericParam, MonoGenericContainer): Update accessors.
3742         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3743         'info' field for ownerless generic param.
3744         (mono_metadata_load_generic_params): Update to changes.
3745         * reflection.c (mono_reflection_create_generic_class): Likewise.
3746         (reflection_methodbuilder_to_mono_method): Likewise.
3747         (mono_reflection_initialize_generic_parameter): Likewise.
3749 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3751         Don't use MonoGenericParamInfo for ownerless generic params.
3752         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3753         use ParamInfo class at all.
3754         (mono_class_from_generic_parameter): Use them.
3755         (make_generic_param_class): Fix a couple of instances where 'pinfo
3756         == NULL' wasn't handle.
3758 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3760         * class.c (make_generic_param_class): Carve out of ...
3761         (mono_class_from_generic_parameter): ... here.
3763 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3765         Simplify mono_class_from_generic_parameter
3766         * class-internals.h (MonoGenericParamInfo::token): New field.
3767         * metadata.c (mono_metadata_load_generic_params): Initialize it
3768         from metadata.
3769         * class.c (mono_class_from_generic_parameter): Use it instead of
3770         searching through metadata.
3772 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3774         * metadata-verify.c: Add verification of the method table.
3776 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3778         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3779         Delegate::Invoke optimization.
3781 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3783         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3784         string returned by get_shadow_assembly_location_base.
3786         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3787         about caller's ownership.
3789 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3791         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3792         reflection memory on domain unload.
3794         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3795         reflection cleanup code do it.
3797         * domain-internals.h: Add mono_reflection_cleanup_domain.
3799         This fixes a memory leak for managed mirrors of reflection objects
3800         on domain unload. 
3802 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3804         * metadata-verify.c: Implement more verification of the field table.
3806 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3808         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3809         doesn't try to parse the input assembly, which can be broken.
3811 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3813         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3814         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3815         by using the lowest bit in the link to store whether the link is
3816         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3818 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3820         * Makefile.am: Split the console support in platform specific code
3821         and put together a framework for making this easy in the future so
3822         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3824 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3826         * pedump.c: Fix a warning.
3828 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3830         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3831         mono_class_from_mono_type to avoid bad interactions with the dual representation
3832         of the generic type definition.
3834 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3836         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3837         get the MonoClass for the call context type as it might be a generic
3838         instance.
3840         Fixes #491483.
3842 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3844         * object-internals.h: The Thread object has no execution_context
3845         member anymore.
3847         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3848         the execution context.
3850         * appdomain.c: Bump corlib version.
3852 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3854         * verify.c (do_newobj): Improve error message.
3856 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3858         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3859         is nested in the filter block.
3861         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3862         block is not fully nested.
3864         Fixes #495656.
3866 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3868         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3869         not MonoType to check for equality of valuetypes as the generic type
3870         definition allows for two different encodings: the generic type definition
3871         class or a generic instance over the GTD arguments.
3873         Fixes #496175.
3875 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3877         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3879         * verify.c (do_initobj): Improve error message.
3881 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3883         * metadata-verify.c: Enable pe verification as the issue with #496453
3884         is that the authenticode data directory have a different unspecified
3885         format. Ignore it for now.
3887         * pedump.c: Run the metadata verifier together with the IL verifier.
3889         Fixes ##496453.
3891 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3893         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3895 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3897         * class.c (can_access_type): Check visibility against
3898         the element type for pointers and arrays.
3900         Fixes #496150.
3902 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3904         * metadata-verify.c: Fix cli and table verification to use information
3905         from the MonoImage. A lot of duplicated code got killed.
3907 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3910         This patch starts to integrate the metadata verifier with the runtime code.
3912         This patch causes major regression in functionality for the metadata verifier
3913         as cli and table verification are disabled since they require to be ported to
3914         use MonoImage information.
3916         * image.c (do_mono_image_load): Split the code in this function
3917         into mono_image_load_pe_data and mono_image_load_cli_data.
3918         Add     care_about_pecoff parameter to not load pecoff data.
3919         Call into the metadata verifier for pecoff and cli verification.
3921         * image.c (mono_image_open_raw): New function that doesn't perform
3922         any parsing of the image contents.
3923         
3924         The reason for the 3 new functions is to give pedump better control
3925         into the interaction with the verifier.
3927         * metadata-internals.h: Add new functions from image.c as part of the
3928         internal mono API.
3930         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3931         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3932         to make those functions work together with the runtime.
3934         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3935         true if the image needs to be verified.
3937         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3939         * pedump.c: Use new metadata verifier API.
3941 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3943         * object.c (mono_install_vtable_trampoline): Make this receive a
3944         trampoline creation function instead of trampoline, allowing the JIT
3945         to use a different trampoline for each vtable.
3947 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3949         * object.c (mono_raise_exception): Don't reset the thread abort
3950         exception state here.
3952 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3954         * icall-def.h: New icall for getting the thread abort exception
3955         state for a thread.
3957         * object.c, thread.c, object-internals.h: A thread's abort
3958         exception state is now a GC handle.  To get the object it stands
3959         for, we must move it into the current app domain, if it's
3960         different than the one where it originated from.
3962         * appdomain.c: Bump corlib version.
3964         * domain.c, domain-internals.h: New function for setting the
3965         domain and migrate the thread abort exception or not.
3967 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3969         * metadata-verify.c: Add initial verification of the
3970         field table.
3972 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3974         * metadata-verify.c: Add a macro to conditionally enable
3975         dumping of verification information. Add  make_coded_token
3976         and search_sorted_table to enable search sorted tables
3977         by a given coded token.
3979 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3981         * metadata-verify.c: Add array mapping from table index
3982         to description offset. Add get_col_offset and get_col_size
3983         functions.
3985 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3987         * metadata-verify.c: Add remaining table descriptions offsets.
3988         Add remaining coded index descriptions.
3990 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3992         * metadata-verify.c: Fixed constant table description.
3993         Fixed calculation of HasCustomAttribute coded index size.
3994         Fixed calculation of size for many table indexes. 
3996 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3998         * pedump.c (dump_metadata): Dump table offset instead
3999         of useless pointer in memory.
4001 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4003         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4005 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4007         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4008         a missing of for interface types.
4010 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4012         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4013         the code is commented.
4015         * metadata-verify.c (verify_resources_table): Remove spurious printf
4016         and don't fail if there are unmanaged resources. Gmcs generates a useless
4017         one     for all assemblies - I bet it's some MS compatibility junk.
4019 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4021         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4023         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4025         * verify-internals.h: Same.
4027         * pedump.c: Fix for mono_image_verify new signature.
4029 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4031         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4032         flags combinations.
4034 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4036         * metadata-verify.c (verify_module_table): Ignore the generation field.
4038 2009-04-15  Martin Baulig  <martin@ximian.com>
4040         * debug-mono-symfile.c
4041         (mono_debug_symfile_lookup_location): Don't print a warning for
4042         unknown extended opcodes if they're within 0x40 and 0x7f.
4044 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4046         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4047         invoke signatures returning an enum. Fixes #494847.
4049 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4051         * metadata-verify.c: Initial code to verify the typedef table.
4053 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4055         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4056         with non empty stack happens before the beginning of a try block.
4058         Fixes #494812.
4060 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4062         * metadata-verify.c: Verify typename and typenamespace fields of
4063         the typeref table.
4065 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4067         * metadata-verify.c: Initial code to verify the typeref table.
4069 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4071         * verify.c (verify_delegate_compatibility): Fix error message.
4073 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4075         * security-core-clr.c: Fix typo
4077 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4079         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4080         a MonoGHashTable to keep its values alive.
4081         (emit_marshal_boolean): Fix a warning.
4083 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4085         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4086         not have any interface configured for IPv4/IPv6.
4088 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4090         * assembly.c: fix typo in error message.
4092 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4094         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4095         allocating the location holding the this argument to prevent
4096         'too many root sets' errors.
4098         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4099         to mark fields as special static.
4100         (mono_field_static_get_value): Handle special static fields.
4101         (mono_field_static_set_value): Ditto.
4103         * class-internals.h (struct _MonoClassField): Document this.
4105 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4107         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4108           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4109           case.  This will handle when managed code returns null to native code.
4111         Code is contributed under MIT/X11 license.
4113 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4115         * object.c (build_imt_slots): Changing a free to a g_free to match
4116           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4118         Code is contributed under MIT/X11 license.
4120 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4122         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4123           the correct TRUE value is passed through the marshaling layer.
4125         Code is contributed under MIT/X11 license.
4127 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4129         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4130         correctly. Fixes #492330.
4131         
4132         * marshal.c: Fix the embedding of object pointers into JITted code in
4133         the native-to-managed wrappers by allocating some GC tracked memory, and
4134         embedding the address of that.
4136 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4138         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4139         pointers into the vtable.
4141 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4143         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4145         * verify.c (verify_ldftn_delegate): Improve error message.
4147 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4149         * reflection.c (my_mono_class_from_mono_type): Remove.
4151 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4153         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4154         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4155         and constraints fields into ...
4156         (MonoGenericParamInfo): ... this.
4157         (mono_generic_param_info, mono_generic_container_get_param_info):
4158         New accessors.
4159         * class.c, debug-helpers.c, icall.c: Update to changes.
4160         * metadata.c, reflection.c, verify.c: Likewise.
4162 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4164         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4166         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4167         
4168         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4169         booleans with sbytes.
4171 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4173         * class.c (can_access_instantiation): Verify accesibility of element types
4174         for arrays and pointers.
4176         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4178         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4180         Fixes #493068.
4182 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4184         * verify.c (do_invoke_method): Improve error messages.
4186 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4188         * verify.c:  Fixing the MSVC build.
4190         Code is contributed under MIT/X11 license.
4192 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4194         * security-core-clr.c: Simplify get_reflection_caller not to call
4195         mono_method_get_last_managed (another stack walk) and adjust the
4196         callers to handle a (should not happen) NULL return value.
4198 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4200         Add accessors to some MonoGenericParam fields
4201         * class-internals.h (mono_generic_param_owner): New accessor.
4202         (mono_generic_param_num): Likewise.
4203         (mono_type_get_generic_param_owner): New helper.
4204         (mono_type_get_generic_param_num): New helper.
4205         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4207 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4209         * class-internals.h (mono_generic_container_get_param): New wrapper.
4210         * class.c, icall.c, metadata.c, verify.c: Use it.
4212 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4214         Fix gtest-252.cs
4215         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4216         the standard case/loop.  In particular, don't complain about
4217         references to generic type definitions.
4219 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4221         * debug-helpers.c (dis_one): Decode string arguments.
4223 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4225         * pedump.c (dump_verify_info): Dump type name correctly.
4227 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4229         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4230         are larger than code size.
4232         This can happen in valid code if the try/catch block is not followed by any instruction
4233         and do a backward branch on the leave instruction.
4235         Fixes #492494.
4237 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4239         * security-core-clr.c: Fix typo while comparing second method names
4240         in can_avoid_corlib_reflection_delegate_optimization
4242 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4244         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4246         Fixes #487738.
4248 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4250         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4251         a MVAR using a class context.
4253         Fixes #490335.
4255 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4257         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4259         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4261         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4262         functions supplied by the JIT for the SGEN GC.
4264         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4265         
4266 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4268         monitor.c (mono_monitor_try_enter_internal):
4269         Added calls to profile monitor contentions.
4270         Also duplicated a small piece of code (the "get the monitor" logic)
4271         from the fast path to the slow path, and changed the relevant goto
4272         statements, so that monitor acquisition events can be emitted from the
4273         slow path (this is by Paolo Molaro).
4275 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4277         * profiler.c, profiler.h, profiler-private.h:
4278         Added support for profiling monitor contentions.
4280 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4282         * metadata-verify.c: Verify the modules table.
4284 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4286         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4287         using the context of the method been verifier and not of the method been called.
4289         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4290         safely inflate generic types. 
4292 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4294         * security-core-clr.c: Change the strategy for checking the 
4295         "reflection using delegates optimization" to avoid unneeded 
4296         attributes in multiple class libraries.
4298 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4300         * sgen-gc.c: Remove object element in the disappearing link struct
4301         by storing the object pointer in the link.
4303 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4305         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4307 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4309         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4311         * verify.c (mono_method_verify): Do proper bounds checking of exception
4312         clause ranges.
4314 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4316         * loader.c (mono_field_from_token): Don't crash if the field parent could
4317         not be decoded.
4319 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4321         * sgen-gc.c: Execute critical finalizers after ordinary
4322         finalizers.
4324         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4325         mono_defaults.
4327 2009-03-31 Jb Evain <jbevain@novell.com>
4329         * verify.c (do_ldstr): don't check if a string is in the user strings
4330         heap if the current image is dynamic.
4332 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4334         * sgen-gc.c: Wait until the last finalizer has executed when
4335         returning from WaitForPendingFinalizers.
4337 2009-03-31  Martin Baulig  <martin@ximian.com>
4339         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4340         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4341         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4342         (mono_debugger_event_create_appdomain): New function.
4343         (mono_debugger_event_unload_appdomain): New function.
4345         * appdomain.c (mono_domain_create_appdomain_internal): Call
4346         mono_debugger_event_create_appdomain().
4348 2009-03-31  Martin Baulig  <martin@ximian.com>
4350         * mono-debug-debugger.c
4351         (mono_debugger_register_class_init_callback): Also register the
4352         class init callback if the class is already initialized to make
4353         things work with shadow copied assemblies.
4355 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4357         * security-core-clr.c
4358         (mono_security_core_clr_ensure_reflection_access_field): Let 
4359         critical code access the field (just like we do for methods). Use
4360         check_field_access helper.
4361         (mono_security_core_clr_ensure_reflection_access_method): Use 
4362         check_field_access helper.
4364 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4366         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4367         call the run-finalize function directly.
4369         * gc.c, gc-internal.h: Make run_finalize() non-static.
4371 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4373         * sgen-gc.c: Use a separate struct for disappearing links.
4375 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4377         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4378         * MaxIOVectorLength enabled, just ignore them.
4379         Fixes bug #349688.
4381 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4383         * metadata-verify.c: Fix eglib build.
4385 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4387         * threads-types.h: Fix the win32 build.
4389 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4391         * class.c: move coreclr inheritance/override checks to 
4392         security-core.clr.c
4393         * security-core.clr.c|h: add code from class.c with additional
4394         documentation. Fix override check when the method is not critical.
4396 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4398         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4399         (match_class): Ditto.
4401 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4403         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4405         * metadata-verify.c: Implement table layout row size calculation. Verify
4406         the total size of the tables.
4408 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4410         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4412 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4414         * appdomain.c:
4415         * console-io.[ch]: added new mono_console_init() to make sure that
4416         file descriptors 0, 1 and 2 are opened.
4417         Bug #489019 fixed.
4419 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4421         * appdomain.h: Export a new callback type and a new function to
4422         set this callback. This allow a mono host to provide it's own
4423         definition for "platform code".
4424         * metadata-internals.h: Add a core_clr_platform_code flag on 
4425         _MonoImage to (cache and) know if it is representing platform 
4426         code.
4427         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4428         on platform code images.
4429         * security-core-clr.c|h 
4430         (mono_security_set_core_clr_platform_callback): Allow the host
4431         to provide it's own platform check definition.
4432         (mono_security_core_clr_determine_platform_image): Detect if an 
4433         image is platform code (using the specified callback).
4434         (mono_security_core_clr_is_platform_image): Return cached value 
4435         for platform code.
4437 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4439         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4440         which has different parameter types for the 'tid' argument in windows and
4441         the io-layer.
4443         * appdomain.c attach.c threads.c: Use the new helper.
4445 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4447         * metadata-verify.c: Verify valid table bits.
4449 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4451         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4453         * metadata-verify.c: Add initial table schema verification.
4455 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4457         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4458         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4459         #488383.
4461         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4463         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4465 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4467         * security-core-clr.c: Add/update documentation
4469 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4471         * marshal.c (emit_marshal_object): Generate code to throw an exception
4472         instead of throwing it. Fixes #488670.
4474 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4476         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4477         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4478         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4479         and add a call to mono_security_core_clr_ensure_delegate_creation
4480         to do the extra checks required by CoreCLR.
4481         * security-core-clr.c|h: Add function to check delegate creation,
4482         both in the binding and accessibility, under CoreCLR.
4484 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4486         * reflection.c (mono_reflection_create_dynamic_method): when 
4487         coreclr is enabled make sure that every resolved object are
4488         checked (e.g. field and method access).
4489         * security-core-clr.c|h: Add function to check objects resolved
4490         when a dynamic method is created.
4492 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4494         * metadata-verify.c: Cache directory rva translations.
4496         * metadata-verify.c: Add cli-header and streams verification.
4498 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4500         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4501         the wrong offset (8 instead of 6).
4503 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4505         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4506         methods, return the native function address itself. Fixes
4507         #487758.
4509 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4511         * console-io.c: some of the values for control characters might not be
4512         present.
4514 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4516         * exception.c|h: Add helpers to create [Field|Method]AccessException
4517         * icall.c: Add required coreclr check calls for field reflection.
4518         Move the existing (method) check logic into security-core-clr.c
4519         * security-core-clr.c: Add functions to check if the access of a
4520         field or method is allowed when reflecting under coreclr. This is
4521         mostly done using a stack walk to find the "real" caller: i.e. the
4522         code that is calling the reflection
4524 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4526         * gc-internal.h: Change location of gc_wrapper.h
4528 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4530         * class.c: Simplification to coreclr checks for overrides that
4531         makes it easier to set breakpoints.
4533 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4535         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4536         mono_security_core_clr_method_level): Avoid potential 
4537         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4538         user/application code) and make it easier to set breakpoints
4540 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4542         * metadata-verify.c: Reject cli header tables that mono don't handle.
4544 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4546         * pedump.c: Fix CLI header dumping.
4548 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4550         * metadata-verify.c: More CLI header verification.
4552 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4554         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4556 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4558         * metadata-verify.c: Initial verification of the CLI header.
4560 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4562         * metadata-verify.c (verify_resources_table): Fix verification of zero
4563         sized resource section and id entries count.
4565 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4567         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4569 2009-03-17  Jb Evain  <jbevain@novell.com>
4571         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4573 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4575         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4576         (mono_gc_make_descr_for_array): Ditto.
4578 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4580         * verify.c (mono_verifier_is_class_full_trust): Add support for
4581         CoreCLR security mode where trusted assemblies are defined as
4582         "platform code".
4584 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4586         * metadata-verify.c: Add minimal PECOFF resource verification.
4588 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4590         * metadata-verify.c: Be less restrictive with some coff fields.
4592 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4594         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4595         params as boxed values on stack. Fixes #485706.
4597 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4599         * console-io.c: the termios values may vary in different flavors of unix.
4601 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4603         * console-io.[ch]: return the entire set of control characters when
4604         initializing the terminal.
4605         * appdomain.c: bump corlib version.
4607 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4609         * mono-perfcounters.c: added support for in-process custom
4610         performance counters.
4612 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4614         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4616 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4618         * metadata-verify.c: Verify the data pointed by the import table. 
4620 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4622         * metadata-verify.c (load_data_directories): Store data
4623         directory contents.
4625         * metadata-verify.c: Verify the import table. 
4627 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4629         * metadata-verify.c: Verify data directories.
4631 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4633         * metadata-verify.c: Check section header flags.
4635 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4637         * appdomain.c: if the assembly name is a shadow-copied file, return
4638         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4639         in mono_make_shadow_copy.
4640         * icall.c: if the assembly name is a shadow-copied file, replace it
4641         with the original assembly path.
4643         Bug #484244 fixed. NUnit tests for corlib can be run without
4644         --noshadow now.
4646 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4648         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4649         entries when the table is reallocated.
4651         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4652         mono_gc_alloc_fixed () since it contains GC refs.
4654 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4656         * reflection.c (ensure_complete_type): New helper function to call
4657         type resolve handlers for unfinished dynamic types.
4658         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4660 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4662         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4663         #483247.
4665 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4667         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4669 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4671         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4672         between GCHandles of type WeakTrackResurrection and the objects they
4673         point to.
4675         * gc.c: Partly implement the sematics of GCHandles of type 
4676         WeakTrackResurrection: these handles should only be cleared after the
4677         finalizer of the object they are pointing to has ran.
4679 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4681         * icall.c: Partially revert r126631 because using the jump
4682         trampolines for generic shared methods makes it superfluous.
4684 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4686         * threads.c (handle_store): Create the 'threads' hash table with the proper
4687         MONO_HASH_VALUE_GC type.
4689 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4691         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4692         FIRST_GC_TRACKED.
4694         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4695         and LAST_GC_TRACKED as a GC root.
4697         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4699         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4700         the static data even if it consists of 1 reference.
4702         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4703         if there is a GC descriptor.
4705         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4706         instead of through the GC since they contain no object references.
4708 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4710         * generic-sharing.c (instantiate_other_info): Always return a jump
4711         trampoline for method code.
4713 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4715         * culture-info-tables.h: generated to include the en-tt culture.
4717 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4719         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4720         capture the thread context.
4722         * object.c (mono_async_result_new): Cache the invoke wrappers to
4723         ExecutionContext::Capture.
4725 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4727         * marshal.h: Add a prototype for what mono_compile_method returns
4728         for invoke wrappers.
4730         * gc.c: Use the new prototype declaration.
4732 2009-03-04  Geoff Norton  <gnorton@novell.com>
4734         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4735         * gc-internal.h:
4736         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4738 2009-03-04  Martin Baulig  <martin@ximian.com>
4740         * mono-debug.h
4741         (mono_debugger_runtime_invoke): Removed.
4743         * mono-debug-debugger.c
4744         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4746 2009-03-02  Martin Baulig  <martin@ximian.com>
4748         * mono-debug.h
4749         (mono_debugger_unhandled_exception): Removed.
4750         (mono_debugger_handle_exception): Removed.
4751         (mono_debugger_throw_exception): Removed.
4753         * mono-debug.c
4754         (mono_debug_debugger_version): Bump to 5.
4756         * mono-debug-debugger.c: Moved the exception handling code to
4757         ../mini/debug-mini.c
4759 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4761         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4762         finalize_objects_hash.
4764         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4765         
4766         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4767         field.
4769         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4770         cache.
4772         * image.c (mono_image_close): Free it.
4773         
4774         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4775         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4776         on the this argument.
4778         * gc.c (run_finalize): Optimize the calling of the finalizers.
4780 2009-03-03  Martin Baulig  <martin@ximian.com>
4782         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4783         of the `MonoGenericInst' changes.
4785 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4787         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4788         mono_array_class_get_cached to reduce locking contention. Extract
4789         a domain var.
4791         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4792         intermediary managed arrays. Use caching version of mono_array_new
4793         to allocate the result array.
4795         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4797         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4799         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4800         to reduce locking contention.
4802 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4803                 
4804         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4805         thunk builder code for the non-interface case.
4807 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4809         * object.c (get_generic_virtual_entries): New helper function to collect
4810         the virtual generic method instances which need to be added to an IMT
4811         thunk.
4812         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4813         Instead of creating a new IMT thunk, reset the vtable slot to the
4814         trampoline, the thunk will be created the next time the trampoline is called.
4815         (build_imt_slots): Add support for virtual generic methods in interfaces by
4816         adding to the IMT thunk all the methods registered using 
4817         mono_method_add_generic_virtual_invocation ().
4819         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4820         (struct _MonoIMTCheckItem): Ditto.
4822         * object.c (mono_method_add_generic_virtual_invocation): Take a
4823         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4824         the IMT thunk to include all items.
4825         
4826         * object.c (mono_class_create_runtime_vtable): Add a missing
4827         mono_loader_unlock ().
4829 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4831         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4833         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4835 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4837         * object-internals.h: Rename _MonoReflectionEvent to
4838         MonoReflectionMonoEvent so it reflects the right managed type.
4839         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4841         * icall.c:
4842         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4843         type.
4845 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4847         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4848         intermediary managed arrays. Use caching version of mono_array_new
4849         to allocate the result array.
4851 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4853         * reflection.c: Use cached version of mono_array_new alongside
4854         the mono_reflection_get_custom_attrs_by_type call path.
4856 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4858         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4859         intermediary managed arrays. Use caching version of mono_array_new
4860         to allocate the result array.
4862         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4864 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4866         * icall.c: Add small implementation of a growable stack bound array.
4868         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4870         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4871         intermediary managed arrays. Use caching version of mono_array_new
4872         to allocate the result array.
4874 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4876         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4877         helps Enum::CompareTo to be implemented without reboxing all enums
4878         to their underlying type.
4879 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4881         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4882         since it acquires a global lock leading to scalability problems.
4884         * profiler.c: Make the stat profiler work with multiple appdomains, this
4885         currently only works when no appdomains are unloaded.
4887 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4889         * appdomain.c: make the check to avoid copying when the assembly is
4890         already shadow copied actually work.
4892 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4894         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4896         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4897         changes to the managed side.
4899 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4901         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4902         classes + a separate lock for it, as it is used frequently at runtime, not
4903         just during metadata loading/JIT compilation.
4905         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4906         for szarrays.
4907         
4908         * object-internals.h (mono_class_from_name_cached): New macro to cache
4909         the results of the lookup locally without having to declare a static
4910         variable to hold it.
4911         (mono_class_get_field_from_name_cached): Ditto.
4912         (mono_array_class_get_cached): Ditto.
4914         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4915         the new macros.
4916         
4917         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4918         slower search in metadata.
4920         * pedump.c: Fix a warning.
4922 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4924         * reflection.c (encode_locals): Add checks for user types.
4925         (method_encode_clauses): Ditto.
4926         (method_encode_code): Ditto.
4927         (mono_image_create_token): Ditto.
4929         * object-internals.h: Change the type of more fields from MonoReflectionType*
4930         to MonoObject*.
4932 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4934         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4935         the a thread does not suspend within 100ms.
4937         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4938         in addition to StopRequested as well.
4940         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4942         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4943         search the method_hash before inserting a new entry, to avoid crashes when
4944         the same method is inserted multiple times, causing the old 
4945         MonoDebugMethodInfo structure to be freed by the value dtor function.
4947 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4949         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4950         SO_EXLUSIVEADDRUSE where available.
4952 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4954         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4955         runtime invoke wrappers, this time it is string ctor wrappers, which
4956         pass a dummy string as 'this' instead of their obj argument. Fixes
4957         #478473.
4959 2009-02-21  Jb Evain  <jbevain@novell.com>
4961         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4962         only get create_culture once.
4964 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4966         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4967         check before the locking.
4968         
4969         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4970         (mono_reflection_create_runtime_class): Ditto.
4971         (mono_reflection_sighelper_get_signature_local): Ditto.
4972         (mono_reflection_sighelper_get_signature_field): Ditto.
4974         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4975         is a System.MonoType object or similar.
4976         (monotype_cast): New helper function to cast a MonoObject to a 
4977         MonoReflectionType object.
4979         * object-internals.h: Change MonoReflectionType* members in structures to
4980         MonoObject* members to force the usage of the monotype_cast () function.
4982         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4983         structures/arrays. This causes us to assert instead of crashing when 
4984         instances of user defined subclasses of System.Type are encountered.
4986 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4988         * cil-coff.h:
4989         * icall-def.h:
4990         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4991         win32 resource loaded from a PE file.
4993         * image.c: fix mono_image_lookup_resource.
4995 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4997         * icall-def.h:
4998         * threads-types.h:
4999         * threads.c: added internal call for WaitHandle.SignalAndWait.
5001 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5003         * cominterop.c : Adding cominterop_type_from_handle and 
5004           registering it as an icall.  Replacing all references
5005           to type_from_handle.
5007         Code is contributed under MIT/X11 license.
5009 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5011         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5013         * appdomain.c: Call the tracer init function.
5015         * domain-internals.h: Enable the tracer for the domain locks.
5017         * image.c: Enable the tracer for image locks.
5019         * loader.c: Enable the trace for the loader lock.
5021         * lock-tracer.h:
5022         * lock-tracer.c: Initial implementation of the lock trace utility.
5023         The tracer requires a compile time define to be enabled and a env var
5024         to be enabled at runtime.
5026 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5028         * domain.c (mono_domain_code_foreach): Improve documentation.
5030 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5032         * appdomain.c:
5033         * generic-sharing.c:
5034         * object.c:
5035         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5036         comes first.
5038 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5040         * domain.c: Add mono_domain_code_* functions that perform locking
5041         around the domain codeman.
5043         * domain-internals.h: Export those functions.
5045         * object.c: Use new functions instead of acquiring the domain lock.
5047 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5049         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5050         delegate. Fixes #477396.
5052 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5054         * reflection.c (create_custom_attr): Get rid of alloca.
5056 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5058         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5059           Adding exception handling for all CCW calls.
5061         Code is contributed under MIT/X11 license.
5063 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5065         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5067         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5068         native->managed marshalling code. Fixes #476247.
5070 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5072         * class.c (mono_class_get_vtable_entry): Move the addition of
5073         static rgctx invoke wrappers for vtable methods here, this simplifies
5074         a lot of code and causes fewer rgctx wrappers to be created.
5076         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5077         name of the statistics to begin with an uppercase.
5079 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5081         * reflection.c: Revert previous change as it breaks the build.
5082         
5083 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5085         * verify.c: Properly handle SZARRAY element type.
5087         Fixes #474271.
5089 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5091         * reflection.c (mono_image_create_method_token): Correctly encode
5092         MethodDef MemberRefParent token.
5094         Fixes #472845.
5096 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5098         * image.c (mono_image_close): Delete the critical section before
5099         freeing the memory holding it.
5101 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5103         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5104         Fixes #476257.
5106 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5108         * pedump.c (main): Call mono_marshal_init so pedump
5109         doesn't crash.
5111 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5113         * loader.c (method_from_memberref): Properly fix #474271 and
5114         don't break the runtime bad.
5116 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5118         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5119         (mono_domain_alloc0): Ditto.
5121 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5123         * loader.c (method_from_memberref): Don't abort if the array
5124         method is not found. A regular loader failure is more informative
5125         and correct.
5127         Fixes #474271.
5129 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5131         *loader.c: Guard MonoImage::method_cache/methodref_cache
5132         using the image lock instead of the loader lock.
5134         * metadata.h: Add comments about which fields are protected by
5135         the image lock.
5137 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5139         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5141         * generic-sharing.c (mono_method_construct_object_context): Remove the
5142         wrapper_type == NONE assert, it is not needed.
5144 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5146         * reflection.c (clear_cached_object): New helper function.
5147         (mono_method_clear_object): New function to clear the cached reflection
5148         objects for a dynamic method.
5150         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5151         Partly fixes # 463323.
5152         
5153 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5155         * class.c:
5156         * loader.c:
5157         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5159 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5161         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5162         take the image lock instead of the loader lock.
5164         * metadata-internals.h: Export new functions.
5166 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5168         * domain.c (app_config_parse): Remove another use of stat that is
5169         not necessary as g_file_get_contents already does the presence
5170         check. 
5172 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5174         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5176         * marshal.c: Move the bstr handling code to cominterop.c.
5178         * marshal.c: Remove some COM interop code missed previously.
5180 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5182         More Paolo patches from the Wii port:
5183         
5184         * security.c: Remove ves_icall_System_Environment_get_UserName
5185         from here.
5187         * icall.c: And put ves_icall_System_Environment_get_UserName
5188         here. 
5190         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5191         redundant call to stat that was only used to test for the file
5192         existence.   Patch from Paolo.
5194         * gc.c (run_finalize): If COM is disabled, do not link in
5195         mono_marshal_free_ccw.
5197         * generic-sharing.c: Use alloca.h here as well.
5199 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5201         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5203 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5205         * cominterop.c cominterop.h: New files.
5207         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5208         function/typedefs which are needed by cominterop.c global.
5210 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5212         * generic-sharing.c: Don't take the loader lock to guard image
5213         mempool allocs.
5215 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5217         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5218         called without the loader lock which is required to guard MonoImage:tokens.
5220 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5222         * class.c:
5223         * metadata.c:
5224         * method-builder.c:
5225         * marshal.c:
5226         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5228 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5230         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5231         Rework the code to use regular mono_image_alloc/0.
5233         * loader.c: Rework the code to use regular mono_image_alloc/0.
5235         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5237 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5239         * object-internals.h : Fixing a typo in the 
5240           MonoReflectionComVisibleAttribute struct.
5242         * marshal.c (cominterop_com_visible): Check the implemented 
5243           interfaces for ComImport.
5245         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5246           assume that bools should be treated as VARIANTBOOLs.
5248         * marshal.c (emit_marshal_boolean): Adding cases for 
5249           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5251         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5252           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5254         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5255           should be treated as VARIANTBOOLs.    
5257         Code is contributed under MIT/X11 license.
5259 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5261         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5262         allocation with the image lock.
5264 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5266         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5267         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5269         * object.c: Add mono_string_to_utf8_image.
5271         * object-internals.h: Export mono_string_to_utf8_image.
5273         * reflection.c: Rework all explicit references to the the image mempool to go thought
5274         the mono_image_alloc set of functions.
5276 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5278         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5279         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5280         and generics-sharing.c.
5282         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5283         as first argument. Note that this function remains broken as it doesn't perform locking around the
5284         mempool allocation.
5286         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5288         * image.c: Add g_slist_append_image.
5290         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5291         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5293         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5294         Fix all related code to do the same.
5296         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5298         * metadata-internals.h: Fix the signatures.
5300 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5302         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5303         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5304         and similar to work using MonoImage.
5306         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5307         MonoMemPool.
5309         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5311         * class.c (mono_metadata_signature_deep_dup): Same.
5313         * class.c (inflate_generic_type): Same.
5315         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5317         * metadata.c (mono_metadata_signature_dup_full): Same.
5319         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5320         mono_metadata_signature_dup_full.
5322         * metadata.c (mono_metadata_type_dup): Same.
5324         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5326         * reflection.c: Same.
5328         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5330         * metadata-internals.h: Fix the signatures.
5332         * class-internals.h: Same.
5334 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5336         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5337         and use mono_image_alloc set of functions instead. 
5339         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5340         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5341         of a MonoMemPool.
5343         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5345         * class.c (g_list_prepend_mempool): Removed.
5347         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5349         * image.c: Add g_list_prepend_image.
5351         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5353         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5356 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5358         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5359         mono_image_unlock.
5361         * image.c (mono_image_init): Init the lock field.
5363         * image.c (mono_image_init): Cleanup the lock field.
5365         * image.c: Add mono_image_(un)lock functions.
5367 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5369         * class.c, class-internals.h: mono_method_get_context_general()
5370         combines the functionality of mono_method_get_context() and
5371         mini_method_get_context().
5373         * generic-sharing.c, domain-internals.h:
5374         mono_method_construct_object_context() and
5375         mono_domain_lookup_shared_generic() moved from mini.
5377         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5378         method doesn't have the correct instantiation because it's shared
5379         generic code.  Fixes #473999.
5381 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5383         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5385         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5386         
5387 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5389         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5391         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5393         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5394         and recheck the cache for dups after it.
5396         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5398         Fixes one of the deadlocks found in #473150.
5400 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5402         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5403           For Win32, add additional break conditions for accept.
5405         Code is contributed under MIT/X11 license.
5407 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5409         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5410         lazily initialize the native wrapper cache.
5411         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5412         cache, since they are different from the normal wrappers.
5414         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5416         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5417         AOT compiled native wrappers.
5419 2009-02-09  Geoff Norton  <gnorton@novell.com>
5421         * appdomain.h:
5422         * security-core-clr.c: Allow enabling core-clr from the embedding
5423         API.
5425 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5427         * socket-io.c: when requesting all the local ips, if there are no
5428         interfaces up and running, MS returns 127.0.0.1.
5430 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5432         * mono-perfcounters-def.h: processor time is an inverse time.
5433         Fixes bug #468625.
5435 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5437         * socket-io.c: an empty host name returns the list of local IPs.
5438         Fixes bug #386637 part 1/2.
5440 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5442         * verify.c (mono_class_interface_implements_interface): Call
5443         mono_class_setup_interfaces ().
5444         (merge_stacks): Ditto.
5446 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5448         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5449         klass->interfaces.
5450         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5451         (mono_generic_class_get_class): Ditto.
5453 2009-02-06  U-QUACK\miguel  <miguel@quack>
5455         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5456         they live in security.c
5458         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5459         another bit from Paolo's code.
5461 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5463         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5464         methods which will be discarded by add_imt_builder_entry ().
5466         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5467         need to be boxed.
5469         * loader.c: Add a statistics for the size of the memberref signature cache.
5470         
5471         * loader.c (find_cached_memberref_sig): New helper function.
5472         (cache_memberref_sig): Ditto.
5474         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5475         they will be parsed again for every generic instantiation, leading to unbounded
5476         memory growth.
5478 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5480         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5481         parameters of generic methods.
5483         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5484         after the original method is copied to the inflated method.
5485         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5487         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5488         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5490         * class.c metadata.c: Update after the changes above.
5492 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5494         * metadata-verify.c: Simplified error handling and added
5495         section table validation.
5497 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5499         * class-internals.h (MonoClassExt): New structure containing rarely used
5500         fields of MonoClass.
5501         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5502         through a new 'ext' field.
5504         * class.c (mono_class_alloc_ext): New helper function to allocate 
5505         class->ext.
5507         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5509 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5511         * object.c (mono_object_get_virtual_method): Properly inflate
5512         generic methods.  Fixes #472692.
5514 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5516         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5517         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5518         for the parent type, the created type must be ready to be used on a generic
5519         instantiation.
5520         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5521         we won't have duplicated entries in generic_inst_cache.
5523         Fixes #469553.
5525 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5527         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5528         replace with plain BSD per the comments on the bug MONO77637.
5530 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5532         * class.c (mono_class_get_generic_class): New accessor function.
5533         (mono_class_get_generic_container): Ditto.
5535         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5536         fields, similar to the ones in MonoMethod.
5538         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5539         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5541         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5542         
5543         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5544         the same information as element_class->byval_arg.
5546         * class.c reflection.c: Remove references to class->byval_arg.
5548         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5549         klass->enum_basetype directly.
5551         * verify.c metadata.c object.c icall.c reflection.c: Use 
5552         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5553         directly.
5555 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5557         * icall-def.h: Remove internal calls for sockets when
5558         DISABLE_SOCKET is defined, file system writing features when the
5559         OS only support reading and not writing data and Policy support if
5560         the Policy is disabled.
5561         
5562         * image.c (do_mono_image_open): Apply Paolo's patches for using
5563         mono_file_map_ APIs here.
5565         * assembly.c: Add support for platforms to avoid prefix
5566         auto-detection. 
5568 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5570         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5571         warning.
5573         * class.c (mono_class_inflate_generic_class): New helper function.
5575         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5576         statistics for inflated methods/classes.
5578         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5580         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5581         the call is made from Delegate.CreateDelegate () for the invoke method of
5582         a delegate.
5584         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5586         * metadata.c (mono_metadata_signature_size): New helper function.
5588         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5589         generic instances.
5591         * metadata.c (inflated_method_in_image): Avoid calling 
5592         mono_method_signature () if the method does not already have a signature.
5594 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5596         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5597         valuetype is compatible with target type, check by inheritance as a
5598         VT is not really compatible with System.ValueType, for example.
5600         * verify.c (do_invoke_method): Improve error message.
5602         * verify.c (do_box_value): If boxing a nullable, use the type argument
5603         on stack instead.
5605         * verify.c (do_newobj): Improve error message.  
5607         Fixes #469549.
5609 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5611         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5613 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5615         * generic-sharing.c: Don't hold domain lock when calling
5616         instantiate_other_info().  Fixes #471958.
5618         * domain-internals.h, loader.c: Describe locking policy of domain
5619         lock vs loader lock.
5621 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5623         * verify.c (mono_delegate_signature_equal): Make it possible to check
5624         first-arg-bound delegates to static method.
5626         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5627         static methods with the first arg bound.
5629         Fixes #469529.
5631 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5633         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5634         errors.
5636         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5637         under strict mode. Any type, when boxed can be seen as a reference type.
5639         Fixes #469528.
5641 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5643         * object.h: The lower bound of an array is a signed integer value.
5644         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5645         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5647         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5648         calculate the upper bound.
5649         
5650         Fixes #471252.
5652 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5654         From Paolo's work, refactored, cleared up:
5655         
5656         * threadpool.c, icall.c: ifdef code that requires a working socket
5657         stack.
5659         * metadata.c (mono_metadata_field_info): Do not attempt to return
5660         a value from a function declared as void.
5662         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5663         from the console stack.
5665         * assembly.c: use strrchr instead of rindex.
5667         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5668         alloca.h on systems that have it.
5670         * environment.c: Avoid code that uses stuff from
5671         HAVE_SYS_UTSNAME_H
5672         
5673         * appdomain.c: Include sys/time.h.
5675         * console-io.c: include sys/ioctl.h if it is available.
5677 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5679         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5681         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5682         the method builder.
5684         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5685         after it was created and cached, as the later is not thread safe.
5686         
5687 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5689         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5690         called while the debugging module is not initialized. Fixes #471669.
5692 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5694         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5696         Fixes #471255.
5698 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5700         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5701         loader lock is not taken while the templates lock is held.  Fixes
5702         #471089.
5704 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5706         * metadata.c (type_in_image): Added a check to fix a monodis
5707         crash.
5709 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5711         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5712         nullable arguments.
5714         * object.c (mono_runtime_invoke_array): Ditto.
5715         
5716         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5717         freeing wrappers of dynamic methods.
5719         * loader.c (mono_free_method): Call it. Fixes #463323.
5720         
5721         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5722         methods taking vtype/byref arguments, to fix yet another bug caused by
5723         the sharing of runtime invoke wrappers. Partly fixes #471259.
5725 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5727         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5728         <first file in file table>:1 when the IL offset does not have an associated
5729         line number.
5731 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5733         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5734         variable info for a method.
5736         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5737         
5738 2009-01-30  Jb Evain  <jbevain@novell.com>
5740         * pedump.c: reuse code from monodis to make sure pedump honors
5741         MONO_PATH, which is needed to verify net_2_1 assemblies.
5743 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5745         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5746         there is no line number info.
5748 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5750         Avoid some MonoType allocations
5751         * reflection.c (mono_reflection_initialize_generic_parameter):
5752         Reuse MonoType from param->pklass rather than allocating one.
5753         (mono_dynamic_image_free): Update to changes.
5755 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5757         Rearrange some code to improve consistency
5758         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5759         (mono_reflection_initialize_generic_parameter): ... here.
5761 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5763         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5764         with type constraints as an experiment.
5766         * boehm-gc.c (on_gc_notification): Update mono_stats.
5768 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5770         Avoid some allocations
5771         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5772         pointer to tail array to avoid extra allocation.
5773         * metadata.c (free_generic_inst): Update to changes.
5774         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5775         on-stack struct.
5777 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5779         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5780         return TRUE if the two type objects are the same.
5782 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5784         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5785         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5786         klass->min_align, since klass->min_align contains the managed alignment,
5787         while the native alignment can be different, like for longs on x86.
5788         Fixes #469135.
5790         * class-internals.h (MonoMarshalType): Add a min_align field.
5792 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5794         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5795         the 1.0 format.
5797 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5799         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5800         some comments about the usage of the used_regs field.
5802         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5803         Fixes #469217.
5805 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5807         * appdomain.c: return NULL instead of throwing FileNotFoundException
5808         when LoadAssembly() fails.
5810 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5812         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5813         image if the owner is NULL.  Fixes the AOT failures.
5815 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5817         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5818         MonoGenericParam structure using memset so the image field is initialized
5819         as well.
5821 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5823         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5824         a plain store.
5826 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5828         * class.c (mono_class_setup_vtable_general): In the generic instance
5829         optimization, set method->slot for abstract virtual methods. Fixes part of
5830         #467834.
5832 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5834         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5835         which signals that the unloading has started but all appdomain services must
5836         remain operational.
5838         * appdomain.c (mono_domain_unload): The initial state for unloading now
5839         is unloading_start and we switch to unloading after the managed call to
5840         AppDomain::DomainUnload has finished.
5842         The new unloading state has to be created because managed code in the
5843         DomainUnload event can depend on things like the threadpool still working.
5844         The domain must remain fully functional while the event executes.
5846         This shown as an issue due to Process::WaitForExit, which waits for
5847         async reads of stdout and stderr to complete. Since those are processed
5848         in the threadpool the code deadlocks because the DomainUnload callback 
5849         waits for the async read finished event, which should have been set by a
5850         threadpool job but has been discarded due to the domain been in unload
5851         state.
5853 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5855         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5856         image must match.
5858 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5860         * reflection.c (resolve_object): For fields, inflate the class and
5861         then get the field in the inflated class.
5863 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5865         * object-internals.h (struct _MonoException): Added a comment
5866         explaining the new use of trace_ips.
5868 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5870         * generic-sharing.c (inflate_other_data): Inflate array methods
5871         correctly.
5873         * loader.c, class-internals.h: Rename search_in_array_class() to
5874         mono_method_search_in_array_class() and make it non-static.
5876 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5878         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5879         Hopefully fixes #458168.
5881 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5883         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5884         as it is performed elsewhere.
5886         Code is contributed under MIT/X11 license
5888 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5890         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5891         requests queued.
5892         * object.c (mono_raise_exception): Increment the exceptions total
5893         counter when an exception is thrown.
5894         * class-internals.h: Add a location for storing the total number of
5895         asp.net requests served.
5896         * mono-perfcounters.c: Implement update support for asp.net counters
5897         from the class libraries. Implement read support for asp.net counters
5898         and exceptions total counter.
5900 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5902         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5903         accessing klass->methods. Fixes #467385.
5905 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5907         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5908         for byval arguments without an [Out] attribute. Fixes #467212.
5910         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5911         Fix compilation under android.
5912         
5913         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5914         processed, scan them directly after they are copied, to achieve better locality
5915         and cache usage.
5917         * socket-io.c: Applied patch from Koushik Dutta
5918         (koush@koushikdutta.com). Disable IPV6 when running under android.
5920 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5922         * icall.c (ves_icall_InternalExecute): Add write barriers.
5924         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5925         the GC code.
5927         * sgen-gc.c: Implement write barriers in IL code.
5929 2009-01-17  Geoff Norton  <gnorton@novell.com>
5931         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5933 2009-01-17  Geoff Norton  <gnorton@novell.com>
5935         * image.c: When unloading the image->references table, there can be gaps
5936         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5937         when unloading an appdomain.
5939 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5941         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5942         speed up ptr-in-nursery checks.
5944         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5945         threads_lock () to prevent deadlocks.
5947         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5948         does not need to be scanned during minor collections, since writes to it
5949         must use write barriers.
5951 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5953         * metadata-verify.c: Add pe nt header verification.
5954         
5955 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5957         * gc.c: Fix a few warnings when using SGEN.
5959 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5961         * metadata-verify.c: Add pe optional header verification.
5963 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5965         * sgen-gc.c: Add support for user defined marker functions, used by
5966         MonoGHashTable to avoid registering a GC root for every hash node.
5968 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5970         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5971         non-pinned roots into separate hashes to avoid having to traverse them
5972         in functions which are only interested in one kind.
5974 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5976         * metadata-verify.c: Add pe header machine field verification.
5977         
5978 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5980         * metadata-verify.c: Add pe header size verification.
5982 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5984         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5985         using the GC, they don't contain references.
5987         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5989 2009-01-13  Geoff Norton  <gnorton@novell.com>
5991         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5992         AppDomains created on the native side can be cleaned up on the native side.
5994 2009-01-13  Geoff Norton  <gnorton@novell.com>
5996         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5997         as well as the managed api.
5999 2009-01-13  Geoff Norton  <gnorton@novell.com>
6001         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6002         with a MonoAppDomain initialized against it.
6004 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6006         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6007         
6008         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6010         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6011         into the wrapper caches. Fixes #465700.
6013         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6014         method builder.
6015         (mono_mb_create_method): Set the clauses from the method builder.
6017 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6019         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6020         Patch from Makoto Kishimoto.
6022 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6024         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6025         encoding them as ROOT_DESC_COMPLEX.
6026         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6028 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6030         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6031         no longer point to the nursery.
6033         * sgen-gc.c: Add a few comments/FIXMEs.
6034         
6035         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6037         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6038         initialization of the various _method variables thread safe. Fixes
6039         #465377.
6041 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6043         * domain.c, domain-internals.h: Remove the shared_generics_hash
6044         and its lookup functions.
6046 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6048         * socket-io.c:  Fixing the MSVC build. 
6050         Code is contributed under MIT/X11 license.
6052 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6054         * metadata-verify.c: Add pe header watermark verification.
6056 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6058         * metadata-verify.c: Add lfanew verification.
6060 2009-01-12  Jb Evain  <jbevain@novell.com>
6062         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6063         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6065 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6067         * socket-io.c: Fix the build.
6069         * environment.c: Fix an #ifdef.
6071 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6073         * threadpool.c (async_invoke_thread): Handle the wait function returning
6074         WAIT_IO_COMPLETION as well.
6075         (async_invoke_io_thread): Ditto.
6077 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6079         * threads.c: Fixing the Windows build.
6081         Code is contributed under MIT/X11 license.
6083 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6085         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6086         interrupt a wait.
6087         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6088         the thread to wait again.
6090 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6092         * metadata-verify.c: Initial skeleton of the metadata verifier.
6094         * pedump.c: Add support for the metadata verifier.
6096         * verify-internal.h: Export the whole assembly metadata verifier function.
6098 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6100         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6102 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6104         * Makefile.am: Upgrade dtrace-prelink.sh location.
6106 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6108         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6109         well. Otherwise the shutdown deadlock that happens on unix will can happen
6110         as well.
6111         If the main thread code finishes too fast it's possible that the finalizer
6112         thread won't have executed yet, won't record itself as the finalizer thread
6113         and the shutdown sequence will wait on it forever.
6115 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6117         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6118         with MSVC.
6120 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6122         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6123         Robert Jordan for pointing this out.
6125 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6127         * icall.c
6128         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6129         ves_icall_System_IO_DriveInfo_GetDriveType.
6131 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6133         * icall.c: Wrap calls to mono_strtod in CriticalSection
6134         invocations when using eglib, to work around #464316.
6136 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6138         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6139         return value of GetCurrentDirectory to never access unitialized memory.
6141 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6143         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6144         return value of GetCurrentDirectory and expand the buffer if needed.
6146         Fixes #459094.
6148 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6150         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6151           Adding a call to mono_init_com_types.
6153         Code is contributed under MIT/X11 license.
6155 2009-01-07  Geoff Norton  <gnorton@novell.com>
6157         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6158         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6159         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6160         be the value of the ip buffer.
6162 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6164         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6165         interfaces_packed here.
6167         Fixes part of #463294.
6169 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6171         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6173         Fixes part of #463294.
6175 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6177         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6178         is a boxed complex as well.
6180         Fixes part of #463294.
6182 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6184         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6185         control if a methodspec should be created for the generic method definition from external assemblies.
6186         Caching of methodspec is done using the handleref hash table.
6188         Fixes #462592.
6190 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6192         * loader.c (find_method): When searching the interfaces of a class
6193         check the transitive closure of implemented interfaces.
6195         Fixes #463303.
6197 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6199         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6200         
6201 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6203         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6204         interfaces calculation to fill_valuetype_array_derived_types.
6206         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6207         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6208         for example.
6210         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6211         interfaces for valuetypes if needed.    
6213         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6214         for their basetype as well. Types are array expanded if rank is > 0.
6216         Fixes #400716.
6218 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6220         * socket-io.h : Changing the signature of
6221           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6222           the blocking state.
6224         * icall-def.h :  Changing the signature of
6225           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6227         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6228           For Windows only.  Avoid blocking when calling accept by
6229           querying for a connection via select.  The loop also queries
6230           the thread state every 1000 micro seconds for the thread
6231           stop state.  This will avoid the process hanging on shutdown
6232           when using a TcpChannel that is never connected to.
6234         Code is contributed under MIT/X11 license.
6236 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6238         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6240 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6242         * class.c (get_implicit_generic_array_interfaces): Extract common
6243         code to a helper function making it a lot easier on the eyes.
6245 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6247         * class.c (get_implicit_generic_array_interfaces): If the internal
6248         enumerator is an interface inflate System.Object instead of itself.
6250         Fixes #461261.
6252 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6254         * object.c (mono_runtime_invoke_array): Don't assert with
6255         byref nullable types.
6257         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6258         byref nullables we unbox the object and store it on the
6259         stack. 
6260         We can't use the boxed object since it is the T of Nullable<T>
6261         and the boxed representation of a nullable it's underlying type
6262         or null.
6263         We could cheat and create a boxed nullable and use the same
6264         machinery of other byref VTs but this feels like a hack and
6265         using the stack has the bonus of reducing heap pressure.
6267         Fixes #461941.
6269 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6271         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6272         return value.
6274         Fixes #461867.
6276 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6278         * icall-def.h : Adding an internal call definition for 
6279           System.Environment.internalBroadcastSettingChange.
6281         * icall.c : Adding a Windows only implementation to broadcast a 
6282           WM_SETTINGCHANGE when an environment variable has changed.
6284         Code is contributed under MIT/X11 license.
6286 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6288         * class.c, class-internals.h: Made
6289         mono_class_has_parent_and_ignore_generics() non-static.
6291 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6293         * image.c: deal with the mmap failing when loading an image.
6295 2008-12-17  Geoff Norton  <gnorton@novell.com>
6297         * threadpool.c: Ensure that the io_queue_lock is initialized
6298         in all circumstances, as we always attempt to cleanup against it.
6300 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6302         * icall.c (ves_icall_System_Environment_get_Platform): For
6303         compatibility reasons for existing client code we will keep
6304         returning 4 for a while.   
6306         For how long will depend on the documentation being updated, and
6307         for us to give client code a chance to be updated.
6309         This reverts the original decison on #433108 since we did not
6310         catch roughly 33 instances of the broken code in our own source
6311         code base, we did not catch failures on the buildbots, and QA did
6312         not bring this as a problem.
6314         Only today I found some customer's code breaking due to our own
6315         class libraries not being fully updated and tracked it down to
6316         this change.  I am reverting it because if we could not even get
6317         our story straight in our own code base, how can we hope that our
6318         end user code be fixed?
6320         As of this morning, our Wiki page that documents how to detect
6321         Unix had not been fixed.    
6323 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6325         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6327         * class.c (mono_class_get_fields): Handle loading errors.
6329 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6331         * 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.
6332         
6333 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6335         * mono-perfcounters.c: avoid warning.
6337 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6339         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6340         make sure all interfaces have MonoClass::interface_id set.
6342         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6343         method table is property set.
6345 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6347         * class.c: New function mono_class_setup_interface_id that setup
6348         MonoClass::interface_id if needed.
6350         * class-internals.h: Export new function.
6352 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6354         * class.c: Add code to sanity check the vtable after setup_vtable_general
6355         has done it's work.
6357 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6359         * icall.c: make Assembly.GetExecutingAssembly work properly when
6360         reflection is used to invoke the method.
6361         Bug #321781 fixed.
6363 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6365         * metadata/generic-sharing.c: Look for constraints in all type
6366         arguments, not just the first one.
6368 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6370         * appdomain.c: return the correct CodeBase for an Assembly instance
6371         that was loaded from the shadow-copy directories.
6372         Bug #458190 fixed.
6374 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6376         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6378         * sgen-gc.c (check_object): New debugging helper function.
6380         * object.c: Fix calls to mono_value_copy_array ().
6382 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6384         * class.c (mono_class_setup_fields): If working on an inflated class
6385         first check if the generic definition did init with success.
6387         Fixes #445361.
6389 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6391         pedump.c (main): Fix a warning.
6393 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6395         * object-internals.h : Adding a definition for 
6396           MonoReflectionComVisibleAttribute.
6398         * marshal.c (cominterop_com_visible) :  Method added to check the 
6399           ComVisible attribute of a class.
6401         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6402           cominterop_raise_hr_exception added to consolidate common code 
6403           to raise hr exceptions.
6405         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6406           if a managed class should support IDispatch.
6408         * marshal.c 
6409           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6410           Added additional checks for managed object when getting 
6411           an IDispatch interface.
6413         Code is contributed under MIT/X11 license.
6415 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6417         pedump.c (main): Handle mono_get_method () returning NULL. 
6419 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6421         * marshal.h: Fix a warning.
6423 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6425         * marshal.c : Adding cominterop_release_all_rcws to release all
6426           runtime callable wrappers held by the runtime.
6428         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6429           
6430         Code is contributed under MIT/X11 license.
6432 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6434         * metadata.c (mono_image_alloc_lock): New helper function.
6435         (mono_image_alloc0_lock): Ditto.
6437         * metadata.c: Use the alloc_lock () helper functions for allocating
6438         memory from the image mempool.
6440 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6442         * class.c (mono_class_from_generic_parameter): Document it's
6443         locking behavior. Fix double checked locking here, we stored in
6444         param->pklass a partially initialized MonoClass and no membar was used.
6446 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6448         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6449         (3) functions are present in the C library use them to do the
6450         job. If they are absent, make sure that the sum of int_part and
6451         dec_part is rounded before returning. This is necessary due to the
6452         division of dec_part by the power of 10 before the final addition
6453         is performed - if the result is not rounded in some cases it will
6454         yield invalid results.
6456 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6458         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6459         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6460         instruction instead of a pointer constant.
6462 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6464         * loader.c (mono_method_get_header): Do most of the work outside the
6465         loader lock, to avoid assembly load hook deadlocks.
6467         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6468         (mono_metadata_parse_type_full): Ditto.
6470 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6472         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6473         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6474         funtions. Finally, use a lock to produce well ordered output.
6476         The lock looks silly, as all calls to the corlib mempool should be guarded
6477         with the loader lock, but for some reason this fact doesn't help. 
6479         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6481 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6483         * socket-io.c: 64 bit big-endian fixes.
6485 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6487         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6488         targets that require strict compatibility between the types.
6490         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6491         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6492         Kill the strict argument and create a new one valuetype_must_be_boxed.
6494         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6495         state that all valuetypes must be boxed.
6497         Fixes #448560.
6499 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6501         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6502         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6504         Contributed under MIT/X11 license.
6506 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6508         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6509         the inflate_generic_type machinery should handle it.
6511         This avoids a crash when the field's flags is zero and it's type is
6512         a primitive.
6513         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6514         is zero and will return one of the cached built-in primitive types. Since
6515         those types live in read-only memory, the code that copies it crashes.  
6517 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6519         * object.c: Don't put function descriptors into generalized IMT
6520         thunks.
6522 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6524         * class.c: Enable generic code sharing on PPC64.
6526 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6528         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6529         from mini/mini.c.
6531         * generic-sharing.c: Allocate the method template slists from the
6532         image mempool so it doesn't leak.
6534 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6536         * class.c (generic_array_methods): Release the linked list.
6538 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6540         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6541         invocation to g_utf16_to_utf8().
6543 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6545         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6546         arguments on big endian archs.
6548 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6550         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6551         the type name (test added in corlib).
6553 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6555         * pedump.c: initialize perf. counters. Fixes a segv.
6557 2008-11-25  Martin Baulig  <martin@ximian.com>
6559         * mono-debug-debugger.c
6560         (mono_debugger_runtime_invoke): Return the exception object if an
6561         exception was thrown.  Visual Studio displays the exception object
6562         in the locals window.
6564 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6566         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6567         ftnptr.
6569 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6571         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6572         MONO_TYPE_U are sizeof (gpointer), too.
6574 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6576         * marshal.c (mono_type_native_stack_size): Fixed size and
6577         alignment for reference types.
6579 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6581         * class.c (mono_class_generic_sharing_enabled): Disable generic
6582         code sharing for PPC64.
6584 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6586         * icall.c (mono_method_get_equivalent_method): Make sure
6587         method->klass->methods is inited before looping over it.
6589 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6591         * object.c: when calling ExecuteAssembly in a newly created domain,
6592         the configuration file and application base are already set up.
6593         Bug #446353 take 2 fixed.
6595 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6597         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6598         Fixes #444715. Fix a warning.
6600 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6602         * appdomain.c: write the full path of the assembly to the .ini file
6603         created when "shadow-copying"
6604         Bug #446353 fixed.
6606 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6608         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6609         if signature==FALSE.
6611 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6613         * marshal.h : Fix the cygwin build.
6614            marshal.c:12442: undefined reference to `_IID_IMarshal'
6615           
6616         Code is contributed under MIT/X11 license.
6618 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6620         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6621           free threaded marshaler when QueryInterface is called on a COM callable
6622           wrapper requesting the IMarshal interface.
6623           
6624         Code is contributed under MIT/X11 license.
6626 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6628         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6630         * reflection.c (mono_type_get_object): Special case the very common
6631         void type.
6633         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6634         hold typeof(void).
6636 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6638         * process.h : Adding method declaration for
6639           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6640           
6641         * process.c : Adding implementation for
6642           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6643           
6644         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6645           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6647         Code is contributed under MIT/X11 license.
6649 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6651         * appdomain.c (unload_thread_main): Clean up threadpool by
6652         calling mono_thread_pool_remove_domain_jobs.
6654         * domain-internals.h (struct _MonoDomain): Add new fields to
6655         help coordinate the cleanup of the threadpool.
6657         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6658         that cleans up the threadpool of all jobs associated with an appdomain.
6659         It does that by cleaning up the queues and making sure all active
6660         threads are accounted.
6662         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6663         unloaded or in the process of. Take this is such way that there is
6664         no race condition between another thread starting the unload and the
6665         current thread acknowledging it.
6667         * threadpool.c (async_invoke_thread): Same.
6669         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6670         firing the new thread.
6672         * threadpool.c (start_tpthread): Same.
6674         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6676         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6678 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6680         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6681         Add support for DuplicateHandle.
6682         
6683         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6684         Add support for DuplicateHandle.
6685         
6686         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6687         Add support for DuplicateHandle.
6689         Code is contributed under MIT/X11 license.
6691 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6693         * class-internals.h: Make min_align into a whole byte.
6695         * class.c: Set min_align for SIMD types to 16.
6697 2008-11-05  Geoff Norton  <gnorton@novell.com>
6699         * attach.c: Default the attacher to enabled for all cases including
6700         embedded.
6702 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6704         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6705         change r117650.
6707 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6709         * monitor.c, monitor.h: New function for querying offsets of
6710         members of MonoThreadsSync.
6712 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6714         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6715         to speed up this function and to avoid the boundless memory growth caused by
6716         the signature_dup () calls.
6718 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6720         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6721         wrapper.
6723         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6724         by 1 bit.
6726         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6728 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6730         * appdomain.c:
6731         * domain-internals.h: made mono_set_private_bin_path_from_config()
6732         "internal".
6733         * object.c: call the above function after setting the configuration
6734         file path for the root domain.
6735         Fixes bug #314478.
6737 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6739         * assembly.c: when the assembly is loaded from an absolute path, end
6740         basedir with a directory separator.
6741         Bug #440781 fixed.
6743 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6745         * monitor.c (mono_monitor_get_fast_enter_method): If
6746         CompareExchange is not available, don't create the fastpath
6747         instead of asserting.  (The method is missing in the 1.1 profile.)
6749 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6751         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6753         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6754         Monitor.Exit IL fastpaths.
6756 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6758         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6760 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6762         * class.c (mono_class_create_from_typedef): Added Vector2l.
6764 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6766         * class.c (mono_class_create_from_typedef): Added Vector2d.
6768 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6770         * appdomain.c: translate \ into / for cache_path.
6771         * domain-internals.h: new mono_is_shadow_copy_enabled().
6772         * icall.c: (fill_reflection_assembly_name) do the same path
6773         manipulations that get_code_base does.
6774         (get_code_base) use mono_is_shadow_copy_enabled.
6776 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6778         * appdomain.c: shadow-copied assemblies go to CachePath +
6779         ApplicationName when both are set. DynamicBase has nothing to do with
6780         shadow copies.
6781         Bug #406877 fixed.
6783 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6785         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6786         STANDALONESIG table.
6788         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6789         standalone signatures.
6791         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6792         comparison code: instead of comparing the signatures using a custom
6793         equals function, transform them to a common signature and compare that. This
6794         works better with AOT.
6796 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6798         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6800         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6801         call for generic instances.
6802         (mono_class_setup_properties): Call setup_properties () before accessing
6803         gklass->properties.
6805         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6806         over the virtual methods of a class using metadata if possible, avoiding the
6807         creation of MonoMethod's for non-virtual methods.
6808         
6809         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6810         get_virtual_methods () to iterate over the virtual methods of classes.
6812 2008-10-25  Martin Baulig  <martin@ximian.com>
6814         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6816 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6818         * class.c (mono_class_create_from_typedef): Added Vector4i.
6820 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6822         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6823         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6824         special-casing applies to eliminate the call completely.
6826 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6828         * class.c (mono_class_create_from_typedef): Added Vector8s.
6830 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6832         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6834 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6836         * icall.c: get rid of annoying warning.
6838 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6840         * threadpool.c: in 1.x, if you change the background status of the
6841         threadpool thread, it's not reset.
6842         Remove unnecessary calls to SetState.
6844 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6846         * threadpool.c: asynchronously create a set of idle threads upon first
6847         use of the threadpool. SetMinThreads will now start the appropriate
6848         number of idle threads if they are not already running. The default is
6849         1 threadpool thread per CPU. Increased the maximum number of threads
6850         per CPU to 10.
6852 2008-10-22  Martin Baulig  <martin@ximian.com>
6854         Revert r116521 from Zoltan, it breaks the debugger:
6856         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6857         over the virtual methods of a class using metadata if possible, avoiding the
6858         creation of MonoMethod's for non-virtual methods.
6859         
6860         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6861         get_virtual_methods () to iterate over the virtual methods of classes.
6863 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6865         * threads.c: when creating a threadpool thread, set its state to
6866         'background'.
6867         * threadpool.c: reset the background state of a threadpool thread
6868         after finishing each work item
6869         Bug #437888 fixed.
6871 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6873         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6874         
6875         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6876         generic instances which works by inflating the methods in the container
6877         class's vtable.
6879         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6880         variant which doesn't make a copy if no inflation was done.
6881         (mono_class_setup_fields): Use it.
6883         * metadata.c (mono_metadata_get_shared_type): New helper function to
6884         return a shared instance of a given MonoType.
6886         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6887         a copy of most non-generic types.
6889 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6891         * threadpool.c: remove one more GetSystemInfo () call.
6893 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6895         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6896         use the code in mono-proclib.h to get processor information.
6898 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6900         * appdomain.c: fixed the logic that determines whether assemblies in a
6901         directory are "shadow-copied" or not. Bug #433483 fixed.
6903 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6905         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6906         warning.
6908 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6910         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6911         returning a vtype.
6913         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6914         reflection.c: Use mono_field_get_name () for accessing a field's name.
6916         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6917         class.c
6919         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6920         field.
6922         * loader.c (find_method_in_class): Reenable the metadata optimization by
6923         not using it for generic instances.
6925         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6926         data/def_type fields from MonoClassField into a separate structure.
6927         (struct MonoClassField): Remove data/def_type fields.
6928         (struct _MonoClass): Add a 'field_def_values' array to store the default
6929         values/RVA for fields.
6931         * class.c reflection.c: Update after the changes.
6932         
6933         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6934         for accessing field->data.
6936         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6938         * loader.c (find_method_in_class): Revert the last change for now as
6939         it breaks Mono.C5 unit tests.
6941         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6942         'field_generic_types' and 'field_objects' which contain the information
6943         previously stored in MonoInflatedField.
6944         (MonoInflatedField): Delete.
6945         (struct _MonoClassField): Delete 'generic_info' field.
6947         * reflection.c: Store the information which was previously in 
6948         field->generic_info in MonoDynamicGenericClass instead.
6950         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6951         MonoClassField changes.
6953 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6955         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6956         store the value inside the data array of the MonoMethodWrapper.
6957         This saves memory, is faster and fixes the lifetime issues (methods
6958         were never removed from the hash previously). May also fix bug#436996.
6960 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6962         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6963         generic instances, compute the type from the generic definition instead of
6964         looking in field->generic_info.
6966         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6967         for inflated fields, the only user was get_fieldref_token () which no
6968         longer needs it.
6970         * class.c (mono_class_init): Revert the last change as it seems to cause
6971         crashes.
6973         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6974         bytes on 64 bit platforms.
6976         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6977         
6978         * object.c (mono_class_create_runtime_vtable): Don't initalize
6979         field->data/field->def_type here, it is done lazily by 
6980         mono_class_get_field_default_value ().
6982         * icall.c (ves_icall_get_enum_info): Call 
6983         mono_class_get_field_default_value () instead of directly accessing
6984         field->data and field->def_type.
6986         * object.c (get_default_field_value): Ditto.
6988         * class.c (mono_field_get_data): Ditto.
6989         
6990         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6991         call for generic instances.
6993         * loader.c (find_method_in_class): If klass != from_class, then inflate
6994         the method with the context of from_class, since the caller assumes this.
6996 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6998         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6999         for accessing method->slot.
7001 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7003         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7005 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7007         * class.c (mono_method_get_vtable_index): Use
7008         mono_method_get_vtable_slot () for accessing method->slot.
7010         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7011         accessing klass->methods.
7013         * class.c (mono_method_get_vtable_slot): New helper function.
7014         (mono_class_get_vtable_entry): Ditto.
7015         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7016         accessing method->slot.
7018         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7019         method to get_inflated_method ().
7021         * class.c (mono_class_get_inflated_method): New helper method to obtain
7022         a method of an inflated class without calling setup_methods ().
7023         (mono_class_get_cctor): Use get_inflated_method.
7025         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7026         
7027         * marshal.c image.c: Lazily create all the marshal caches.
7029         * image.c (mono_image_init): Move initialization of runtime_invoke
7030         caches to marshal.c.
7032         * marshal.c (get_cache): New helper function to lazily initialize a 
7033         wrapper cache.
7034         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7036         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7038 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7040         * loader.c: fixed check for interface type.
7042 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7044         * appdomain.c: check for NULL setup before it's referenced.
7047 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7049         * class.c: remove the unused old vtable setup code.
7051 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7053         * class.c: don't depend on interface order in
7054         setup_interface_offsets (bug #435777).
7055         * reflection.c: sort the InterfaceImpl table (patch from
7056         Jb Evain  <jbevain@novell.com>).
7058 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7060         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7061         the low level assemblies lock.
7063 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7065         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7066         object.c, reflection.c, socket-io.c, threads.c: introduced
7067         mono_framework_version () to return the major framewrok version,
7068         changed the code that was using more complex patterns to use it.
7069         Return the correct value for PlatformID for OSX.
7071 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7073         * icall-def.h, process.h, process.c: added an icall to get info about
7074         processes using mono-proclib.
7076 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7078         * mono-perfcounters.c: use the mono-proclib functions to
7079         access process information.
7081 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7083         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7084         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7085         reflection.c: remove rawbuffer usage: mmap support is more sanely
7086         provided by utils/mono-mmap.
7088 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7090         * gc.c: use posix semaphores when possible so that
7091         mono_gc_finalize_notify() is signal safe.
7093 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7095         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7096         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7097         be #ifdef-ed out, the linker will remove the rest.
7099         * marshal.c: Implement DISABLE_COM.
7101         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7103 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7105         * locales.c (string_invariant_compare_char): Optimization: do not
7106         call g_unichar_type unless we actually need the information.
7108 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7110         * object.c, class-internals.h: Also create remoting trampolines
7111         for generic methods.  Pass the domain to the remoting trampoline
7112         creation function, too.
7114 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7116         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7118 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7120         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7121         Vector4ui.
7123 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7125         * assembly.c:
7126         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7128 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7130         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7131         for the least possible amount of time (extending the fix in r113458).
7133 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7135         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7137 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7139         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7140         as possible simd intrinsic types.
7141         Optimized the test to check for the common prefix first.
7143 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7145         * class.c: back out part of a broken optimization committed on
7146         May 23th (bug #433908).
7148 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7150         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7151         Win32.  Should fix #432388 for most cases until we have the new
7152         profiler on Win32.
7154 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7156         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7157         instead of using inst->id so the hash is stable for AOT.
7159 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7161         * appdomain.c:
7162         * icall.c: create a .ini file for shadow-copied assemblies that
7163         contains the location of the original assembly. Use this to return the
7164         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7165         Also fix the number of '/' for windows when returning the CodeBase.
7166         Fixes bug #430920.
7168 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7170         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7172         Code is contributed under MIT/X11 license.
7174 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7176         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7177           if if the class vtable needs initialized.
7179         Code is contributed under MIT/X11 license.
7181 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7183         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7184           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7185           STRING->BSTR, and CLASS->INTERFACE.
7187         Code is contributed under MIT/X11 license.
7189 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7191         * sysmath.h: changed the declaration of the
7192         ves_icall_System_Math_Round2 icall by adding an extra
7193         away_from_zero parameter.
7195         * sysmath.c (ves_icall_System_Math_Round2): added support for
7196         away from zero rounding. The icall now takes an extra boolean
7197         parameter to signal that away from zero operation is requested.
7199 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7201         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7202         the delegate klass so it can work with full-aot.
7203         (mono_marshal_get_delegate_end_invoke): Ditto.
7204         (mono_marshal_get_delegate_invoke): Ditto.
7206 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7208         * gc.c, attach.h, attach.c: remove a bad pattern:
7209         add_finalizer_callback () is not implemented correctly, it can't
7210         without adding more overhead to the finalizer loop and it's not
7211         even needed, since we know exactly what we need to call, so there is
7212         no need to do so through an expensive function pointer.
7214 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7216         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7217         for the no-gc case.
7218         * attach.c (mono_attach_init): Remove the #ifdef.
7220 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7222         * attach.c (mono_attach_init): Don't use
7223         mono_gc_add_finalizer_thread_callback when compiling without GC.
7224         Fixes #432306.
7225         
7226         Code is contributed under MIT/X11 license.
7228 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7230         * class.c (mono_class_create_from_typedef): Remove the 
7231         #ifndef DISABLE_SIMD stuff.
7233 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7235         * class-internals.h (MonoClass): Added simd_type bit field.
7237         * class.c (mono_class_create_from_typedef): Check if type is a simd
7238         intrinsic.
7240 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7242         * object.c (mono_method_add_generic_virtual_invocation): Only add
7243         instantiations to the thunk whose count is at least as large as
7244         the threshold.
7246 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7248         * icall.c: changed the Type of the exception thrown when trying to
7249         invoke a constructor on an abstract class. Part of the fix for bug
7250         #324185.
7252 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7254         * class.c, class-internals.h (mono_method_get_vtable_index): New
7255         function which returns the index into the vtable and properly
7256         handles inflated virtual generic methods.
7258 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7260         * object.c, domain.c, object-internals.h, domain-internals.h:
7261         Generalize IMT thunk machinery to also handle thunks for virtual
7262         generic method invokes.  When a virtual generic method is invoked
7263         more than a number of times we insert it into the thunk so that it
7264         can be called without lookup in unmanaged code.
7266         * generic-sharing.c, class-internals.h: Fetching a
7267         MonoGenericInst* for a method from an (M)RGCTX.
7269 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7271         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7272         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7273         marshalling. Fixes #431304.
7275 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7277         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7278           handle when ref is specified without In or Out.
7280         Code is contributed under MIT/X11 license.
7282 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7284         * loader.c (mono_get_method_constrained): Don't expand method with
7285         the class's context, because it's already a method of that class.
7287 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7289         * attach.c : should be correct build fix.
7291 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7293         * attach.c: Fix the previous change.
7295 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7297         * attach.c : quick w32 build fix.
7299 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7301         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7302         crashes MonoDevelop: #430455.
7304 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7306         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7307         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7309         * domain.c: Remove initialization/cleanup of the removed fields.
7311 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7313         * class.c (mono_class_generic_sharing_enabled): Enable generic
7314         code sharing for PPC.
7316 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7318         * attach.c : Fixing the Windows builds.
7320         Code is contributed under MIT/X11 license.
7322 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7324         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7325         the default generic sharing mode to 'all'.
7327 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7329         * generic-sharing.c, class-internals.h: New function for checking
7330         whether a method needs a static RGCTX invoke wrapper.  A few
7331         funtions moved from mini/generic-sharing.c.
7333         * icall.c: New function used.
7335 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7337         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7338         Static RGCTX invoke wrapping applies to value type methods, too.
7340         * class.c (mono_class_setup_vtable_general): In generic-shared
7341         value types, wrap methods with a static RGCTX invoke wrapper.
7343 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7345         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7346         osx build.
7348 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7350         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7351         register a callback which is called when the finalizer thread is woken
7352         up.
7353         (finalizer_thread): Call the callback if it exists.
7355         * attach.h attach.c: New files, implementing the attach mechanism.
7357         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7358         
7359         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7360         by the previous change.
7362 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7364         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7365         loader.c, marshal.c, metadata-internals.h, metadata.c,
7366         method-builder.c, object.c, reflection.c: introduced specific functions
7367         to allocate from the domain and image mempools and cleaned up most of
7368         the code to use them (still missing a few in reflection.c).
7369         Keep the loader bytes counter updated.
7371 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7373         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7374         loader-related counters.
7376 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7378         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7379         added more MS-compatible counters.
7381 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7383         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7384         class->blittable. Fixes #428217.
7386 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7388         * reflection.c (mono_image_get_field_on_inst_token): Call 
7389         field_encode_signature () since that handles custom modifiers too.
7390         Fixes #424663.
7392 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7394         * reflection.c (add_custom_modifiers): New helper function to merge custom
7395         modifiers stored in objects to a MonoType.
7396         (fieldref_encode_signature): Encode custom modifiers.
7397         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7398         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7400 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7402         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7403         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7404         64-bit IL only images because imports are not resolved for IL only images.
7405         Special thanks to Bill Holmes for finding this bug and testing the patch.
7406         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7408         Contributed under MIT/X11 license.
7410 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7412         * mono-config.c (dllmap_start): Add support for the bits keyword
7413         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7415 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7417         * reflection.c (inflate_mono_method): When the class the method is
7418         to be inflated for is itself not inflated, just return the method.
7420 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7422         * mono-perfcounters.c: use more user friendly process instance names.
7424 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7426         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7427           handle "[in] ref" and "[in][out] ref" cases.
7429         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7430           to mono_mb_create_method.  This was causing problems calling native to
7431           managed passing Variants by value.
7433         Code is contributed under MIT/X11 license.
7435 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7437         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7438         before accessing the friend_assembly_names field.
7440         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7441         times.
7442         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7443         called lazily when it is needed.
7445         * metadata-internals.h (struct _MonoAssembly): Add 
7446         'friend_assembly_names_inited' flag.
7448 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7450         * mono-perfcounters-def.h: fix the types of a few counters.
7451         * mono-perfcounters.c: implemented the instance names getter
7452         and a few bugfixes.
7454 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7456         * culture-info-table.h : regenerated.
7458 2008-09-17  Robert Jordan  <robertj@gmx.net>
7460         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7461         context bound objects. Fixes #415577.
7463         Code is contributed under MIT/X11 license.
7465 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7467         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7468         implementation (bug #423582).
7470 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7472         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7473         is not set. Fixes #426309.
7475 2008-09-16  Jb Evain  <jbevain@novell.com>
7477         * class.c (mono_class_from_name): fix the exported type look up
7478         when the type is defined in a referenced assembly.
7480 2008-09-16  Jb Evain  <jbevain@novell.com>
7482         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7483         increment the next index counter on each iteration to make that work
7484         for more than one type forwarder. Unmanaged part to fix #422929.
7486 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7488         * object-internals.h: enum ComInterfaceType in
7489         MonoInterfaceTypeAttribute is guint32, not guint16.
7491 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7493         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7494         writing code.
7496 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7498         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7499         not gboolean.
7501 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7503         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7504         Endianness fixes for MonoSymbolFileOffsetTable.
7506 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7508         * process.c (complete_path) : Removing quotes from the 
7509           input path.  The glib file routines do not handle file paths
7510           that have quotes around them.
7512         Code is contributed under MIT/X11 license.
7514 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7516         * socket-io.h : Adding a comment to provide locations where 
7517           changes to MonoSocketAsyncResult need to be synced.
7519         Code is contributed under MIT/X11 license.
7521 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7523         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7524         parameters as well. Fixes #425001.
7526 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7528         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7529         windows build.
7531 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7533         * console-io.c: Add support for tracking the window size if it
7534         changes.
7536         The setup is very simple: the TtySetup function will now return a
7537         pointer to a location in memory that tracks the current console
7538         size.  The managed code checks its current value every time its
7539         queried against the last value set, and updates accordingly.
7541         With this setup we can work with multiple consoles, and we do not
7542         require to poke into managed code from a signal handler.
7544         Additionally, the environment for COLUMNS and LINES is now handled
7545         in unmanaged code.
7547         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7549 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7551         * marshal.c (mono_type_native_stack_size): Treat
7552         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7554 2008-09-04  Jb Evain  <jbevain@novell.com>
7556         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7557         to nullables.
7559 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7561         * verify.c (verify_type_compatibility_full): Revert change
7562         to allow converting a native int to unmanaged pointer be verifiable
7563         under non-strict mode.
7564         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7566         * verify.c: Added some TODOs.
7568 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7570         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7571           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7572           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7574         Code is contributed under MIT/X11 license.
7576 2008-09-02  Jb Evain  <jbevain@novell.com>
7578         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7580 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7582         reflection.c (typebuilder_setup_fields): Handle classes with
7583         explicit size.
7585 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7587         class.c (mono_class_setup_events): Add memory barrier due to
7588         double checked locking.
7589         
7590         class.c (mono_class_setup_properties): Same.
7592 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7594         * class.c (mono_class_is_assignable_from): Fix the build.
7595         
7596         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7597         before accessing klass->interface_bitmap. Fixes #421744.
7599 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7601         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7602         the runtime into no-exec mode, useful when running the AOT compiler.
7604         * appdomain.c gc.c object.c: Avoid executing managed code when running
7605         in no-exec mode.
7606         
7607         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7609         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7610         special case when the mono_assembly_loaded () returns NULL because the 
7611         search hook is not installed.
7613 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7615         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7616         crashes in bstr marshalling on linux.
7618 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7620         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7621         with more than one parameter.
7623 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7625         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7626         start/stop flow control as well when turning off ICANON (allows
7627         C-s and C-q to be read by Console.ReadKey).
7629 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7631         * class.c (mono_class_init): Move the initialization of nested classes
7632         into mono_class_get_nested_types (). Fixes #418433.
7634         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7635         flag.
7637         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7638         iterating tough the nested classes of a class.
7640 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7642         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7643         on arm.
7645 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7647         * console-io.c (sigcont_handler): Support signal chaining for
7648         SIGCONT.
7650         (console_set_signal_handlers): Use best practices with sigaction,
7651         clear the structure before using it. 
7653 2008-08-22  Robert Jordan  <robertj@gmx.net>
7655         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7656         Fix the Windows build.
7658 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7660         * class.c (mono_class_generic_sharing_enabled): Make the default
7661         sharing mode 'corlib'.
7663 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7665         * console-io.c (console_set_signal_handlers): Fix a warning.
7667         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7668         method normally, the JIT will take care of avoiding recursion.
7670 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7672         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7674         Code is contributed under MIT/X11 license.
7676 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7678         * console-io.c (sigcont_handler): We need to restore the entire
7679         termios state, not only the original settings, as things like echo
7680         can be controlled after this (Booish exposes this issue with its
7681         own ReadLine implementation).
7683         Additionally, we need to set the terminal back into keypad_xmit
7684         mode.
7685         
7686         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7687         string as a paramter as well.   Otherwise we get different
7688         keyboard sequences.
7690 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7692         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7693         delegates with byref out parameter passing. Fixes #351520.
7695         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7696         a generic context.
7697         (mono_type_get_desc): Add the type arguments for GENERICINST.
7698         (mono_method_full_name): Stringify the class name using mono_type_full_name
7699         so it picks up generic arguments.
7701 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7703         * console-io.c: Removed debug output.
7705 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7707         reflection.c (mono_reflection_create_runtime_class): Alloc
7708         the nested classes linked list using the dynamic image mempool.
7709         Fixes leak in corlib compilation.
7711 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7713         * console-io.c: Fix incredibly annoying behavior on the console
7714         after resuming execution after control-z.   This affected every
7715         console application.
7717 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7719         * mempool-internals.h: Header for mono private mempool functions. The first
7720         two function are for allocating glib linked lists using pools.
7722         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7724         * Makefile.am: Added mempool-internals.h.
7726 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7728         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7729         (mono_domain_free): Ditto.
7731         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7732         be used by the JIT to store its domain-specific information, instead of putting
7733         it directly into MonoDomain.
7735         * domain.c (mono_install_create_domain_hook): New helper function to install
7736         a hook which initializes domain->runtime_info.
7738         * domain.c (mono_install_free_domain_hook): Ditto.
7739         
7740 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7742         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7743         asserting if the ares parameter is null.
7745         * mono-perfcounters.c: Fix warnings.
7747         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7748         is not needed, don't check for interruptions either.
7749         (mono_marshal_get_delegate_end_invoke): Ditto.
7751 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7753         * mono-perfcounters.c (predef_readonly_counter): added support for
7754         reading the ASP.NET Requests Queued counter from another process.
7756 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7758         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7759         MonoImage to simplify the AOT code.
7761 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7763         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7764         marshalling. Fixes #416078.
7766 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7767         
7768         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7769         it is set, looking up the icall address is deferred to the JIT, since 
7770         in embedded scenarios, the icall might not be registered in the runtime
7771         doing the AOT compilation. Backported from the 2.0 branch.
7773 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7775         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7776         Fixes #415621.
7778 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7780         * Makefile.am: added support for cross-compilation.
7782 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7784         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7786 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7788         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7790 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7792         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7793         mono-perfcounters.c: performance counters implementation.
7795 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7797         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7798         to gpointer, letting the AOT code decide what to store in it.
7800 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7802         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7803           mono_class_setup_methods if the methods are not initialized.
7805         Code is contributed under MIT/X11 license.
7807 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7809         * verify.c: Remove some debug code I commited by accident.
7811         * verify.c (mono_method_is_valid_in_context): Change the return value
7812         to make possible to distinguish between invalid and unverifiable.
7814         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7815         methods.
7817 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7819         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7820         constraints. Fixes regression in gtest-253.
7822 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7824         * verify.c (mono_verifier_verify_class): Don't allow generic types
7825         with explicit layout.
7827         * verify.c (mono_method_verify): Check locals and argument types.
7829 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7831         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7832         wait if the thread is in StopRequested state.
7834         * class.c (mono_class_from_name): Refactor the module searching code into
7835         a separate function so it can be reused in the AOT case too.
7837 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7839         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7840         Check both the type and it's generic type definition for loader errors.
7841         
7842         * verify.c (mono_method_is_valid_in_context): Don't generate another
7843         error when a type errors occur, this leads to the wrong exception been
7844         thrown.
7846 2008-07-28  Dick Porter  <dick@ximian.com>
7848         * icall-def.h
7849         * process.c
7850         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7851         New internal calls to duplicate and close a process handle.
7853 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7855         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7857 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7859         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7861 2008-07-27  Robert Jordan  <robertj@gmx.net>
7863         * class.c (mono_class_init): Don't compute class.has_finalize for
7864         valuetypes. Fixes #412477.
7866 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7868         * verify.c: Implement constraint equivalence checking.
7869         This is required when a generic parameter is used as
7870         argument to a constrained one.
7872         Fixes #410637.
7874 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7876         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7878         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7880         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7881         synch with managed object layout.
7883 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7885         * verify.c (do_branch_op): Handle valuetypes and generic
7886         arguments properly.
7888         * verify.c (do_cmp_op): Same.
7890         Fixes #410383.
7892 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7894         * generic-sharing.c: Fix memory leaks.
7896         * class.c, class-internals.h: Make
7897         mono_class_inflate_generic_type_with_mempool() non-static.
7899 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7901         * pedump.c (dump_verify_info): Dump full class name.
7903 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7905         * generic-sharing.c: Removed some old code that didn't do anything.
7907 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7908         * profiler.c: Added runtime_initialized_event,
7909         mono_profiler_install_runtime_initialized and
7910         mono_profiler_runtime_initialized. This new hook tells the profiler
7911         when the runtime is sufficiently initialized to be able to call
7912         mono_thread_attach on the root appdomain.
7913         * profiler.h, profiler-private.h: Likewise.
7915 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7917         * verify.c (do_cast): Do boxing for generic arguments as well.
7919         * class.c (is_nesting_type): Drop generic instantiations before
7920         checking for nesting.
7922         * class.c (can_access_instantiation): Allow access to generic
7923         arguments.
7925 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7927         * verify.c (verify_class_for_overlapping_reference_fields):
7928         On some cases, the field size might be zero, guard against that.
7929         Fix the explicit layout check to work as expected.
7931 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7933         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7934         mono_thread_resume () during shutdown, since the thread we want to abort
7935         might be suspended.
7937 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7939         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7940         warning.
7942         * debug-mono-symfile.c: Fix a warning.
7944         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7946         * object.c (mono_class_vtable): Check if exception_type is set, and return
7947         NULL as defined by the function comments.
7949 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7951         * mempool.c: Use malloc for every single mempool allocation if the
7952         configure option is set.  This makes it easier to track mempool
7953         allocations with tools like Valgrind.
7955 2008-07-22  Jb Evain  <jbevain@novell.com>
7957         * reflection.c (create_dynamic_mono_image): emit the same
7958         metadata version that SL2 does when creating a SL2 image.
7960 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7962         * icall-def.h:
7963         * icall.c: New icall System.Enum:get_hashcode. This function
7964         avoids the overhead of boxing the enum to the underlying type.
7966 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7968         * reflection.c (mono_method_get_object): Don't let static RGCTX
7969         invoke wrappers get into MonoReflectionMethods.
7971 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7973         * object-internals.h:
7974         * object.c: New mono_runtime_class_init_full function
7975         that makes throwing the exception optinal.
7977         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7978         for the case where the exception object is supplied.
7980 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7982         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7983         old ld versions.
7985         Contributed under MIT/X11 license.
7987 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7989         * string-icalls.c (ves_icall_System_String_InternalSplit):
7990         Optimize array allocation by caching the MonoClass of the
7991         array type.
7993         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7995         * reflection.c (mono_param_get_objects): Same.
7997 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7999         * icall-def.h:
8000         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8001         It inflates the given type using the class context.
8003 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8005         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8006         the vtable if it already exists.
8008         * object-internals.h: Add mono_class_try_get_vtable as part of the
8009         internal API.
8011         * reflection.c (mono_type_get_object): Use the MonoObject from the
8012         vtable when possible. Reduces locking contention on reflection heavy
8013         code.
8015 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8017         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8018         g_bit_nth_msf () since that macro is not implemented in eglib.
8020 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8022         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8023         on platforms which do not support it.
8025 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8027         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8029 2008-07-11  Martin Baulig  <martin@ximian.com>
8031         * mono-debug-debugger.h
8032         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8034         * mono-debug-debugger.c
8035         (_mono_debugger_interruption_request): New global volatile variable.
8036         (mono_debugger_check_interruption): New public function.
8038         * threads.c
8039         (mono_thread_current_check_pending_interrupt): Call
8040         mono_debugger_check_interruption().
8041         (mono_thread_interruption_checkpoint_request): Likewise.
8043 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8045         * verify.c: Add more type checks for loaded types. Verify the result
8046         handle from ldtoken.
8048 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8050         * loader.c (field_from_memberref): Don't crash if the field
8051         wasn't found.
8053 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8055         * verify.c: Verify if type and method instantiations
8056         don't have invalid VAR or MVAR arguments.
8058 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8060         * verify.c: Fix double free of function pointer list.
8062 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8064         * object.c (mono_string_to_utf8): Comment the new code as it
8065         breaks under eglib.
8067 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8069         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8071 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8073         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8074           is not throw too many times.
8076         Code is contributed under MIT/X11 license.
8078 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8080         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8081         debugging is turned off.
8083 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8085         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8087 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8089         * class-internals.h, class.c: Added new generic sharing option:
8090         Share only stuff in System.Collections.Generic, which is now the
8091         default.
8093 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8095         * generic-sharing.c, class-internals.h: New function for getting a
8096         generic method in a generic class given the corresponding method
8097         for a different instantiation of the class.  Partly refactored
8098         from mini-trampolines.c.
8100         * class.c: Make sure generic methods have a class_inst if they are
8101         part of a generic class.
8103         * metadata.c (mono_type_stack_size_internal): Handle type
8104         variables.
8106 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8108         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8109         Signifies whether information on the this/vtable/mrgctx variable
8110         is available.
8112 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8114         * object.c, object-internals.h, icall.c: New function
8115         mono_delegate_ctor_with_method(), which does the same as
8116         mono_delegate_ctor(), but takes an explicit method argument
8117         instead of taking the method from the jit info.
8119         * marshal.c: When creating a delegate with an inflated method take
8120         the "this" argument as the target class for the castclass.
8122 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8124         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8125         mono_jit_info_table_find() to perform very badly in some cases.
8127 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8129         * icall.c (type_from_typename): Handle 'string'.
8131         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8132         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8134 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8136         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8138         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8139         number of available managed allocator types.
8141         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8142         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8144 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8146         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8147         which is a low level lock protecting just the 'jit_code_hash' hash table.
8149         * domain.c: Initialize+cleanup jit_code_hash_lock.
8150         
8151 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8153         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8154         after initialization.
8156         * coree.h: Make MonoFixupExe internal.
8158         Contributed under MIT/X11 license.
8160 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8162         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8163         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8164         as well.
8165         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8166         image being loaded is a CLI image and _CorValidateImage gets called.
8168         * coree.h: Add MonoLoadImage.
8170         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8171         instead of LoadLibrary.
8173         Contributed under MIT/X11 license.
8175 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8177         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8178         for any primitive type.
8180 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8182         * object.c (mono_array_new_specific): Optimize this and the other allocation
8183         functions a bit.
8184         
8185         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8186         domains too if mono_dont_free_domains is set.
8188         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8189         whenever to free appdomain data after it has been unloaded.
8191         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8192         
8193 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8195         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8196         (mono_method_get_equivalent_method): Fix a warning.
8198         * object.c (mono_message_init): Avoid looking up array types for each call.
8200 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8202         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8203         call.
8205         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8206         even more.
8208         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8209         each iteration.
8211         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8212         fields of an enum.
8214 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8216         * object.c (mono_value_box): Fix boxing of nullables.
8218 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8220         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8221         mono_module_handle that is defined by the linker; no initialization required.
8222         * coree.h: Remove mono_module_handle, add __ImageBase, update
8223         mono_image_open_from_module_handle.
8224         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8225         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8226         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8227         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8228         to 4 GB away from image base address. IA64 version is not tested but was very
8229         easy to implement and should work if we ever need it.
8230         * domain.c (mono_init_internal): Avoid system error message boxes.
8231         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8232         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8233         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8234         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8235         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8237         Contributed under MIT/X11 license.
8239 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8241         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8242         as part of the private mono API.
8243         
8244         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8245         Do proper argument checking for methods that belong to generic classes.
8246         Do proper type resolution for GMFH/2.
8247         Fixes #377324.
8248         
8249 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8251         * verify.c (do_switch): Fix a memory corruption bug with
8252         the jump index is out of bound.
8254 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8256         * verify.c: Disable debug code.
8258 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8260         * reflection.c (mono_image_get_methodbuilder_token): Use
8261         mono_image_get_methodspec_token_for_generic_method_definition
8262         instead of mono_image_get_memberref_token. We cache more memberef
8263         entries now.
8265 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8267         * verify.c: Inflate exception clause types.
8268         Fixes #402606.
8269         
8270 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8272         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8273         name.
8275         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8277         * reflection.c (mono_image_create_method_token): Same.
8279 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8281         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8282         It does the same as mono_image_get_methodref_token but works on
8283         MethodBuilder.
8285         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8286         and always generate a methodspec. This follows the old behavior and fixes
8287         the regressions in System.Core. 
8289 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8291         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8292         don't event mono_class_get () succeeds. Fixes #402182.
8294 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8296         * metadata-internals.h: Added MonoDynamicImage::methodspec
8297         hashtable to store methodspec tokens created for MethodBuilders.
8299         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8300         MethodBuilders as open instantiations if a methodspec was requested.
8302         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8304         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8306         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8308         Fixes bug #349190.
8310 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8312         * loader.c (method_from_methodspec): Avoid crashing if the
8313         method lookup fails.
8315 2008-06-20  Dick Porter  <dick@ximian.com>
8317         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8318         classes being in a different assembly.  Fixes bug 399184.
8320 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8322         * loader.c (mono_loader_init): Make this callable multiple times.
8323         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8324         the runtime is initialized. Fixes #401755.
8326 2008-06-19  Dick Porter  <dick@ximian.com>
8328         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8329         Fixes bug 349688.
8331 2008-06-19  Dick Porter  <dick@ximian.com>
8333         * socket-io.c:
8334         * icall-def.h: Implement Socket generic Send() and Receive()
8335         methods.  Fixes bug 395168.
8337 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8339         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8341         Contributed under MIT/X11 license.
8343 2008-06-18  Martin Baulig  <martin@ximian.com>
8345         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8346         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8347         set to 80.0.  The debugger <-> runtime interface is now frozen as
8348         well.   
8350         * mono-debug.c
8351         (mono_debug_debugger_version): Bump to 4.
8353 2008-06-18  Martin Baulig  <martin@ximian.com>
8355         * debug-mono-symfile.c
8356         (load_symfile): Don't check the minor version.
8358         * debug-mono-symfile.h: Bump the version number to 50.0.
8360 2008-06-18  Martin Baulig  <martin@ximian.com>
8362         * debug-mono-symfile.c
8363         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8364         minimum required version.
8366 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8368         * reflection.c (mono_custom_attrs_from_property): Fix support for
8369         retriveving cattrs of dynamic inflated generic types.
8371         * reflection.c (mono_custom_attrs_from_event): Same.
8373         * reflection.c (mono_custom_attrs_from_field): Same;
8375         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8377         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8378         Moved to metadata.c.
8380         * metadata.c: New functions to retrive the equivalent field, event
8381         of property from the generic type definition.
8383         * metadata-internals.h: Added new functions from metadata.c.
8385 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8387         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8388         to cached in a mempool is used.
8390         * metadata.c (free_generic_class): In some situations field generic_info type
8391         is not properly dup'ed and leads to double free'ing.
8393         Fixes #400643.
8395 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8397         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8398         this arguments (will be needed later for generic methods).
8399         Collect stats.
8401 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8403         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8404         Create a static RGCTX invoke wrapper for methods which require it.
8406 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8408         * object.c, class-internals.h: New function for checking whether
8409         an individual field is special static.
8411 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8413         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8414         linear search since the table is sorted.
8416         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8417         Fixes #324180.
8419 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8421         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8422         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8424         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8426         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8427         
8428         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8429         InterlockedCompareExchange to query and modify 
8430         thread->interruption_requested.
8432         * object-internals.h (struct _MonoThread): Change interruption_requested
8433         to a gint32 so it can be modified by atomic operations. Add 
8434         'critical_region_level' from the managed side, change small_id to a guint32,
8435         add new set of 'unused' fields.
8437         * appdomain.c: Bump corlib version.
8439 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8441         * class.c (mono_class_from_name): Search modules as well. Fixes
8442         #322332.
8444 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8446         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8447         templates.  Templates are generalized with an additional type_argc
8448         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8449         have type_argc>0.
8451         * domain-internals.h, domain.c: New hash table for looking up
8452         MRGCTXs.
8454         * metadata.c, metadata-internals.h: Rename hash and equal
8455         functions for MonoGenericInst's and make them public.
8457         * class-internals.h: New data structures for the MRGCTX.  Macros
8458         for distinguishing slots in the RGCTX and the MRGCTX.
8460 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8462         * object.c (mono_method_get_imt_slot): Put the same methods of
8463         different instantiations of the same generic interface in the same
8464         IMT slots, to make generic sharing simpler.
8466 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8468         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8470         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8471         This function works just like mono_metadata_field_info, but
8472         accept a mempool as argument to be used allocating memory.
8474         * marshal.c (mono_marshal_load_type_info): Use new function
8475         to load marshal data into image mempool.
8477 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8479         * class.c (mono_class_inflate_generic_type_with_mempool):
8480         This function allows to inflate a generic type using
8481         a mempool.
8483         * class.c (inflate_generic_type): Take a mempool as argument
8484         and use it to do type dup'ing.
8486         * class.c (mono_class_setup_fields): Field type for generic
8487         generic classes are allocated from the image mempool.
8489         * metadata.c (free_generic_class): Inflated field type is
8490         now allocated in the image mempool.
8492 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8494         * threads.c (thread_cleanup): Free MonoThread::name.
8496 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8498         * appdomain.c (ensure_directory_exists): avoid unnecessary
8499         mkdir(2) calls when the shadow directory already exists.
8500         (mono_make_shadow_copy): copy also satellite assemblies from the
8501         private bin directories.
8503 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8505         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8506         
8507         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8508         a page boundary. Fixes #396219.
8510 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8512         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8513         due to double-checked locking.
8515 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8517         * assembly.c (build_assembly_name): Release memory on failure.
8519         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8521 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8523         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8524         memory on failure.
8526 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8528         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8529         memory on failure.
8531 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8533         * loader.c (field_from_memberref): Check if field signature type is equal
8534         to the non-inflated type of the field. Fixes #398980.
8536 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8538         * assembly.c (mono_assembly_load_from_full): Call 
8539         mono_assembly_load_friends () outside the assemblies lock, since it can
8540         acquire the loader lock. Fixes #323696.
8542         * reflection.c (resolve_object): Inflate the inst with the context for
8543         FieldOnTypeBuilderInst. Fixes #399010.
8545 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8547         * reflection.c (mono_image_get_field_on_inst_token): Don't
8548         inflate the field to encode it's signature. If it's a
8549         VAR or MVAR it should stay that way in the signature.
8550         Fixes #399047.
8552 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8554         * reflection.c (resolve_object): Release memory of inflated types.
8556 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8558         * loader.c (mono_method_get_signature_full): Remove assert about
8559         loading a methodspec to a generic method. We have such methods, such as
8560         System.Threading.Interlocked::CompareExchange<T>.
8561         This assert was removed since it crashes the verifier when it checks
8562         methods calling CompareExchange<T>.
8564 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8566         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8567         of Type array and not MonoType.
8569 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8571         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8572         <lupus@ximian.com>
8574 2008-06-10  Martin Baulig  <martin@ximian.com>
8576         * debug-mono-symfile.h
8577         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8578         changes to the file format, but we were generating incorrect
8579         source file indices in the line number table due to a bug, which
8580         made backtraces report an incorrect source file.
8582 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8584         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8585         mini/debug-mini.c to here.
8587         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8589         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8590         use it to release structs returned by mono_debug_find_method.
8592 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8594         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8595         since it needs to set method->slot for all interface methods.
8597 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8599         * class-internals.h: Forgot to add.
8601 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8603         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8605         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8606         Lookup the custom attributes from property_hash.
8608         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8609         in property_hash. Allocate all data using the image mempool.
8611         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8612         for dynamic_custom_attrs to checks if the image is dynamic.
8614 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8616         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8617         assemblies array.
8618         
8619         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8620         runtime functions while holding the domain assemblies lock.
8622 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8624         * verify.c: Reapplied the last bit of the reverted changes.
8626 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8628         * verify.c: Reapplied more of the reverted changes.
8630 2008-06-09  Martin Baulig  <martin@ximian.com>
8632         * debug-mono-symfile.c (load_symfile): Check the major version
8633         first; if it's wrong, don't print the minor version in the error message.
8635 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8637         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8638         lock instead of the domain lock to avoid deadlocks, since the thread might
8639         already hold the loader lock.
8641         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8642         (mono_thread_attach): Ditto.
8644         * monitor.c: Use a TLS variable for holding the current thread id instead
8645         of calling pthread_self ().
8646         (mono_monitor_init_tls): New internal function to initialize the TLS
8647         variable.
8648         (mono_monitor_try_enter_internal): Put the owner == id check after the
8649         owner == 0 check.
8651         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8652         missed optimizations when using gcc-4.3.
8654 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8656         * reflection.c (mono_dynamic_image_free): Free the memory
8657         used by MonoGenericParam in MonoDynamicImage::gen_param.
8659         * reflection.c (mono_reflection_setup_generic_class): Allocate
8660         container from mempool.
8662         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8663         container from mempool.
8665 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8667         * threads.c (mono_set_pending_exception): New internal function to set the
8668         pending exception of the current thread.
8669         (mono_thread_get_and_clear_pending_exception): Check for 
8670         thread->pending_exception as well.
8672         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8674         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8675         it can trigger a collection.
8677 2008-06-06  Martin Baulig  <martin@ximian.com>
8679         Merged the `debugger-kahalo' branch.
8681         * mono-debug.h
8682         (MONO_DEBUGGER_VERSION): Bumped to 72.
8684         * debug-mono-symfile.h
8685         (MonoSymbolFileMethodIndexEntry): Removed.
8686         (MonoSymbolFileMethodEntry): New public typedef.
8687         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8688         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8689         `data_offset'.
8690         (MonoSymbolFileMethodEntry): Removed.
8691         (MonoSymbolFileLexicalBlockEntry): Removed.
8692         (MonoSymbolFileLineNumberEntry): Removed.
8693         (MonoDebugLexicalBlockEntry): Removed.
8694         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8695         removed `num_il_offsets' and `il_offsets'.
8696         (MonoSymbolFile): Replace `version' with `major_version' and
8697         `minor_version'.
8698         (MONO_SYMBOL_FILE_VERSION): Replace with
8699         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8700         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8702         * debug-mono-symfile.c
8703         (mono_debug_symfile_lookup_location): Add support for the new line
8704         number table format.
8706 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8708         * metadata.c (free_generic_class): Release the inflated
8709         MonoClass of dynamic generic classes if it's not a generic
8710         type definition.
8712 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8714         * verify.c: Reapplied more of the reverted changes.
8716 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8718         * reflection.c (lookup_custom_attr): Clean the cached flag or
8719         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8720         for SRE types.
8722 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8724         * verify.c: Reapplied a small part of the reverted changes.
8726 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8728         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8730         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8731         previously in managed code.
8732         (mono_monitor_exit): Ditto.
8733         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8735         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8736         the managed definition.
8738 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8740         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8742 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8744         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8745         
8746         * monitor.c: Add some micro optimizations.
8748         * icall.c (type_from_typename): Handle 'bool'.
8750 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8752         * verify.c: Implement constructor verification per P III 1.8.1.4.
8753         Fixes #396716.
8755 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8757         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8758         holding the assemblies lock here too.
8760 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8762         * verify.c: Kill stack_top function.
8764 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8766         * verify.c: Kill stack_get function.
8768 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8770         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8772 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8774         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8775         more reliable.
8777         * verify.c (mono_method_verify): Inflate params and locals to avoid
8778         mismatch when checking for compatibility.
8780 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8782         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8783         Length prefix should be size in bytes. Fix bug #339530.
8784         
8785         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8786         Length prefix should be size in bytes. Fix bug #339530.
8788         Code is contributed under MIT/X11 license.
8790 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8792         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8794         Contributed under MIT/X11 license.
8796 2008-06-05  Martin Baulig  <martin@ximian.com>
8798         * mono-debug-debugger.c
8799         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8801 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8803         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8804         while holding the assemblies lock to prevent deadlocks. Handle the case
8805         where the search hook returns NULL but the assembly was still loaded.
8806         Fixes #323696.
8808         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8809         modify domain state.
8811 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8813         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8814         * Makefile.am (pedump_LDADD): Post-process object files and
8815         add dtrace-generated object file, if necessary.
8817         Code is contributed under MIT/X11 license.
8819 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8821         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8823 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8825         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8827 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8829         * threads.c: Try to free everything from the delayed free table
8830         when shutting down threads, and set the variable to NULL after the
8831         table is freed so that calling
8832         mono_thread_hazardous_try_free_all() when shutting down the root
8833         domain doesn't crash.
8835 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8837         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8838         the caller if resulting type was inflated.
8840         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8841         was inflated.
8843         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8846 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8848         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8849         class library tests.
8851         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8852         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8853         #396989.
8855 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8857         * domain.c, domain-internals.h: The JIT infos are now freed by the
8858         JIT info table code.  They are freed immediately if there only a
8859         single JIT info table in circulation.  If there is more, the free
8860         is delayed via a queue.
8862         * threads.c, threads-types.h: New hazard pointer function for
8863         freeing all freeable delayed items in one sitting.
8865 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8867         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8869         * reflection.c (typebuilder_setup_properties): Same.
8871         * reflection.c (typebuilder_setup_events): Same.
8873 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8875         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8876         and use it for allocating memory.
8878         * reflection.c (mono_marshal_spec_from_builder): Same.
8880         * reflection.c: Change code to use new signatures.
8882         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8884 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8886         * decimal.c (rescale128): Put back one line which was accidently commented
8887         out.
8888         
8889         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8890         to cause crashes.
8892 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8894         * reflection.c (mono_reflection_generic_class_initialize): Name must
8895         be always malloc'ed so we can free it later on. Do this for field, property
8896         and event.
8898         * metadata.c (free_generic_class): Free field, property and event names.
8900 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8902         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8903         instead of g_memdup.
8905         * reflection.c (typebuilder_setup_fields): Same.
8907 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8909         * decimal.c (rescale128): Optimize this function a bit more.
8911 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8913         * metadata.c (free_generic_class): Release some memory from
8914         SRE generic classes.
8916 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8918         * reflection.c (mono_image_get_generic_field_token): No reference
8919         to name is kept, free it.
8921         * reflection.c (mono_reflection_generic_class_initialize): Free
8922         more memory of the inflated field.
8924 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8926         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8927         code.
8929 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8931         * reflection.c (mono_dynamic_image_free): Release memory used by
8932         MonoDynamicImage::array_methods elements.
8934         * reflection.c (assembly_add_win32_resources): Release memory after
8935         encoding.
8937 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8939         * decimal.c (log2_32): Use an optimized version for this function too.
8940         
8941         * decimal.c (log2_64): Fix this on 32 bit machines.
8943 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8945         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8947         * class.c (mono_metadata_signature_deep_dup): Same.
8949         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8950         a mempool.
8952         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8954         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8956         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8958         * class-internals.h: Update signatures to take a MonoMemPool.
8960 2008-06-02  Dick Porter  <dick@ximian.com>
8962         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8963         * icall-def.h: Add
8964         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8965         FormatMessage API to get the error text.  Fixes bug 321827.
8967 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8969         * decimal.c: Add some micro optimizations to make decimal operations faster.
8971 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8973         * reflection.c (method_encode_clauses): Take a mempool
8974         as parameter and use it to allocate the clause array.
8976         * reflection.c (mono_image_get_field_on_inst_token): Free
8977         the inflated type after encoding it.
8979         * reflection.c (mono_dynamic_image_free): Free each element
8980         of MonoDynamicImage::gen_params.
8982         * reflection.c (reflection_methodbuilder_to_mono_method):
8983         Allocate the generic param array from the mempool.
8984         Allocate signature params from the mempool.
8986         * reflection.c (mono_reflection_generic_class_initialize):
8987         Free inflated fields after been used.
8989 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8991         * icall.c: Reapply the memory leak fixes as they no
8992         longer make mono crash.
8994 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8996         * reflection.c (mono_type_get_object): Don't store the suplied
8997         MonoType with type_hash. A caller which pass a type that
8998         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8999         might end with a pointer to freed memory.
9000         The solution is to use byval_arg or this_arg from the associated
9001         MonoClass of the supplied type.
9003 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9005         * icall.c: Revert the rest of the last change as it breaks the build too.
9007 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9009         * icall.c: Revert a leak fix as it's breaking the build.
9011 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9013         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9015 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9017         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9019 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9021         * icall.c: Fix some memory leaks.
9023 2008-05-29  Dick Porter  <dick@ximian.com>
9025         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9026         async socket operations from the pending list when a socket
9027         closes.  Leaving it until the threadpool services the event
9028         exposes a race condition when a socket descriptor is reused.
9029         Fixes bug 377589.
9031 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9033         * object.c: Fix negative index check for array alocation.
9035 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9037         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9038         This check is performed by the verifier for IL created delegates
9039         and by Delegate::CreateDelegate for programatically created ones.
9040         Fixes #372406.
9042 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9044         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9045         Fix code to use mono_array_size_t instead of int.
9047         Based on patch by Luis F. Ortiz.
9048         Contributed under X11 license.
9049         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9051 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9053         * icall.c: Added ves_icall_System_Array_GetLongLength and
9054         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9055         arrays.
9057         * icall.h: Export both new functions.
9059         Based on patch by Luis F. Ortiz.
9060         Contributed under X11 license.
9061         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9063 2008-05-28  Martin Baulig  <martin@ximian.com>
9065         The debugger now requires exactly r103463.
9067         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9068         This version is not supported by the debugger, wait for 72.
9070 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9072         * object.h: Changed array related functions to use
9073         mono_array_size_t instead of guint32. Forgot to commit this file.
9075         Patch by Luis F. Ortiz.
9076         Contributed under X11 license.
9077         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9080 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9082         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9083         don't define it. Use the number literal instead.
9085 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9087         * icall.c: Changed array related functions to use
9088         mono_array_size_t instead of guint32.
9090         * icall.c (ves_icall_System_Array_GetLength): Check for length
9091         overflow under MONO_BIG_ARRAYS.
9093         Based on patch by Luis F. Ortiz.
9094         Contributed under X11 license.
9095         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9097 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9099         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9101         Based on patch by Luis F. Ortiz.
9102         Contributed under X11 license.
9103         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9105 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9107         * object.c, object.h: Changed array related functions to use
9108         mono_array_size_t instead of guint32.
9110         Patch by Luis F. Ortiz.
9111         Contributed under X11 license.
9112         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9114 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9116         * object.h: Introduced mono_array_size_t typedef. This must be used
9117         in all places an array length is expected. This is 64bits wide if
9118         MONO_BIG_ARRAYS is enabled.
9120         Patch by Luis F. Ortiz.
9121         Contributed under X11 license.
9122         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9124 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9126         * security-manager.c class.c: Set the class exception info by calling
9127         mono_class_set_failure ().
9129         * class.c (mono_class_get_exception_data): New accessor function.
9130         (mono_class_set_failure): Store exception_data in the property hash.
9132         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9133         the struct as a property.
9135         * loader.c (mono_get_method_full): Store the lookup result for method
9136         tokens in method_cache, the others in methodref_cache to decrease the memory
9137         usage of hash tables.
9139         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9140         (mono_image_init): method_cache is lazy inited now.
9142         * metadata-internals.h (struct _MonoImage): Change method_cache to
9143         a MonoValueHashTable, add a separate methodref_cache.
9145 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9147         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9148           Double.ToString as exposed by Bug #383531.
9150 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9152         * number-formatter.h: Make some tables static.
9154         * class.c (mono_method_set_generic_container): New accessor function.
9155         (mono_method_get_generic_container): Ditto.
9157         * class-internals.h (struct _MonoMethod): Remove rarely used 
9158         'generic_container' field, store it in the property hash instead. Add 
9159         'is_generic' boolean field instead.
9161         * image.c (mono_image_init): Initialize property_hash.
9162         (mono_image_close): Destroy property_hash.
9164         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9165         hold rarely used fields of runtime structures belonging to this image.
9167         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9168         to get/set method->generic_container.
9170         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9171         generic methods.
9173 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9175         * class.c (mono_class_inflate_generic_method_full): Don't increase
9176         mono_stats.inflated_method_count for methods found in the cache.
9178         * threads.c (mono_thread_request_interruption): Add a comment about 
9179         QueueUserAPC ().
9181 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9183         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9184         interface_offsets_packed table.
9185         
9186         * class.c (mono_class_init): Remove some dead code.
9188         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9189         mono_class_setup_vtable () when CAS is active to detect security problems.
9191 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9193         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9195         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9196         parameters as it's irrelevant for delegate checking.
9198 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9200         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9202         * class.c (mono_class_init): Control the creation of a generic vtable using
9203         a global which is true by default, but set to false by the runtime startup code.
9204         
9205         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9206         Disabled for now since it breaks the embedding API.
9207         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9208         (mono_class_setup_methods): Add a memory barrier.
9210         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9211         when mono_class_init () doesn't compute the generic vtable.
9212         
9213 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9214         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9215         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9216         to support call chains (backtrace) in the stat profiler.
9217         * profiler.c, profiler-private.h: Likewise.
9219 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9221         * generic-sharing.c: Init generic class when a method of it is
9222         requested via a runtime generic context.
9224 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9226         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9228         * reflection.c (mono_type_get_object): Add a FIXME.
9230         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9232         * class.c (mono_class_get_method_by_index): New helper function, returning an
9233         entry in the class->methods array.
9235 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9237         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9238         Avoid creating a generic vtable for generic instances as well.
9239         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9240         generic instances.
9242 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9244         * loader.c (mono_get_method_constrained): Inflate the signature
9245         with class context. Fix #325283.
9247 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9249         * object.c (mono_class_create_runtime_vtable): Add a comment.
9251         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9252         where needed.
9253         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9254         (mono_class_setup_vtable_general): Add an assert.
9255         (mono_class_init): Avoid creating a generic vtable for arrays.
9257         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9258         here, let mono_class_init () do that.
9260         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9261         interfaces in mscorlib.
9263         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9264         interfaces. Add some comments.
9265         (mono_class_init): Call mono_class_setup_methods () here since it is no
9266         longer called by mono_class_setup_vtable ().
9268         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9269         not set in class->vtable.
9270         (mono_class_create_runtime_vtable): Reenable the disabled code.
9272         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9273         now as it causes some test failures.
9275         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9276         if using the vtable trampoline. Also remove some strange code which put the
9277         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9278         stuff as it is no longer needed.
9280 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9282         * pedump.c: Give make --verify all option check code as well.
9283         Using --verify code won't check for metadata now.
9285 2008-05-19  Martin Baulig  <martin@ximian.com>
9287         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9289         * mono-debug.c
9290         (_mono_debug_using_mono_debugger): New global variable; it's set
9291         directly by the debugger, so mono_debug_using_mono_debugger() also
9292         works after attaching.
9294 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9296         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9297         as we do double checked locking on MonoClass::runtime_info and
9298         MonoClassRuntimeInfo::domain_vtables.
9300 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9302         * debug-helpers.c (print_field_value): Fix a warning.
9304 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9306         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9307         set in the AOT case.
9309 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9311         * class.c (mono_class_setup_vtable_general): Use memory barriers
9312         as we do double checked locking on MonoClass::vtable.
9314 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9316         * reflection.c (resolve_object): Inflate only if the generic context
9317         is not null. Fixes #389886.
9319 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9321         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9322         instead of g_free.
9324         Code is contributed under MIT/X11 license.
9326 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9328         * class.c: Revert unrelated change.
9330 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9332         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9333         a generic instantiation, use mono_class_from_mono_type instead of playing
9334         with MonoType directly.
9336 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9338         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9339         checks must ignore generic instantiations, so mono_class_has_parent is not
9340         suitable. Fixes #390128.
9342 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9344         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9345         it to avoid registering tokens during metadata generation. Fixes #390023.
9347 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9349         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9350         consistent.
9352         Contributed under MIT/X11 license.
9354 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9356         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9357         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9358         to fixup the EXE image.
9359         (mono_cleanup): Use mono_close_exe_image.
9360         (mono_close_exe_image): New function.
9361         * image.c: Include "marshal.h".
9362         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9363         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9364         counting when the image is loaded outside of mono_image_open_full. Set status
9365         based on GetLastError.
9366         * coree.c: Include required headers. Add init_from_coree.
9367         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9368         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9369         (_CorExeMain): Set init_from_coree.
9370         (CorExitProcess): Only call ExitProcess for now.
9371         (CorBindToRuntimeEx): New stub implementation.
9372         (CorBindToRuntime): New function.
9373         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9374         (MonoFixupExe): ILONLY executables require no fixups.
9375         (mono_set_act_ctx): New function to set activation context.
9376         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9377         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9378         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9379         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9380         as MONO_INTERNAL.
9381         * domain-internals.h: Add mono_close_exe_image.
9383         Contributed under MIT/X11 license.
9385 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9387         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9388         size for generic param and event tables. Fixes #388977.
9390 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9392         * loader.c (mono_method_signature): Use memory barriers because of the double
9393         checked locking pattern.
9395         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9396         aborting or aborted as well. Fixes #376391.
9397         
9398         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9399         existing runtime state in the Suspend handler during shutdown.
9401 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9403         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9405         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9406         which are starting up or shutting down.
9408         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9409         this function never returns if the runtime is already shutting down.
9411         * icall.c (ves_icall_System_Environment_Exit): Update after 
9412         mono_threads_set_shutting_down () signature change.
9413         
9414 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9416         * class.c: Added can_access_instantiation to verify if the instantiation
9417         is visible. Fix access check for nested types as they returned TRUE
9418         before doing type and generic instantiation visibility checks.
9420 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9422         * reflection.c (mono_reflection_create_generic_class): The created type
9423         must have a different container from its TypeBuilder. Otherwise they
9424         will end sharing generic arguments, which is wrong.
9426         Due to the sharing, making a generic instance of the created type using
9427         the TypeBuider generic arguments resulted in the generic type definition
9428         been returned, which is wrong as well.
9430         As a bonus the code was leaking the type_params array. This memory should
9431         be allocated from the image mempool.
9433         This fixes bug #354047.
9435 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9437         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9438         to here         as they are now used in assembly.c new code.
9439         Added a skipverification flag to MonoAssembly.
9440         New internal function mono_assembly_has_skip_verification.
9442         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9443         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9444         part of #387274.
9446 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9448         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9449         needed. Fixes #387034.
9451         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9453 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9455         * assembly.c (mono_assembly_load_reference): Prevent crash while
9456         disassembling Silverlight 2.0 executables while we still do not
9457         have GACed libraries.
9459 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9461         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9463 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9465         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9466         of the dynamic case. Fixes #387404.
9468 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9470         *verify.c (mono_verifier_is_class_full_trust): If under
9471         verify_all and the verifier mode was not set, only
9472         gac and corlib types are fulltrust. This makes --verify-all
9473         usable to detect unverifiable code, which is the expected
9474         use case.
9476 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9478         * verify.h: Ops, commited the header with debug
9479         enabled.
9481 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9483         * verify.c (merge_stack): Use the new value on unverifiable
9484         stack merges.
9486         * verify.c (verify_type_compatibility_full): Comparison
9487         of nullable types can't use mono_class_is_assignable_from.
9489         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9490         that makes all verification errors be reported.
9492         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9493         mono_method_verify.
9495 2008-05-05  Robert Jordan  <robertj@gmx.net>
9497         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9498         support for value types. See #386415.
9500         * object.c: comments.
9502         Code is contributed under MIT/X11 license.
9504 2008-05-05  Martin Baulig  <martin@ximian.com>
9506         * debug-mono-symfile.h
9507         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9508         for old pre-terrania symbol files.
9510 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9512         * mono-config.c: Add ppc64 architecture.
9514         Code is contributed under MIT/X11 license.
9516 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9518         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9519           PPC64 uses function descriptors as well.
9521         Code is contributed under MIT/X11 license.
9523 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9525         * object.c (compute_class_bitmap): Ignore literal static fields.
9527         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9528         var has an invalid format.
9529         (describe_ptr): Add some sanity checks for the vtable.
9530         (add_nursery_frag): Clear unused nursery fragments.
9531         (major_collection): Clear all remaining nursery fragments.
9533 2008-05-03  Robert Jordan  <robertj@gmx.net>
9535         * image.c, metadata-internals.h: add thunk_invoke_cache.
9537         * marshal.c, marshal.h: implement
9538         mono_marshal_get_thunk_invoke_wrapper ().
9540         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9542         Code is contributed under MIT/X11 license.
9544 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9546         * verify.c (do_leave): Empty the stack.
9548 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9550         * class.c (mono_class_is_assignable_from): Variance
9551         doesn't work between reference and value types. For example,
9552         given type C<T+>, C<int32> is not assignable to C<object>.
9553         Break the argument checking loop on first error. 
9555 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9557         * icall.c : base64_to_byte_array() needs some more strict
9558           check for sequence of '=' characters. Patch by Santa
9559           Marta (http://deee.g.hatena.ne.jp/santamarta).
9561           Contributed under MIT/X11 license.
9562           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9564 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9566         * domain.c: Disable LoadLibrary support to fix Win32 build.
9568         Code is contributed under MIT/X11 license.
9570 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9572         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9573         to help with cache behaviour.
9575 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9577         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9578         method. 
9580 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9582         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9584 2008-05-01  Dick Porter  <dick@ximian.com>
9586         * process.c (process_get_fileversion): Only pass 16 bits of
9587         language ID to VerLanguageName.  Fixes bug 381204.
9589 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9591         * verify.c (mono_method_verify): Fix the comparison
9592         operator for code bounds check.
9594 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9596         * verify.c (mono_method_verify): Check the bounds of
9597         all access of the code array.
9599 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9601         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9603 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9605         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9606         not valid.
9608 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9610         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9611         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9612         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9613         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9614         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9615         mono_runtime_load.
9616         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9617         runtime initialization from metadata.
9618         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9619         (mono_set_rootdir): Use mono_get_module_file_name.
9620         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9621         handles.
9622         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9623         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9624         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9625         MonoCLIImageInfo. Add support for module handles.
9626         (load_cli_header): Update mono_cli_rva_image_map signature.
9627         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9628         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9629         (mono_image_rva_map): Add support for module handles.
9630         (mono_image_ensure_section_idx): Add support for module handles.
9631         (mono_image_close): Add support for module handles.
9632         (do_load_header): Add support for module handles.
9633         (mono_image_open_from_module_handle): New function for internal use.
9634         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9635         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9636         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9637         handles.
9638         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9639         * image.h: Add mono_image_fixup_vtable.
9640         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9641         support.
9642         * coree.h: New file.
9643         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9644         unsupported native code.
9645         (mono_marshal_set_callconv_from_modopt): New function splitted from
9646         mono_marshal_get_managed_wrapper.
9647         (mono_marshal_get_managed_wrapper): Use
9648         mono_marshal_set_callconv_from_modopt.
9649         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9650         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9651         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9652         that results in a deadlock when the runtime is loaded in _CorDllMain.
9653         * Makefile.am: Add coree.c and coree.h.
9655         Contributed under MIT/X11 license.
9657 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9659         * generic-sharing.c: Search for type arguments in array element
9660         types as well.
9662 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9664         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9666         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9668         * object.c: Don't setup the RGCTX when the vtable is created,
9669         because we're setting it up lazily now.
9671 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9673         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9674         64 bit support.
9676 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9678         * verify.c (verify_class_for_overlapping_reference_fields): 
9679         If class is under fulltrust allow reference types to overllap
9680         if they have the same RVA.
9682 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9684         * pedump.c: Added new flag valid-only, that makes the verifier
9685         behaves just like --security=validil. It won't fail type load
9686         due to unverifiable restrictions.
9688 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9690         * class-internals.h (struct MonoMethod): Added a verification_success
9691         field to cache verifier executions. Reduced MonoMethod:slot size by
9692         one bit.
9694 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9696         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9697         instead of a 'vt' argument to save an indirection and to allow these to be used
9698         for valuetypes.
9699         (scan_vtype): New helper function to scan an area using a gc descriptor.
9700         (mono_gc_wbarrier_value_copy): Implement this.
9701         (handle_remset): Add support for REMSET_VTYPE.
9702         (find_in_remset_loc): Ditto.
9703         (mono_gc_base_init): Allow some debugging options to be controlled through the
9704         use of the MONO_GC_DEBUG env variable.
9705         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9706         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9708 2008-04-23  Martin Baulig  <martin@ximian.com>
9710         * domain.c (mono_domain_create): Move the call to
9711         mono_debug_domain_create() down, after allocating the domain id.
9713 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9715         verify.c (verify_class_for_overlapping_reference_fields): Skip
9716         static fields while verifying for overlapping fields as they
9717         don't matter at all.
9719 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9721         * domain-internals.h: added a declaration of
9722         mono_make_shadow_copy.
9724         * assembly.c (mono_assembly_open_full): shadow copying of
9725         assemblies moved to here, so that all the assemblies within the
9726         application domain's private binary directories can be
9727         processed. Fixes bug #380546
9729         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9730         mono_make_shadow_copy and made non-static. The decision whether
9731         to shadow-copy an assembly is made based on its location - it's
9732         copied if it's in one of the private application domain binary
9733         directories and its different to the target file in the shadow
9734         directory. Fixes bug #380546
9736 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9738         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9740         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9741         types.
9743         * reflection.c (mono_image_create_token): Handle 
9744         Method/ConstructorOnTypeBuilderInst.
9745         (resolve_object): Ditto.
9746         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9747         so it can be called from resolve_object. Also handle the case when the inflated
9748         class already has its methods setup.
9750 2008-04-21  Martin Baulig  <martin@ximian.com>
9752         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9754 2008-04-20  Geoff Norton  <gnorton@novell.com>
9756         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9757         pointer dereference.
9759 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9761         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9762         portability API to look up the assembly file. Fixes behavior in
9763         situations when the application has a bin/ directory, but the
9764         assembly search patch refers to Bin/ (and thus the requested file
9765         name is Bin/SomeLibrary.dll). Fixes bug #379888
9767 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9769         verify.c (mono_type_is_generic_argument): Extracted this check
9770         from a dozen places to here.
9772         verify.c: Fixed all issues related to boxing generic arguments
9773         and their constraints.
9775 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9777         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9779 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9781         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9782         isn't finished yet. Fixes #363447.
9784 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9786         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9787         Fixes #346419.
9789 2008-04-13  Jb Evain  <jbevain@novell.com>
9791         * domain.c: update the 2.1 profile versions.
9792         Merged from the Moonlight 2 branch.
9794 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9796         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9797         mscorlibs for the non-refonly case as well.
9799         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9800         in mono_assembly_load_from_full (). Fixes #378924.
9802 2008-04-11  Geoff Norton  <gnorton@novell.com>
9804         * icall.c: The global extern environ doesn't exist on Mac.  We
9805         need to call NSGetEnviron instead.
9807 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9809         verify.c: Add generic method constraint verification.
9811 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9813         class.c (mono_class_inflate_generic_method_full): Add a long
9814         explanation to the is_mb_open hack. Remove the FIXME.
9816 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9818         * verify.c (mono_method_verify): Mark all unknown opcodes
9819         as invalid. Mark jmp as unverifiable.
9821 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9823         * verify.c: Add code to do type constraint verification on class instances.
9825         * verify.c (mono_verifier_verify_class): Use the type constraint 
9826         verification code.
9828 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9830         * class.c (mono_class_get_field_default_value): Don't pass cindex
9831         as hint to mono_metadata_get_constant_index. The local is not initialized
9832         and should contain garbage most of the time. This could only work
9833         with a lot of luck.
9835 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9837         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9839 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9841         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9843         * class.c (mono_class_from_generic_parameter): Save the token of the
9844         generic param in MonoClass::sizes.generic_param_token.
9846         * reflection.c (mono_custom_attrs_from_class): If the class type is
9847         VAR or MVAR retrieve the attributes of the generic param.
9849 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9851         * class.c (mono_class_init): Do class verification if the verifier
9852         is enabled.
9854 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9856         * verify-internal.h: Added mono_verifier_verify_class.
9858         * verify.c: Added mono_verifier_verify_class. It checks for
9859         classes with explicit layout that have overlapping reference fields.
9861         * pedump.c: Init the verifier state prior to verification. Fixed
9862         command line arguments.
9864 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9866         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9868 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9870         * verify-internals.h: Fix a warning.
9872 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9874         * verify-internals.h: New header with the verifier configuration
9875         extracted from mini.c.
9877         * verify.c: Implemented the new functions exported by verify-internals.h.
9879 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9881         * verify.c: Add proper verification of ckfinite.
9883 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9885         * verify.c (do_conversion): Improved error message to something
9886         more meanfull.
9888         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9889         with primitive types.
9891 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9893         * verify.c: Added tail prefix checking. Marked icall
9894         as unverifible.
9896 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9898         * verify.c: Fix the detection of branches to the middle
9899         of an instruction.
9901 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9903         * verify.c: Implemented verification of volatile. and
9904         unaligned. prefix. Check if a type is valid after retrieving it.
9906 2008-04-01  Dick Porter  <dick@ximian.com>
9908         * process.c (process_get_fileversion): If there's no string block,
9909         set the file language to en_US.  Fixes the other new part of bug
9910         374600.
9912 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9914         * class.c: New functions mono_method_can_access_field_full and
9915         mono_method_can_access_method_full. They perform type visibility
9916         and type site check.
9918         * class-internal.h: Added exported functions.
9920         * verify.c: Use new functions to implement proper visibility checks.
9922 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9924         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9926 2008-03-28  Dick Porter  <dick@ximian.com>
9928         * process.c (process_get_fileversion): Use the first language ID
9929         we see, rather than insisting on an invariant language.  Fixes bug
9930         374600.
9932 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9934         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9935         the streams to fix reading of invalid memory later.
9937         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9938         to ease debugging.
9940 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9942         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9943         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9945 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9946         * threads.h: Added MonoThreadManageCallback type and
9947         mono_thread_set_manage_callback prototype
9948         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9949         (used to store the mono_thread_manage callback).
9950         * threads.c: Added mono_thread_set_manage_callback, and handle
9951         "MonoThread->manage_callback" in build_wait_tids.
9953 2008-03-26  Dick Porter  <dick@ximian.com>
9955         * process.c (process_get_fileversion): Set FileVersionInfo strings
9956         to Empty when the resource doesn't have the particular info.
9957         Fixes bug 355717.
9959 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9961         * verify.c (mono_method_verify): Proper prefix validation.
9963 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9965         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9966         itself in a separate argument instead of throwing them. Fixes #373448.
9968         * appdomain.c: Bump corlib version.
9970 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9972         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9974 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9976         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9977         version macros.
9979 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9981         * generic-sharing.c, class-internals.h: Code for putting
9982         reflection types into the runtime generic context.
9984 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9986         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9987         Fixes #340662. 
9990 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9992         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9994         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9996         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9998         * verify.c (do_cast): Let the result value keep the boxed status.
10000         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10002 2008-03-17  Jb Evain  <jbevain@novell.com>
10004         * reflection.c: when running on a 2.0 runtime, emit
10005         unconditionally the #~ header version as 2.0, and the
10006         CLI header version as 2.5, for symmetry's sake with csc.
10008 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10010         * class.c: Remove the unused cache_interface_offsets stuff.
10012         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10013         profiler.c: Fix warnings.
10015 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10017         * generic-sharing.c, class-internals.h: Support for putting
10018         methods into the runtime generic context.
10020 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10022         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10023         classes which are generic instances of not-yet finished typebuilders. Fixes
10024         #351172.
10026         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10028 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10030         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10032         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10033         field, replace it with a hash table in MonoDynamicImage.
10035         * reflection.c (inflate_mono_method): Access the generic definition object from
10036         image->generic_def_objects instead of imethod->reflection_info.
10038         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10040         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10041         
10042         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10043         function in reflection.c so it is easier to keep in sync with the dynamic image
10044         creation code.
10046         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10047         mono_image_close ().
10049 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10051         * class.c (mono_class_generic_sharing_enabled): Disable generic
10052         sharing for all architectures except AMD64 and x86 to fix build.
10054 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10056         * verify.c: Use the generic definition MonoGenericContext when available.
10057         Remove code for checking generics instance compatibility in favor of
10058         mono_class_is_assignable_from.
10060 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10062         * marshal.c, marshal.h, metadata-internals.h, image.c,
10063         wrapper-types.h: New wrapper for invoking a shared static method
10064         without having to pass the runtime generic context argument.
10066 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10068         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10070 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10072         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10073         
10074         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10075         create a token from a FieldOnTypeBuilderInst.
10076         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10077         (resolve_object): Ditto.
10079         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10080         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10082 2008-03-14  Martin Baulig  <martin@ximian.com>
10084         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10086         * debug-mono-symfile.h
10087         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10088         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10090 2008-03-10  Martin Baulig  <martin@ximian.com>
10092         * debug-mono-symfile.h
10093         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10094         `lexical_block_table_offset'.
10095         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10096         `lexical_blocks'.
10097         (MonoSymbolFile): Added `version'.
10099         * mono-debug.h
10100         (MonoDebugLexicalBlockEntry): Removed.
10101         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10102         `lexical_blocks'.
10104         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10105         blocks here; the debugger now does this internally.
10107 2008-02-27  Martin Baulig  <martin@ximian.com>
10109         * object.c (mono_runtime_exec_main): Call
10110         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10111         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10113 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10115         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10116         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10118 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10120         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10121         ldftn with a virtual method.
10123 2008-03-13  Geoff Norton  <gnorton@novell.com>
10125         * decimal.c:  Only include memory.h if the platform has it.
10127 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10129         * assembly.c, class.c, metadata-internals.h: make sure public key
10130         tokesns are compared in a case-insensitive way. Also, all
10131         the lookups in the GAC use a lowercase public key token
10132         (gaacutil already does the lowercasing on install). Fixes
10133         bug #369541.
10135 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10137         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10138         and return value.
10140 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10142         * image.c: when someone loads a mscorlib from a file, return the
10143         currently loaded mscorlib (fixes bug #369253).
10145 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10147         * class.c: handle types with no parents by forcing them to have
10148         System.Object as a parent and marking them as broken (this currently
10149         allows the first part of bug #369173 to work as well, likely because
10150         we don't check for typeload exceptions everywhere yet).
10152 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10154         * class.c: more complete check that types belong to corlib
10155         (fixes second part of bug #369173).
10157 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10159         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10160           "inline" to "__inline" before including mono-membar.h.
10161           
10162         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10163           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10164           MSVC builds.
10166         Contributed under MIT/X11 license.
10168 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10170         * verify.c (do_invoke_method): Remove return type validation.
10172         * verify.c (do_ret): Do return type validation at return site instead of
10173         call site.
10175 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10177         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10179         * verify.c: Some todos cleaned and improved a few error messages.
10181 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10183         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10185 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10187         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10188         system types correctly.
10190         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10191         function.
10193 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10195         * assembly.c (build_assembly_name): Fix a warning.
10197 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10199         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10200         the called function takes an object type argument. Fixes storing or
10201         valuetypes across remoting as well as reducing memory usage.
10202         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10203         stfld_remote wrapper caches.
10205 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10207         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10208         is not found.
10210         * reflection.c (mono_image_register_token): New helper function to save
10211         a token->object mapping.        
10213         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10214         managed code.
10216         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10217         one dimension arrays. Fixes #367670.
10218         (mono_reflection_get_type_internal): Ditto.
10220 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10222         * marshal.c: mono_load_remote_field_new() always returns object.
10223         so use the proper signature (fixes bug #366445).
10225 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10226         
10227         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10228         add an 'inline_failure' flag instead.
10230 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10232         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10233         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10234         contains the location of "this", used for exception handling.
10236 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10238         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10239         their size on all platforms for perf reasons.
10241 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10243         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10244         object-internal.h
10246         * object-internal.h: Same.
10248 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10250         * reflection.h: Fix the build I just broke.
10252 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10254         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10255         Test if a token is valid, this remove explicit usage of 
10256         MonoDynamicImage::tokens from the verifier code.
10258         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10260         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10261         instead of direct access to MonoDynamicImage::tokens.
10263 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10265         * verify.c (token_bounds_check): Fix the build I just broke.
10267 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10269         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10271         * verify.c (verifier_load_method): Fixed the errors message.
10273         * verify.c (mono_method_verify): Fixed a debug message.
10275 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10277         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10278         mono-perfcounters.h, class-internals.h: support for predefined
10279         writable counters, query of categories and counters, bugfixes.
10281 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10283         * verify.c (do_refanytype): Verify the refanytype opcode.
10285         * verify.c (mono_method_verify): Use do_refanytype.
10287 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10289         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10291         * verify.c (mono_method_verify): Use do_mkrefany.
10293 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10295         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10296         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10297         implementation.
10299 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10301         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10302         the type load exception.
10304 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10306         * verify.c: Added a few FIXME for method signatures
10308         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10309         of mono_method_get_signature and get vararg call working. Removed unused
10310         checks for return value.
10312         * verify.c (do_refanyval): Verify the refanyval opcode.
10314         * verify.c (mono_method_verify): Implemented verification of arglist and
10315         use do_refanyval.
10317 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10319         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10320         vtypes to marshal.c.
10322         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10323         it works for AOT as well.
10325 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10327         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10328         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10329         the system time is adjusted.
10331 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10333         * icall.c, icall-def.h: use the new time functions (fixes the
10334         non-monotonic behaviour of TickCount).
10336 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10338         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10339         it breaks the build.
10340         
10341         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10342         cattr is not finished yet.
10344 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10346         * verify.c: Proper token validation for field, method and type.
10348 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10350         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10352         * loader.c (method_from_memberref): Generate type load error instead of method missing
10353         if the type is not found.
10355 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10357         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10358         some of the conversions caused the generation of a marshal directive exception.
10360 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10362         verify.c: Report which exception should be thrown by the JIT.
10363         Added a lot of FIXME notes.
10365 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10367         * generic-sharing.c: Runtime generic context slots are not
10368         instantiated on init anymore.  Instead, provide function to do the
10369         instantiating on demand.
10371         * class-internals.h: Added vtable to runtime generic context.
10372         Macros for encoding direct and indirect slot offsets in one
10373         guint32.
10375 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10377         * object.c, generic-sharing.c: Moved some generic sharing code
10378         from object.c to generic-sharing.c.
10380         * generic-sharing.c: Added support for extensible runtime generic
10381         context.
10383         * metadata-internals.h: Two new hash tables in MonoImage for
10384         extensible runtime generic context support.
10386         * domain.c: Unregister generic vtables upon domain unloading.
10388         * image.c: Destroy new hash tables upon image unloading.
10390         * metadata.c: Unregister generic subclasses upon image unloading.
10392         * class-internals.h: New data structure for runtime generic
10393         context template.  New fields in the runtime generic context for
10394         extensible part.
10396         * Makefile.am: Added generic-sharing.c.
10398 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10400         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10401         there is a pending loader exception, raise it.
10403         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10404         same.
10406         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10407         same.
10409         Fixes #363450.
10411 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10413         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10415         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10416         
10417         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10418         ref-only requests for compatibility with MS.
10420 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10422         * reflection.c (mono_custom_attrs_from_method): Don't silently
10423         return an empty list for generic method instances.
10424         (mono_custom_attrs_from_param): Likewise.
10426 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10427             Raja R Harinath  <harinath@hurrynot.org>
10429         Fix #354757
10430         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10431         * class.c (mono_class_inflate_generic_method_full): Initialize it
10432         when a fully-open method is instantiated.
10433         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10434         to new field.
10435         * reflection.c (inflate_mono_method): Don't create a temporary context.
10437 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10439         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10440         Compute correct value, to prepare for imethod->reflection_info going away.
10442 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10444         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10446 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10448         * verify.c: Implement skip visibility flag.
10450 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10452         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10453         which contains an extra field to tell the kind of exception that should be thrown.
10455         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10457 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10459         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10460         'method' is updated.
10462 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10464         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10465         explicit layout as well. Fixes #360375.
10467 2008-02-11  Geoff Norton  <gnorton@novell.com>
10469         * loader.c: Guard and dereference against inflated generic methods
10471 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10473         * class.c: Include Retargetable spec in assembly name.
10474         * assembly.c: Always include PublicKeyToken spec in assembly name
10475         (with value "null" if assembly is not signed), and include
10476         Retargetable spec.
10477         * icall-def.h: Added icall for Assembly.get_fullname.
10478         * icall.c: Added icall returning the fullname of an assembly.
10480 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10482         * class.c (mono_class_setup_vtable_general): Add a missing call to
10483         mono_class_setup_methods () which is needed in the AOT case.
10485 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10487         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10488         stack type of the given MonoType.
10490         * verify.c (verify_type_compatibility_full): Handle the void type.
10492         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10493         way stack merging works.
10495         * verify.c (store_local): Improved verification message.
10497         * verify.c (do_branch_op): If the merging is invalid, the method
10498         is unverifiable and not invalid. Improved error message.
10500         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10501         a reference type diferent than System.Object. Improved error
10502         message.
10504 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10506         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10508         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10509         type of an enum even if the argument is byref.
10511         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10512         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10514         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10516         *verify.c (verify_type_compatibility_full): Make enum types
10517         compatible with their base types.
10519         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10520         types are compatible for the special case of a boxed valuetype and
10521         System.Object.
10523         * verify.c (verify_stack_type_compatibility): The function
10524         is_compatible_boxed_valuetype was extracted from here.
10526         * verify.c (push_arg): Only set ctx->has_this_store if the method
10527         is not static.
10529         * verify.c (do_ldelem): Fixed a typo in an error message and added
10530         strict check for mixing int32 and native int as the array type
10531         and ldelem type.
10533         * verify.c (merge_stacks): Consider boxed valuetypes in the
10534         compatibility checks.
10536 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10537         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10539 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10540         *class.c: use_new_interface_vtable_code: renamed the env var to have
10541         a "MONO_" prefix, and fix the logic to enable it by default.
10543 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10544         *class.c:
10545         mono_class_setup_vtable_general: rewrote the way in which interface
10546         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10547         makes the code more maintainable.
10548         For now the old code is still there, and can be activated setting
10549         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10551 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10553         * verify.c: guarded some debug functions around and #ifdef.
10555         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10557 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10559         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10560         changes for now since they seem to break too many things.
10562 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10564         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10565         mono_marshal_find_nonzero_bit_offset): Added macro and function
10566         for finding the byte- and bit-offset of a bitfield within a
10567         struct.
10569 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10571         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10572         (mono_marshal_get_struct_to_ptr): Ditto.
10574         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10575         cctor_signature.
10577 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10579         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10580         between methods for non-corlib types.
10582 2008-02-02  Geoff Norton  <gnorton@novell.com>
10584         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10585         generic parameters as well. (Fixes #342536)
10587 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10589         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10591         * verify.c (do_invoke_method): Fix for calling with byref structs.
10593         * verify.c (do_cast): push a boxed value type based on the type token and not
10594         the type of stack.
10596 2008-01-31  William Holmes  <billholmes54@gmail.com>
10598         * process.c (process_module_string_read): Check the size returned form 
10599           VerQueryValue to avoid out of memory exception. 
10601 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10603         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10604         Handle properly modules which are not in the moduleref table. Fixes
10605         #356938.
10607 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10609         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10610         the dynamic case which is now in managed code.
10611         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10613         * marshal.c (mono_string_to_bstr): Fix a warning.
10614         (init_com_provider_ms): Ditto.
10616         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10618         * exception.c (mono_get_exception_out_of_memory): New helper function.
10620 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10622         * marshal.c: Add support for BSTR marshalling
10623         using other COM systems.
10625         Code is contributed under MIT/X11 license.
10627 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10629         * object.c (mono_runtime_invoke_array): reverted previous
10630         commit as it breaks the build.
10632 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10634         * object.c (mono_runtime_invoke_array): Verify arguments for
10635         invalid types. Fixes #348522.
10637 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10639         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10640         non-final virtual calls using call. 
10642         * verify.c (do_invoke): fixed some TODOs.
10644         * verify.c (push_arg): set has_this_store for "ldarga 0".
10646 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10648         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10649         which belong to an inflated class. Fixes #356531.
10651 2008-01-26  Robert Jordan  <robertj@gmx.net>
10653         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10654         which resort to FindFirstFile when a certain error condition
10655         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10656         Code is contributed under MIT/X11 license.
10658 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10660         * marshal.c (emit_marshal_string): Fix out string marshalling
10661         to use specified encoding. Fixes #323900.
10663         Code is contributed under MIT/X11 license.
10665 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10667         * class.c (mono_class_inflate_generic_method_full): Don't modify
10668         iresult->context after cache check.
10670 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10672         * class.c (mono_class_inflate_generic_method_full): Change the
10673         struct assignments to memcpy for better visibility and add some comments.
10675 2008-01-23  Dick Porter  <dick@ximian.com>
10677         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10678         procedure, and make it work on windows.
10680 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10682         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10683         a MonoReflectionTypeBuilder since it is always of that type.
10685         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10687         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10689         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10690         
10691         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10693         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10695         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10696         instantiations from the type cache.
10698 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10700         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10702         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10704 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10706         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10708         * verify.c (mono_method_verify): removed old TODO
10710 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10712         * verify.c (do_newobj): add visibility check.
10714 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10716         * verify.c (do_load_function_ptr): add visibility check.
10718 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10719         *class.c:
10720         mono_generic_class_get_class: hook profiler events.
10721         mono_field_get_offset: added to support heap-shot in the new profiler.
10722         *class.h: exported mono_field_get_offset.
10723         * reflection.c:
10724         mono_reflection_setup_internal_class: hook profiler events.
10726 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10728         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10729         argument here too and use it to avoid checking for pending exceptions if 
10730         possible.
10732 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10734         * assembly.c (build_assembly_name): add arg for passing the assembly
10735         flags. Do not consider a PublicKey with value "null" valid.
10736         (mono_assembly_name_parse_full): added boolean argument that will be
10737         set if the assembly name contains a PublicKeyToken spec. Added support
10738         for the Retargetable spec for which only Yes or No are allowed as valid
10739         value. Consider assembly name invalid if Retargetable spec is set, but
10740         either version, culture or public key (token) are not specified.
10741         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10742         with implementation in assembly.c.
10743         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10744         from MonoAssemblyName.
10745         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10746         introduced argument for mono_assembly_name_parse_full to know if the
10747         assembly name has a PublicKeyToken spec, and if it has instruct
10748         fill_reflection_assembly_name to use default value for keyToken (if
10749         PublicKeyToken is null).
10751 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10753         * verify.c (mono_method_verify): fixed ovf ops with
10754         float values. They are unverifiable now.
10756 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10758         * class.c (set_failure_from_loader_error): add BadImageException to the
10759         list of exceptions that can cause a type to fail to load.
10761         * class.c (mono_class_get_exception_for_failure): same.
10763 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10765         * verify.c (in_any_exception_block): added, check if offset
10766         is part of any exception handling clause.
10768         * verify.c (get_stack_type): added VAR and MVAR types.
10770         * verify.c (do_stobj): better error messages.
10772         * verify.c (do_cpobj): added, check cpobj.
10774         * verify.c (do_initobj): added, check initobj.
10776         * verify.c (do_sizeof): added, check sizeof.
10778         * verify.c (do_localloc): added, check localloc.
10780         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10782 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10784         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10785         save_lmf/restore_lmf opcodes.
10787         * threads.c (mono_threads_install_notify_pending_exc): New function to
10788         install a callback notifying the JIT there is a pending exception on a thread.
10789         (mono_thread_request_interruption): Call the new callback.
10790         (mono_thread_get_and_clear_pending_exception): New function to return the
10791         exception pending on a thread.
10793         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10794         to turn off checking for pending exceptions.
10795         (mono_marshal_get_native_wrapper): Ditto.
10797 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10799         * threads-types.h: Get rid of the unnecessary extern declarations.
10801 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10803         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10804         return field from parent class if not private.
10805         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10806         returns fields from parent class if they are not private.
10807         (method_nonpublic): added function to determine if a given method
10808         should be considered non-public. Returns false for private methods
10809         on parent class, and internal methods from parent on the 1.0 profile.
10810         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10811         use method_nonpublic function to determine whether method should be
10812         returned.
10813         (property_accessor_public): use newly introduced method_nonpublic
10814         function to determine whether accessor is non-public. 
10815         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10816         event from parent class if not private. Only return static event if
10817         Static flag is set, and only return static event from parent class if
10818         FlattenHierarchy flag is set.
10819         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10820         include non-private events from parent class.
10822 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10824         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10825         warning.
10827 2008-01-16  Wade Berrier <wberrier@novell.com>
10829         * security.c: Add assembly.h header to appease some warnings
10831 2008-01-16  Dick Porter  <dick@ximian.com>
10833         * process.c (process_module_string_read): Remove trailing null
10834         when saving string.
10836 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10838         * class-internals.h: A new data structure describing the layout of
10839         a runtime generic context (MonoRuntimeGenericContextTemplate).
10841         * metadata-internals.h: Added a hash table to MonoDomain that maps
10842         from open generic classes to their runtime generic context
10843         templates.
10845         * object.c: Building of the runtime generic context, including
10846         proper handling of generic type arguments of superclasses.
10847         Building of the runtime generic context according to the template.
10849 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10851         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10852         Fixes #350856.
10854         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10855         mono_portability_find_file (). Fixes #325466.
10856         (mono_image_get_public_key): Fix a warning.
10858 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10860         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10861         Fixes #353550.
10862         (mono_class_from_name_case): Ditto.
10864 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10866         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10867           common storage for the tables used in the System/NumberFormatter class.
10869 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10871         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10873 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10875         * verify.c (get_boxable_mono_type): check if the token is valid.
10877         * verify.c (set_stack_value): changed to add an error if an
10878         invalid type is set on stack. Changed all callers due to signature change.
10880         * verify.c (do_stobj): implement stobj validation.
10882 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10884         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10885         set container->is_method, it was set earlier.
10887         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10888         generic methods.
10890         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10891         is_method of the generic container to TRUE for methods.
10893 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10895         * metadata.c (type_in_image): Handle type parameters properly.
10897         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10898         memory ownership of this structure.
10900 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10902         * verify.c (get_boxable_mono_type): make typedref types been just
10903         unverifiable. check for void type.
10905         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10907         * verify.c (do_load_function_ptr): accept method spec tokens.
10909 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10911         * marshal.c (mono_class_native_size): Always set *align even if this is called
10912         recursively.
10914 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10916         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10917         out-of-date.
10919 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10921         * verify.c: removed some old unused tables. A huge bunch of small fixes
10922         to things found while testing the verifier with mono basic.
10924         * verify.c (dump_stack_value): dump null literal flag to.
10926         * verify.c (verify_type_compatibility_full): fix comparison
10927         for types that have a generic super type.
10929         * verify.c (verify_stack_type_compatibility): fix compatibility
10930         between null literals and reference types. fix compatibility between
10931         boxed valuetypes and object. fix corner case test for enums.
10933         * verify.c (do_cmp_op): proper verification of cgt.un in case
10934         of reference types.
10936         * verify.c (do_invoke_method): fix error message.
10938         * verify.c (do_store_indirect
10940         * verify.c (check_is_valid_type_for_field_ops): proper verification
10941         of managed pointers to valuetypes and boxed valuetypes. proper verification
10942         of null literals.
10944         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10945         allow token to be a reference type.
10947         * verify.c (do_cast): proper handling of boxes valuetypes.
10949         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10950         in object[].
10952         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10953         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10954         fixed the decoding of unbox_any
10956 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10958         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10960 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10962         * verify.c (do_newobj): do delegate verification.
10964         * verify.c (verify_delegate_compatibility): perform delegate
10965         verification.
10967         * verify.c (verify_ldftn_delegate): perform tests related to
10968         ldftn delegates.
10970         * verify.c (mono_delegate_signature_equal): perform the
10971         slightly diferent signature comparison required by delegates.
10973         * metadata.c (mono_metadata_type_equal_full): added and exported
10974         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10975         allows signature only comparison.
10977         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10978         as MONO_INTERNAL.
10980 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10982         * verify.c: added a bunch of stack_slot_* functions to
10983         make access to stack slot type easier. This is required to
10984         allow optional flags, like null literal, boxed value and
10985         this pointer.
10986         All access paths to IlStackDesc::stype have been changed 
10987         to use these new funcions.
10988         Removed a bunch of unused functions and cleared all warnings.
10989         This patch introduces the usage of the this pointer and 
10990         boxed value flags.
10992 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10994         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10996 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10998         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10999         match managed version.
11001         * appdomain.c: Bump corlib version.
11002         
11003         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11004         argument.
11006 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11008         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11009         Set public key token to zero-length byte array if assembly is not
11010         strongnamed.
11012 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11014         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11015         writing a vtype array elem.
11017 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11019         * assembly.c (build_assembly_name): return FALSE if length of token is
11020         not 16 (if not "null").
11021         (mono_assembly_name_parse_full): return FALSE if value of version,
11022         culture, token or key is 0.
11023         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11024         specify whether public key and public key token must be set to default
11025         value (zero-length byte array) if not available. Set versioncompat to
11026         SameMachine. If public key is available or the default is set, then
11027         set PublicKey flag.
11028         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11029         is available, use empty byte array as default value. On the 2.0
11030         profile, use default value for public key token if not set.
11031         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11032         profile, use default value for public key if not set. On the 2.0
11033         profile, use default value for public key token if not set.
11034         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11035         default values for public key and public key token.
11037 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11039         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11040         field to keep it in synch with the managed object.
11042         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11043         delegates. Fixes #351520.
11045         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11046         contains defined memory.
11047         
11048         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11050         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11051         
11052         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11053         of the GC data structures.
11055         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11057         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11058         
11059         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11060         barrier.
11061         (mono_array_clone_in_domain): Ditto.
11062         (mono_array_clone_in_domain): Ditto.
11064         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11065         (cache_culture): Use a write barrier.
11067         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11068         (ves_icall_get_property_info): Ditto.
11070         * object.h (MONO_STRUCT_SETREF): New macro.
11072         * class-internals.h (MonoStats): Add some GC statistics.
11074         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11076 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11078         * exception.c (mono_exception_from_name_two_strings):
11079         Break from loop after method is found.
11081 2008-01-04  Dick Porter  <dick@ximian.com>
11083         * process.c (process_module_string_read): Rename variable to
11084         reflect correct usage, after fixing bug 345972.
11086 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11088         * verify.c (mono_type_create_fnptr_from_mono_method): 
11089         created a MonoType function pointer instance to be used during
11090         verification. The verifier releases this memory at end.
11092         * verify.c (mono_method_is_constructor): extracted repeated
11093         checks for constructor into a single class.
11095         * verify.c (do_push_field): use new extracted method
11096         for constructor check.
11098         * verify.c (do_newobj): same.
11100         * verify.c (do_ldftn): renamed to do_load_function_ptr
11101         and make it verify ldvirtftn too.
11103         * verify.c (mono_method_verify: proper verification
11104         of ldvirtftn. release created MonoMethod instances.
11106 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11108         * verify.c (token_bounds_check): added.
11110         * verify.c (do_ldftn): added.
11112         * verify.c (mono_method_verify): proper verificartion of ldftn.
11114 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11116         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11117         than the table row count. It's the resposibility of the caller to
11118         make the bounds check and raise the correct error.
11120         * metadata.c (mono_metadata_decode_row_col): Same.
11122         * loader.c (mono_get_method_from_token): perform bounds check
11123         on token for methoddef table.
11125 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11127         * icall.c
11128         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11129         assert into a negative result, the managed code already coped with
11130         that.
11132         Some folks on Windows reported this error. 
11134 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11136         * appdomain.c: Bump corlib version.
11137         * icall.c:
11138         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11139         CultureInfo.CreateCulture to create CultureInfo for name.
11140         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11141         create CultureInfo for name. Fixes bug #347174.
11143 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11145         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11146         flags.
11148         * verify.c (is_valid_branch_instruction): allow branching to the
11149         first instruction of the protected block.
11151         * verify.c (is_valid_cmp_branch_instruction): same.
11153         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11154         avoid double initialization.
11156         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11157         detect which cases the eval stack should just be copied.
11159         * verify.c (mono_method_verify): check if the eval stack
11160         is empty when entering a protected block.
11162 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11164         * verify.c: added is_clause_in_range, is_clause_inside_range,
11165         is_clause_nested and verify_clause_relationship. They perform
11166         the verifications stated in P1 12.4.2.7.
11168         * verify.c (mono_method_verify): remove some unused variables,
11169         add the new exception clause checks, add instruction border
11170         checks for protected block start/end, improved some error 
11171         messages and fixed a bug in the way invalid instruction access
11172         is detected.
11174 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11176         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11177         from GC 7.0 if available.
11179         * object.c: Remove an unused define.
11180         
11181         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11183         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11185         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11187         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11189         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11190         to take the same arguments as the other make_descr functions.
11192         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11194         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11195         directly.
11197         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11198         mini.c.
11200         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11201         call to boehm-gc.c.
11203         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11205         * null-gc.c (mono_gc_register_root): Fix a warning.
11207         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11209         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11210         (mono_gc_base_init): Call GC_init ().
11212         * null-gc.c: Define mono_gc_register_root () as a no-op.
11214         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11216 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11218         * verify.c: add prototype for merge_stacks at top
11220         * verify.c (do_switch): added.
11222         * verify.c (merge_stacks): on some cases the stack merging
11223         was not happening properly. Unequal stack sizes at merge
11224         points should be invalid.
11226         * verify.c (mono_method_verify): added more debug info on stack state.
11227         verify switch properly.
11229 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11231         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11232         marshal.h.
11234         * boehm-gc.c marshal.c: Include method-builder.h.
11236         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11238         * marshal.c: Remove some code which is now in method-builder.c.
11240 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11242         * method-builder.c: New file, extraction of the method builder functionality 
11243         from marshal.c.
11245         * marshal.c: Move the mb functions into method-builder.c.
11247         * marshal.h marshal.c: Export some mono_mb_... functions.
11249         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11251         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11252         the caller.
11254         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11256         * loader.c (mono_field_from_token): Ditto.      
11258         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11259         type as well.
11260         
11261         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11262         Fixes #342565.
11264         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11265         a helper function for setting it.
11267         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11269         
11270         * assembly.c: Significally simplify code now that referenced assemblies are 
11271         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11273         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11274         #349952.
11276 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11278         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11279         instructions that were target of branches or are at protected block boundaries.
11281         * verify.c (in_same_block): handle filter clauses.
11283         * verify.c (is_valid_branch_instruction): added. checks the target of
11284         instructions br or brtrue/false.
11286         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11287         binary branch instructions such as beq and bge.
11289         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11290         and made it pin the instruction as been part of the exception block.
11292         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11293         of in_same_block.
11295         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11296         of in_same_block.
11298         * verify.c (do_ret): ret from a protected block is unverifiable and
11299         not invalid.
11301         * verify.c (do_static_branch): verify br and br.s instructions.
11303         * verify.c (merge_stacks): add extra param to support detection
11304         of branches in the middle of instructions.
11305         
11306         * verify.c (mono_method_verify): verify branches and exception blocks
11307         that target the middle of instructions. Proper verification of br and br.s.
11309 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11311         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11312         skip_visibility field.
11313         (reflection_methodbuilder_from_dynamic_method): Ditto.
11315         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11316         registrations. Fixes #348193.
11318         * threads.h: Move the internal mono_thread_get_pending_exception () to
11319         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11321 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11323         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11324         icall registration. Fixes #348193.
11326         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11327         for corlib classes into object. Fixes #349621.
11329 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11331         * icall.c (property_accessor_nonpublic): new function to determine
11332         whether an accessor allows a property to be considered non-public.
11333         Returns false for private accessor(s) from parent class, and internal
11334         accessor(s) from parent on 2.0 profile (and higher).
11335         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11336         to determine whether property should be included if NonPublic flag
11337         is set. Fixes bug #349078.
11339 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11341         * verify.c (init_stack_with_value): added.
11343         * verify.c (mono_method_verify): extracted common
11344         code for exception initialization into init_stack_with_value.
11346         * verify.c (mono_method_verify): initialize the exception
11347         for handler clauses as well.
11349         * verify.c (mono_method_verify): fix the exception clause
11350         ordering rules, it should use handler end offset and not
11351         start offset.
11353 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11355         * rawbuffer.c: remove useless warning.
11357 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11359         * threads.h, threads-types.h: move functions to the correct header
11360         (fixes bug#349952).
11362 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11364         * verify.c (mono_method_verify): proper verification
11365         of exception handling clauses ranges and fallthru in
11366         and out of protected blocks.
11368 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11370         * verify.c (mono_method_verify): fixed compilation issue.
11372 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11374         * verify.c (mono_method_verify): a printf slipped in, changed
11375         to use verifier debug macro.
11377 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11379         * verify.c (is_correct_leave): check for filter clauses.
11381         * verify.c (do_filter): added.
11383         * verify.c (mono_method_verify): property verification of leave.
11386 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11388         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11389         Win32 build, until we figure out how to do the proper thing on
11390         Win32.
11392 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11394         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11395         by the previous patch.
11396         
11397         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11398         the assembly resolve handler for refonly assemblies.
11400 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11402         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11403         Make sure only one thread is allowed to commence shutdown, and
11404         don't allow new threads to be started once shutdown is in
11405         progress.
11407 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11409         * verify.c (is_correct_endfilter): added.
11411         * verify.c (is_unverifiable_endfilter): added.
11413         * verify.c (do_endfilter): added.
11415         * verify.c (mono_method_verify): property verification of endfilter
11416         and fixed a corner case or endfinally.
11418 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11420         * verify.h: new flags to support fail fast of unverifiable code and
11421         do non-strict verification. Non-strict verification is required to
11422         have MS runtime compatibility. There are a huge amount of unverifiable
11423         code that it accepts as verifiable. The strict mode verifies the code
11424         as the specs says.
11425         Non-strict mode will be required in cases where code needs to be
11426         accepted as verifiable but fails under strict mode.
11428         * pedump.c: added support to fail fast and non-strict verification.
11430         * verify.c: added support for both fail fast and non-strict verification.
11432 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11434         * verify.c (is_correct_endfinally): added.
11436         * verify.c (mono_method_verify): property verification of endfinally.
11438 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11440         * verify.c (in_any_block): check for filter clauses.
11442         * verify.c (is_correct_rethrow): added.
11444         * verify.c (mono_method_verify): property verification of rethrow.
11446         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11448 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11450         * verify.c (do_throw): added.
11452         * verify.c (mono_method_verify): property verification of throw
11454 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11456         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11457         assemblies. Fixes #346425.
11459 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11461         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11462         FieldBuilders.
11464         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11466         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11467         prevent asserts when this is called with a token which might not be valid.
11469         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11470         lookup_dynamic_token_class with valid_token == FALSE.
11472         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11474         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11476         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11477         
11478 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11480         * gc.c: Don't delay threadpool thread finalization unless Mono is
11481         shutting down.
11483 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11485         * threads.c: turn an assert into a non-fatal warning.
11487 2007-12-09  Robert Jordan  <robertj@gmx.net>
11489         * icall.c (GetVirtualMethod): Add missing argument validation.
11491 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11493         * verify.c (do_cast): added.
11495         * verify.c (mono_method_verify): property verification of castclass and isinst.
11498 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11500         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11502         * verify.c (do_stelem): added.
11504         * verify.c (mono_method_verify): property verification of stelem.X.
11506 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11508         * class.c, class-internals.h: Introduce an environment variable
11509         (MONO_GENERIC_SHARING) through which the extent of generic code
11510         sharing can be controlled (share all classes, share only corlib
11511         classes, or share nothing).
11513         * object.c: Only create runtime generic context for classes for
11514         which sharing is enabled.
11516 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11518         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11520         * verify.c (mono_method_verify): property verification of ldelem.any.
11522 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11524         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11525         added ldelem.X opcodes.
11527         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11529         * verify.c: proper verification of ldelem.X 
11531 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11533         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11535 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11537         * verify.c (mono_method_verify): null literal requires special handling,
11538         the value pushed on stack need to be flagged as so.
11540         * verify.c (do_ldelema): Verify ldelema properly.
11542 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11544         * verify.c: Verify ldlen properly.
11546 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11548         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11549         to the target object's type. Fixes #346160.
11551 2007-12-05  Dick Porter  <dick@ximian.com>
11553         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11554         Solaris needs the same workaround as BSD-derived systems.  Fixes
11555         bug 323524, patch by Burkhard Linke
11556         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11558 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11560         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11561         handle to use when error dialog is shown; otherwise, update mask
11562         to show no error dialog when an error occurs.
11564 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11566         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11568         * class.c (mono_class_get_field_default_value): New helper function to initialize
11569         field->def_type and field->data.
11571 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11573         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11574         the general one.
11576         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11578         * marshal.c: Avoid depending on delegate->method_info being set.
11580         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11581         
11582         * object.c (mono_delegate_ctor): Set delegate->method.
11584         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11586         * appdomain.c: Bump corlib version.
11588 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11590         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11591         equality check if we're comparing canonicalized MonoGenericInsts.
11593 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11595         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11596         accessing class->methods.
11598 2007-11-22  Dick Porter  <dick@ximian.com>
11600         * threads.c: Ensure that the synch_cs is set before trying to use
11601         it.
11603 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11605         * profiler.c: r89126 broke the statistial profiler, unbreak.
11607 2007-11-22  Martin Baulig  <martin@ximian.com>
11609         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11611         * mono-debug.c
11612         (mono_debug_debugger_version): Bump to 3.
11613         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11614         -> mono_debugger_class_initialized().
11616         * mono-debug-debugger.c
11617         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11619         * class.c
11620         (mono_debugger_start_class_init_func): Removed.
11621         (mono_debugger_class_loaded_methods_func): Added.
11622         (mono_class_setup_methods): Call it here.
11624 2007-11-22  Martin Baulig  <martin@ximian.com>
11626         * mono-debug.c
11627         (mono_debug_add_delegate_trampoline): New public method.
11628         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11630         * mono-debug.h
11631         (MonoSymbolTable): Added `global_data_table'.
11632         (MonoDebuggerTypeKind): Removed.
11634 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11636         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11637         these methods.
11639         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11640         
11641 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11643         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11645 2007-11-20  Martin Baulig  <martin@ximian.com>
11647         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11649         * mono-debug-debugger.c
11650         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11651         (mono_debugger_remove_breakpoint): Likewise.
11652         (mono_debugger_check_breakpoints): Likewise.
11653         (mono_debugger_register_class_init_callback): New public method.
11654         (mono_debugger_remove_class_init_callback): Likewise.
11655         (mono_debugger_add_type): Likewise.
11657         * mono-debug-debugger.h
11658         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11660 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11662         * class.c: more interface implementations needed for the
11663         array enumerator (fixes bug #341112).
11665 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11667         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11668         fix ParamName of ArgumentNullExceptions.
11670 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11672         * reflection.c (mono_reflection_encode_sighelper): Generate the
11673         modopts and modreqs.   I have a useless test that crashes monodis,
11674         but that shows the code working.
11676 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11678         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11679         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11681 2007-11-15  Dick Porter  <dick@ximian.com>
11683         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11684         When joining a thread, it's the thread that's calling Join that
11685         gets WaitSleepJoin state not the target.  Fixes the standalone
11686         test case in bug 334740, and hopefully the whole bug too.
11688 2007-11-15  Dick Porter  <dick@ximian.com>
11690         * process.c: Read file version info from the files pointed at by
11691         process modules, not the current process.  Fixes bug 315969.
11693         Use windows typedef names in some places to fix warnings on the
11694         windows build.
11696 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11698         * image.c, metadata-internals.h: Added a generic_class_cache hash
11699         to MonoImage for looking up generic classes when sharing generics.
11701 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11703         * sgen-gc.c: warning cleanups.
11705 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11707         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11708         inherited properties.
11710 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11712         * object.c, class-internals.h: Added more information to the
11713         runtime generic context.
11715 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11717         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11718         instead of just the target method. Generalize the abstract method handling to
11719         handle any non-static method.
11721         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11722         mono_marshal_get_delegate_invoke () signature change.
11724 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11726         * class.c, class-internals.h: Made
11727         mono_type_get_basic_type_from_generic () public.  Fixed member
11728         access check for shared generics.
11730         * loader.c: Don't insert field into field cache if it's part of a
11731         non-inflated generic class.
11733         * domain.c, domain-internals.h: The generic sharing context is now
11734         part of the jit info data structure.  Added two accessor
11735         functions.
11737 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11739         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11740         the array Get/Set/Address methods, since the JIT inlines them.
11742         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11744         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11745         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11747         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11748         mono_marshal_get_delegate_invoke signature change.
11750         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11751         an additional argument. Add support for invoking abstract methods.
11753         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11755         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11757 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11759         * class.c: Do field layout for open generic classes as well.
11761 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11763         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11764         other objects, because the threadpool is still around.  Put them
11765         in a list instead and after finalizing all other objects in the
11766         root domain shut down the thread pool and then finalize the
11767         threads.  Fixes bug #337383.
11769         * threads.c, thread-types.h: New mono_thread_create_internal()
11770         function for marking a thread with the threadpool flag before it
11771         started.  Set synch_cs to NULL after freeing it.
11773         * threadpool.c: Mark threadpool threads before they start.
11775 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11777         * reflection.h, reflection.c: don't export random functions
11778         and lazy load dbnull and missing objects.
11780 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11782         * class.c: Initialize COM types if COM interfaces
11783         are present (not just COM classes).
11784         
11785         Code is contributed under MIT/X11 license.
11787 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11788         * reflection.c:
11789         create_dynamic_mono_image: hook module profiler events (dynamic case).
11790         mono_image_basic_init: hook assembly profiler events (dynamic case).
11792 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11793         * profiler.c:
11794         simple_appdomain_unload: completely terminate the profiler
11795         instead of only processing the statistical samples.
11796         simple_shutdown: make sure this is really called exactly once,
11797         even in multithreaded applications, and always listen to
11798         appdomain events.
11799         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11800         here, the "[un]load" functions will do it.
11801         Fixes bugs #333791 and #325261.
11803 2007-11-07  Geoff Norton  <gnorton@novell.com>
11805         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11806         rather than depend on __APPLE__.
11808 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11810         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11812 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11814         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11815         UTF16 MonoString. Fix the crash from bug #335488
11817 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11819         * marshal.c: Correct (for non-Win32 OS) length != size in 
11820         mono_string_from_bstr. Fix #339530.
11822 2007-11-06  Geoff Norton  <gnorton@novell.com>
11824         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11825         to succeed
11827 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11829         * process.c: Added run-time GetProcessId API detection for Windows.
11831 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11833         * reflection.c  (mono_param_get_objects): If a parameter has the
11834         attribute [System.Runtime.InteropServices.Optional] we should
11835         set the DefaultValue of the ParameterInfo to be
11836         System.Reflection.Missing instead of DBNull.
11838         See bug #339013.
11840         (mono_get_reflection_missing_object): New method,
11841         returns the System.Reflection.Missing.Value singleton instance.
11843 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11845         * culture-info-table.h : regenerated.
11847 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11849         * icall.c: Use GetEnvironmentStrings on windows
11850         so we are using the same environment block as 
11851         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11852         #333740.
11853         
11854         Code is contributed under MIT/X11 license.
11856 2007-10-31  Martin Baulig  <martin@ximian.com>
11858         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11860         * mono-debug-debugger.h
11861         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11863 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11865         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11866         classes.
11868 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11870         * culture-info-table.h : regenerated.
11872 2007-10-30  Robert Jordan  <robertj@gmx.net>
11874         * icall-def.h, icall.c:
11875         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11877         Code is contributed under MIT/X11 license.
11879 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11881         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11882         inflated class instead of inflating them again.
11883         
11884         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11885         dynamic case.
11887         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11888         Call setup_supertypes () after klass->parent is set.
11889         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11891         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11892         for inflated instances of not yet created dynamic generic classes.
11893         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11894         times from inflated_method.
11895         (methodbuilder_to_mono_method): Ditto.
11897 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11899         * gc.c: code cleanup and removed old untested option of not creating the
11900         finalizer thread.
11902 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11904         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11905         creating a jump trampoline for dynamic methods.
11907 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11909         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11910         generic TypeBuilders when called from another method of the same type (bug #335131).
11913 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11915         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11916         doesn't seem to work perfectly.
11917         
11918         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11919         called multiple times.
11920         (methodbuilder_to_mono_method): Ditto.
11921         (resolve_object): Inflate FieldBuilder's.
11923 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11925         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11926         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11927         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11929 2007-10-26  Dick Porter  <dick@ximian.com>
11931         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11932         Thread initialisation changes
11934 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11936         * verify.c: fix compatibility check between arrays and System.Array
11938 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11940         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11941         too. Fixes #336999.
11943 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11945         * object.c (mono_value_box): Use typed allocation here.
11947 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11949         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11950         trampoline instead of compiling the method right away.
11952         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11954 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11956         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11957         related fields for dynamic classes. Fixes #334493.
11959 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11961         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11962         
11963         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11965         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11966         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11968         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11970         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11971         if needed.
11972         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11974 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11976         * marshal.c: Use correct key when removing item
11977         from ccw_hash.
11978         
11979         Code is contributed under MIT/X11 license.
11981 2007-10-17  William Holmes  <billholmes54@gmail.com>
11983         *marshal.c: Adding a case to marshal booleans to U1
11985         Code is contributed under MIT/X11 license.
11987 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11989         * class.c (mono_class_from_name): Search the modules compromising dynamic
11990         assemblies. Fixes #331601.
11992 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11994         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11995         exception if the type name contains an assembly component. Fixes #334203.
11997         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11998         modules inside dynamic assemblies. Fixes #334200.
11999         
12000         * reflection.c: Set image->public_key and image->public_key_length;
12002         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12003         fields.
12005         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12006         
12007 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12009         * metadata.c: Implemented correct comparing of generic classes.
12010         An inflated generic class can be equal to a non-inflated one if it
12011         is inflated with generic type variables as type arguments.  Fixes
12012         bug #333798.
12014 2007-10-15  Dick Porter  <dick@ximian.com>
12016         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12017         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12018         81646.
12020         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12021         instead of a monitor lock.  This means that monitor_try_enter and
12022         co can set the thread state safely.
12023         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12024         thread_interrupt_requested, so interrupt actually works.
12026         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12027         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12028         state accessor function
12030 2007-10-15  Martin Baulig  <martin@ximian.com>
12032         * mono-debug.h
12033         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12034         the debugger with the current runtime.
12036 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12038         * object.c, object-internals.h: added the ability to set a single
12039         trampoline for all the slots in a vtable.
12041 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12043         * marshal.c: deal with a possible race condition during multicast
12044         delegate invocation.
12046 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12048         * class.c: ensure value type methods don't have the synchronized
12049         flag set.
12051 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12053         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12054         breaks the build.
12056 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12058         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12059         to take an options parameter so that empty entries can be removed during
12060         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12062 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12064         * marshal.c: make sure we don't store the signature from a dynamic
12065         method into the runtime invoke cache (bug #327189).
12067 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12069         * marshal.c: make sure the wrapper methods are properly initialized.
12071 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12073         * metadata.c, metadata-internals.h: Generalized
12074         mono_type_stack_size() to mono_type_stack_size_internal() which
12075         takes an additional argument specifying whether it allows open
12076         types.
12078 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12080         * verify.c (do_invoke_method): handle typedbyref params
12081         correctly and check for unverifiable return values.
12083         * verify.c (do_newobj): fix a warning.
12085 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12087         * verify.c: don't tread typedbyref as allways unverifable,
12088         so uses, like (ld/st)loc.0 are valid. verify for the cases
12089         that it matters, like boxing related operations.
12091 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12093         * verify.c: add verification of the newobj opcode. verification
12094         of delegate instantation still missing due ldftn and virldftn not
12095         pushing the function type on stack
12097 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12099         * class-internals.h: Runtime generic context data structure
12100         definition.
12102         * object.c: Initialization of runtime generic context at runtime
12103         vtable creation time.
12105 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12106         * class.c (mono_class_create_from_typedef,
12107         mono_class_from_generic_parameter, mono_ptr_class_get,
12108         mono_fnptr_class_get, mono_bounded_array_class_get)
12109         * domain.c (mono_domain_create, mono_domain_free)
12110         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12111         * image.c (do_mono_image_load, mono_image_close):
12112         Hooked up load-unload profiler events.
12114 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12116         * domain.c: track statistics about the actual amount of native code
12117         allocated.
12119 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12121         * class.c: the valuetype enumerators don't have the additional
12122         supertypes interfaces.
12124 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12126         * class.c: need more interfaces setup for the IEnumerator<T>
12127         object created for arrays (tests/ienumerator-interfaces.2.cs).
12129 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12131         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12133 2007-10-05  Alp Toker  <alp@atoker.com>
12135         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12136         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12137         #315863.
12139 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12141         * verify.c (verify_type_compatibility_full): verification of
12142         compatibility improved, validates correctly non-strict checks between
12143         native int and I4 types different than (unsigned)int32.
12145         * verify.c (do_store_indirect): added, do all verification of
12146         ldind.X opcodes. 
12148         * verify.c (get_load_indirect_mono_type): renamed to
12149         get_indirect_op_mono_type, as it now returns the MonoType for 
12150         ldind.X and stind.X opcodes.
12152 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12154         * reflection.c: Fix the encoding of generic type definition for
12155         TypeBuilders.
12157         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12158         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12159         be made. Typespec check is done prior to typeref cache lookup.
12161         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12162         mono_image_typedef_or_ref_full.
12164         * reflection.c (encode_generic_class): encode the generic class
12165         directly instead of calling encode_type.
12167         * reflection.c (encode_type): encode the generic type definition
12168         MonoClass as a generic instantiation.
12170         * reflection.c (create_typespec): cache typespec tokens in
12171         the assembly->typespec cache. Don't create typespec for a generic
12172         instance MonoClass. Create typespec for the generic type defintion.
12174         * reflection.c (create_generic_typespec): encode the generic
12175         class directly instead of calling encode_type.
12177         * reflection.c (mono_image_create_token): encode the generic
12178         type definition not using a typespec for MonoType instances.
12181 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12183         Fix #328812
12184         * class.c (mono_image_init_name_cache): Don't return nested
12185         'protected internal' classes.
12186         (mono_class_from_name_case): Likewise.
12188 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12190         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12191           common function used by both DefaultConfig in System.dll and
12192           InternalConfigurationHost in System.Configuration.dll.
12194 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12196         * class.c: automatically add to vectors only a few essential explicit
12197         generic interfaces. The rest of the interfaces that arrays should
12198         provide are currently implicitly added (but still not lazily, see the
12199         design in the discussion of bug#325495 for the details of what is
12200         needed for that). Additionally, implicit interfaces are assigned the
12201         same vtable slot as the explicit interfaces (as they are compatible):
12202         this enables huge memory savings since we don't need to instantiate
12203         as many memthods and as large vtables anymore. Also, Since
12204         GetEnumerator<T> returns an instance of a type that is required to
12205         support a similarly large set of interfaces as arrays, we add
12206         implicit interfaces and interface offset sharing support to those
12207         types, too. This change adds all the required interfaces so that
12208         the anonarray.cs test case in the bug report works (we don't add
12209         all the interfaces to arrays of arrays 3-level deep and more because
12210         of the memory requirements explained in the bug and since they are much
12211         less common: the lazy-loading support will enabled them to work, too).
12213 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12215         * verify.c (merge_stacks): major clean up, all type compatibility
12216         checks are done by verify_type_compatibility. This fix my earlier lack
12217         of understanding of the CLR type system and merge_stacks no longer looks
12218         scary.
12220         * verify.c: fixed some bad spelling.
12222 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12224         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12225         a given stack slock.
12226         
12227         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12228         verify_type_compatibility_full. This removed a near indentical function and fixed
12229         handling of Int32 and IntPtr across all opcodes.
12231 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12233         * class.c: only vectors have the additional generic interfaces.
12235 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12237         * mono-config.c: Use g_strcasecmp instead of
12238         strcasecmp like everywhere else to fix
12239         compilation with MSVC.
12240         
12241         Code is contributed under MIT/X11 license.
12243 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12245         * object.c, object-internals.h: refactored the IMT code to enable
12246         building a single slot at a time and lazily creating the IMT trampolines
12247         and thunks.
12249 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12251         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12253         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12254         Fixes #328501.
12255         
12256 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12258         * loader.c (method_from_methodspec): Rearrange to avoid
12259         un-necessary exposition.  Don't assert out if the method's
12260         declaring type is a generic type definition.
12262 2007-09-28  Martin Baulig  <martin@ximian.com>
12264         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12266 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12268         * class-internals.h: optimize field layout of MonoClass to
12269         requires less cachelines at runtime and save a few bytes on 64 bit
12270         systems.
12272 2007-09-28  Jb Evain  <jbevain@novell.com>
12274         * reflection.c: when encoding type names in custom attributes,
12275         if the type is a closed generic type, its generic arguments
12276         have to be serialized as AssemblyQualifiedName, so that when
12277         they are deserialized, it's possible to re-create them properly.
12278         Fixes #329450.
12281 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12283         * object.c, class-internals.h: added delegate-creation counter.
12285 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12287         * class.c: cleanup of the code that synthetizes interfaces for
12288         arrays in 2.0: saves quit a bit of corlib mempool memory.
12289         Code to fix bug #325495 ifdeffed out for now until the issues
12290         with memory usage and O(n^2) behaviour are fixed.
12292 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12294         * marshal.c: when possible, do not duplicate the name of the methods
12295         in the method builder and in the generated MonoMethod.
12297 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12298         * verify.c: added support for type checking ldind_* opcodes.
12300 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12302         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12303         which is used to distinguish the fully open instantiation of a TypeBuilder
12304         with the rest. This temporary hack is required to restore the property that
12305         the fully open instantiation is the same type of the generic type definition.
12307         * class-internals.h (mono_generic_class_is_generic_type_definition):
12308         new function as part of the internal API.
12310         * class.c (inflate_generic_type): return NULL when the generic inst is
12311         fully open. The fully open generic type is now the same as the generic type
12312         definition for non TypeBuilder types.
12314         * class.c (mono_generic_class_get_class): removed assert since it is
12315         no longer valid, gklass->cached_class can point to the generic type definition.
12317         * class.c (mono_generic_class_is_generic_type_definition): new.
12319         * metadata.c (mono_generic_class_hash): added is_tb_open field
12320         to the hash calculation.
12322         * metadata.c (free_generic_class): if the generic class is associated
12323         with the generic type definition, its field will come from the mempool and
12324         must not be freed.
12326         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12327         new, this function identifies the corner case of a TypeBuilder fully open
12328         instantiation.
12330         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12331         for lookup. Set gclass->cached_class to be the container class in case of
12332         the fully open instantiation of non TypeBuilder types.
12334         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12335         to compare generic classes.
12337         * reflection.c (method_encode_methodspec): remove assert that
12338         no longer is valid.
12340         * reflection.c (mono_reflection_generic_class_initialize): add
12341         an aditional assert to ensure the proper type is used.
12343 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12345         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12346         to enjoy it.
12348 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12350         * verify.c (push_arg): Fixed support for ldarga
12351         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12352         MonoType used as first arg in case of instance calls.
12354 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12356         * verify.c: Support for verifying VAR and MVAR types, 
12358 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12360         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12361         accessors correctly.
12363 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12365         * threads.c: support OSX and other systems in
12366         mono_thread_get_stack_bounds (bug #328026).
12368 2007-09-25  Martin Baulig  <martin@ximian.com>
12370         * mono-debug.h
12371         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12373 2007-09-24  Martin Baulig  <martin@ximian.com>
12375         * mono-debug.h
12376         (MonoDebugClassEntry): Moved the definition of this struct into
12377         mono-debug.c to make it private.
12379         * mono-debug.c
12380         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12381         type table per symbol file, we don't need to store the symfile id
12382         any longer.
12384 2007-09-24  Martin Baulig  <martin@ximian.com>
12386         Create one type table per symbol file, since a `MonoClass *' gets
12387         invalid when its image is unloaded.
12389         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12390         (MonoDebugHandle): Added `type_table'.
12392 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12394         * mempool.c, mempool.h: added mono_mempool_new_size () API
12395         to be able to specify a smaller initial size for the pool.
12396         Adjusted the code to slowly increase pool size before using
12397         the previous default size.
12398         * image.c: use a small initial size for image mempools.
12400 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12402         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12403         Fixes ##320990.
12405         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12406         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12408 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12410         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12411         free. Fixes #327438.
12413 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12415         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12416         generic instantiations, etc.
12417         <MONO_TYPE_ARRAY>: Likewise.
12419 2007-09-21  Martin Baulig  <martin@ximian.com>
12421         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12422         these structs were never defined.
12423         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12425 2007-09-21  Martin Baulig  <martin@ximian.com>
12427         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12429 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12431         * image.c: removed the guid hash tables: we can get the same info
12432         without the additional memory usage hit (partially fixes also bug #327052).
12434 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12436         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12437         event to handle unloading methods. After the event is called, the
12438         corresponding MonoMethod* must be considered invalid.
12439         * loader.c (mono_free_method): call the new mono_profiler_method_free
12440         event.
12442 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12444         * domain-internals.h: New flag in MonoJitInfo which marks shared
12445         generic methods.  New hash table (shared_generics_hash) in
12446         MonoDomain to keep track of shared generic methods.  Prototypes
12447         for functions to register and lookup shared generic methods.
12449         * domain.c: Support for registering and looking up shared generic
12450         methods via a hash table (shared_generics_hash) in MonoDomain.
12452         * class-internals.h: New exception to signal failure of shared
12453         compilation of a generic method.  New counters for generics
12454         sharing in MonoStats.
12456 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12458         * image.c, metadata-internals.h: don't keep a file descriptor open
12459         for loaded assemblies (bug#325988).
12461 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12463         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12464         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12465         use the corresponding datatypes.
12466         (type_in_image): Update to changes.
12467         (CleanForImageUserData): Simplify.
12468         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12469         Avoid quadratic behaviour in handling the "stolen" list by
12470         separating the filter predicate out, and by prepending the stolen
12471         items rather than appending them.
12472         (steal_ginst_in_image): Likewise.
12473         (mono_metadata_clean_for_image): Update to changes.
12475 2007-09-19  Martin Baulig  <martin@ximian.com>
12477         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12479 2007-09-19  Martin Baulig  <martin@ximian.com>
12481         * mono-debug.c (mono_debug_cleanup): Don't call
12482         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12484 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12486         Fix crash on 'make run-test' in mcs/errors
12487         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12488         Avoid more potential allocations in mono_class_from_mono_type.
12489         (ginst_in_image): Update to changes.
12490         (gclass_in_image): Rearrange slightly.
12492 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12494         * class.c (mono_class_init): Move the code that sets up class->methods to 
12495         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12497         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12498         canonical instance of an inflated generic signature.
12499         (mono_type_create_from_typespec): Remove an invalid free.
12501         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12503 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12505         * domain-internals.h: added a declaration of the
12506         mono_assembly_load_full_nosearch internal function.
12508         * assembly.c (mono_assembly_load_with_partial_name): use
12509         mono_try_assembly_resolve return value properly.
12510         (mono_assembly_load_full_nosearch): copied the function body from
12511         mono_assembly_load_full, without the code to invoke assembly
12512         search hooks.
12513         (mono_assembly_load_full): calls the above new function and if the
12514         assembly is not resolved, invokes the search hooks.
12516         * appdomain.c (mono_runtime_init): restore the global postload
12517         assembly search handlers.
12519 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12521         * class.c (mono_class_init): Make sure class->methods and class->properties
12522         are never NULL in the generics case.
12524         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12526 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12528         * metadata.c (free_generic_class): Disable some code to fix the build.
12530         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12532         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12533         from the image mempool.
12535         * metadata.c (free_generic_class): Free more data from the inflated class.
12537         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12539         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12540         mempool.
12541         (mono_type_create_from_typespec): Ditto.
12543         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12544         MonoImage to the caller.
12545         (mono_init_internal): Save the opened image in a global variable.
12546         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12548         * reflection.c (resolve_object): Fix a leak.
12550         * metadata.c: Fix the freeing of data in the generics caches.
12551         
12552         * metadata.c (free_generic_inst): Comment this out to fix the build.
12553         (free_generic_class): Ditto.
12555         * metadata.c: Free cached generic methods, instantinations and classes when
12556         they are removed from the caches.
12557         (mono_metadata_free_type): Free the type itself.
12559         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12560         places.
12562 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12564         * boehm-gc.c: restrict managed allocs to __thread supporting
12565         architectures.
12567 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12569         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12570         (mono_generic_class_get_class): Fix a leak.
12572         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12573         mono_metadata_free_type ().
12574         (mono_metadata_inflate_generic_inst): Fix a leak.
12576 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12578         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12580         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12581         mempool.
12583         * mono-debug.c (mono_debug_close_image): Fix call to 
12584         g_hash_table_remove ().
12586 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12588         * icall-def.h: redirect all the string ctor to the managed
12589         CreateString () methods.
12590         * string-icalls.c, string-icalls.h: removed dead code for string
12591         ctors and icalls.
12593 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12595         * mono-debug.c: Fix memory leaks.
12597 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12599         * threads-types.h: Implement mono_hazard_pointer_set and 
12600         mono_hazard_pointer_clear macros using do/while(0) to fix
12601         compilation with MSVC.
12602         
12603         Code is contributed under MIT/X11 license.
12605 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12607         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12608         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12610 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12612         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12613         icalls.
12615 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12617         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12618         managed-code allocated as well.
12620 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12622         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12624 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12626         * boehm-gc.c: fixed the build after the AOT changes.
12628 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12630         * wrapper-types.h: Add an ALLOC wrapper type.
12632         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12633         reference managed allocator methods.
12635 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12637         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12638         of Type array and not MonoType, a fix suggested by Hari.
12639         
12640 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12642         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12643         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12644         
12645         Code is contributed under MIT/X11 license.
12647 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12649         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12651 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12653         * image.c (do_mono_image_open): if assembly file fails to open and
12654         MONO_IOMAP is in effect, try to find the path in a
12655         case-insensitive way.
12657         * appdomain.c (mono_runtime_init): do not install postload hooks -
12658         tests show that MS.NET doesn't use anything of that sort to
12659         trigger the AppDomain.AssemblyResolve event.
12660         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12661         made non-static.
12662         (mono_runtime_init): init portability helpers here.
12664         * assembly.c (mono_assembly_load_with_partial_name): if other   
12665         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12666         to resolve the assembly.
12668         * domain-internals.h: added mono_try_assembly_resolve and marked
12669         it as internal.
12671 2007-09-11  Jb Evain  <jbevain@novell.com>
12673         * object-internals.h (MonoReflectionDynamicMethod): add
12674         a `MonoReflectionType *owner` field. The owner is used
12675         * reflection.c:
12676         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12677         method as the class declaring the dynamic method.
12678         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12679         dynamic method to the declaring type of the methodbuilder.
12681 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12683         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12684         rules for calling methods via reflection.
12686 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12688         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12689         Inflate MonoType's.
12691 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12693         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12694         provide a managed method that does fast allocations without needing
12695         a managed->unmanaged transition. Boehm GC implementation currently
12696         enabled for ptrfree objects on sane architectures.
12698 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12700         * marshal.c, marshal.h: exported a couple of useful functions and
12701         added mono_mb_get_label () to easily handle backward branches.
12703 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12705         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12707 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12709         * loader.c (find_method): Fixed the regression introduced while
12710         fixing bug #81466.
12712 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12714         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12715         well.
12716         
12717         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12718         icall.c reflection.c: Pass a MonoGenericContext argument to 
12719         mono_lookup_dynamic_token ().
12721         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12722         #82744.
12723         
12724 2007-09-09  Robert Jordan  <robertj@gmx.net>
12726         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12727         for generic methods.
12729         * object.c (mono_object_get_virtual_method): Handle generic methods.
12730         Fixes bug #78882.
12732         Code is contributed under MIT/X11 license.
12734 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12736         * image.c: fix locking in mono_image_load_file_for_image ().
12738 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12740         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12741         used only as a cache: added an icall to fill it.
12743 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12745         * reflection.h: exposed mono_reflection_free_type_info
12746         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12747         since mono_reflection_bind_generic_parameters makes a copy of it.
12748         * reflection.c (free_type_info): subinfos should be freed.
12749         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12750         made non static.
12751         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12752         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12753         this fixes #82695 and #81726.
12754    
12756 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12758         * process.h, process.c:  added support for user profile/info in
12759           ProcessStartInfo. For now only Windows works.
12761 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12763         * metadata.c: consider the generic arguments when comparing
12764         signatures (bug #82614).
12766 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12768         * cil-coff.h, image.c: updated assembly loader to cope with the
12769         PE32+ 64 bit file format.
12771 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12773         * assembly.c, class.c, domain.c, loader.c: remove useless
12774         inclusion of cil-coff.h.
12776 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12778         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12779         if interface is marked with CoClassAttribute. 
12780    
12781         Code is contributed under MIT/X11 license.
12783 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12785         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12786         if it's seen twice in major collections.
12788 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12790         * sgen-gc.c: big objects are not copied to the gray area, but they
12791         need to be considered for scanning, too, if they are brought alive
12792         by an object ready for finalizations or a survived one.
12794 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12796         * sgen-gc.c: properly account the number of disappearing links when
12797         they are nullified.
12799 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12801         * sgen-gc.c: share the code to scan the registered roots between the
12802         different types of collections.
12804 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12806         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12808 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12810         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12811         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12813 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12815         * security-manager.c (mono_security_manager_get_methods):
12816         LinkDemandSecurityException now has 2 arguments instead of 3.
12818 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12820         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12821         platforms which need it.
12823 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12825         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12826         dtor.
12828 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12830         * threads.c: free the thread static data on thread exit.
12832 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12834         * class.c: walk the hierarchy to find the generic definition for
12835         a class (fixes runtime part of bug #82498).
12837 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12839         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12840         ...
12842         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12844 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12846         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12848 2007-08-24  Robert Jordan  <robertj@gmx.net>
12850         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12852 2007-08-24  Jb Evain  <jbevain@novell.com>
12854         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12855         for byref types.
12857 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12859         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12860         #82286.
12862 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12864         * assembly.c: Fix a warning.
12865         
12866 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12868         * appdomain.c: parse the <runtime> section looking for the probing
12869         element with the 'privatePath' attribute, which sets additional
12870         directories in which the runtime should look for assemblies.
12872 2007-08-23  Robert Jordan  <robertj@gmx.net>
12874         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12875         Fixes #82499.
12877 2007-08-23  Martin Baulig  <martin@ximian.com>
12879         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12880         _mono_debug_init_corlib() and remove it from the header file.
12882 2007-08-23  Martin Baulig  <martin@ximian.com>
12884         * mono-debug-debugger.c
12885         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12886         don't notify the debugger about it.
12888         * mono-debug-debugger.h
12889         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12891 2007-08-23  Robert Jordan  <robertj@gmx.net>
12893         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12894         Code is contributed under MIT/X11 license.
12896 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12898         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12900 2007-08-22  Martin Baulig  <martin@ximian.com>
12902         * mono-debug.c: Store debugging info on a per-domain basis and
12903         free it on domain unload.  Add support for unloading symbol files.
12905         * mono-debug.h
12906         (MonoDebugList): New typedef.
12907         (MonoSymbolTable):
12908         - add `data_tables and `type_table'.
12909         - replace 'symbol_files' and `num_symbol_files' with a
12910           `MonoDebugList *'.
12911         (mono_debug_data_table): Removed.
12912         (mono_debug_list_add): New public function.
12913         (mono_debug_list_remove): New public function.
12914         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12915         (mono_debug_init_2_memory): Renamed into
12916         mono_debug_open_image_from_memory().
12917         (mono_debug_close_image): New public function.
12918         (mono_debug_domain_create): Likewise.
12919         (mono_debug_domain_unload): Likewise.
12920         (MONO_DEBUGGER_VERSION): Bump to 60.
12922         * mono-debug-debugger.h
12923         (MonoDebuggerEvent):
12924         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12925         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12926         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12927         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12928           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12929         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12930           meaning.
12931         (mono_debugger_add_symbol_file): Removed.
12932         (mono_debugger_add_type): Removed.
12933         (mono_debugger_lookup_type): Removed.
12934         (mono_debugger_lookup_assembly): Removed.
12936         * domain.c
12937         (mono_domain_create): Call mono_debug_domain_create().
12938         (mono_init_internal): Call mono_debug_init_corlib().
12940         * assembly.c
12941         (mono_assembly_close): Call mono_debug_close_image().
12943 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12945         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12946         mmap call.
12948 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12950         * sgen-gc.c: ensure section->pin_queue_end is initialized
12951         correctly when non pinning objects in the section have been found.
12953 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12955         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12956         containing a list of directories separated by ':'. MSDN docs say
12957         the directories should be separated with ';'. Part of a bugfix for
12958         bug #81446
12960 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12962         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12963         it should MonoType and not MonoClass.
12965 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12967         * culture-info-table.h : regenerated.
12969 2007-08-20  William Holmes  <billholmes54@gmail.com>
12971         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12972          to call ReplaceFile Kernel32 on windows or in io-layer.
12973         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12974         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12975          as an internal call.
12977         Code is contributed under MIT/X11 license.
12979 2007-08-20  Jb Evain  <jbevain@novell.com>
12981         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12982         and MONO_EXCEPTION_FIELD_ACCESS.
12984         * debug-helpers.[c|h]: new mono_field_full_name function.
12986 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12988         * class.c: Removed class_security_level() and moved it to
12989         security-core-clr.c.
12991         * security-core-clr.c, security-core-clr.h: class_security_level()
12992         is now public and renamed to mono_security_core_clr_class_level().
12993         It also looks for security attributes in the classes a class is
12994         nested in.
12996 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12998         * security-core-clr.c, security-core-clr.h: CoreCLR security
12999         utility functions.
13001         * Makefile.am: Added security-core-clr.[ch].
13003         * security-manager.c, security-manager.h: Functions and enum for
13004         setting and getting the security mode.
13006         * class.c: CoreCLR security checks.
13008 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13010         * icall-def.h, process.c, process.h: implemented icall to get
13011         user/system processor times.
13013 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13015         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13016         reader-lock-free jit_info_table.
13018 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13020         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13022         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13024         * object-internals.h (MonoException): Add missing _data member.
13026 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13028         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13029         checking that only methods with matching qname or fqname are picked
13030         from implemented interfaces.
13032 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13034         * verify.c (do_newarr):added, do type verification of
13035         newarr ops, push the right value on the eval stack.
13036         * verify.c (mono_method_verify): use do_newarr
13039 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13041         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13042         factored the common code into get_boxable_mono_type, which
13043         is now using mono_type_get_full, this fixed byref related tests.
13045 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13047         * class.c: added mono_type_get_full, this function has the same
13048         behavior of mono_class_get_full but the returned MonoType has
13049         all metadata of the associated token in case of a typespec token.
13050         * class.c: added mono_type_retrieve_from_typespec, used by 
13051         mono_type_get_full to retrieve the token type.
13052         * class.c (mono_class_create_from_typespec): changed to use
13053         mono_type_retrieve_from_typespec.
13054         * class.c (mono_ldtoken): changed to use mono_type_get_full
13055         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13056         * class-internals.h: exported mono_type_get_full for internal use.
13058 2007-08-16  Jb Evain  <jbevain@novell.com>
13060         * domain.c (supported_runtimes): add entry for
13061         the 'moonlight' runtime version.
13063 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13065         * verify.c (mono_method_verify): small typo sliped in.  
13067 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13069         * verify.c (do_unbox_value): added, do type verification of
13070         unboxing ops
13071         * verify.c (mono_method_verify): use do_unbox_value
13074 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13076         * verify.c (dump_stack_value): fixed typo, was printing string
13077         instead of object on stack.
13078         * verify.c (do_box_value): moved the byref check up as it leads
13079         to invalid code and should be done earlier.
13080         * verify.c: improved error messages for and ldobj
13082 2007-08-15  William Holmes  <billholmes54@gmail.com>
13084         * marshal.c (emit_marshal_custom): Omit the call to 
13085           marshal_native_to_managed when calling native to managed 
13086           and the argument is specified as an out argument.
13088         Code is contributed under MIT/X11 license.
13090 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13092         * verify.c: fixed the type checks for generics, function pointers and vectors.
13093         Added type verification for ldobj and ldtoken. The verifier
13094         would segfault if header or signature of a method contained references
13095         to non-existant types.
13097 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13099         * marshal.c (cominterop_get_ccw): Patch from
13100         Bill Holmes to no walk up interface hierarchy. 
13101         All parent methods should be present in the interface for COM.
13102    
13103         Code is contributed under MIT/X11 license.
13105 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13107         * marshal.c (emit_marshal_com_interface): Patch from
13108         Bill Holmes to handle COM Interfaces as return values
13109         for native->managed calls.
13110    
13111         Code is contributed under MIT/X11 license.
13113 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13115         * marshal.c (cominterop_get_idispatch_for_object): Implement
13116         for runtime callable wrappers.
13117    
13118         Code is contributed under MIT/X11 license.
13120 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13122         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13123         so 2.0 types are accessible
13126 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13128         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13129         once we load mscorlib.   Due to the order in which we initialize,
13130         the mono_assembly_load_full routine that loads mscorlib did not
13131         load friends.   We now load it once we load the
13132         mono_defaults.internals_visible_class class. 
13134         * assembly.c: Expose the mono_load_friend_assemblies method.
13136 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13138         * verify.c: improved the handling of boxing, better
13139         type checking for unary ops and conversion. Fix bug
13140         regarding managed pointer compatibility checking
13142 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13144         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13146         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13148 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13150         * reflection.c (dup_type): Remove.
13151         * class.c (dup_type): Remove.
13152         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13153         instead of the dodgy 'dup_type'.
13154         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13155         handle the case where 'dup_type' needed the second argument.
13157 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13159         * domain.c: Fix a warning.
13161 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13163         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13164         checking that methods with the same fqname are not overridden
13165         with a method from an ancestor.
13167 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13169         * threads.c (free_thread_static_data_helper): Avoid a crash if
13170         thread->static_data is not yet set.
13172 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13174         * marshal.c: Use correct image when emitting
13175         native wrapper for COM calls.
13176    
13177         Code is contributed under MIT/X11 license.
13179 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13181         * icall-def.h, security.c, security.h :
13182           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13184 2007-08-07  Martin Baulig  <martin@ximian.com>
13186         * mono-debug-debugger.h
13187         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13189         * domain.c (mono_domain_free): Call
13190         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13192 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13194         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13195         * verify.c (in_same_block): code should test if either offset is inside the clauses
13196         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13197         and filter blocks
13199 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13201         * image.c (mono_image_close): Fix a leak.
13203         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13205         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13207 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13209         * domain.c, threads.c, threads-types.h: fix memory retention issue
13210         with thread static variables not being cleared on domain unload.
13211         Reuse thread static slots after domain unload.
13213 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13215         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13216         nullable type.
13218         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13219         now done in mono_runtime_invoke_array.
13221         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13222         receiver is a nullable type.
13224         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13225         generic parameter.
13227 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13229         * marshal.c: Implement COM Objects as return type for 
13230         managed->unmanaged calls. Added Release calls for COM Object
13231         out/return values in managed->unmanaged calls.
13233         Code is contributed under MIT/X11 license.
13235 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13237         * threads.h, threads-type.h: move the hazard pointer declarations
13238         to the private header.
13240 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13242         * file-io.c, appdomain.c: memory leak fixes.
13244 2007-08-02  Dick Porter  <dick@ximian.com>
13246         * socket-io.c
13247         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13248         SO_REUSEADDR setting into io-layer/sockets.c.
13250 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13252         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13253         from Object when called on a generic parameter. Fixes #82211.
13255 2007-08-01  Dick Porter  <dick@ximian.com>
13257         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13258         Fixes bug 79250 yet again.
13260 2007-07-30  Martin Baulig  <martin@ximian.com>
13262         Merged the `debugger-dublin' branch.
13264         * mono-debug.h
13265         (MonoDebugDataTable): New typedef.
13266         (MonoDebugMethodAddressList): New typedef.
13267         (MonoDebugWrapperData): Removed.
13268         (MonoDebugSymbolTable): Removed `current_data_table',
13269         `current_data_table_size', `current_data_table_offset'.
13270         (MonoDebugDataItemType): Moved into mono-debug.c.
13271         (MonoDebugMethodJitInfo): Remove `address'.
13272         (mono_debug_data_table): New global variable.
13273         (mono_debug_lookup_method_addresses): New public function.
13274         (mono_debug_find_method): Take a `MonoMethod *', not a
13275         `MonoDebugMethodInfo *'.
13277         * mono-debug.c: Drop support for the old symbol tables.
13279 2007-06-28  Martin Baulig  <martin@ximian.com>
13281         * mono-debug.c (mono_debug_debugger_version): New public variable.
13283 2007-07-31  William Holmes  <billholmes54@gmail.com>
13285         * metadata.c Changed mono_type_create_from_typespec to not insert
13286           the type into the hash map until after
13287           do_mono_metadata_parse_type has completed.
13288         Fixes Bug #82194
13289         Code is contributed under MIT/X11 license.
13291 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13293         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13294         generic parameter. Fixes #82211.
13296 2007-07-27  Jb Evain  <jbevain@novell.com>
13298         * pedump.c (dump_metadata, dump_metadata_header): dump
13299         versions contained in the metadata header.
13301 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13303         * threads.c: register small_id_table with the GC.
13305 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13307         * threads.c, threads.h, class-internals.h, object-internals.h:
13308         Hazard pointers, to be used by lock-free parallel algorithms.
13310 2007-07-26  Dick Porter  <dick@ximian.com>
13312         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13313         routine on non-windows platforms, as I've not managed to think of
13314         a non-kludgy way of doing this.  Finishes off bug 78739.
13316 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13318         * object.c: properly setup interface_bitmap in proxy vtables.
13320 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13322         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13323         to create unique shadow copy target directories, use the domain's
13324         serial number instead. Each domain gets a unique target directory
13325         that way.
13327         * domain.c (mono_domain_create): added code to increment domain
13328         shadow copy serial number and cache the value in the current
13329         domain structure.
13331         * domain-internals.h (struct _MonoDomain): added a new field -
13332         shadow_serial to hold the serial number used in generation of
13333         shadow-copy directories. This is to make sure that the directory
13334         name is unique for each and every domain created. We avoid a race
13335         condition with overriding assemblies already in use by other app
13336         domains.
13338 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13340         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13341         binding generic parameters.
13343 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13345         * metadata.c (do_mono_metadata_parse_generic_class): Use
13346         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13347         error.
13349 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13351         * loader.c, class-internals.h, reflection.c: removed the per-method
13352         generics hashtable: we use the global one through the call of
13353         mono_class_inflate_generic_method ().
13355 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13357         * class.c, metadata.c, class-internals.h: introduce yet another
13358         generics global cache for inflated methods (fixes 98% of the perf
13359         issue in bug #81806).
13361 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13363         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13364         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13365         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13366         return a MonoGenericInst containing (a copy) of those types.
13367         (mono_metadata_inflate_generic_inst): Update to changes.
13368         (mono_metadata_parse_generic_inst): Likewise.
13369         (mono_get_shared_generic_inst): Likewise.
13370         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13371         (mono_reflection_bind_generic_method_parameters): Likewise.
13372         * metadata-internals.h: Likewise.
13373         * icall.c (free_generic_context): Kill.
13374         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13376         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13377         mono_metadata_type_dup.
13378         * marshal.c (mono_mb_create_method): Likewise.
13380         * metadata.c (mono_metadata_type_dup): Rename from
13381         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13382         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13383         * marshal.c, metadata-internals.h: Update to changes.
13385 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13387         * class.c: fixed a small leak for array classes and removed warning.
13389 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13391         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13392         Return 0x8000000 for return parameters. Fixes #82161.
13394 2007-07-21  Marek Habersack  <grendello@gmail.com>
13396         * appdomain.c (get_shadow_assembly_location): append the current
13397         ticks value to the path. Avoids overwriting the same assemblies by
13398         several threads at the same time.
13400 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13401         and Raja R Harinath  <rharinath@novell.com>
13403         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13404         Simplify slightly.
13405         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13406         property for testing if a method is a generic method definition.
13408 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13410         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13412 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13414         * verify.c: used function from private branch, reverted to the one in class.h 
13416 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13418         * verify.c: a typo slipped in and the code wont compile
13420 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13422         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13423         disabled box instruction as it is doing the wrong thing
13424         improved stack dump messages, now it is easier to debug type related issues
13427 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13429         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13431 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13433         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13434         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13435         grouped with class and valuetype. This change will simply 
13436         the code as it should be handled just like unmanaged pointers.
13438 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13440         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13442 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13444         * verify.c: several stack merge issues fixed, reference comparisons now
13445         check the type size. strict type check now works correctly.
13446         added more uses of IS_MANAGED_POINTER macro.
13447         fixed issues pointed by running the test suite against .net.
13448         
13450 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13452         * class.c, loader.c, class-internals.h: Removed the
13453         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13454         defines.
13456         * icall.c: Better error checking in some internal reflection
13457         methods.
13459 2007-07-18  William Holmes  <billholmes54@gmail.com>
13461         * filewatcher.c : removed unused variable 'filename' in 
13462           ves_icall_System_IO_FSW_SupportsFSW
13464 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13466         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13467         obsolete, removed.
13469 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13471         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13472         
13473         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13475 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13477         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13478         Implement generics support.
13479         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13481         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13482         type_args and method_args arguments.
13483         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13484         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13485         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13487 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13489         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13490           It adds a rootimage parameter to mono_reflection_get_type_internal,
13491           adds new function mono_reflection_get_type_with_rootimage and use
13492           the rootimage to resolve the types instead of the current image
13494 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13496         * culture-info-table.h: Forgot to update after r78304.
13498 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13500         * class.c (mono_class_is_open_constructed_type)
13501         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13503 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13505         * class.c (mono_bounded_array_class_get):  method fails if used with
13506         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13507         avoiding calculating the size for such array as it cannot be instantiated.
13508         Fix bug #82015
13510 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13512         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13513         field.
13514         * metadata.c, reflection.c: Update to changes.
13516 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13518         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13519         mono_class_is_valid_enum, they are used to valide a enum when loading.
13520         * reflection.c: used new functions to throw TypeLoadException when and
13521         invalid enum is build with TypeBuilder. Fixes #82018
13522   
13523 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13525         * object.c: forgot commit of mono_class_setup_methods () to access
13526         iface->methods.
13527         * object-internals.h: added a few more handy fields to
13528         MonoIMTCheckItem.
13530 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13532         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13533         iface->methods.
13535 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13537         * class-internals.h, object-internals.h, object.c: IMT-based
13538         interface invocation core from Massimiliano Mantione
13539         (massi@ximian.com) with a reworked arch-specific interface,
13540         bsearch implementation and a few bugfixes and memory savings by me.
13542 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13544         * class.c (mono_class_create_from_typedef): mono would segfault if 
13545         an enum did not have a __value field. It now throws a TypeLoadException
13546         for such cases. Fix bug #82022
13548 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13550         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13552 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13554         * class.c (mono_class_init): If a class is already inited but has
13555         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13557 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13559         * class.c: Properly handle the case of an unimplemented interface
13560         method.  Fixes: 81673.
13562 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13564         * class-internals.h, object.c: cleanup patch from massi: use
13565         MonoVTable->interface_bitmap since the vtable interfaces offset array
13566         is going away.
13568 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13570         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13571         GetMDStreamVersion icall instead.
13573 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13575         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13576         not use mono_dl_build_path() with a full library name: makes
13577         fallbacks to libgaim and libfam work.
13579 2007-07-06  William Holmes  <billholmes54@gmail.com>
13581         * assembly.c: Added a continue statement in probe_for_partial_name when
13582          parse_assembly_directory_name fails.  Fixes : 82002
13584 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13586         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13587         and added a verification  for TYPEDBYREF.
13588         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13589         make native int interchangeable with int32 and some small cleanup and formating.
13590         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13591         handle byref of byref.
13592         * verify.c (push_local): handle byref of byref.
13593         * verify.c (do_binop): invalid mix of values is unverifiable
13594         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13595         added visibility checks
13596         * verify.c (field related method): added visibility checks
13597         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13599 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13601         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13602         string.
13604 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13606         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13608         * marshal.c (emit_marshal_string): When returning a string from managed code,
13609         allways make a copy even for unicode strings. Fixes #81990.
13611 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13613         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13614         of byref generic inst types (bug #81997).
13616 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13618         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13619         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13621 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13623         * marshal.c (emit_marshal_string): Add support for unicode strings in
13624         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13626 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13628         * verify.c: field load/store are now verified, missing only access checks now
13630 2007-06-28  Martin Baulig  <martin@ximian.com>
13632         * mono-debug.c (mono_debug_debugger_version): New public variable.
13634 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13636         * locales.c: When constructing DateTimeFormat or NumberFormat for
13637         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13638         MonoCultureInfo contructed from the current locale is always
13639         read-only and has UseUserOverride set to true. All MonoCultureInfo
13640         instances returned for GetCultures have both IsReadOnly and
13641         UseUserOverride set to true. Fixes part of bug #81930.
13643 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13645        * icall-def.h: Update System.__ComObject icalls
13646        * marshal.c: Avoid managed transition (and object creation)
13647        when looking up COM interface in RCW.
13648        * marshal.h: Ditto.
13649        
13650        Code is contributed under MIT/X11 license.
13652 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13654         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13655         to avoid crashes during assembly unloading.
13657 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13659         Fix MethodInfo.IsGenericMethodDefinition
13660         * reflection.c (mono_reflection_bind_generic_method_parameters):
13661         Rearrange code to ensure we always uses a generic method definition.
13662         * class.c (mono_class_inflate_generic_method_full): Set
13663         'generic_container' field only for generic method definitions.
13664         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13665         Use presense of 'generic_container' field as indication of being a
13666         generic method definition.
13668 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13670         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13672         * object-internals.h: Reflect changes in the layout of the managed Delegate
13673         class.
13674         
13675         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13676         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13677         runtime memory used by the dynamic method. Fixes #77146.
13679 2007-06-21  Dick Porter  <dick@ximian.com>
13681         * file-io.h: 
13682         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13683         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13684         81767.
13686 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13688         * reflection.c (method_encode_methodspec): Add a tripwire.
13689         * class.c (inflate_generic_type): The fully open generic type is
13690         not the same as the generic type definition.
13692 2007-06-21  Martin Baulig  <martin@ximian.com>
13694         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13696         * mono-debug-debugger.h
13697         (MonoDebuggerBreakpointInfo): Removed.
13698         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13699         (mono_debugger_remove_breakpoint): Likewise.
13700         (mono_debugger_breakpoint_callback): Likewise.
13701         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13703 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13705         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13706         generic type is not the same as the generic type definition.
13707         * class.c (mono_generic_class_get_class): Likewise.
13709 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13711         * icall.c: The second argument to 
13712         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13713         is a MonoType not a MonoClass.
13715 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13717         * verify.c: support for function pointers in the verifier
13719 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13721         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13723 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13725         * assembly.c: removed Mono.Data.SqliteClient from the list of
13726         forward-compatible assemblies as it breaks the ABI (bug #81899).
13728 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13730         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13731         lookup/update with the loader lock.
13732         * reflection.c (mono_class_bind_generic_parameters): No need to
13733         protect mono_metadata_lookup_* with the loader lock.
13734         * class.c (inflate_generic_type): Likewise.
13735         
13736         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13737         on a generic instantiated type.
13739 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13741         *verify.c: produce meanfull error messages on verification error
13742         *verify.c: fixed some cases of verification errors reported as validation errors
13743         *pedump.c: fixed the error name array, now it shows validation errors properly
13744         *verify.h: fixed the contant that should be used for verification errors
13746 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13748         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13749         for bug #77596, 81858 and 80743 (generics data structures on domain
13750         unload).
13752 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13754         Avoid allocating 'MonoGenericContext' on the heap.
13755         * class-internals (_MonoMethodInflated::context): Make field
13756         inline, not a pointer.
13757         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13758         stack.  Use the context embedded within the inflated method as the
13759         hash key, rather than 'new_context'.
13760         * class.c (inflate_generic_context): Simplify.  Return a struct
13761         rather than allocating on the heap.
13762         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13763         doesn't salt away a copy of the context -- simplifying the
13764         lifetime rules of a 'MonoGenericContext *'.
13765         (mono_method_get_context): Return pointer to embedded context.
13766         (setup_generic_array_ifaces): Allocate temporary context on stack.
13767         * reflection.c (inflate_mono_method): Likewise.
13768         (mono_reflection_bind_generic_method_parameters): Likewise.
13769         Use the context embedded within the inflated method as the hash key.
13771         Avoid a source of allocation of 'MonoGenericContext'.
13772         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13773         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13774         * class.c: Update to changes.
13775         (mono_generic_class_get_context): Simplify drastically.  Now just
13776         returns a pointer to the field.
13777         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13778         argument as a const pointer.
13779         (mono_metadata_generic_context_equal): Likewise.
13780         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13781         Update to changes.
13783 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13785         * verify.c improved the handling of brtrue/brfalse, factored out common code
13787 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13789         Kill MonoGenericMethod.
13790         * class-internals.h (MonoGenericContext::method_inst): Rename from
13791         'gmethod' and convert to a MonoGenericInst.
13792         (MonoGenericMethod): Remove.
13793         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13794         * loader.c (method_from_methodspec): Update to changes.  Use a
13795         MonoGenericContext as the key to the hashtable.
13796         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13797         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13798         (mono_metadata_generic_context_hash): Likewise from
13799         'mono_metadata_generic_method_hash'.  Change hash function.
13800         (mono_metadata_load_generic_params): Update to changes.
13801         (mono_get_shared_generic_method): Remove.
13802         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13803         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13804         (inflate_generic_context): Likewise.
13805         (mono_class_inflate_generic_method_full): Likewise.
13806         (setup_generic_array_ifaces): Likewise.
13807         (mono_class_create_from_typespec): Likewise.
13808         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13809         (method_encode_methodspec): Update callsite.
13810         (reflection_methodbuilder_to_mono_method): Update to changes.
13811         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13812         MonoGenericContext as the key to the hashtable.
13813         (inflate_mono_method): Update to changes.
13815         * class-internals.h (MonoGenericMethod::container): Remove.
13816         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13818 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13820         * profiler-private.h, profiler.c, profiler.h: added API to profile
13821         exception events.
13823 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13825         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13827 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13829         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13830         Fixed overflow and underflow not aborting the verification process.
13832 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13834         * class-internals.h (MonoStats): Added stats entries for dynamic
13835         code allocations.
13837 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13839         * loader.c (mono_free_method): Free header->locals and header->clauses.
13841         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13842         dynamic case.
13844         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13846         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13848 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13850         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13851         the tables.
13853 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13855         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13857 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13859         MonoGenericMethod on a diet
13860         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13861         here ...
13862         (_MonoGenericMethod::reflection_info): ... from here.
13863         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13864         Update to changes.
13865         * reflection.c (inflate_mono_method): Likewise.
13866         (mono_reflection_bind_generic_method_parameters): Likewise.
13868 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13870         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13871         *verify.c: factored long ldarg forms to share code with short forms
13873 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13875         *verify.c: fixed code formating factored some duplicate code
13876         into a new function
13878         *verify.h: fixed binary incompatibility introduced earlier
13880         *pedump.c: fixed formating
13882 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13884         Fix assertion when disassembling Mono.C5.dll
13885         * loader.c (method_from_methodspec): Avoid inflating a method
13886         twice with the same context.  If the methodref is inflated, use
13887         the declaring method instead.
13889         * class.c (mono_class_from_generic_parameter): Fix case similar to
13890         bug #81830 handled below, but for method containers.
13892 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13894         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13895         get_shared_generic_class.  Directly inflate the instance.
13896         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13897         (inflate_generic_class): Delete.
13898         (get_shared_generic_class): Delete.  Move setting of
13899         'cached_class' and 'cached_context' ...
13900         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13902         * metadata.c (mono_metadata_lookup_generic_class): Change
13903         signature to take the components of a MonoGenericClass rather than
13904         an allocated MonoGenericClass.  Change semantics to be intern-like.
13905         * reflection.c (mono_class_bind_generic_parameters): Update to
13906         changes.  Make locking region tighter.
13907         * class.c (inflate_generic_class): Update to changes.
13908         (get_shared_generic_class): Likewise.
13909         * metadata-internals.h: Likewise.
13911         * reflection.c (mono_class_bind_generic_parameters): Take and
13912         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13913         (mono_reflection_bind_generic_parameters): Use
13914         'mono_class_bind_generic_parameters' rather than duplicate the code.
13915         * class.c (mono_bounded_array_class_get): Update to changes.
13916         * object-internals.h: Likewise.
13918         * reflection.c (mono_class_bind_generic_parameters): Only support
13919         parameterizing generic type definitions.  Remove support for other
13920         open types.
13922 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13924         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13926         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13927         in the dynamic case.
13929 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13931         * threads.c: When cleaning up thread, reset the Background bit.
13932         Fixes bug #81720.
13934 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13936        * metadata.c: Move variable declarations to top of scope.
13937        * verify.c: Move variable declarations to top of scope.
13939        Code is contributed under MIT/X11 license.
13941 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13943         * reflection.c (mono_class_bind_generic_parameters): Replace
13944         open-coded loop with mono_metadata_inflate_generic_inst.
13946         * class.c (get_shared_generic_class): Don't call
13947         mono_get_shared_generic_inst.  Use the container's own
13948         'class_inst'.
13950         * metadata.c (mono_metadata_load_generic_params): Move
13951         initialization of 'context' field here from ...
13952         * class.c (mono_class_create_from_typedef): ... here, and ...
13953         * loader.c (mono_get_method_from_token): ... here.
13955         * class.c (get_shared_generic_class): Rename from
13956         mono_get_shared_generic_class and make static.
13957         (mono_get_shared_generic_inst): Move to metadata.c.
13958         * loader.c (mono_get_shared_generic_method): Likewise.
13959         * class-internals.h, metadata-internals.h: Update to changes.
13961         Fix #81830
13962         * class.c (mono_class_from_generic_parameter): Don't assume a
13963         generic container owner exists.  Generic containers from monodis
13964         don't have any.
13966 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13968         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13969         * verify.h: new typedefs to returns the non-verifiable status
13970         * verify.c: initial implementation of generics, stack merging and object compatibility check
13972 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13974         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13975         a MonoInternalHashTable again (fixed bug in internal hash table
13976         code).
13978 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13980         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13981         MonoInternalHashTable again (fixed bug in internal hash table
13982         code).
13984 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13986         * class.c, image.c, class-internals.h, domain.c,
13987         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13988         changes.  Have to figure out what makes them break the SWF
13989         regression.
13991 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13993         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13994         a MonoInternalHashTable now.
13996 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13998         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13999         MonoInternalHashTable now.
14001 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14003         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14004         invoke_impl code.
14006         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14008         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14009         dependent trampoline.
14011         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14013         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14015 2007-05-29  Robert Jordan  <robertj@gmx.net>
14017         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14019 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14021         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14023 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14025        * marshal.c: Fix interface lookup loops for
14026        cominterop_get_com_slot_for_method and 
14027        cominterop_get_method_interface. Only need to lookup
14028        if type is a class, else use interface type method is on.
14030        Code is contributed under MIT/X11 license.
14032 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14034         * reflection.c: HasSecurity can be present even if no specially 
14035         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14036         SecurityAttribute). Fix CAS regression tests on buildbot.
14038 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14040        * appdomain.c: Add configure checks for header files.
14041        * image.c: Add configure checks for header files.
14042        * file-io.c: Add configure checks for header files.
14043        * debug-mono-symfile.c: Add configure checks for header files.
14044        * threadpool.c: Add configure checks for header files.
14045        * console-io.c: Add configure checks for header files.
14046        * profiler.c: Add configure checks for header files.
14047        * rawbuffer.c: Add configure checks for header files.
14048        * icall.c: Add configure checks for header files.
14049        * rand.c: Add configure checks for header files.
14050        * socket-io.c: Add configure checks for header files.
14052        Code is contributed under MIT/X11 license.
14054 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14056         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14057         assertion as it breaks the build.
14058         
14059         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14061         * reflection.c (lookup_custom_attr): Make a copy here too.
14063         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14064         dynamic images.
14066         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14067         images.
14069         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14070         info.
14072 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14074         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14075         (load_cattr_value): Ditto.
14077 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14079         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14081 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14083         * threads.c: In "start_wrapper", set apartment_state to MTA if
14084         apartment_state is Unknown and we're running on 2.0 profile or
14085         higher.
14086         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14087         to main method, then set apartment_state to Unknown on 1.0 profile,
14088         and MTA on 2.0 profile.
14090 2007-05-16  Jb Evain  <jb@nurv.fr>
14092         * class-internals.h (MonoDefaults): Add an attribute_class and
14093           customattribute_data_class.
14094         * domain.c (mono_init_internal): Populate them.
14095         * reflection.c: Use them to remove duplicates. Make a vew
14096         MonoClass variables `static'.
14098 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14100         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14101         step in implementing IMT, so that all isinst checks now can go
14102         through the bitmap.
14103         This was needed because vtables for TransparentProxy need to look
14104         like the vtable of the "target" class, so they need to point to
14105         its interface bitmap directly.
14107         * object.c: inside "mono_class_create_runtime_vtable" and
14108         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14110 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14112         * object-internals.h
14113           culture-info.h : added territory field in MonoCulture and
14114           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14115         * locales.c : fill territory field above too.
14116         * culture-info-table.h : regenerated.
14118 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14120         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14121         Fixes #81599.
14123 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14125         * object.c: Always initialize apartment, even if 
14126         there is no custom attributes on entry point.
14127         
14128         Code is contributed under MIT/X11 license.
14130 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14132         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14133         * metadata.c: If no encoding is set, check for unicode
14134         on class.
14135         
14136         Code is contributed under MIT/X11 license.
14138 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14140         * threads.c: Handle if mono_thread_current returns NULL 
14141         
14142         Code is contributed under MIT/X11 license.
14144 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14146         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14147         in start_wrapper. Added mono_thread_init_apartment_state and
14148         mono_thread_cleanup_apartment_state.
14149         * object.c: Initialize thread apartment state on main thread
14150         by checking for STAThreadAttribute on entry point.
14151         * object-internals.h: Add apartment_state field to MonoThread.
14152         * threads-types.h: Add unmanaged definition of 
14153         System.Threading.ApartmentState, MonoThreadApartmentState.
14154         
14155         Code is contributed under MIT/X11 license.
14156         
14157 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14159         * class.c: Fix windows build.
14160         * class-internals.h: Fix windows build.
14161         
14162         Code is contributed under MIT/X11 license.
14164 2007-05-08  Robert Jordan  <robertj@gmx.net>
14166         * process.c (CreateProcess_internal):
14167         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14168         .CreateNoWindow was specified. Fixes #81496.
14170 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14172         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14173         step in implementing IMT, replaced it with two compact arrays
14174         (interfaces_packed and interface_offsets_packed) and a bitmap that
14175         is used for isinst checks (interface_bitmap).
14177         * class.c: (compare_interface_ids): compare function to pass to
14178         bsearch when looking for an interface with a given id.
14179         (mono_class_interface_offset): reimplemented using bsearch on
14180         interfaces_packed, getting the offset from interface_offsets_packed.
14181         (print_implemented_interfaces): utility debugging function.
14182         (setup_interface_offsets): reworked to initialize interfaces_packed,
14183         interface_offsets_packed and interface_bitmap.
14185         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14186         with uses of interfaces_packed and interface_offsets_packed.
14188 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14190         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14191         mono_class_interface_offset prototype to wrap all accesses to
14192         "MonoClass.interface_offsets".
14194         * class.c: Implemented mono_class_interface_offset, and wrapped all
14195         accesses to "MonoClass.interface_offsets".
14197         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14198         "MonoClass.interface_offsets".
14200 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14202         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14203         GetMethodFromHandle overloads (bug #78637).
14205 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14207         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14208         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14210 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14212         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14213         #81498.
14215         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14216         gracefully.
14217         (mono_custom_attrs_from_index): Ditto.
14219         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14220         Fixes #81501.
14222 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14224         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14225         is now allocated from a mempool.
14227 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14229         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14230         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14232 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14234         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14235         mono_loader_clear_error () too late. Fixes #81463.
14237 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14239         * culture-info-table.h : regenerated.
14241 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14243         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14244         is missing.
14246 2007-04-25  Dick Porter  <dick@ximian.com>
14248         * Makefile.am: Put the mingw enforced-optimisation back into the
14249         PLATFORM_WIN32 section.
14251 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14253         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14254         patch.
14256         * image.c (mono_image_load_module): New API function to load a module reference.
14258         * image.c (load_modules): Load modules lazily. Fixes #80812.
14260         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14261         
14262         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14264         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14265         to mono_image_load_module_dynamic.
14267 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14269         * marshal.c: Fix calling convention for CCW on non-windows
14270         platforms. STDCALL on windows, CDECL everywhere else to work 
14271         with XPCOM and MainWin COM.
14272         
14273         Code is contributed under MIT/X11 license.
14275 2007-04-23  Martin Baulig  <martin@ximian.com>
14277         Fix #80969.
14279         * loader.c
14280         (method_from_memberref): Added `gboolean *used_context' argument.
14281         (mono_get_method_from_token): Likewise.
14282         (mono_get_method_full): Don't insert the method in the cache when
14283         `used_context' is true.
14285 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14287         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14289         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14290         create new MonoTypes for returned types.
14291         * class.c (mono_generic_class_get_class): Export mono-internal.
14292         * class-internals.h: Update to changes.
14294 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14296         * threadpool.c, threadpool.h, icall-def.h: patch from
14297         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14299 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14301         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14302         
14303         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14305         * threads.c (mono_thread_get_stack_bounds): New helper function.
14307         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14308         Correctly compute stack bounds when attaching. Fixes #81394.
14310 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14312         * reflection.c: fix handling of doubles in custom attributes
14313         for the arm-fpa format (bug #81368).
14315 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14317         * reflection.c (assembly_add_win32_resources): Mildly relax an
14318         bounds check to let the end pointer point just past the end of the
14319         allocated buffer.  (may fix #81384)
14321 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14323         * culture-info-table.h : regenerated.
14325 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14327         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14328         the thread is aborted early.
14330 2007-04-05  Dick Porter  <dick@ximian.com>
14332         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14333         FindFirstFile()/FindNextFile() to find entries.  This lets the
14334         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14335         81038.
14337         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14338         the parameters of
14339         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14341 2007-04-04  Martin Baulig  <martin@ximian.com>
14343         * debug-helpers.c
14344         (mono_method_desc_full_match): Add support for nested classes.
14346 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14348         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14350 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14352         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14353         waiting for too many threads.
14355 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14357         * environment.c: Fix return value check on uname so we can get the 
14358         executing version on Solaris operating systems.
14360 2007-03-28  Jb Evain  <jbevain@gmail.com>
14362         * class.c (mono_type_get_name_recurse): Complete the
14363         fix for the creation of assembly qualified names for
14364         pointer types. Fixes #81208.
14366 2007-03-27  Dick Porter  <dick@ximian.com>
14368         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14369         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14370         changed.
14372         * threads.c
14373         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14374         the value of ReleaseMutex().
14376 2007-03-27  Dick Porter  <dick@ximian.com>
14378         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14379         in little-endian order, not network endian, so must be converted
14380         to host endian here.  Fixes bug 80593.
14382 2007-03-22  Jb Evain  <jbevain@gmail.com>
14384         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14385         qualified names for pointer types. Fixes #81208.
14387 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14389         * marshal.c: Add support for PreserveSigAttribute. 
14390         
14391         Code is contributed under MIT/X11 license.
14393 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14395         * process.c: Fix endianness issues. Fixes #81126.
14397         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14398         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14400         * image.c (mono_image_lookup_resource): Make this work on big-endian
14401         machines.Change API contract so the caller needs to free the return value.
14402         
14403         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14404         API change.
14405         
14406 2007-03-14  Martin Baulig  <martin@ximian.com>
14408         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14409         mono_type_get_desc() as well.
14411 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14413         * icall.c:  Fix environ access in VS.  
14414         
14415 2007-03-13  Alp Toker  <alp@atoker.com>
14417         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14418         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14419         #63841.
14421 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14423         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14424         circular references among dynamic methods. Fixes #81091.
14426         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14428 2007-03-09  Martin Baulig  <martin@ximian.com>
14430         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14432 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14434         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14435         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14436         
14437         Code is contributed under MIT/X11 license.
14438         
14439 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14441         * loader.c: Reapply patch for bug #79424.
14443 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14445         * metadata.c (mono_type_to_unmanaged): Only convert object to
14446         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14448 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14450         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14451         (and incorrectly set) is_reference field from MonoGenericInst.
14453 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14455         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14456         a little earlier.
14458         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14460         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14462 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14464         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14465         FileOptions.1 value to mean "temporary", map that to
14466         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14468         Fixes 80688
14470 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14472         * appdomain.c: implement MS .Net style shadow copying. Copies of
14473         the assemblies are made in a subdirectory of the dynamic base
14474         directory, the assembly names are preserved.
14475         Copy .mdb and .config files along with the assemblies being shadowed.
14477 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14479         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14480         (emit_marshal_handleref): Ditto.
14482         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14483         on Visual C++. Fixes #80671.
14485 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14487         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14488         for clone operations.
14490 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14492         * marshal.c: Fix warnings.
14494 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14496         * loader.c: allow case-insensitive matching of the dll name
14497         in dllmap handling when prefixed with "i:".
14499 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14501         * threads.c: Fix #ifdef for dummy_apc function for VS.
14503 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14505         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14507 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14508         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14509         giving precedence to the methods with a fully qualified name
14510         (InterfaceName.MethodName) when building the interface sections
14511         of the vtable.
14513 2007-02-16  Dick Porter  <dick@ximian.com>
14515         * threadpool.c (append_job): Fix fast-path array handling, so it's
14516         less likely the array will grow exponentially when the load is
14517         heavy.
14519 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14521         * metadata-internals.h, loader.c: fix dllmap lookup order
14522         for non-function maps, too, and prepare for fallback code.
14524 2007-02-12  Robert Jordan  <robertj@gmx.net>
14526         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14527         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14528         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14529         GlobalFree. Fixes a part of bug #77075.
14531 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14533         * loader.c: implemented typedef parent in field memberref.
14535 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14537         * marshal.c: Fix warnings and remember to call Release on
14538         IUnknown of RCW.
14539         
14540         Code is contributed under MIT/X11 license.
14542 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14544         * class-internals.h: Add MonoHandleRef definition, and
14545         handleref_class to mono_defaults. 
14547         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14548         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14550         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14551         (do nothing on this stage)
14552         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14553         (emit_marshal_handleref): New method, used for argument handling
14554         of HandleRefs. 
14556 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14558         * class.c (mono_class_setup_parent): Lazily init com types.
14559         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14560         init com types.
14561         * object.c (mono_remote_class_vtable): Lazily init com types.
14562         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14563         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14564         * domain-internals.h: Expose mono_init_com_types.
14565         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14566         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14567         Add support for COM Callable Wrapper marshalling.
14568         * marshal.h: Add icall definitions.
14569         * gc.c: Handle freeing of CCWs in finalizer code.
14570         
14571         Code is contributed under MIT/X11 license.
14573 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14575         * reflection.c: changed all the signature encoding code to use
14576         a variable-sized buffer.
14578 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14580         * marshal.c: locking fixes: never take the loader lock
14581         or other runtime locks when holding the marshal lock
14582         (fixes bug#80664).
14584 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14586         * marshal.c: make the delegate function pointer mapping
14587         work for the moving GC.
14589 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14591         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14592         for bug #80618.
14594 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14596         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14597         gmodule.
14599 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14601         * threadpool.c: made the code moving-GC safe.
14603 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14605         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14606         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14607         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14608         warning cleanup.
14609         * reflection.c: warning cleanup, some threading and moving GC fixes.
14611 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14613         * class.c, loader.c: create the needed Set/Get/Address array methods
14614         as well as the .ctors in mono_class_init (), fixes bug #80567.
14616 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14618         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14619         we doesn't decrease its alignment. Should fix the sparc build.
14621 2007-01-24  Dick Porter  <dick@ximian.com>
14623         * socket-io.c
14624         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14625         Create the returned object if we need to ignore an unsupported
14626         socket option.  Fixes a segfault reported by Atsushi.
14628 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14630         * class.c, object.c: restrict GC-tracked fields to
14631         UIntPtr fields used inside corlib, so we provide better
14632         type info to the GC and also allow broken packing as in
14633         bug #80580.
14635 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14637         * sgen-gc.c: removed duplicated function.
14639 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14641         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14642         value that means that the value is not supported, but that we
14643         should not return a failure, but instead report this as a
14644         successful operation.
14646 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14648         Fix tests/bug79956.2.il
14649         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14650         (mono_generic_class_get_class): If the generic definition in an
14651         enum, copy over other fields related to it.
14653 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14655         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14656         genericinst enums (bug #79215).
14658 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14659         * class.c: Fix bug 80307.
14661 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14663         * image.c: if the file table is not present, try to load
14664         all the modules, since we don't have info about them
14665         having or not metadata (bug #80517).
14666         * assembly.c: allow mono_assembly_load_references () to
14667         work for netmodules.
14669 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14671         * image.c, metadata-internals.h, object.c: execute module
14672         cctors when running on the 2 runtime if present (bug #80487).
14674 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14676         * icall.c: optimized InitializeArray() on bigendian.
14678 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14680         * icall.c: fix for the broken ARM FPA double format.
14682 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14684         * icall.c: handle endian issues for r4 and r8 types, too, in
14685         the InitializeArray() icall.
14687 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14689         * loader.c (mono_loader_error_prepare_exception): Clear the error
14690         once we have extracted the information from it, do this before we
14691         call into the JIT's class loading mechanisms.
14693         * object.c (mono_class_create_runtime_vtable): Do not clear the
14694         loader error before calling mono_class_get_exception_for_failure
14695         as the loader error is needed inside
14696         mono_class_get_exception_for_failure to throw the error (thinko).
14698         Fixes #80521
14699         
14700 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14702         * reflection.c: align fields rva data so it's faster to load at
14703         runtime.
14705 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14707         Prepare to simplify GenericMethod handling.
14708         * class-internals.h (mono_method_get_context): New accessor function.
14709         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14710         rather than directly accessing '->context' field.
14712         * class-internals.h (_MonoGenericParam.method): Move ...
14713         (_MonoGenericContainer): ... here.  Add into union with klass field.
14714         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14715         Update to changes.
14717 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14719         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14720         the wrapper type enum and reduce relocations.
14722 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14724         * reflection.c (inflate_mono_method): Reuse method instantiation
14725         from the generic method, if available.
14727 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14729         * marshal.c (emit_marshal_variant): Fix conv_arg
14730         type in last commit, based on whether parameter is byref.
14731         
14732 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14734         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14735         marshalling.
14736         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14737         MONO_TYPE_OBJECT back for VARIANT support.
14739 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14741         * marshal.c, marshal.h, icall-def.h: Implement 
14742         Marshal.ReAllocCoTaskMem.
14744 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14746         * marshal.c: memory retention fixes: use the proper
14747         image cache for runtime_invoke method lookups.
14749 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14751         * mempool.c: added code to help debug mempool allocations.
14753 2007-01-11  Dick Porter  <dick@ximian.com>
14755         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14756         support (experimenting with faking it with IP_MTU_DISCOVER for
14757         systems that don't have IP_DONTFRAGMENT.)
14758         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14759         icall.
14761         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14763         * socket-io.h: Add new fields to MonoSocketAsyncResult
14764         corresponding to the new ones in Socket.cs.
14766 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14768         Fix IronPython regression mentioned in #80249
14769         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14770         'cached_context' field, since it may have been initialized as a
14771         side-effect of metadata parsing.
14773         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14774         (_MonoGenericClass.cached_class): Move here and rename from lone
14775         remaining field of ...
14776         (_MonoInflatedGenericClass): ... this.  Remove.
14777         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14778         to changes.
14780         Fix mcs/tests/test-128.cs regression.
14781         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14782         2007-01-10 change below.
14783         [MONO_TYPE_OBJECT]: Recurse into array case.
14785 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14787         * class-internals.h (mono_get_inflated_generic_class): Remove.
14788         * class.c (mono_get_inflated_generic_class): Remove.
14789         (mono_generic_class_get_class): Rename from
14790         mono_class_create_generic.
14791         (mono_class_from_mono_type) [GENERICINST]: Use it.
14792         * reflection.c, metadata.c: Update to changes.  Use
14793         'mono_class_from_mono_type'.
14795 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14797         * reflection.c: use passed type when encoding an array element
14798         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14800 2007-01-09  Robert Jordan  <robertj@gmx.net>
14802         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14803         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14804         Fixes bug #80392.
14806 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14808         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14810         * object.c (set_value): Avoid aliasing between type->data.klass
14811         and type->data.generic_class.
14813         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14815 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14817         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14818         between type->data.klass and type->data.generic_class.
14820 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14822         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14823         value in out parameters.
14825 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14827         Simplify invariant for MonoGenericClass::klass field.
14828         * class.c (mono_class_create_generic): Verify 'klass' is null.
14829         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14830         initialize 'klass' field.
14832 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14834         Ongoing work to avoid redundant data and simplify invariants.
14835         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14836         'generic_class', and change type to a GenericInst.
14837         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14838         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14840 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14842         * class.c : skip io-layer under PLATFORM_WIN32.
14844 2007-01-03  Tor Lillqvist  <tml@novell.com>
14846         Fix #80305: In a bundled executable, look in the bundled exe
14847         assembly to determine the runtime version. Add the possibility to
14848         bundle also the machine.config file.
14849         
14850         * assembly.c (mono_assembly_open_from_bundle): Make
14851         non-static. Allow being called even if we have no bundled
14852         assemblies, and return NULL right away in that case.
14854         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14855         here.
14857         * domain.c (app_config_parse): Take an assembly exe file name as
14858         parameter instead of a config file name. Check for a bundled
14859         config file for that assembly by calling
14860         mono_config_string_for_assembly_file() (see below) before looking
14861         for one in the file system.
14862         (get_runtimes_from_exe): Corrsponding change to call of
14863         app_config_parse().
14864         (get_runtimes_from_exe): Check for bundled assembly exe file first
14865         by calling mono_assembly_open_from_bundle(). If no bundled
14866         assembly exe file is found, call mono_image_open() as before to
14867         look it up in the file system.
14869         * mono-config.c: Add variable bundled_machinec_onfig.
14870         (mono_config_string_for_assembly_file): New function.
14871         (mono_config_for_assembly): Move code snippet that looks for a
14872         bundled assembly .config file into the above new function. Call
14873         it.
14874         (mono_register_machine_config, mono_get_machine_config): New
14875         functions to set and retrieve
14877         * assembly.h: Declare mono_register_machine_config().
14879         * mono-config.h: Declare mono_get_machine_config() and
14880         mono_config_string_for_assembly_file().
14882         * icall.c: No declaration of environ necessary on Win32. It is
14883         declared (as a macro expanding to a function call) in stdlib.h.
14884         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14885         New internal mono function. Returns the value of
14886         mono_get_machine_config() as a Mono string.
14888         * icall-def.h: Add get_bundled_machine_config().
14890 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14892         Remove redundant field
14893         * class-internals.h (_MonoGenericContext.container): Remove field.
14894         * loader.c (mono_method_get_signature_full): Don't parse a
14895         "container" for a signature parse when the signature is inflated
14896         immediately.
14897         (method_from_methodspec): Likewise, for a generic_inst.
14898         * class.c, metadata.c, reflection.c: Update to changes.
14900 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14902         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14903         'cached_context', and change semantics -- it starts off NULL, and
14904         is initialized on demand.
14905         * class.c (mono_generic_class_get_context): New accessor to
14906         replace 'context' field accesses.
14907         (mono_class_get_context): New helper.
14908         (*): Update to changes.
14909         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14911 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14913         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14914         before the memcpy.   Fixes Marshal2 regression.
14916 2007-01-02  Jb Evain  <jbevain@gmail.com>
14918         * blob.h: add a MONO_TYPE_ENUM definition
14919         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14920         fix the encoding of arrays of enums in custom attributes.
14922         Fixes #79666.
14924 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14926         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14927         string is null terminated, but only cut the string short if it
14928         overflows the buffer.   
14929         
14930         (mono_string_to_byvalstr): Also fix this routine.   The code here
14931         was not properly terminating a string (it was only terminated
14932         because of the previous catch-all memset). 
14934         I left the memset, because I do not know if applications expect
14935         the runtime to clear this region. 
14937         Fixes #79944.
14939         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14940         Clear the error before returning to unmanaged code to prevent the
14941         runtime from being confused later on (fixes  80420).
14942         (ves_icall_type_from_name): Always call mono_loader_clear_error
14943         after parsing a type that could have failed.
14944         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14946         * loader.c (mono_loader_clear_error): Fix indentation.
14948 2006-12-28  Martin Baulig  <martin@ximian.com>
14950         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14952 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14954         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14955         getting a token for an EnumBuilder.
14957 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14959         * reflection.c: be more careful in case resource generation
14960         fails to create the data array.
14962 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14964         * sgen-gc.c: write barrier for clone and fix unregister handles.
14966 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14968         * reflection.c: some fixes needed in the generics code for the moving GC.
14970 2006-12-22  Robert Jordan  <robertj@gmx.net>
14972         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14973         account. Fixes bug #80299.
14975 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14977         Fix WaitHandle usage in delegates.
14978         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14979         * object.c (mono_wait_handle_new): Use the property set method to
14980         initialize the handle.
14981         (mono_wait_handle_get_handle): New.
14982         * threadpool.c (mono_async_invoke): Use it.
14983         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14984         Likewise.
14985         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14987 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14989         * marshal.c (emit_marshal): Call emit_marshal_variant and
14990         emit_marshal_com_interface when applicable.
14991         (emit_marshal_variant, emit_marshal_com_interface): Add
14992         methods for this case and remove if's from emit_marshal_object.
14993         
14994 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14996         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14998 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15000         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15001         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15002         and GlobalFree on Windows. Remove FIXME.
15004 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15006         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15007         implementation for managed objects.
15009 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15011         * object.c: implemented code to be used for checking
15012         that no reference field overlaps with non-references.
15014 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15016         * threadpool.c: fix queue code to be compatible with the
15017         moving GC.
15019 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15021         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15022         in structures by throwing ArgumentNullException.
15024         (emit_marshal_safehandle): Also when they are null parameters.
15026         (emit_marshal_safehandle): Add support for ref
15027         SafeHandles parameters
15029 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15031         * profiler.c: updated to use the mono-dl API instead of
15032         gmodule.
15034 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15036         * profiler.c: updated to use the mono-dl dynamic loading
15037         API instead of gmodule.
15039 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15041         * profiler.c: use readlink, older versions of glib don't have
15042         g_file_read_link ().
15044 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15046         * profiler.c: try to detect the path to mono if libc fails to provide
15047         a useful name (bug #80286).
15049 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15051         Fix #80242
15052         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15053         instance, use the generic type definition instead.
15054         (ves_icall_Type_GetNestedTypes): Likewise.
15055         * class.c (mono_class_create_generic): Always set the
15056         nested_classes of a generic instance to NULL, even if the generic
15057         type definition has nested types.
15059 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15061         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15062         and fix on Linux.
15063         
15064 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15066         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15067         my arguments were in the wrong order.   I also fixed the Windows
15068         version which seems to have had the same issue.
15070         (mono_free_bstr): On Unix, this is g_free.
15071         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15072         conversions (for the tests in corlib to pass).
15074 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15076         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15077         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15078         exception if a ref SafeHandle in a struct has changed).
15079         
15080         (emit_struct_conv): Do not perform layout checks for classes
15081         derived from SafeHandle, as those are specially handled. 
15083         (emit_object_to_ptr_conv): Add support for
15084         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15086         (emit_marshal_safehandle): Implement conversion of return values
15087         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15088         
15089         * threads.c: WaitHandle now is compiled with two different handles
15090         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15091         for 2.0.
15092         
15093         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15094         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15095         these routines to cope with both kinds of fields.
15097 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15099         * metadata.c (mono_type_to_unmanaged): Handle the case where
15100         type->data.klass is a SafeHandle, and in that case, return the
15101         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15102         MONO_MARSHAL_CONV_SAFEHANDLE. 
15104 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15106         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15107         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15108         calling emit_marshal_object.
15110         (emit_marshal_safehandle): Implement marshalling of
15111         SafeHandle parameters (no ref support yet).
15113         (MarshalAction): Document the defines as I implement
15114         them for SafeHandle.
15116         (emit_marshal_object): indentation police.
15118         * class-internals.h: Define MonoSafeHandle.
15119         Add safehandle_class to MonoDefaults type.
15121         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15122         list of classes to check for fields. 
15124         * domain.c (mono_init_internal): Add SafeHandle to the list of
15125         mono_defaults loaded.
15127 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15129         Fix #80253
15130         * reflection.c (mono_reflection_bind_generic_parameters): If the
15131         generic type definition is a type builder, ensure that it is fully
15132         initialized before instantiating it.  Kill some dead code.
15134 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15136         * object.c: clear the loader_error () before loading
15137         more metadata stuff (bug #80258).
15139 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15141         * icall.c, icall-defs.h: type modifiers icalls for
15142         parameters and properties.
15144 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15146         * object.c, icall.c: fixed warnings.
15148 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15150         * marshal.c: fixed a couple of leaks and coding style in a few places.
15152 2006-12-08  Dick Porter  <dick@ximian.com>
15154         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15155         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15156         80173.
15158 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15160         * process.c: ProcessStartInfo may have only filename set and
15161         arguments can be NULL.
15163 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15165         * icall.c: fix leak found by Robert Jordan.
15167 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15169         * marshal.c, marshal.h: generate managed method to access an element
15170         of a multi-dimensional array.
15172 2006-11-30  Paolo Molaro (lupus@ximian.com)
15174         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15176 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15178         * icall.c: back out GetFields () fix until the serialization code is
15179         fixed to not depend on the incorrect behaviour.
15181 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15183         * profiler.c: provide defaults if none are set.
15185 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15187         * Makefile.am, attrdefs.h: new public header file with
15188         constants for attributes for use by embedders.
15190 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15192         * icall.c: GetFields () fix for bug #80064.
15194 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15196         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15197         removed long unused icalls.
15199 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15200   
15201         * marshal.c: 
15202                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15203                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15204                 can be generated without a delegate class.
15205                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15206         
15207         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15209 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15211         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15212         #80069.
15214 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15216         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15217         icall-def.h: added icalls needed by System.GC.
15219 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15221         * loader.c: ensure the class in catch clauses is handled
15222         correctly for generics methods (fixes bug#79980).
15224 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15226         * monitor.h, monitor.c: added mono_locks_dump () function
15227         to help debug deadlocks involving managed locks.
15229 2006-11-13  Dick Porter  <dick@ximian.com>
15231         * file-io.c (get_file_attributes): If the file is a symlink try
15232         and get the stat data for the target, but also add the
15233         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15234         the specs for the windows symlink support, but will probably have
15235         to be reworked when I have test data from a vista machine.  Fixes
15236         bug 79887.
15238 2006-11-13  Dick Porter  <dick@ximian.com>
15240         * gc.c (mono_domain_finalize): 
15241         * marshal.c (mono_delegate_begin_invoke): 
15242         * threadpool.c (socket_io_init, mono_thread_pool_init)
15243         (mono_thread_pool_finish): 
15244         * monitor.c (mono_monitor_try_enter_internal): 
15245         * threads.c (mono_thread_resume, mono_thread_init)
15246         (mono_thread_suspend_all_other_threads)
15247         (mono_thread_execute_interruption): 
15248         * appdomain.c (mono_domain_unload): Check for NULL error returns
15249         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15250         75733.
15252 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15254         * process.c
15255         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15256         Only close the handle if the value of the handle is not
15257         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15258         robust.
15260         Improvement for #75733, so that we do not run into this problem. 
15262         
15263         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15264         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15265         internal variables.  Fixes #79462 
15266         
15268 2006-11-09  Dick Porter  <dick@ximian.com>
15270         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15271         Use poll() not select().  Fixes bug 79397.
15273 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15275         Fix #79872
15276         * assembly.c (mono_assembly_load_from_full): Check that the given
15277         image has an assembly manifest.
15279 2006-11-09  Ankit Jain  <jankit@novell.com>
15281         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15282         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15283         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15285 2006-11-07  Dick Porter  <dick@ximian.com>
15287         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15288         Put the old resolver behaviour back for pre-2.0 profiles.
15290 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15292         * threadpool.c: precise GC and locking fixes.
15294 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15296         * class.c: don't load types that have an explicit unaligned
15297         managed reference. Provide better info in the TypeLoad exception.
15298         Part of the fix for bug #79744.
15299         * object.c: use the correct check for class type load issues.
15301 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15303         * class.c: enforce alignment of fields with managed references
15304         even when Pack=1 is forced by the user (bug #77788).
15306 2006-11-03  Dick Porter  <dick@ximian.com>
15308         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15309         If the address reverse lookup fails, return it as the hostname
15310         anyway.  Fixes bug 79721.
15312 2006-11-03  Dick Porter  <dick@ximian.com>
15314         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15315         Fix build on Windows.
15317 2006-11-02  Dick Porter  <dick@ximian.com>
15319         * icall-def.h: 
15320         * object-internals.h: 
15321         * exception.c (mono_get_exception_thread_interrupted): 
15322         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15323         Fixes bug 74525.
15325         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15326         Check for pending Thread.Interrupt.
15328 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15329         * loader.c: Fixed bug 79684.
15331 2006-10-27  Dick Porter  <dick@ximian.com>
15333         * file-io.c (get_file_attributes): Force symlinks to directories
15334         to be returned as a regular file.  Fixes bug 79733.
15335 2006-10-26  Dick Porter  <dick@ximian.com>
15337         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15338         CreateFile to open a directory then we need to set the
15339         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15341 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15343         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15344         friends.
15346 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15348         * sgengc.c: small cleanup of timer code.
15350 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15352         * sgen-gc.c: fix some warnings and start adding support for
15353         complete object removal on domain unload.
15355 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15357         * assembly.c: build_assembly_name should not consider a version
15358         number without build or revision number invalid. Fixes bug #79715.
15360 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15362         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15363         call kernel32 function OutputDebugString directly.
15364         
15365         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15366         
15367 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15369         * reflection.c: small cleanup, using a function to insert a MonoString
15370         in the string heap.
15372 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15374         * reflection.c: moving GC fixes.
15376 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15378         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15379         all the objects with finalizers belonging to an unloading appdomain.
15381 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15383         * sgen-gc.c: added ability to allocate even when the nursery is fully
15384         pinned and fixed a couple of bugs.
15386 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15388         * threads.h: Revert the last change for now.
15390         * threads.h (mono_thread_get_pending_exception): Rename this to
15391         mono_thread_get_undeniable_exception ().
15393 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15395         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15396         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15397         when fname does not refer to valid assembly. This result in a more
15398         meaningful error message.
15399         * exception.c: added mono_get_exception_bad_image_format2 which 
15400         constructs a BadImageFormatException using the ctor taking a custom
15401         message and the file name. Passing in a NULL msg results in a default
15402         message.
15403         * exception.h: define mono_get_exception_bad_image_format2 function.
15404         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15405         when file name pointed to an invalid IL image. Use 
15406         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15407         as this results in a more meaningful error message.
15409 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15411         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15412         #79465.
15414 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15416         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15417         consistency with the other _size functions.
15418         (mono_type_stack_size): Ditto.
15420         * class.c object.c icall.c: Fix warnings caused by the above change.
15422         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15424         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15426         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15428 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15430         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15431         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15432         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15433         threadpool.h, threads-types.h: mark more internal functions.
15435 2006-10-11  Dick Porter  <dick@ximian.com>
15437         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15438         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15439         reproduce the bug even before applying the fix.)
15441 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15443         * reflection.c: allow retrieving attributes for arguments in generic
15444         methods (bug #79241).
15446 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15448         * debug-mono-symfile.c: properly check fopen () result (found by
15449         coverity).
15451 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15453         * reflection.c: make error message clearer and fixed two
15454         issuelets found by Coverity.
15456 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15458         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15460 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15462         * object-internals.h, gc-internal.h, profiler-private.h:
15463         mark internal functions.
15465 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15467         * reflection.c: put data in the text section.
15468         * icall.c: recognize more types in type_from_typename ().
15469         * process.c, marshal.c: added some GC FIXMEs.
15471 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15473         * loader.c: check for NULL before initializing.
15475 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15477         * gc.c (finalizer_thread): Use a non-alertable wait here.
15479         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15480         until the correct solution is found.
15482 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15484         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15485         modules with no metadata. Fixes #79596.
15487         * image.c (load_metadata_ptrs): Put back the error message when
15488         the #- heap is encountered since the support is not complete yet.
15490 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15492         * gc.c: do not allow the user to SuppressFinalize () a
15493         delegate because it would leak the trampoline if present.
15495 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15497         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15498         PropertyPtr table.
15500 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15502         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15504         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15506         * row-indexes.h: Add definitions for *Ptr tables.
15508         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15510         * metadata.c (mono_metadata_translate_token_index): New helper function to
15511         translate table indexes used in uncompressed metadata.
15512         (mono_metadata_decode_table_row): Ditto.
15513         (mono_metadata_decode_table_row_col): Ditto.
15515         * metadata.c: Add table schema for *Ptr tables.
15517         * class.c loader.c: Use the new helper function to access the affected metadata
15518         tables.
15519         
15520         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15521         #38532.
15522         
15523 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15525         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15526         sequences which can be unbounded in size. Fixes #79583.
15528 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15530         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15531         static initialization.
15533         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15535         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15537         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15539         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15540         ctor fails, i.e. throw the same exception on subsequent accesses.
15541         
15542 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15544         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15545         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15546         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15547         Handle marshalling of interfaces and VARIANTs contained in structs.
15548         
15549         Code is contributed under MIT/X11 license.
15550         
15551 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15553         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15554         
15555         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15556         mempool.
15558 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15560         * console-io.c: ignore previous SIGINT handler.
15562 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15564         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15565         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15566         #79460, #79461, #79485.
15568         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15570         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15571         #79217.
15573 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15575         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15576         could be generated from it.
15578 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15580         * rand.c: fix read loop to correctly handle EINTR.
15582 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15584         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15585         internal calls are defined to keep methods closer to the declaring
15586         type and allow a significant reduction in runtime relocations and
15587         memory usage.
15589 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15591         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15592         exception message to have FileNotFoundException use the default
15593         assembly load error message. Fixes bug #79426.
15594         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15596 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15598         * threadpool.c: (start_thread_or_queue) use the root domain when
15599         creating the thread instead of the async object one.
15601 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15603         * class.c, object.c, class-internals.h, reflection.c:
15604         for arrays, store element_size inside MonoClass (speedup
15605         for array object creation).
15607 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15609         * icall.c: fixed CodeBase to use the file name and not the module
15610         name (bug #79365).
15612 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15614         * mono-debug.c, mono-debug.h: export find_method as
15615         mono_debug_find_method ().
15617 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15619         * debug-helpers.c, class-internals.h: added a few functions useful
15620         when debugging under gdb.
15622 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15624         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15625         characters that need special handling.
15627 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15629         * mono-config.c: make the os/cpu specification more flexible,
15630         allowing lists and negation.
15632 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15634         * marshal.c: COM Interop fixes. Handle case where method->klass.
15635         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15636         calling convention on non-windows platforms. This is for
15637         compatibility with XPCOM and MainWin COM.
15638         
15639         Code is contributed under MIT/X11 license.
15640         
15642 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15644         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15645         correctly. Fixes #79217.
15647         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15649 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15651         * mono-config.c: allow both an os and cpu attribute for dllmap
15652         and dllentry elemnets to enable a single config file to be used
15653         for multiple architectures.
15655 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15657         * loader.c: MonoLoaderError was cleared too soon on load failure.
15658         Fixes bug #79424.
15660 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15662         * icall.c: use the defining class vtable when accessing a
15663         static field, not a pobblibly derived class.
15665 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15667         * icall.c string-icalls.c: Remove references to unicode.h.
15669         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15671         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15673         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15674         indicating the image where custom marshaller types should be looked up.
15675         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15676         custom marshallers, instead of corlib. Fixes #79425.
15678 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15680         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15682 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15684         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15685         Implement Environment.ProcessorCount.
15686         
15687         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15688         Implement Environment.ProcessorCount.
15689         
15690         * icall.c: 
15691         Add Environment.ProcessorCount icall.
15692         
15693         Patch by Jason McFall.
15695 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15697         * assembly.c: don't append .exe/.dll when the filename already contains
15698         one of those extensions.
15700 2006-09-12  Martin Baulig  <martin@ximian.com>
15702         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15703         to array interfaces.
15705 2006-09-11  Martin Baulig  <martin@ximian.com>
15707         * reflection.c (mono_image_build_metadata): Create the
15708         MethodImpl's after emitting all types and methods, so we don't
15709         need another fixup pass for them.
15711 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15713         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15714         change.
15716 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15718         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15719         unload.
15721 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15723         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15724         args is not set. Fixes #78926.
15726 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15728         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15730         * image.c (load_class_names): Move this to class.c, and rename it to 
15731         'mono_image_init_name_cache'.
15732         (load_modules): Fix a warning.
15734         * class.c icall.c image.c: Initialize image->name_cache lazily.
15736         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15737         on its name using information in the AOT file.
15739         * class.c (mono_class_from_name): Use the new hook function.
15741 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15743         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15744         correctly.
15746         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15747         Fixes #79289.
15748         
15749 2006-09-06  Martin Baulig  <martin@ximian.com>
15751         * icall.c (mono_lookup_internal_call): Small fix.
15753 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15755         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15756         double g_free.
15758 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15760         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15761         when --debug is specified.
15763 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15765         * class.c (setup_generic_array_ifaces): Fix a warning.
15767 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15769         * Temporarily remove the patch to assemly.c that checks the
15770         assembly versions as it breaks our gacutil.
15772 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15774         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15776         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15777         a net 1.0 runtime.
15779         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15780         created using the default ctor. Fixes #79152.
15781         (mono_string_builder_to_utf16): Ditto.
15783 2006-09-01  Martin Baulig  <martin@ximian.com>
15785         Fix handling of the generic array interfaces.
15787         * class-internals.h
15788         (MonoDefaults): Removed `generic_array_class' and added
15789         `generic_ilist' class.
15791         * class.c
15792         (mono_bounded_array_class_get): Add the new generic array interfaces.
15793         (setup_generic_array_ifaces): New static method; create vtable
15794         entries for each method in the generic array interfaces.
15796         * metadata.c
15797         (select_container): Allow "parent-less" generic methods.
15799         * marshal.c
15800         (mono_marshal_get_generic_array_helper): New public method.
15802         * icall.c
15803         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15804         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15805         moved the interncall into System.Array.
15807 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15809         A few more cases of avoiding work on types with ->byref set.
15810         Has the real fix for #79238
15811         * icall.c (is_generic_parameter): New helper.
15812         (ves_icall_Type_GetGenericParameterPosition): Use it.
15813         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15814         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15815         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15816         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15817         reference types.
15818         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15819         reference types.
15820         (ves_icall_Type_get_IsGenericInstance): Likewise.
15821         (ves_icall_Type_get_IsGenericType): Likewise.
15823 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15825         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15826         class if possible.
15828         * mempool.h (mono_mempool_get_allocated): New helper function.
15830         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15831         change.
15833         * mempool.c: Fix warnings and the calculation of stats.
15835         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15837         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15839         * loader.c (mono_get_method_from_token): Update method_count stat.
15841         * class-internals.h (MonoStats): Add some stats.
15843 2006-08-31 Robert Jordan  <robertj@gmx.net>
15845         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15846         with managed variants.
15847         All code is contributed under the MIT/X11 license.
15848         
15849 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15851         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15852         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15854         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15856         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15857         with cycles in classes.
15859         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15861         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15862         missing a [MarshalAs] directive. Fixes #79203.
15864         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15865         klass->marshal_info. Fixes #79217.
15867 2006-08-30  Martin Baulig  <martin@ximian.com>
15869         Committing a patch from Joachim Ante <joe@otee.dk>:
15870         Add support for binary data symbol stores.
15872         * debug-mono-symfile.c
15873         (mono_debug_open_mono_symbol_file): Renamed into
15874         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15875         arguments.
15877         * mono-debug.c
15878         (mono_debug_open_image): Added `raw_contents' and `size' args.
15879         (mono_debug_init_2_memory): New public function.
15881 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15883         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15885 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15887         * appdomain.c: implement support for ShadowCopyFiles.
15889 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15891         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15892         when value is NULL (and should remove CID #51).
15894 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15896         * image.c: moved 2 functions to ../utils.
15898 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15900         * gc.c: cope with the target object of a GC handle being NULL
15901         (bug #78877).
15903 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15905         * class.c: recursively check parent's explicit implementations
15906         of interface methods (fixes bug #79125).
15908 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15910         * filewatcher.c: Avoid warnings when building, do not redefine
15911         constants that are defined.
15913         Remove warnings.
15915 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15917         * image.c: don't fail when the link points to an absolute path.
15919 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15921         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15922         Fix CID #3.
15924 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15926         * image.c (full_path): A new method used to obtain the actual path
15927         of an assembly even in the presence of symbolic links.  
15929         This is necessary for the case where we are running a binary that
15930         has been GACed, but we are using the "published" path name
15931         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15932         file in the GAC.
15934         This was the source of the failure for the `xsp' command with the
15935         recent AppDomain changes, as far as the runtime was concerned,
15936         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15937         $prefix/mono/gac/blah/version/blah.exe.
15939         (do_mono_image_open): use full path
15941 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15943         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15945 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15947         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15948         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15950 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15952         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15953         small structures. Fixes #78990.
15955 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15957         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15959         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15961 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15963         * appdomain.c:
15964         * marshal.c: don't load all the assemblies from a domain into newly
15965         created ones. The new domains might have different rules and load
15966         assemblies from different locations. Fixes bug #76757.
15968         Patch by Lluis. Conflicts resolved by Brian Crowell.
15970 2006-08-16  Alp Toker  <alp@atoker.com>
15972         * socket-io.c: First half of the fix for #79084.
15973         Set sa_size to the length of the content, not that of the struct.
15974         Don't add NULL suffix to the content, this should be done in
15975         managed code if needed.
15977 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15979         Fix part of #79012
15980         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15981         mono_metadata_parse_type returns NULL.
15983 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15985         * normalization-tables.h : new file for string normalization data.
15986         * locales.c, locales.h, icall.c :
15987           added load_normalization_resource() for string normalization,
15988           and icall as well.
15989         * Makefile.am : added normalization-tables.h to the sources.
15991 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15993         * marshal.c: Add more helper functions to reduce code duplication and use them
15994         everywhere.
15996 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15998         * marshal.c: Fix non-x86 stdcall warnings.
15999         
16000         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16001         them everywhere.
16003 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16005         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16006         type check on multi-dimensional arrays. Fixes #79000.
16008 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16010         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16011         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16012         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16013         * class-internals.h: add is_com_object to class structure.
16014         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16015         null checks to COM object marshalling. Fix .ctor call on RCW.
16016         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16017         
16018         All code is contributed under the MIT/X11 license.
16020 2006-08-09  Dick Porter  <dick@ximian.com>
16022         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16023         racing mono_monitor_allocator_lock() somewhere, so don't delete
16024         the critical section for now.  Found by running and exiting
16025         monodevelop.
16027 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16029         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16030         (ves_icall_System_ComObject_FindInterface): Ditto.
16031         (ves_icall_System_ComObject_CacheInterface): Ditto.
16033         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16034         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16036 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16038         * threadpool.c: treat pipes from process asynchronous reads as sockets
16039         when reading from them, so we get select/poll or epoll to wait for
16040         data.
16042 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16044         * loader.c: Fix a typo (CID #233) in the null check.
16046 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16048         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16049         Hopefully fixes #78949.
16050         
16051         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16052         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16053         bytes. Fixes #78972.
16055 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16057         * filewatcher.c: we need to set errno here.
16059 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16061         * filewatcher.c: let Win32Exception get the error value.
16063 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16065         * filewatcher.c: translate errno into win32 errors for Win32Exception
16066         to know what happened.
16068 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16070         * threadpool.c: Fix more warnings.
16072         * assembly.c (search_loaded): Fix warnings.
16074         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16075         (mono_async_invoke): Ditto.
16077 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16079         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16080         entries for __ComObject type in addition to ComImport types.
16081         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16082         about hash table.
16083         
16084         All code is contributed under the MIT/X11 license.
16086 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16088         * image.c: avoid tentative loading of modulerefs that contain
16089         no metadata (P/Invoke library names).
16091 2006-07-28  Dick Porter  <dick@ximian.com>
16093         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16094         mono_loader_lock() somewhere, so don't delete the critical section
16095         for now.  Found by running and exiting monodevelop.
16097 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16099         * filewatcher.c: define the inotify syscalls when we're building on
16100         linux and have sys/syscall.h. The build system might not have support
16101         for inotify but the target system might have it.
16103 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16105         * domain.c: Documentation updates.
16107         * loader.c (mono_free_method): Do not release the method
16108         information if we are being profiled, as profilers will use this
16109         information at shut down to present some data to the user.
16111         This is needed so that the profiler does not crash, as the
16112         profiler tends to keep MonoMethods around, and they might become
16113         invalid if we free these.
16115         (mono_get_method_constrained): Return the original CIL stream
16116         method as well, so verification can be performed against it.
16118 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16120         * filewatcher.[ch]: support for inotify file system watcher.
16121         * icall.c: add new internal calls for the inotify file system watcher.
16123 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16125         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16126         #78888.
16128 2006-07-20  Dick Porter  <dick@ximian.com>
16130         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16131         warning.
16133 2006-07-20  Dick Porter  <dick@ximian.com>
16135         * threads.c (start_wrapper): Do the thread cleanup while we still
16136         hold a reference to its object.  Fixes bug 78123.
16138 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16140         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16141         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16142           "managed-to-managed".
16143         * icall.c: Redirect string constructors that take sbyte* to
16144           ves_icall_System_String_ctor_RedirectToCreateString.
16145         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16146           to CreateString () methods with matching signature.
16147         * reflection.c: Use original security informations for
16148           MONO_WRAPPER_MANAGED_TO_MANAGED.
16149         * security-manager.c: Use original security informations for
16150           MONO_WRAPPER_MANAGED_TO_MANAGED.
16151         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16152           that is a placeholder and only its address should be used.
16153         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16154           that is a placeholder and only its address should be used.
16156 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16158         Begin implementing COM Interop.
16159         * appdomain.c: Increment corlib version.
16160         * class.c: Set ComImport classes' parent to __ComObject.
16161         * loader.c: Mark cominterop methods as such.
16162         * domain.c: Add __ComObject class to MonoDefaults structure.
16163         * image.c: Add 2 hashtables to the image for COM Interop related methods
16164         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16165         using the mempool allocator
16166         
16167         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16168         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16169         declaration for mono_metadata_type_dup_mp.
16170         
16171         * debug-helpers.c: Added strings for two additional wrapper types
16172         * object.c: Create proxy objects for ComImport classes
16173         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16174         and added __ComObject class to MonoDefaults structure.
16175         
16176         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16177         MonoComInteropProxy and MonoComObject.
16178         
16179         * marshal.c: Added support for COM Interop
16180         (signature_cominterop): Converts managed signature to corresponding
16181         unmanaged COM signature.
16182         (cominterop_get_function_pointer): gets unmanaged function pointer via
16183         COM object vtable
16184         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16185         (cominterop_get_method_interface): returns interface type that method is defined on
16186         (mono_mb_emit_cominterop_call): emits native call to function pointer
16187         gotten from vtable
16188         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16189         that matches signature of unmanaged function.
16190         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16191         (cominterop_get_invoke): forwards call from proxy to __ComObject
16192         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16193         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16194         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16195         
16196         * marshal.h: Added Marshal icall declarations.
16197         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16198         so we can access them in finalizer
16199         
16200 2006-07-14  Dick Porter  <dick@ximian.com>
16202         * object.c (mono_type_initialization_cleanup): Fix a race
16203         condition by temporarily commenting out the critical section
16204         deletion.
16206 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16208         * reflection.c (create_custom_attr): Fix some warnings.
16209         (create_custom_attr_data): Ditto.
16210         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16211         types. Fixes #78855.
16213 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16215         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16217         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16219 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16221         * reflection.c (resolve_object): Add support for DynamicMethod.
16223         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16224         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16226 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16228         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16229         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16231 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16233         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16234         Fixes #77888.
16236 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16238         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16239         slightly: remove a shadow local variable.
16241 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16243         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16244         definition that introduces the virtual function slot.
16245         Also fix Coverity #105.
16247 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16249         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16250         for dynamic assemblies. Fixes #78724.
16252 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16254         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16255         Fixes #78722.
16257 2006-06-21  Martin Baulig  <martin@ximian.com>
16259         * reflection.c
16260         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16261         fixes #76484.
16263 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16265         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16267 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16269         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16270         nor TYPEREFs.
16271         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16272         Inflate result if necessary.
16273         (mono_class_get_full): Remove old version.  Rename from
16274         'mono_class_get' and add 'context' argument.  Pass it to
16275         ..._create_from_typespec.
16276         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16277         (mono_ldtoken): Revert change below.
16279 2006-06-20  Martin Baulig  <martin@ximian.com>
16281         * class.c (mono_ldtoken): Don't pass the generic context to
16282         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16284 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16286         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16287         and later freeing it. Fixes #78638.
16289 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16291         * icall.c (mono_class_get_throw): Revert over-zealous error
16292         throwing, the caller for mono_class_get_throw will cope with
16293         errors when classes are not properly initialized already.
16295         The code still copes with loader exceptions though.
16297         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16298         
16299 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16301         Fixes the `make run1' version of RuntimeAbort (to be commited,
16302         source is in Bugzilla).
16303         
16304         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16305         FALSE on class loading failure instead of returning true.
16307         * class.c (mono_class_create_from_typedef): It is possible for
16308         mono_metadata_interfaces_from_typedef_full to fail if a class is
16309         not found, cope with this.
16310         
16312 2006-06-14  Dick Porter  <dick@ximian.com>
16314         * socket-io.c: 
16315         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16316         4.1.1
16318 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16320         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16322 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16324         * icall.c: Another fix for building mono in Visual Studio.
16326 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16328         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16329         
16330 2006-06-09  Martin Baulig  <martin@ximian.com>
16332         * debug-mono-symfile.c: Put this back and really fix it this
16333         time. Sorry for all the trouble.
16335 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16337         * icall.c (mono_class_get_throw): Fix a warning.
16338         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16339         ReflectionTypeLoadException if needed. Fixes #78606.
16341         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16342         (mono_class_init): Ditto.
16344         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16345         ref_only exceptions.
16346         (mono_loader_clear_error): Make this work even if there is no error.
16348 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16350         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16351         Marshal.GetComSlotForMethodInfo using internal call.
16353 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16355         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16356         a function for signalling it.
16358         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16359         a referenced assembly is not found.
16361         * loader.c (mono_loader_error_prepare_exception): Add support for 
16362         LOADER_ERROR_ASSEMBLY. Fix formatting.
16364 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16366         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16367         for VARIANT marshalling on windows and increment corlib version
16368         since Variant struct was added.
16370 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16372         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16373         stack trace line information:
16375         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16376         (Martin) when looking up B which is between A and C, return A not C.
16378         Bug is #78573.
16380         Thanks to Alexander Olk for tracking this down.
16382 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16384         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16385         
16386         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16387         avoid clobbering its value.
16388         (mono_string_to_lpstr): Fix a warning on windows.
16390 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16392         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16394         * reflection.c loader.c: Removed references to 'dummy' flag.
16396         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16398         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16399         it gets GC tracking.
16401         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16402         GC tracking.
16403         
16404         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16406         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16408         * appdomain.c: Bump corlib version.
16410 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16412         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16413         CEE_STIND_REF when working with object references.
16415 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16417         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16418         Fixes #78539.
16420 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16422         * loader.c (method_from_memberref): Fix argument value for
16423         mono_loader_set_error_method_load (I was passing the MonoClass
16424         instead of the class name char *).
16426 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16428         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16429         CEE_STIND_REF when working with object references.
16431 2006-05-30  Martin Baulig  <martin@ximian.com>
16433         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16434         mono_method_full_name() change and replace the ':' with a '.'
16435         here.
16437 2006-05-30  Martin Baulig  <martin@ximian.com>
16439         * debug-mono-symfile.c
16440         (mono_debug_symfile_lookup_location): Fix the algorithm:
16441         when looking up B which is between A and C, return A not C.
16443 2006-05-29  Martin Baulig  <martin@ximian.com>
16445         * mono-debug.h
16446         (MonoDebugMethodInfo): Make the typedef public.
16447         (MonoDebugSourceLocation): New public struct.
16449         * mono-debug.c
16450         (mono_debug_source_location_from_address): Removed.
16451         (mono_debug_source_location_from_il_offset): Removed.
16452         (mono_debug_il_offset_from_address): Removed.
16453         (mono_debug_address_from_il_offset): Removed.
16454         (mono_debug_lookup_method): New public function.
16455         (mono_debug_lookup_source_location): New public function; replaces
16456         the old mono_debug_source_location_from_*() functions; see the
16457         inline documentation.
16458         (mono_debug_free_source_location): New public function.
16459         (mono_debug_print_stack_frame): New public function; see the
16460         inline documentation.
16462         * debug-mono-symfile.c
16463         (mono_debug_find_source_location): Renamed into
16464         mono_debug_symfile_lookup_location(); only take a
16465         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16466         documentation.
16467         (mono_debug_find_method): Renamed into
16468         mono_debug_symfile_lookup_method().
16470 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16472         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16473         returned by mono_image_open_full ().
16475         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16476         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16477         #78517.
16479         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16480         #78518.
16482 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16484         * class.c (mono_class_from_typeref): handle missing images
16485         earlier, deals with bug #78418.   Refactor code; 
16487         Fix a warning introduced in my previous commit (some stale code
16488         from before I revisited my patch).
16490         * class.c (mono_class_create_from_typedef): On failure, remove the
16491         class from the MonoImage->class_cache as the class is not
16492         initialized;   Fixes the leak pointed out by Paolo.
16494 2006-05-25  Dick Porter  <dick@ximian.com>
16496         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16497         DeleteCriticalSections until I figure out which one may still be
16498         sometimes locked when mono_thread_cleanup is called.
16500 2006-05-24  Dick Porter  <dick@ximian.com>
16502         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16503         of mono_thread_manage and back into its own function, so it can be
16504         called after the finalizer thread has finished.
16506         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16508 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16510         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16511         Fixes #78495.
16513         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16514         with non-blittable elements.
16515         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16517 2006-05-24  Martin Baulig  <martin@ximian.com>
16519         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16520         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16522         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16523         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16524         `mono_debugger_event_handler' to NULL.
16526 2006-05-24  Martin Baulig  <martin@ximian.com>
16528         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16530 2006-05-24  Martin Baulig  <martin@ximian.com>
16532         * mono-debug-debugger.h
16533         (mono_debugger_create_notification_function): Added
16534         `MonoCodeManager *' argument.
16536 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16538         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16540 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16542         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16543         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16544         implementation.
16546 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16548         * icall.c: precise GC support: objects can't be stored in unmanaged
16549         memory anymore, even if they are kept alive by other references: since
16550         they can move the GC needs to be able to always find them.
16552 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16554         * object.c: precise GC support for static fields. Support
16555         for moving GCs: write barriers and pinned allocation for interned
16556         strings.
16558 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16560         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16561         structure.
16563 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16565         * class.c, gc.c: sgen and precise GC updates.
16567 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16569         * marshal.h, marshal.c: added write barrier wrapper and precise type
16570         fixes.
16572 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16574         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16575         support.
16577 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16579         * reflection.c: precise and sgen GC updates.
16581 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16583         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16585 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16587         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16589 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16591         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16592         MONO_TYPE_OBJECT. Fixes #78462.
16594 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16596         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16597         and blittable types.
16599 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16601         * class.c (mono_class_get_exception_for_failure): Implement parts
16602         of a TODO: if the loader error is set (instead of the class
16603         error), we return a Loader exception that can be properly thrown
16604         elsewhere.
16606         This was exposed by some Winforms 2.0 code that I tried to run
16607         (Atsushi pointed me to it).
16609 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16611         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16612         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16613         
16614         * marshal.c (emit_marshal_vtype): Add limited support for 
16615         UnmanagedType.LPStruct. Fixes #78427.
16617         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16618         Applied a patch from kangaroo to fix #77523.
16620 2006-05-17  Martin Baulig  <martin@ximian.com>
16622         * threads.c
16623         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16624         (debugger_thread_created): Removed.
16625         (debugger_thread_exited): Removed.
16627 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16629         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16631         * object-internals.h (MonoReflectionResource): Sync with managed version.
16633 2006-05-12  Wade Berrier <wberrier@novell.com>
16635         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16637 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16639         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16640         functions try to allocate from the image mempool.
16642 2006-05-12  Dick Porter  <dick@ximian.com>
16644         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16646 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16648         * object.c: The FieldGetter and FieldSetter methods require the full
16649         name of the class, not only the name. Fixes bug #78277.
16651 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16653         * loader.c (method_from_memberref): Do not pass the NULL klass to
16654         mono_loader_set_error_() methods.  Pass the non-NULL value
16655         (class). 
16657 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16659         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16660         (mono_assembly_close): Null out assembly->image->references after freeing it.
16662         * image.c (mono_image_close): Free image->references.
16663         
16664         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16666 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16668         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16669         before checking if it's NULL (g_assert).
16671 2006-05-10  Martin Baulig  <martin@ximian.com>
16673         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16674         I thought I already killed that two months ago, but now it somehow reappeared.
16676 2006-05-10  Martin Baulig  <martin@ximian.com>
16678         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16680 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16682         * reflection.c: Allocate memory for dynamically created methods in the image
16683         mempools.
16685 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16687         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16688         don't use the ad pointer before checking if it's NULL (g_assert).
16690 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16692         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16693         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16695         * marshal.c: Allocate all signatures from mempools.
16697         * marshal.c: Allocate some more signatures from mempools.
16699 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16701         * object.c (mono_load_remote_field): The code used to provide a
16702         temporary variable for returning results if the user did not
16703         provide a result pointer.  But our temporary variable was allocted
16704         on the satck.
16706         Fix calling code to always pass a result area.   Coverity ID 103.
16708 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16710         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16711         value, not the old. Fixes #78312.
16712         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16714         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16715         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16716         per-image cache.
16718         * assembly.c (mono_assembly_close): Free image->references.
16720         * assembly.c (mono_assembly_names_equal): Fix a warning.
16721         (mono_assemblies_cleanup): Cleanup more global data.
16723         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16725         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16726         ptr_cache and image->modules.
16728         * image.c (mono_image_init): Allocate array_cache lazily.
16729         
16730 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16732         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16733         behavior was changed recently and has bad side effects.
16735 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16737         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16738         
16739         * assembly.c (mono_assembly_close): Remove a debug printf.
16741         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16743         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16744         to also allow for temporary references between mono_image_open ()/close ().
16746         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16748 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16750         * marshal.c: Fix support for dynamic methods.
16752         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16754         * marshal.c (mono_marshal_cleanup): New cleanup function.
16756         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16757         image mempools.
16759         * class.c (mono_class_init): Fix leaking class->nested_classes.
16761         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16763         * image.c (mono_image_init): Initialize the new cashes.
16765         * image.c (mono_image_close): Destroy the new cashes.
16767         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16769         * mempool.c (mono_mempool_strdup): New helper function.
16771         * class-internals.h: Add prototype for mono_loader_unlock ().
16773         * domain.c (mono_jit_info_table_find): Fix a warning.
16774         (mono_debugger_check_runtime_version): Ditto.
16776         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16777         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16778         functions to these modules.
16780         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16781         metadata modules.
16782         
16783         * marshal.c (mono_free_bstr): Fix a warning.
16785         * assembly.c (mono_assembly_open_full): Fix another small leak.
16787         * object.c: Fix some unload leaks in the remoting code.
16789         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16790         function.
16792         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16794         * reflection.c: Fix some unload leaks in dynamic assemblies.
16796 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16798         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16799         * marshal.h: Add BSTR support on Win32
16800         * icall.c: Add BSTR icalls
16801         * metadata.h: Add BSTR enums
16803 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16805         Work to catch the crash from #76795 and turn it into an
16806         exception.   As I stubbed out pieces of the VisualBasic support,
16807         I found a number of places where the code was failing and I added
16808         checks to those places. 
16809         
16810         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16811         function return a status code.  If we fail to parse the signature
16812         from mono_metadata_parse_generic_inst, return FALSE.
16814         * loader.c (mono_get_method_from_token): If we fail to load the
16815         method (mono_class_get) return NULL.   
16817         * (method_from_memberref): Return NULL if we are unable to parse
16818         the method signature
16820         (mono_loader_error_prepare_exception): Since we now use the
16821         loader_error flag internally to stop processing, and obtaining
16822         exceptions that might be thrown will walk this code path the
16823         proper way of going from a MonoLoaderError into a
16824         MonoException was convoluted.   This new routine encapsulates the
16825         process of turning the error into an exception and *clearing* the
16826         error afterwards.
16827         
16828 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16830         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16831         with missing assemblies), and to cope with:
16833                 * Missing fieldref from a non-existing assembly.
16834                 * Missing methodref from a non-existing assembly.
16836         The first batch of work to address *some* of the issues from 76661.
16837         
16838         * object.c (mono_class_create_runtime_vtable): If we fail to
16839         initialize the class raise the exception here. 
16841         * metadata.c (mono_class_get_overrides_full): If any methods fail
16842         to load return the failure to the caller.
16844         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16845         flagging assemblies that failed to load.   
16847         Do not crash if we are unable to load the assembly.
16849         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16850         assemblies. 
16852         * loader.c (mono_loader_set_error_type_load): Change the
16853         convention to always pass unallocated strings, so we make our own
16854         copies (I know our own code had duplicated strings before, but
16855         this keeps the normal conventions).
16856         (method_from_memberref): Call mono_loader_set_error_method_load
16857         for all possible failures of loading the class. 
16858         Remove assert, turn into a loader error.
16860         (mono_loader_error_to_exception): Move this routine from mini
16861         (mini_loader_error_to_exception) there was no need to have that in
16862         mini. 
16864         * class.c (mono_class_from_typeref): If we were not able to load
16865         the assembly with mono_assembly_load_reference, call the
16866         mono_loader_set_error_type_load to register the problem.
16868         (mono_class_setup_fields): If we fail to load the type from
16869         mono_metadata_parse_type_full, call mono_class_set_failure and
16870         break from the loop.
16872         If class->exception_type is set, we do not layout the fields as
16873         that might crash the runtime, and instead return (from breaking
16874         from the previous loop).
16876         (mono_class_setup_vtable): This now returns a boolean indicating
16877         whether the table was properly setup.   The decision is driven by
16878         mono_class_get_overrides_full which might run into non-existing
16879         methods. 
16880         
16881         (mono_class_init): Returns TRUE on success or FALSE if there was a
16882         problem in loading the type (incorrect assemblies, missing
16883         assemblies, methods, etc).
16885         When we call mono_class_setup_fields we also check for a potential
16886         error inside this call (either a class exception or a general
16887         loader exception).
16889         (mono_class_create_from_typedef): If the parent fails to load
16890         (calling mono_class_get_full) return NULL.
16891         
16892         ** Important **
16894         calls to mono_metadata_parse_type_full should be checked
16895         everywhere and set the mono_class_set_failure
16896         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16898         The current patch checks the places where my manually constructed
16899         tests show the errors are showing up, but we should do it
16900         everywhere. 
16902         ** Important2 **
16904         mono_class_init return values should be tested everywhere, like
16905         the previous case this is something that we should audit
16906         everywhere and not only on the cases exposed by the tests I
16907         created. 
16909 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16911         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16912         boolean parameter and instead pass the information on `options'
16913         parameter (FileOptions).
16915         * icall.c: Register the new signature for MonoIO.Open.
16917         * debug-helpers.c (dis_one): Trying to understand how coverity
16918         works.  Fix Run 5, item 78.
16920 2006-04-26  Dick Porter  <dick@ximian.com>
16922         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16923         dereference.
16925 2006-04-25  Martin Baulig  <martin@ximian.com>
16927         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16929         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16930         debugger_thread_created().
16931         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16932         special way.
16933         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16934         (mono_debugger_finalize_threads): New function; undo the effects
16935         of mono_debugger_init_threads().
16936         (mono_debugger_create_all_threads): Removed.
16938 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16940         * image.c (mono_image_close): Tidy up trace messages.
16942         * assembly.c (mono_assembly_close): Ditto.
16944         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16945         no longer references an already freed assembly. Fixes #78168.
16947 2006-04-21  Dick Porter  <dick@ximian.com>
16949         * threads.c (mono_thread_detach): Fix reference counting when
16950         detaching threads.
16952 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16954         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16955         #78155.
16957 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16959         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16960         (mono_type_to_stind): Ditto.
16962         * marshal.c: Use the new helper functions to simplify code.
16964         * image.c (mono_image_close): Add some code for help debug assembly unloading
16965         problems.
16967         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16968         image mempool.
16970         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16971         assembly was already loaded in another appdomain. Fixes #78083.
16973 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16975         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16976         referenced assemblies.
16977         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16979         * domain.c (mono_domain_free): Add a trace message.
16981         * appdomain.c (add_assemblies_to_domain): Ditto.        
16983         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16984         field.  
16986 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16988         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16990 2006-04-12  Martin Baulig  <martin@ximian.com>
16992         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16993         `USE_INCLUDED_LIBGC'.   
16995 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16997         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16998         the patch contains ../ and a small directory name later. Hopefully fixes
16999         #78035.
17001 2006-04-10  Martin Baulig  <martin@ximian.com>
17003         Clean up the debugger's thread-handling code.
17005         The debugger's thread-handling code has been moved from
17006         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17007         over the `threads' hash, keep track of exiting threads and also
17008         use proper locking.
17010         We can now debug XSP and XSP based applications with the debugger.
17012         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17014         * threads.h
17015         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17016         (mono_install_thread_callbacks): Likewise.      
17018         * threads.c (mono_thread_callbacks): Removed.
17019         (debugger_thread_created, debugger_thread_exited): New static functions.
17020         (start_wrapper): Call debugger_thread_created().
17021         (thread_cleanup): Call debugger_thread_exited().
17022         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17023         (mono_debugger_init_threads): New public function.
17024         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17025         iterate directly over the `threads' hash and also use proper locking.
17027         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17029         * mono-debug-debugger.h
17030         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17032 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17034         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17035         argument type=array. Fixes #78057.
17037 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17039         * culture-info-table.h : regenerated. Fixed bug #69652.
17041 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17043         * loader.c metadata.c: Reapply a variant r59116.
17044         
17045         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17047         * class.c (mono_class_setup_interface_offsets): New internal function.
17049         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17050         interfaces too. Fixes #77398.
17052         * reflection.c (encode_cattr_value): Add support for 
17053         parameter type=object, argument type=array.
17054         (load_cattr_value): Ditto. Fixes #77916.
17056         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17057         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17059         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17060         a byval char array and CharSet is Ansi.
17062         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17064 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17066         * metadata.c: Add some locking comments.
17067         
17068         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17069         mempool.
17070         (mono_metadata_free_method_signature): Don't free the signature itself.
17072         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17074         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17075         reference the same MonoImage.
17076         (mono_assembly_load_from_full): Add an assert.
17078 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17080         * image.c (mono_image_close): Don't put the image we are about to free into the
17081         loaded_images_guid_hash.
17083         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17084         to reduce code duplication.
17086         * marshal.c: Register the native functions called by this module as icalls, to
17087         somewhat centralize the creation of MonoMethodSignature's.
17089         * loader.c (mono_method_signature): Add a cache for method signatures.
17091         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17092         the parameter attributes of a method.
17093         (mono_metadata_parse_method_signature_full): Refactored the computation of
17094         parameter attributes into a separate function. Also avoid one allocation in
17095         most cases.
17097         * assembly.c (mono_assembly_close): Ditto.
17099         * image.c (mono_image_close): Log trace messages with INFO level.
17101         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17103         * image.c reflection.c: Correct reference counting of image modules.
17104         
17105         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17106         of this function from the image mempool.
17107         
17108         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17109         to allow more cached types to be used.
17111         * mono-debug.c (mono_debug_add_method): Appled patch from
17112         David S. Miller  <davem@sunset.davemloft.net>: Access 
17113         minfo->lexical_blocks[] entry elements using read32().
17115 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17117         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17118         methods as it is allocated from the mempool.
17120         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17121         image mempool.
17123         * metadata-internals.h: Add comments describing the reference counting scheme
17124         used for MonoImage and MonoAssembly.
17126         * image.c assembly.c reflection.c: Rework reference counting of images and 
17127         assemblies so they are freed when the runtime is shut down. Free some 
17128         additional memory structures when an image is unloaded.
17129         
17130 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17132         * class.c loader.c reflection.c: Allocate more data structures in
17133         the image mempool.
17135 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17137         * icall.c
17138         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17139         build on pre glib 2.4 systems.
17141 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17143         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17145         * icall.c: Fix some warnings.
17147 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17149         * culture-info-table.h : regenerated.
17151 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17153         * threads.c, object-internals.h, verify.c: changed the culture caching
17154         code to use a normal MonoArray for storage so the GC can keep track of
17155         them easily. Fixed bits of the cache logic, too and simplified the
17156         code.
17158 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17160         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17161         thread for non-Boehm GCs.
17163 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17165         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17166         needed to keep track of the data for static fields.
17168 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17170         Fix #75172
17171         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17172         for interface classes.  Use 'num_methods' instead.
17173         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17174         before using '->vtable_size' field.
17176 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17178         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17179         doesn't contain managed pointers, so use a normal hashtable.
17181 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17183         * reflection.c, class-internals.h, domain.c: fixed handling of types
17184         used as values for objects in custom attributes (bug #77915):
17186 2006-03-24  Martin Baulig  <martin@ximian.com>
17188         * class.c (mono_class_setup_fields): Added support for generic
17189         instances; fixes #77580.
17191 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17193         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17195 2006-03-24  Dick Porter  <dick@ximian.com>
17197         * file-io.c (get_file_attributes): More stat macro breakage.
17198         Fixes bug 77759.
17200 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17202         * profiler.c: added the file=filename option in the default profiler
17203         to output the profile data to filename.
17205 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17207         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17208         bug #77877.
17210 2006-03-22  Martin Baulig  <martin@ximian.com>
17212         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17213         allocated `MonoClassField *' in `fb->handle'.
17215 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17217         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17218         allocate interface ID to save memory and allow better ID reuse on
17219         appdomain unload. setup_generic_vtable () removal from Martin.
17221 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17223         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17224         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17225         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17226         write barriers for reference stores with managed objects accessed with
17227         C structures in the runtime and in embedding programs.
17229 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17231         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17232         'interface_id' and 'max_interface_id' fields of MonoClasses
17233         representing open generic types.
17235 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17237         * object.h, object.c, icall.c: added functions to deal with
17238         storing valuetypes that contain references in managed objects.
17239         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17240         fixes and comments around uses of mono_array_addr ().
17242 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17244         * object.h, icall.c, monitor.c: object.GetHashCode ()
17245         implementation that supports the moving garbage collector.
17247 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17249         * icall.c, threads-types.h, threads.c: implemented finalizer for
17250         LocalDataStoreSlot.
17252 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17254         * metadata.c (mono_type_size): Add a fixme.
17255         (mono_type_stack_size): Ditto.
17257         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17258         'type_forwarders' field.
17260         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17261         attribute from net 2.0.
17263         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17264         from class.c.
17266         * class.c (mono_class_setup_fields): Fix a warning.
17267         
17268         * class.c (mono_class_from_name): Add support for assemblyref entries
17269         in the EXPORTEDTYPE table.
17271         * reflection.c: Add support for handling type forwarders under net 2.0.
17273         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17274         
17275 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17277         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17278         overwriting entries in ModuleBuild->types, also clean up the code
17279         a little. Fixes #77774.
17281 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17283         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17284         load friend assembly info when present.
17286 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17288         Fix crasher on gtest-158.cs.
17289         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17290         the return value if the MonoClass we want is yet in an
17291         inconsistent state.
17292         * class.c (mono_class_create_from_typedef): Add an comment
17293         explaining an order dependency between mono_class_setup_parent and
17294         mono_class_setup_mono_type.
17296 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17298         * class.c: documentation updates and events bug fix.
17300 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17302         * class.c: some cleanup, locking fixes.
17304 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17306         * class.c: fix the generics code to setup nested
17307         type info to the instantiated type (bug #77770).
17309 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17311         * marshal.c: fixed a few type correctness issues.
17313 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17315         * loader.c: the Set/Get/Addrtess array methods should be public.
17317 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17319         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17320         
17321         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17322         info->wrapper.
17324 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17326         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17328         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17330         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17331         (mono_mempool_alloc0): Ditto.
17333 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17335         * socket-io.c:
17336         (create_object_from_sockaddr): it was allocating 4 extra bytes
17337         for the AF_UNIX data. Fixes bug #77747.
17339 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17341         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17343 2006-03-09  Dick Porter  <dick@ximian.com>
17345         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17346         Fixes bug 76966 again.
17348 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17350         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17351         names from r57532
17352         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17354 2006-03-07  Martin Baulig  <martin@ximian.com>
17356         * object.c
17357         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17359 2006-03-07  Martin Baulig  <martin@ximian.com>
17361         * class.c
17362         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17363         regression introduced in r56970; see gtest-252.cs.
17365         * loader.c (mono_get_method_constrained): Correctly handle generic
17366         methods; see gtest-253.cs.
17368 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17370         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17372 2006-03-04  Martin Baulig  <martin@ximian.com>
17374         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17375         compute the parent type at runtime, just like we're already doing
17376         it for interfaces.
17378         * reflection.c
17379         (mono_reflection_bind_generic_parameters): Don't compute the
17380         parent type anymore.
17382         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17384 2006-03-04  Martin Baulig  <martin@ximian.com>
17386         * mono-debug-debugger.h
17387         (mono_debugger_create_notification_function): Allocate memory at
17388         runtime and return a pointer to it.
17390 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17392         * assembly.c: Fix windows build.
17393         
17394         * assembly.c: Fix build.
17396         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17398         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17399         
17400 2006-03-03  Dick Porter  <dick@ximian.com>
17402         * process.c
17403         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17404         Check parameters before dereferencing them.  Fixes Aaron's part of
17405         bug 77393.
17407 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17409         Fix performance regression.
17410         * loader.c (find_method_in_class): Add 'from_class' argument.
17411         Rename 'klass' argument to 'in_class'.  The signature is compared
17412         against the method in 'in_class', and the corresponding method is
17413         returned from 'from_class'.
17414         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17415         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17416         type definition and generic instantiation in parallel.
17417         (mono_get_method_constrained): Update to changes.
17419 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17421         * threads.c: make sure the domain is correct, too when doing
17422         mono_thread_attach ().
17424 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17426         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17427         windows. Fixes #77683.
17429 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17431         * object.h, *: introduced specific way to set elements of an array
17432         of references to be used as write barrier. Still need to audit the
17433         uses of mono_array_addr.
17435 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17437         * object-internals.h: New field to cache the assmebly name, patch
17438         from Tambet Ingo (tambet@ximian.com)
17440 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17442         * decimal.h, class-internals.h, metadata-internals.h,
17443         file-io.h: mark a few function declarations as internal, to
17444         reduce the number of PLT entries.
17446 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17448         * file-io.c: fix typo in warning message.
17450 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17452         * loader.c: on unix, lookup the "*A" version of a function
17453         if charset is auto as a second option before failing.
17455 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17457         * class.h (mono_class_inflate_generic_method): Revert to two
17458         argument version.
17459         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17460         (mono_class_inflate_generic_method_full): Add.
17461         * class.c (mono_class_inflate_generic_method_full): Rename from
17462         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17463         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17464         * loader.c, reflection.c: Update to changes.
17466 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17468         * icall.c: const fixes and small improvements.
17470 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17472         * threadpool.c: for asynchronous connect(), enable the same workaround
17473         for BSD 6 as for the Mac. Fixes bug #77637.
17475 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17477         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17478         formatted classes. Fixes #77524.
17480 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17482         * class.c (inflate_generic_type): Add a couple more
17483         micro-optimizations.
17484         (inflate_generic_context): Don't use the 'gmethod' from
17485         'inflate_with'.
17486         (mono_class_inflate_generic_method): If the method has generic
17487         parameters, but the passed-in context doesn't have a 'gmethod',
17488         create one.  Use the possibly simplified generic instantiation
17489         from the declaring class instead of the one passed in.
17491 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17493         Make generic method signature and method header handling lazy.
17494         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17495         (inflate_generic_header): Likewise.
17496         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17497         parameter to avoid inflating types.
17498         (mono_get_inflated_method): Empty out.
17499         * class.h (mono_class_inflate_generic_method): Update to changes.
17500         * loader.c (mono_get_method_from_token): Don't parse signature for
17501         generic methods, nor methods of generic classes.
17502         (mono_method_signature): Rename from 'mono_method_signature'.
17503         Inflate signature on demand.
17504         (mono_method_get_header): Inflate method header on demand.
17505         * reflection.c: Update to changes.
17507 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17509         * metadata.c (mono_metadata_inflate_generic_inst): If the
17510         instantiation is closed, don't bother expanding it in the new
17511         context.
17512         * class.c (inflate_generic_class): If the generic instantiation
17513         doesn't change after inflation, return the argument itself.
17514         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17515         Add bounds checks.
17516         (inflate_generic_context): If neither the generic class nor the
17517         generic method instantiations change, return the original context.
17518         * reflection.c (mono_method_get_object): Do
17519         'mono_get_inflated_method' before accessing the ->klass field.
17520         (inflate_mono_method): Don't create a MonoGenericMethod unless
17521         necessary.
17522         (inflate_method): Don't pass a constructed type as the declaring
17523         type of a methodbuilder.
17525 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17527         * object.c: fix memory overwrite.
17529 2006-02-22  Dick Porter  <dick@ximian.com>
17531         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17532         it doesn't work any more.
17533         (mono_threads_request_thread_dump): Fix unused variable warnings.
17535 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17537         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17538         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17539         the public header file.
17541 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17543         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17545 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17547         * class-internals.h, object.c: reduce the size of MonoVTable
17548         and store the interface_offsets array at negative offsets.
17550 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17552         * metadata.c: tweak table descriptors data structures to reduce
17553         size and runtime relocations.
17555 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17557         * marshal.c: fix some types and opcodes to be type-safe
17558         in marshaling wrappers.
17560 2006-02-21  Ankit Jain  <jankit@novell.com>
17562         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17564 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17566         * metadata.c (get_constraints): Relax debugging checks for monodis.
17568 2006-02-21  Ankit Jain  <jankit@novell.com>
17570         * metadata.c (mono_metadata_load_generic_params): Move the code
17571         checking for ambiguous generic params from here to mono/dis/get.c
17572         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17574 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17576         Fix assertion triggered when compiling nemerle.
17577         * class.c (mono_get_shared_generic_inst): Rename from
17578         get_shared_inst and make non-static.
17579         * loader.c (mono_get_shared_generic_method): New.  Used to create
17580         the MonoGenericContext-equivalent of a MonoGenericContainer.
17581         (mono_get_method_from_token): Initialize the 'context' field of
17582         the created MonoGenericContainer.
17583         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17584         * metadata.c (get_constraints): Add sanity check.
17585         * class-internals.h: Add new internal methods.
17587         * reflection.c (verify_safe_for_managed_space): New sanity check.
17588         Currently checks that owner-less generic parameters aren't allowed
17589         in managed space.
17590         (mono_type_get_object): Use it.
17591         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17592         that are now in mono_type_get_object.
17593         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17595 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17597         * metadata.c (mono_type_create_from_typespec): Rename from
17598         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17599         argument and caching of types in the generic container.
17600         (unwrap_arrays, find_generic_param): Remove.
17601         * metadata-internals.h: Update.
17602         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17604 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17606         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17608         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17609         return values. Fixes #77581.
17611         * class.c (mono_fnptr_class_get): Switch name and name_space.
17613         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17614         classes and add support for [In, Out] attributes.
17615         (mono_marshal_free_asany): Ditto. Fixes #77524.
17617 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17619         * class.c (mono_class_from_generic_parameter): Make more robust to
17620         incomplete MonoGenericContainers from monodis.
17622 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17624         * class-internals.h: added some more exception types.
17625         * class.c, metadata.c: added a few checks to handle missing
17626         types.
17628 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17630         Use owner-less generic-params some more.
17631         * class.c (my_mono_class_from_generic_parameter): Remove.
17632         (mono_class_from_generic_parameter): Handle null image,
17633         param->name and param->owner.
17634         (mono_class_from_mono_type): Update.
17635         (mono_class_create_from_typespec): Remove 'container' parameter.
17636         If that parameter is non-null, the result is always inflated by
17637         'mono_class_get_full' anyway.
17638         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17639         parameter.
17640         (mono_class_get_full): Update.
17642         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17643         instance is not open, don't bother inflating.
17644         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17645         parse metadata for inflated classes.
17646         (_mono_class_get): Change GenericContext* parameter to
17647         GenericContainer*.
17648         (mono_class_create_from_typespec): Likewise.  Simplify, and
17649         implement trivially.  All the cases are handled in
17650         mono_class_from_mono_type.  Don't inflate returned class.
17651         (mono_class_get_full): Delegate GENERICINST optimization to
17652         inflate_generic_type.
17653         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17655 2006-02-16  Dick Porter  <dick@ximian.com>
17657         * socket-io.c (create_object_from_sockaddr): Fix typo.
17658         (create_sockaddr_from_object): Check array lengths before
17659         potentially accessing items off the end.
17660         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17661         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17662         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17663         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17664         length checks to avoid wraparound overflows.
17665         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17666         contents of the array of sockets
17667         (hostent_to_IPHostEntry2)
17668         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17669         Check return value of inet_ntop ().
17670         (addrinfo_to_IPHostEntry): Fix typo
17672 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17674         Type metadata parsing doesn't use generic-instantiation information.
17675         * metadata.c (mono_metadata_parse_array_full): Change
17676         MonoGenericContext* parameter to MonoGenericContainer*.
17677         (mono_metadata_parse_type_full): Likewise.
17678         (mono_type_create_from_typespec_full): Likewise.
17679         (mono_metadata_parse_mh_full): Likewise.
17680         (mono_metadata_parse_generic_inst): Likewise.
17681         (do_mono_metadata_parse_generic_class): Likewise.
17682         (do_mono_metadata_parse_type): Likewise.
17683         * metadata-internals.h: Update to changes.
17684         * class.c (mono_class_find_enum_basetype): Likewise.
17685         (mono_class_setup_fields): Likewise.
17686         (mono_class_create_from_typespec): Likewise.
17687         * loader.c (method_from_methodspec): Likewise.
17688         (mono_get_method_from_token): Likewise.
17689         (mono_method_get_header): Likewise.
17691 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17693         * marshal.c: handle additional GENERICINST case (patch from
17694         Thong Nguyen <tum@veridicus.com>).
17695         Fix a few cases where LDIND_I/STIND_I was used for references.
17697 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17699         * reflection.c (mono_reflection_get_token): Remove unused variable.
17701 2006-02-16  Martin Baulig  <martin@ximian.com>
17703         * reflection.c (mono_reflection_get_token): Add support for fields
17704         in instantiated generic types.
17706         * icall.c
17707         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17709 2006-02-15  Martin Baulig  <martin@ximian.com>
17711         * icall.c
17712         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17713         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17714         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17715         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17717 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17719         * class.c, metadata.c, metadata.h, object.c, icall.c,
17720         marshal.c: changed mono_type_get_underlying_type () to do
17721         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17722         Fixed handling of instantiated generic valuetypes (bug #75479).
17724 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17726         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17727         Delegate to mono_metadata_decode_value, and work on the returned value.
17729         * icall.c (ves_icall_MonoType_GetGenericArguments):
17730         Add consistency check here too.
17731         
17732 2006-02-15  Ankit Jain  <jankit@novell.com>
17734         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17735         char/short etc.
17737 2006-02-15  Ankit Jain  <jankit@novell.com>
17739         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17740         signed values, used only for representing lower bounds of arrays.
17741         (mono_metadata_parse_array_full): Use new
17742         mono_metadata_decode_signed_value to decode lower bounds.
17744 2006-02-14  Martin Baulig  <martin@ximian.com>
17746         * reflection.c
17747         (mono_reflection_get_token): Support "MonoGenericMethod" and
17748         "MonoGenericCMethod" and allow generic instances / methods.
17750 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17752         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17753         to obtain the terminal size using an ioctl.
17755         * object.c (mono_nullable_init): Revert this as nullable reference
17756         types are not valid.
17757         (mono_nullable_box): Ditto.
17759 2006-02-09  Dick Porter  <dick@ximian.com>
17761         * threads.c (mono_thread_detach): Drop a reference to the thread
17762         we're detaching.
17764 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17766         * object.c (mono_nullable_init): Handle nullable reference types.
17767         (mono_nullable_box): Ditto. Fixes #77446.
17769 2006-02-07  Martin Baulig  <martin@ximian.com>
17771         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17773 2006-02-07  Ankit Jain  <jankit@novell.com>
17775         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17776         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17777         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17778         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17779         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17780         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17782 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17784         * class.c (mono_class_create_generic): Set type_token as well.
17786         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17787         compatible with MS.
17789 2006-02-02  Martin Baulig  <martin@ximian.com>
17791         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17792         has never been used so far.
17794 2006-02-02  Martin Baulig  <martin@ximian.com>
17796         * mono-debug-debugger.h: Changed comment at the top of this file;
17797         the header is not installed, but it's safe to #include it from
17798         within the JIT.
17800         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17801         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17803 2006-02-02  Martin Baulig  <martin@ximian.com>
17805         * mono-debug.h
17806         (MonoSymbolTable): Removed the `metadata_info' field.
17808         * mono-debug.c
17809         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17811         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17812         (mono_debugger_add_builtin_types): Removed.
17813         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17814         (mono_debugger_create_notification_function): We now operate on a
17815         pre-allocated area; take a `gpointer' and return `void'.
17817         * mono-debug-debugger.c
17818         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17819         (mono_debugger_add_builtin_types): Removed.
17821 2006-02-02  Martin Baulig  <martin@ximian.com>
17823         * threads.c (mono_debugger_create_all_threads): New public method.
17825 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17827         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17828         breaks on several platforms.
17830 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17832         * assembly.c: the VS.NET build doesn't supply default values for
17833         MONO_ASSEMBLIES and MONO_CFG_DIR.
17835 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17837         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17838         helper function.
17840         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17842         * loader.c (method_from_memberref): Fix a warning.
17844         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17846         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17847         with explicit layout. Fixes #77433.
17849 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17851         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17852         max_interface_id is initialized before using it. Fixes #77398.
17853         (ves_icall_Type_GetInterfaces): Ditto.
17855 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17857         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17858         allocate memory for parameter attributes when parsing memberref
17859         signatures.
17860         * loader.c (mono_loader_set_error_method_load): Don't warn.
17861         (method_from_memberref): Ensure MissingMethodException gets thrown
17862         if method is not found.  Make warning more informative.
17864 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17866         Fix #77397
17867         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17868         return true if is byref.
17869         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17870         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17871         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17873 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17875         Fix tests/find-method.2.il
17876         * loader.c (find_method, find_method_in_class): Remove is_inflated
17877         argument.  Revert 2006-01-18 change.
17878         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17879         is generic, search for method in its generic definition.
17880         * class.c (mono_class_setup_vtable_general): Print generic
17881         arguments of generic types in debugging printf.
17883 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17885         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17887         * threads.c (mono_threads_request_thread_dump): New helper function.
17889 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17891         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17893 2006-01-25  Ankit Jain  <jankit@novell.com>
17895         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17896         move definition to ..
17897         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17898         
17899 2006-01-25  Ankit Jain  <jankit@novell.com>
17900             Raja R Harinath  <rharinath@novell.com>
17902         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17903         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17904         as necessary.
17906 2006-01-25  Martin Baulig  <martin@ximian.com>
17908         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17909         `MonoDebuggerThread' into debug-debugger.c.
17911 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17913         * profiler.c: fix printing of data.
17915 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17917         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17918           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17920 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17922         * object.c: fix deadlock related to string interning.
17924 2006-01-23  Martin Baulig  <martin@ximian.com>
17926         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17928         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17930 2006-01-23  Martin Baulig  <martin@ximian.com>
17932         * mono-debug.h: Moved the prototypes of some functions which are
17933         used by the JIT here from mono-debug-debugger.h.
17935 2006-01-21  Martin Baulig  <martin@ximian.com>
17937         * Makefile.am: Don't install mono-debug-debugger.h.
17939 2006-01-21  Martin Baulig  <martin@ximian.com>
17941         * mono-debug-debugger.h: Enforce the private status of this header
17942         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17943         Moved some stuff from mono-debugger-jit-wrapper.h here.
17945 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17947         * class.c (mono_class_from_typeref): Add a sanity test to help
17948         catch lack of assembly load/search hooks.
17950 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17952         * marshal.c (emit_struct_conv): Relax the fields with same offset
17953         check even more. Fixes #77230.
17955 2006-01-18  Martin Baulig  <martin@ximian.com>
17957         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17958         argument; if false, we compare the uninstantiated signatures.
17959         (method_from_memberref): Compare the uninstantiated signatures;
17960         fixes #76417.
17962 2006-01-18  Robert Jordan  <robertj@gmx.net>
17964         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17965         Clear the weak link. Fixes bug #77170.
17967         * gc.c (mono_gchandle_free):
17968         Reflect *-gc.c changes (tiny optimization).
17970 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17972         * metadata.c (mono_metadata_signature_dup): Applied patch from
17973         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17974         Fixes #77288.
17976 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17978         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17979         marshalling from native to managed code. Fixes #77230.
17981 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17983         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17984         connect. Fixes bug #77020.
17986 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17988         * class.c: fixed id assignement for nested interfaces (bug #77275).
17989         Added also better info for --print-vtable debugging.
17991 2006-01-12  Martin Baulig  <martin@ximian.com>
17993         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17994         interfaces on-the-fly; fixes #76625.
17996         * class-internals.h
17997         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17998         don't need that anymore.
18000 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18002         * socket-io.c
18003         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18004         To avoid initing the nested_classes when not needed I turned the
18005         PeerCredData as a toplevel internal class, as it has to be shared
18006         anyways. 
18008         Fixes the CASA issue.
18010 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18012         * domain.c: Accessors for MonoJitInfo
18014         * profiler-private.h: Add jitinfo to the end jit hook
18016         * profiler.[ch]: Define new hooks, called after jitting which give
18017         the MonoJitInfo that was compiled
18019 2006-01-10  Martin Baulig  <martin@ximian.com>
18021         * class.c (mono_class_setup_events): Add support for generic
18022         classes; fixes #76440.
18024 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18026         Fix #77160.
18027         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18028         on passed-in method.
18030 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18032         * object.c (mono_runtime_invoke_array): Add Nullable support.
18034         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18036 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18038         * file-io.c: Don't consider sockets as directory and avoid an endless
18039         loop. Fix bug #76966.
18041 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18043         * object.c (mono_nullable_init): New helper function.
18044         (mono_nullable_box): Ditto.
18046         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18048         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18050         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18051         
18052 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18054         * class.c (mono_class_is_assignable_from): Make T assignable to 
18055         Nullable<T>.
18057 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18059         * appdomain.c: Bump corlib version to 46.
18060         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18061         serialization purpose) and changed ves_icall_System_Reflection_
18062         Assembly_get_code_base signature to accept a boolean (to escape, or 
18063         not, the assembly code base).
18065 2005-12-23  Dick Porter  <dick@ximian.com>
18067         * icall.c: 
18068         * threads-types.h: 
18069         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18070         CreateEvent icall now returns "created" boolean parameter.
18072 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18074         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18075         #76967.
18077         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18078         when attr_klass is an interface. Fixes #77045.
18080 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18082         * marshal.c (emit_struct_conv): Fix previous patch.
18083         
18084         * marshal.c (emit_struct_conv): Add a check for fields with the same
18085         offset.
18087 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18089         Fix regression in Mono.C5.
18090         * class.c (mono_class_create_generic): If 'klass' is an interface
18091         set up the interface offsets.
18092         (mono_class_is_assignable_from): Don't throw away generic arguments.
18094 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18096         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18097         type parameters.
18099 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18101         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18102         dead store.
18103         (do_mono_metadata_parse_generic_class): Don't pass the current
18104         generic context when parsing the type being instantiated: it
18105         cannot use it, anyway.
18107         * loader.c (method_from_memberref): Don't inflate a signature if
18108         it doesn't contain any type parameters.
18110 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18112         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18114 2005-12-14  Martin Baulig  <martin@ximian.com>
18116         * class.c
18117         (mono_type_get_name_recurse): Don't return null for type
18118         parameters and open generic classes.
18119         (mono_class_setup_methods): Don't exclude generic instances.
18120         (mono_get_unique_iid): Use different IDs for different
18121         instantiations of the same generic type.
18122         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18123         open generic instances; create a normal vtable for closed generic
18124         instances.
18125         (mono_class_setup_vtable_general): We're now also called for
18126         closed generic instances.
18128         * reflection.c
18129         (mono_reflection_bind_generic_parameters): Correctly use
18130         mono_metadata_lookup_generic_inst() everywhere.
18132 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18134         * object.c (mono_class_create_runtime_vtable): Call 
18135         mono_class_setup_vtable ().
18137         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18138         function.
18139         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18140         #76959.
18142         * loader.c (mono_loader_set_error_type_load): Print the type load
18143         warnings to the console so they are more visible to the user.
18144         (mono_loader_set_error_method_load): Ditto.
18146         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18147         is still broken.
18148         
18149         * reflection.c (ensure_runtime_vtable): Fix build.
18151         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18152         doesn't work in all cases.
18154 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18156         * object.c (mono_array_new_full): Treat a single dimensional array
18157         with 0 lower bounds as an szarray. Fixes #76973.
18159         * reflection.c (custom_attr_visible): Really fix this.
18161 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18163         * reflection.c (custom_attr_visible): Allow nested public attributes
18164         as well.
18166         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18167         interface check.
18169 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18171         * class.c (set_generic_param_owner): Delete.
18172         (mono_class_create_from_typedef): Don't set ->owner field of
18173         generic parameters to "param containers" of enclosing classes.
18174         * reflection.c (mono_reflection_initialize_generic_parameter):
18175         Likewise.
18177 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18179         * reflection.c (custom_attr_visible): Fix build.
18181 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18183         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18184         private attributes.
18185         
18186         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18187         handling of null parameter defaults.
18189 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18191         * class.c (mono_class_from_generic_parameter): Don't set
18192         klass->generic_container.
18193         (my_mono_class_from_generic_parameter): Likewise.
18195 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18197         * reflection.c (load_public_key): Fix a warning.
18198         (method_encode_code): Fix unaligned accesses.
18200 2005-12-07  Martin Baulig  <martin@ximian.com>
18202         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18204         * reflection.c
18205         (write_generic_param_entry): Encode our custom attrs.
18207         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18209 2005-12-07  Martin Baulig  <martin@ximian.com>
18211         * reflection.c (encode_new_constraint): Removed; we don't use the
18212         `NewConstraintAttribute' anymore.
18214 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18216         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18217         not fire a TypeResolve event when Assembly.GetType () is called.
18219 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18221         Beginning of support for nullable types in the runtime. Parts of
18222         this patch are from Martin.
18224         * appdomain.c (MONO_CORLIB_VERSION): Bump
18226         * domain.c (mono_init_internal): get the nullable type
18228         * class.c (mono_class_is_nullable): New method
18229         (mono_class_get_nullable_param): New mehod
18230         (mono_class_create_generic): In types T? set cast_class to T
18232         * class-internals.h (MonoDefaults): new nullable default class
18233         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18234         new methods.
18236 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18238         * metadata.c (select_container): New.  Refactor code to select the
18239         appropriate GenericContainer given the type of generic parameter
18240         we are looking for.
18241         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18242         not a MonoGenericContext.  Use select_container.  Update parameters.
18243         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18244         and MONO_TYPE_MVAR.
18245         (unwrap_arrays): Remove duplicate tests.
18246         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18247         generic instantiated class to find any arguments that are generic
18248         parameters.
18249         (mono_type_create_from_typespec_full): Use find_generic_param to
18250         avoid evicting some generic instantiations from the typespec
18251         cache.
18253 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18255         * reflection.c: fixed writing of doubles on ARM FPA.
18257 2005-12-02  Robert Jordan  <robertj@gmx.net>
18259         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18261 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18263         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18264         least on SUSE 10 they are not the same (on debian, they are just the
18265         same thing).
18267 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18269         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18270         DeclaringType for VARs and MVARs.
18271         * class.c (set_generic_param_owner): Fix initialization of owner
18272         fields.
18274 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18276         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18278 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18280         * threadpool.c: workaround for a bug that shows up on the Mac:
18281         select()+connect() on a blocking socket is not like it should
18282         be, so we proceed to connect() in that case, wasting the I/O
18283         threadpool thread until connect succeedes. Fixes bug #75436.
18285 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18287         * threadpool.c: fix typo when setting file descriptor states.
18289 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18291         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18292         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18293         create a temporary signature container.
18294         (mono_metadata_parse_generic_param): Update to changes.
18295         (mono_type_create_from_typespec_full): Update to changes.
18296         * loader.c (method_from_memberref): Don't use a
18297         MonoGenericContainer while parsing a memberref signature.
18298         (method_from_methodspec): Remove dead-store of the 'container'
18299         variable.  It's overwritten before use.
18301         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18302         checks tighter.
18303         (mono_metadata_parse_generic_param): Likewise.
18304         * loader.c (find_method_in_class): Does not need a
18305         MonoGenericContainer.  Use 'mono_method_signature' rather than
18306         'mono_method_signature_full'.
18307         (find_method, mono_get_method_constrained, method_from_memberref):
18308         Update to changes.
18310         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18311         owner-less generic-parameters are never evicted from the typespec
18312         cache.
18314         * loader.c (method_from_memberref): Don't use the current context
18315         when parsing signatures.
18316         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18318         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18319         side-effects in g_assert.
18320         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18321         that we don't potentially lose information.
18323 2005-11-26  Dick Porter  <dick@ximian.com>
18325         * icall.c:
18326         * threads.c: icalls to implement basic (ie, not named)
18327         System.Threading.Semaphore.
18329 2005-11-24  Dick Porter  <dick@ximian.com>
18331         * process.c
18332         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18333         Use GetProcessId() if it's available.
18335 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18337         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18339 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18340             Ankit Jain  <jankit@novell.com>
18342         * loader.c (mono_get_method_from_token): Initialize 'method' field
18343         of all generic parameters before parsing the signature.  Remove
18344         code that "fixed"-up MVAR references.
18346 2005-11-23  Ankit Jain  <jankit@novell.com>
18348         * metadata.c (mono_metadata_has_generic_params):
18349         (mono_metadata_load_generic_param_constraints):
18350         (mono_metadata_load_generic_params): Move duplicate code ...
18351         (mono_metadata_get_generic_param_row): ... here. Returns the
18352         first row-id in GenericParam table for a given owner (token).
18353         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18354         prototype.
18356 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18357             Ankit Jain  <jankit@novell.com>
18359         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18360         comparing VARs too.
18361         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18362         type->data.generic_param only if the type is an MVAR.
18363         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18364         leak owner-less VARs and MVARs into managed space.
18366 2005-11-21  Martin Baulig  <martin@ximian.com>
18368         * class-internals.h
18369         (MonoMethod): Moved the `generic_container' here from
18370         `MonoMethodNormal' since we now also need it for
18371         `MonoMethodPInvoke';
18372         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18373         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18374         an union containing both `MonoMethodNormal' and
18375         `MonoMethodPInvoke'.
18377         * loader.c
18378         (mono_get_method_from_token): Allow implementing generic methods
18379         as interncalls.
18381         * threads.c
18382         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18383         icall.
18385 2005-11-17  Dick Porter  <dick@ximian.com>
18387         * icall.c: 
18388         * process.h: 
18389         * process.c: Split the Process Start_internal icall into
18390         ShellExecuteEx_internal and CreateProcess_internal, which are
18391         called depending on whether UseShellExecute is true.  Fixes bug
18392         76670.
18394         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18396 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18398         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18399         'msize' parameters, use the information in 'mspec' instead.
18400         (emit_object_to_ptr_conv): Ditto.
18402         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18403         fields out of order. Fixes #76733.
18405 2005-11-17  Ankit Jain  <jankit@novell.com>
18407         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18409 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18411         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18412           bug #76575.
18414 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18416         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18417         for types with non-auto layout. Fixes #76717.
18419 2005-11-16  Ankit Jain  <jankit@novell.com>
18421         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18422         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18423         if generic_context is null.
18424           (mono_metadata_generic_param_equal): param->owner can be null.
18425           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18426         null.
18428 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18430         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18431         the correct value.
18433 2005-11-15  Martin Baulig  <martin@ximian.com>
18435         * object.c (set_value): Use mono_class_from_mono_type() instead of
18436         the hack for generic instances; fixes #76136.
18438 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18440         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18441         fields.
18443         * image.c (load_metadata_ptrs): Initialize the new fields.
18445         * reflection.c (create_dynamic_mono_image): Ditto.
18447         * reflection.c (build_compressed_metadata): Use the new fields.
18449         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18450         icall.
18452         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18453         icall.
18454         
18455 2005-11-15  Ankit Jain  <jankit@novell.com>
18456             Raja R Harinath  <harinath@gmail.com>
18458         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18459         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18460         new per-generic_container cache if the cached MonoType's context matches
18461         the current context.
18462           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18463         to the expected context.
18464           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18466 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18468         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18469         we changed the signature of an icall.
18470         * icall.c: Modify to mono_double_ParseImpl return true/false 
18471         depending on the success, instead of throwing the exception. This will
18472         help us in Double.TryParse methods.
18473         
18474 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18476         * marshal.c (emit_marshal_object): Throw an exception when
18477         marshalling 'object' instead of crashing. Fixes #76696.
18479 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18481         * class-internals.h: Add prototype for mono_type_get_full_name ().
18483 2005-11-11  Dick Porter  <dick@ximian.com>
18485         * threads.c (mono_thread_manage): Make sure the main thread has
18486         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18488 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18490         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18491         console about the missing type.
18492         (mono_loader_set_error_method_load): Ditto.
18494 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18496         * mono-config.c (mono_get_config_dir): Set the system defaults if
18497         none is specified.
18499         * assembly.c (mono_set_dirs): New API entry point to set the
18500         assembly and the config directory in one call
18502 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18504         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18505         the ftnptr was created from a delegate in a domain other than the
18506         current domain. Fixes #75377.
18508         * exception.h exception.c: Add mono_get_exception_not_supported ().
18510 2005-11-08  Martin Baulig  <martin@ximian.com>
18512         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18514 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18516         * security-manager.h: Added definitions to deal with strongname key 
18517         pairs bigger (and smaller) than 1024 bits.
18518         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18519         adjust wrt the public key length being used.
18521 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18523         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18524           Windows build (r51396-51397).
18526 2005-11-03  Martin Baulig  <martin@ximian.com>
18528         * class.c (mono_class_setup_vtable_general): Also add generic
18529         methods to the vtable; fixes #76581.
18531 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18533         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18534         sure that we lookup GetString method from the System.Text.Encoding
18535         class, not the derived class or we get an empty method.
18537         Fixed class #76612.
18539 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18541         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18542         if it has been previously set (embedders). 
18544         Make mono_set_rootdir available also on Unix.
18546 005-10-24  Robert Jordan  <robertj@gmx.net>
18548         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18550 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18552         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18553         only calls which are made to native code use this flag.
18555         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18557 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18559         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18560         Add support for FieldBuilders.
18562 2005-10-29  Martin Baulig  <martin@ximian.com>
18564         * mono-debug.c
18565         (mono_debug_using_mono_debugger): New public method; returns
18566         whether we're running inside the debugger.
18568 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18570         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18571         for Method/Constructor/FieldBuilders.
18573 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18575         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18576         and fields as well.
18578 2005-10-26  Martin Baulig  <martin@ximian.com>
18580         * mono-debug-debugger.c
18581         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18583 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18585         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18586         integer to isspace.
18588 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18590         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18591         when passing valuetypes byref. Fixes #76502.
18593 2005-10-19  Jackson Harper  <jackson@ximian.com>
18595         * profiler.c: Don't put a . in front of types that are not in a
18596         namespace.
18598 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18600         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18602 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18604         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18605         #76436.
18606         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18608 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18610         * assembly.c metadata-internals.h icall.c: Define an additional
18611         parameter for mono_assembly_name_parse_full, so we can avoid creating
18612         S.R.AssemblyName.Version when no version info wasn't passed.
18613         
18614 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18616         * class.c (mono_type_get_full_name): Reimplement method that was
18617         removed. 
18619         * image.c: Some docs
18621 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18623         * profiler.c (output_newobj_profile): Fix printing of Total memory
18624         on x86.
18626 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18628         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18630 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18632         * threads.c: remove debug output.
18634 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18636         * threads.c (mono_thread_manage): Fix crashes if more than 64
18637         threads need to be aborted. Hopefully fixes #75899.
18639         * assembly.c (mono_stringify_assembly_name): New helper function.
18641         * class.c: Use mono_stringify_assembly_name instead of the similar
18642         static function.
18644         * assembly.h assembly.c: Add support for calling a postload search 
18645         hook if an assembly cannot be loaded.
18647         * appdomain.c: Register new search hooks which call the AssemblyResolve
18648         events in AppDomain. Fixes #75231
18650 2005-10-07  Martin Baulig  <martin@ximian.com>
18652         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18653         methods without debug info.
18655 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18657         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18658         wrappers.
18660 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18662         * file-io.c: now that we return symlinks, use lstat and, when the file
18663         is a symbolic link, stat, to get the file attributes. Also avoid the
18664         conversion to/from utf16/external.
18666 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18668         * class.c (mono_class_layout_fields): Compute klass->has_references
18669         correctly if an embedded valuetype is not yet initialized. Fixes
18670         #76331.
18672 2005-10-04  Martin Baulig  <martin@ximian.com>
18674         * metadata.c
18675         (mono_metadata_load_generic_param_constraints): New public
18676         function; splitted the constraints loading out from
18677         mono_metadata_load_generic_params().
18679         * class.c (mono_class_create_from_typedef): Call
18680         mono_metadata_load_generic_param_constraints() after setting up
18681         the type and creating our parent; fixes #75329.
18683 2005-10-04  Martin Baulig  <martin@ximian.com>
18685         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18686         non-dynamic parent classes.
18688 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18690         * file-io.c : win32 build fix (ETXTBSY seems not found).
18692 2005-10-04  Martin Baulig  <martin@ximian.com>
18694         * reflection.c
18695         (mono_image_get_methodspec_token): Make the cache actually work;
18696         fixes #75974.
18698 2005-10-04  Martin Baulig  <martin@ximian.com>
18700         * class.c (mono_class_name_from_token): Removed the unneccessary
18701         `MonoGenericContext *' argument.
18703 2005-10-04  Martin Baulig  <martin@ximian.com>
18705         * loader.c
18706         (method_from_methodspec): Make the caching work again; fixes the
18707         performance regression from #76262.
18709 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18711         * file-io.c:
18712         * file-io.h:
18713         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18714         GetFileSystemEntries that performs the same work but without going
18715         into io-layer, locking, etc.
18717 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18719         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18720         ThreadState_Stopped as well. Fixes #76047.
18722 2005-09-29  Martin Baulig  <martin@ximian.com>
18724         * class.c
18725         (inflate_generic_context): If the new context has a `gmethod', set
18726         its `container' that that gmethod's `container'.
18728         * metadata.c
18729         (mono_metadata_parse_generic_param): Simplify things;
18730         `generic_container = generic_context->container;' is just fine.
18732         * loader.c (method_from_methodspec): Code cleanups.
18734 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18736         * decimal.c: fix warning (and let gcc generate correct
18737         code on ARM with optimizations).
18739 2005-09-28  Martin Baulig  <martin@ximian.com>
18741         * loader.c
18742         (method_from_memberref): Added `MonoGenericContext *class_context'
18743         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18744         (method_from_methodspec): If we're a memberref, use the enclosing
18745         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18747 2005-09-28  Martin Baulig  <martin@ximian.com>
18749         * object.c (mono_runtime_invoke_array): Added support for
18750         MONO_TYPE_GENERICINST; fixes #75917.
18752 2005-09-27  Martin Baulig  <martin@ximian.com>
18754         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18755         `k->byval_arg.type' to determine the actual type.
18757         * loader.c (method_from_methodspec): Removed some hacks.
18759 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18761         * class-internals.h (mono_field_is_deleted): Do the test for
18762         rtspecialname before we check the actual name of the field. This
18763         prevents us from dereferencing a pointer into the string table,
18764         saving us from accessing a few pages
18766         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18767         macros. This will allow a deadlock debugger to easily be plugged
18768         in.
18770 2005-09-27  Martin Baulig  <martin@ximian.com>
18772         * loader.c (method_from_methodspec): Create a "signature"
18773         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18775 2005-09-27  Martin Baulig  <martin@ximian.com>
18777         * class.c
18778         (inflate_generic_class): Correctly set the new context's
18779         container.
18781         * loader.c
18782         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18783         instead of a `MonoGenericContext *'.
18784         (mono_method_signature_full): Take a `MonoGenericContainer *'
18785         instead of a `MonoGenericContext *'.
18787         * metadata.c
18788         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18789         instead of a `MonoGenericContext *'.
18790         (mono_metadata_parse_method_signature_full): Likewise.
18792 2005-09-26  Martin Baulig  <martin@ximian.com>
18794         * class.c
18795         (mono_class_from_generic_parameter): Set `klass->generic_container'
18796         (mono_class_from_generic_parameter): Likewise.
18797         (mono_bounded_array_class_get): We inherit the generic container
18798         from the element class.
18800         * loader.c
18801         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18802         argument rather than computing it here.
18803         (method_from_memberref): Correctly set the generic context before
18804         parsing the signature.  Fixes #75681.
18806 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18808         * object.c (mono_class_has_special_static_fields): Fix warnings.
18810 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18812         * assembly.c: Add parse_public_key function, to
18813         par the public keys. Also added mono_assembly_name_parse_full,
18814         to define it the parsed key should be freed or not.
18815         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18816         to parse a long format assembly name.
18817         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18818         private, since calling it to preserve the key requires
18819         freeing it manually.
18820         
18821 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18823         * locales.c : removed HAVE_ICU part.
18825 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18827         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18828         field_is_special_static if the klass has no special static fields.
18830         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18831         (MonoCachedClassInfo): Likewise.
18833         * object.c (mono_class_has_special_static_fields): New helper function.
18835 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18837         * class.c (mono_class_create_from_typedef): Don't call 
18838         interfaces_from_typedef_full for enums.
18839         (mono_class_create_from_typedef): Compute the base types of enums directly
18840         without calling mono_class_setup_fields ().
18841         (mono_class_find_enum_basetype): New helper function.
18843         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18844         one place inside the string heap.
18845         
18846 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18848         * class.c: locking fixes, code cleanups, some docs added.
18849         Allocate some data structures in the image mempool.
18851 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18853         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18854         the example code.
18855         
18856 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18858         * class-internals.h, class.c, reflection.c: reduce memory taken by
18859         MonoClass.
18861 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18863         * metadata.c, metadata.h, loader.h: documentation updates, code and
18864         API cleanups.
18866 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18868         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18869         the example code.
18871         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18872         page faults caused by the runtime while reading metadata.
18874 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18876         * socket-io.c: the field names were changed 3 months ago and no one
18877         realized until bug #76077 got filed!
18879 2005-09-20  Martin Baulig  <martin@ximian.com>
18881         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18883 2005-09-20  Martin Baulig  <martin@ximian.com>
18885         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18886         write the rank into the class entry.
18888 2005-09-20  Martin Baulig  <martin@ximian.com>
18890         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18892 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18894         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18896         * icall.c (custom_attrs_defined_internal): New icall.
18898         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18899         function.
18900         (mono_custom_attrs_construct_by_type): New helper function.
18902 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18904         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18905         terminate the resulting string. Fixes #76123.
18907 2005-09-16  Martin Baulig  <martin@ximian.com>
18909         * mono-debug.c
18910         (mono_debug_add_method): Ignore inflated methods for the moment.
18912 2005-09-14  Martin Baulig  <martin@ximian.com>
18914         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18916 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18918         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18919         return a success/failure indication.
18920         (mono_metadata_interfaces_from_typedef_full): Ditto.
18921         (get_constraints): Ditto.
18923 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18925         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18926         
18927         * marshal.c (emit_marshal_array): Add support for returning string
18928         arrays from delegates. Fixes #76063.
18930         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18932 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18934         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18935         icall.
18937 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18939         * reflection.c icall.c: Fix after mono_get_exception_type_load
18940         signature change.
18942         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18943         (mono_assembly_load_reference): Use the new helper.
18945         * class-internals.h (MonoLoaderError): New structure containing 
18946         information about type loading errors.
18948         * class-internals.h loader.c: Add APIs to store per-thread loader
18949         error information.
18951         * loader.c class.c: Set the loader error if needed.
18953         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18955 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18957         * decimal.c: fixed to handle the broken ARM fp format.
18959 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18961         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18962         broken.
18964 2005-09-06  Martin Baulig  <martin@ximian.com>
18966         * domain.c (supported_runtimes): Added v2.0.50727.
18968 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18970         * culture-info.h: reduce the size of some structures.
18972 2005-09-05  Martin Baulig  <martin@ximian.com>
18974         Reflect latest API changes in the August CTP.
18976         * icall.c
18977         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18978         ("MonoType.HasGenericArguments"): Removed.
18979         ("MonoMethod.BindGenericParameters"): Renamed to
18980         "MakeGenericMethod".
18981         ("MethodBuilder.BindGenericParameters"): Renamed to
18982         "MakeGenericMethod".    
18984 2005-09-05  Martin Baulig  <martin@ximian.com>
18986         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18988 2005-09-05  Martin Baulig  <martin@ximian.com>
18990         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18992         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18993         generic_container is non-NULL.
18995 2005-09-05  Martin Baulig  <martin@ximian.com>
18997         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18999         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19001 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19003         * reflection.c (encode_locals,
19004         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19005         for large generic types.
19007 2005-09-05  Martin Baulig  <martin@ximian.com>
19009         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19011         * class.c (mono_dup_array_type): New public method.
19012         (mono_metadata_signature_deep_dup): New public method.
19013         (dup_type): Correctly duplicate array and function types.
19015 2005-09-05  Martin Baulig  <martin@ximian.com>
19017         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19019         * reflection.c (get_default_param_value_blobs): Handle generic types
19020         and generic methods.
19022 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19024         * class.c: Fixed error reporting (method/class were inversed) for 
19025         inheritance demands.
19026         * security-manager.c|h: Added the AppDomain when calling the managed
19027         System.Security.SecurityManager.InheritanceDemand method.
19029 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19031         * reflection.c (encode_marshal_blob): 'marshaltype' and
19032         'marshaltyperef' are alternate sources for the custom marshaler
19033         name.
19035 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19037         * class.c: fix creation of array classes with rank == 1
19038         (patch by Ankit Jain <jankit@novell.com>).
19040 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19042         * object.c: fix check for creating the bound data for arrays vs
19043         szarrays.
19045 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19047         * object.c: configuration file name is now based on the executable name,
19048         not the image name. Fixes bug #75931.
19050 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19052         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19053         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19055 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19057         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19059 2005-08-24  Ankit Jain  <jankit@novell.com>
19060             Raja R Harinath  <rharinath@novell.com>
19062         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19063           called by it recursively.
19064           (mono_class_init): Remove special case in pending_init handling, since it's
19065           superseded by the fix to mono_class_from_typeref.
19067 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19069         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19070         BROKEN_THREAD_START stuff.
19072 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19074         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19075         trampoline.
19077         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19078         
19079         * object.c (mono_delegate_ctor): Replace the original function address with
19080         a delegate trampoline.
19082 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19084         * icall.c: add boolean argument to base64_to_byte_array and 
19085         InternalFromBase64String to control whether a whitespace-only string
19086         is allowed (or should casue a FormatException to be thrown). We need
19087         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19088         to match the MS behaviour in both profiles.
19089         * appdomain.c: Bump corlib version.
19091 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19093         This patch implements a big portion of publisher policy
19094         support, used to bind assembly versions and redirect
19095         one assembly from version A to version B.
19097         * assembly.c:
19098         New GSList loaded_assembly_bindings, for storing the cached
19099         assembly bindings.
19100         (assembly_binding_maps_name): New static function for checking if a 
19101         assembly binding information maps an assembly name.
19102         (mono_assembly_binding_info_free): New function for freeing
19103         assembly binding information resources.
19104         (get_publisher_policy_info): New static function for retrieving 
19105         assembly binding information from a MonoImage.
19106         (compare_versions): New static function for comparing an assembly
19107         binding information data and the version of an assembly name.
19108         (check_policy_versions): New static function for checking if an
19109         assembly binding info mapping an assembly name is valid for it.
19110         (mono_assembly_load_publisher_policy): New static function for
19111         loading the 'policy.major.minor.MyAssembly' image for an assembly
19112         with an assembly name 'aname'.
19113         (mono_assembly_bind_version): New static function for updating
19114         assembly redirection.
19115         (mono_assembly_apply_binding): New static function for applying
19116         assembly binding.
19117         (search_binding_loaded): New static function for searching 
19118         loaded assembly binding infos in the cache domain.
19119         (mono_assembly_load_full): Don't apply assembly binding for
19120         reflection only assemblies.
19122         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19123         which contains information about assembly binding. Also
19124         declare signature for mono_config_parse_publisher_policy ()
19125         function, used to retrieve pub policy info.
19126         
19127         * mono-config.c:
19128         (publisher_policy_start): New static function used to parse publisher 
19129         policy config files.
19130         (publisher_policy_parser): New static MonoParseHandler containing 
19131         the functions used when parsing config files.
19132         (mono_config_parse_publisher_policy): New function for parsing
19133         publisher policy files.
19134         
19135 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19137         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19139         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19141         * object.c (mono_get_addr_from_ftnptr): New helper function.
19143         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19145         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19147 2005-08-19  Dick Porter  <dick@ximian.com>
19149         * threads.c, threads.h, appdomain.c, appdomain.h,
19150         profiler-private.h, monitor.c, object.c, object-internals.h,
19151         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19152         store the thread ID, so it can hold a 64 bit value if needed.
19154 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19156         * reflection.c (mono_reflection_create_dynamic_method): Store the
19157         handle class into the method references as well so ldtoken works in
19158         dynamic methods.
19160         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19161         types.
19163 2005-08-19  Ankit Jain <jankit@novell.com>
19165         Fix #75847.
19166         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19167           here rather than using the method signature of a arbitrary function
19168           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19169           two arguments.
19170           Hack done with Harinath.
19172 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19174         * threadpool.c: disable printing stack traces when we get a exception
19175         in a threadpool thread. I need to do more testing to figure out which
19176         cases actually print this. Fixes bug #75828.
19178 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19180         * icall.c: there might be ignored whitespace after the last '='. This
19181         fixes length computation and bug #75840.
19183 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19185         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19186         well. Fixes #75809.
19188         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19189         #75784.
19190         
19191         * reflection.c (create_custom_attr_data): Ditto.
19193 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19195         * locales.c, culture-info.h : removed RegionLCIDMap.
19196         * culture-info-tables.h : regenerated.
19198 2005-08-16  Martin Baulig  <martin@ximian.com>
19200         * class.c (mono_type_get_name_recurse): Small fix.
19202 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19204         * locales.c : indentation fixie.
19206 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19208         * object-internals.h,
19209           locales.h,
19210           locales.c,
19211           culture-info.h,
19212           icall.c : added RegionInfo table support.
19213         * culture-info-table.h : regenerated for region support.
19215 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19217         * reflection.c (resolve_object): handle all kinds of MonoMethod
19218         including generic ones
19220 2005-08-12  Ankit Jain <jankit@novell.com>
19222         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19223           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19225 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19227         * process.c: Don't close a thread handle when it's NULL. This is a
19228         workaround for bug #75733.
19230 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19232         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19234 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19236         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19238 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19240         * threadpool.c: if a work item in the thread pool has a callback that
19241         catches a exception, don't propagate it after invoking the callback.
19242         Fixes bug #75336.
19244 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19246         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19248         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19250         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19252         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19254 2005-08-03  Ankit Jain  <jankit@novell.com>
19256         Fix #75683.
19257         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19258           PInvoke calling convention is 0.
19260 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19262         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19263         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19265 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19267         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19268         to handle threads not started by the GC (patch by Michael Meeks
19269         <michael.meeks@novell.com>).
19271 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19273         * reflection.c: Make buffer used in emitting types larger for some
19274         big generic types (patch by Michal Moskal).
19276 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19278         * mono-debug.c: Fix some (not all) alignment problems.
19280 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19282         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19283         Invoke mono_image_load_from_data_full passing the refonly
19284         parameter.
19286         * assembly.c
19287         (mono_assembly_open_from_bundle): Add the refonly argument, 
19288         in order to pass it to other methods it calls to.
19289         (do_mono_assembly_open): Add the refonly argument, in order 
19290         to pass it to other methods it calls to.
19291         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19292         the refonly parameter to it.
19294         * image.c: Add loaded_images_refonly_hash and
19295         loaded_images_refonly_guid_hash to cache the reflection
19296         only loaded images.
19297         (mono_images_init): Initialize the hash tables used for
19298         caching the reflection only images.
19299         (load_modules): Invoke mono_image_open_full passing the refonly
19300         parameter to load the modules the correct way.
19301         (build_guid_table): Add the refonly argument, to re-build the 
19302         correct hash table.
19303         (do_mono_image_open): Added the refonly argument, in order to
19304         define it for the loaded image.
19305         (mono_image_loaded_full): New function, which receives an
19306         additional parameter to look for the image in the refonly or
19307         non-refonly section.
19308         (mono_image_loaded): Updated, using mono_image_loaded_full.
19309         (mono_image_loaded_by_guid_full): The same case that happens
19310         with mono_image_loaded_full.
19311         (mono_image_loaded_by_guid): Likewise.
19312         (register_image): Use the ref_only variable inside MonoImage
19313         to decide in which hash table store the current image.
19314         (mono_image_open_from_data_full): Rename
19315         mono_image_open_from_data to mono_image_open_from_data_full,
19316         adding the refonly argument, to define the ref_only variable 
19317         inside MonoImage.
19318         (mono_image_open_from_data): Return 
19319         mono_image_open_from_data_full.
19320         (mono_image_open_full): Rename mono_image_open to
19321         mono_image_open_full, receiving the new refonly argument,
19322         to pass it to inner methods.
19323         (mono_pe_file_open): Update this function, to open
19324         a MonoImage as a non-refonly image.
19325         (mono_image_close): Use the refonly variable inside
19326         MonoImage to remove the image from the correct caches.
19328         * image.h: Add the signatures of mono_image_open_full,
19329         mono_image_open_from_data_full, mono_image_loaded_full,
19330         mono_image_loaded_by_guid_full.
19332         * metadata-internals.h: Add the ref_only field to 
19333         MonoImage.
19334         
19335 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19337         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19338         Fix the last behavior, which used to load the assemblies and
19339         extract MonoReflectionAssemblyName information, instead of
19340         extract it from the metadata tables. Needed for Reflection
19341         Only assemblies.
19342         
19343 2005-07-29  Martin Baulig  <martin@ximian.com>
19345         * mono-debug-debugger.c
19346         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19347         not initialized.
19349         * mono-debug.c
19350         (mono_debug_address_from_il_offset): Check whether we have
19351         debugging support before attempting to take the lock.
19352         (mono_debug_source_location_from_address): Likewise.
19353         (mono_debug_source_location_from_il_offset): Likewise.
19354         (mono_debug_il_offset_from_address): Likewise.
19355         (mono_debug_address_from_il_offset): Likewise.
19357 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19359         * class.c (mono_class_from_name_case): Add support for dynamic images.
19360         Fixes #75650.
19362         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19363         for #75479.
19365 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19366         
19367         * reflection.c (mono_method_get_object): Fix warning.
19369 2005-07-28  Martin Baulig  <martin@ximian.com>
19371         * mono-debug.c
19372         (mono_debug_add_wrapper): Also write the wrapper type.
19374 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19376         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19377         
19378         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19379         data indicates the class has none.
19381 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19383         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19384         loader lock with the debugger lock. Prevents deadlocks for beagle.
19386         Beagle can now run on an smp box for a weekend without any
19387         issues. Woohoo!
19389 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19391         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19392         in a module. Fixes #75629.
19394 2005-07-26  Martin Baulig  <martin@ximian.com>
19396         * mono-debug.c (mono_debug_add_wrapper): New static method.
19397         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19398         interncall or a wrapper.
19400         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19401         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19402         (MONO_DEBUGGER_VERSION): Bump to 51.
19404         * mono-debug-debugger.c
19405         (mono_debugger_add_type): Removed this empty function.
19406         (mono_debugger_add_method): Likewise.
19408 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19410         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19411         before accessing method->slot.
19413 2005-07-21  Jb Evain  <jbevain@gmail.com>
19415         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19416         Fixes #75010.
19418 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19420         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19421         #75587.
19423 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19425         * image.h image.c: Add mono_image_get_guid () API function.
19427 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19429         There were issues when multiple threads tried to load
19430         assemblies. A deadlock was created between assemblies_mutex and
19431         mono_domain_assemblies_lock. This fixes the issue by making the
19432         assembly ref counting be lock free. See bug 75586.
19433         
19434         * image.c (mono_image_close): The add ref function here was using
19435         Interlocked operations while the unref was using a mutex and a
19436         --. I don't think this was ever a bug that would be exposed in a
19437         non-pendantic way (ie, by an embedder doing a ref on one thread
19438         and an unref on another), but for the sake of correctness, this is
19439         now Interlocked.
19441         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19442         (mono_assembly_load_reference): Call mono_assembly_addref rather
19443         than touching the refcount ourselves.
19444         (mono_assembly_close): Use InterlockedDecrement to unref the
19445         assembly. Don't acquire the lock unless it is actually needed.
19447 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19449         * class.c (mono_class_layout_fields): Fix calculation of has_references
19450         for generic types.
19452 2005-07-12  Martin Baulig  <martin@ximian.com>
19454         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19456         * metadata.c
19457         (mono_type_hash): Provide better hashing for generic instances.
19458         (mono_generic_inst_hash): Improve hashing.
19459         (mono_generic_class_hash): Likewise.
19461         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19462         generic instances.
19464 2005-07-12  Martin Baulig  <martin@ximian.com>
19466         * reflection.c (mono_reflection_create_runtime_class): Remove the
19467         hack for generic type definitions and non-`Run' assemblies.
19468         (mono_reflection_bind_generic_parameters): Also use
19469         `klass->wastypebuilder' to check for TypeBuilders.
19471 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19473         * class.c (mono_class_layout_fields): Fix calculation of has_references
19474         for generic types.
19476         * class.c (inflate_generic_class): Fix a leak.
19477         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19478         for generic types.
19480 2005-07-11  Martin Baulig  <martin@ximian.com>
19482         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19483         on error.
19485 2005-07-11  Martin Baulig  <martin@ximian.com>
19487         * loader.c (find_method): Also lookup in
19488         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19490 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19492         * appdomain.c (mono_domain_unload): Don't free the error message
19493         before passing it to mono_get_exception_...
19495         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19496         
19497 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19499         * threads.c: try to better guess an available RT signal (bug #75387).
19501 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19503         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19504         and CACHE_OBJECT.
19506 2005-07-07  Martin Baulig  <martin@ximian.com>
19508         * class.c (mono_type_get_name_full): Return NULL for
19509         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19510         fixes #75408.
19512 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19514         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19515         exit the appdomain as well being aborted.
19517         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19518         change back to the root domain after calling managed code. This enables
19519         appdomains using threadpools to be unloaded.
19521 2005-07-07  Martin Baulig  <martin@ximian.com>
19523         * class-internals.h
19524         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19525         into `MonoDynamicGenericClass' since we only need it for dynamic
19526         types.
19528         * reflection.c (mono_class_bind_generic_parameters): We don't need
19529         to compute the `parent' here.
19531 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19533         * culture-info-table.h : regenerated.
19535 2005-07-06  Martin Baulig  <martin@ximian.com>
19537         * icall.c
19538         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19540         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19542 2005-07-06  Martin Baulig  <martin@ximian.com>
19544         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19545         we're doing a signature-only comparision; fixes #74945.
19547 2005-07-06  Martin Baulig  <martin@ximian.com>
19549         * class-internals.h (MonoGenericClass): Moved some things out into
19550         a new `MonoInflatedGenericClass' type.  
19551         (MonoInflatedGenericClass): New type; the `klass' of a
19552         `MonoGenericClass' is now computed lazyly in
19553         mono_get_inflated_generic_class().      
19555         * class.c (mono_get_inflated_generic_class): New public function.
19556         (mono_class_inflate_generic_method): Removed the unused
19557         `MonoClass *' argument.
19558         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19559         all the methods.
19560         (mono_class_create_generic): Make this static and merge it with
19561         mono_class_create_generic_2(); we're now called automatically from
19562         mono_get_inflated_generic_class().
19564         * loader.c (mono_method_signature): Call
19565         mono_get_inflated_method() here.
19567 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19569         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19570         type of fields with RVA.
19572         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19573         for this pseudo class.
19574         (my_mono_class_from_generic_parameter): Likewise.
19575         (mono_class_init): Allow interfaces to have cctors.
19577 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19579         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19580         lazily for AOT methods.
19582 2005-07-05  Martin Baulig  <martin@ximian.com>
19584         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19585         returns FALSE for a successful match, not TRUE.
19587 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19589         * loader.c (mono_method_get_index): Optimize this a bit.
19591 2005-07-04  Martin Baulig  <martin@ximian.com>
19593         * class.c
19594         (class_compute_field_layout): Move the check for generic type
19595         definitions into mono_class_layout_fields().  Fixes #74684.
19596         (mono_class_from_generic_parameter): Correctly compute
19597         `klass->parent'; fixes #75457.
19599         * reflection.c (register_assembly, register_module): Make sure
19600         `domain->rejobject_hash' is already created.
19602 2005-07-02  Martin Baulig  <martin@ximian.com>
19604         * class-internals.h
19605         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19606         `MonoDynamicGenericClass'.      
19608 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19610         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19611         returned by a field getter is null, since null is a valid value.
19613 2005-07-01  Martin Baulig  <martin@ximian.com>
19615         * reflection.c (mono_reflection_generic_class_initialize): Update
19616         the `dgclass->fields [i].parent' to the correct class.
19617         (mono_image_get_fieldref_token): Use the declaring type, not the
19618         reflected type.
19620 2005-07-01  Martin Baulig  <martin@ximian.com>
19622         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19624 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19626         * threads.c (thread_cleanup): assert that thread != NULL
19627         (wait_for_tids_or_state_change): We were using the wrong variable
19628         when accessing wait->threads. `i' was always out of the bounds of
19629         the array.
19631 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19633         * loader.c: map user32 and kernel32 to libMonoSupportW
19635 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19637         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19639 2005-06-28  Martin Baulig  <martin@ximian.com>
19641         * loader.c (method_from_methodspec): Fix #75334.
19643 2005-06-28  Martin Baulig  <martin@ximian.com>
19645         Fix #74953 - Arrays now implement the generic IList<T> interface
19646         on the 2.0 platform.
19648         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19650         * reflection.c (mono_class_bind_generic_parameters): New public
19651         function; similar to mono_reflection_bind_generic_parameters(),
19652         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19654         * domain.c (mono_init_internal): Try to initialize.
19655         `mono_defaults.generic_array_class' here; this'll only succeed if
19656         we're using the 2.0 corlib.
19658         * icall.c
19659         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19660         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19661         (mono_lookup_internal_call): Added support for nested classes.
19663         * loader.c
19664         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19665         we're an interncall and have generic arguments.
19667         * class.c
19668         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19669         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19670         instance of System.Array.InternalArray<T> for arrays, so they
19671         implement the generic IList<T> interface.
19673 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19675         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19676         (chastamar@yahoo.com). Fixes #75374.    
19678 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19680         * culture-info-table.h: regenerated.
19682 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19684         * icall.c: handle spaces correctly for base64 strings.
19686 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19688         * *.c: Kill some warnings.
19690 2005-06-23  Duncan Mak  <duncan@novell.com>
19692         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19693         that this builds on Solaris 10 (x86).
19695 2005-06-23  Martin Baulig  <martin@ximian.com>
19697         * class.c
19698         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19699         generic type definitions.
19701 2005-06-23  Martin Baulig  <martin@ximian.com>
19703         Fix #75331.
19705         * metadata.c (mono_class_get_overrides): Renamed to
19706         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19707         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19708         pass it to mono_get_method_full().
19710 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19712         * reflection.c (mono_reflection_create_runtime_class): take the
19713         mono_domain_lock in this method. Prevents deadlocks
19715 2005-06-22  Martin Baulig  <martin@ximian.com>
19717         * loader.c (method_from_methodspec): Fix #75330.
19719 2005-06-22  Martin Baulig  <martin@ximian.com>
19721         * reflection.c (type_get_qualified_name): Use
19722         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19723         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19724         argument; use it if we don't have an assembly name.
19726 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19728         * object.c: In mono_message_init, set "copy out" flag for in
19729         parameters with the [Out] flag.
19731 2005-06-21  Martin Baulig  <martin@ximian.com>
19733         * class.c
19734         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19735         and MONO_TYPE_PTR.
19737 2005-06-21  Martin Baulig  <martin@ximian.com>
19739         * class.c (mono_class_init): Don't initialize `class->fields' for
19740         generic instances since they're initialized again in
19741         compute_field_layout(). 
19742         (compute_field_layout): Set the field's `generic_info' here; fix
19743         #75320. 
19745 2005-06-21  Martin Baulig  <martin@ximian.com>
19747         * class-internals.h
19748         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19750         * metadata.c (mono_metadata_generic_method_equal): Also
19751         distinguish the `generic_class'; fixes #75334.
19753 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19755         * domain.c:
19756         * appdomain.c:
19757         * domain-internals.h:
19758         * reflection.c: 'domain_assemblies' field is now protected by its own
19759         lock. Don't call into managed code to run the AssemblyLoad event if we
19760         now there are no registered delegates for it.
19762 2005-06-20  Martin Baulig  <martin@ximian.com>
19764         * class.c (mono_class_is_assignable_from): Use a custom version of
19765         mono_class_has_parent() to make things work for generic instances;
19766         fix #75300.
19768 2005-06-20  Martin Baulig  <martin@ximian.com>
19770         * loader.c (method_from_methodspec): Apply a patch from
19771         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19773 2005-06-20  Martin Baulig  <martin@ximian.com>
19775         * class.c (mono_class_init): Reverted Zoltan's last change; it
19776         breaks generics.
19778 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19780         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19782 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19784         * socket-io.c: fix the index in the socket array for writable/error
19785         sockets. Fixes bug #75306.
19787 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19789         * class.c (mono_class_init): Allow interfaces to have static ctors.
19791 2005-06-17  Martin Baulig  <martin@ximian.com>
19793         * loader.c (method_from_methodspec): Use `context->container' when
19794         parsing the `gmethod->inst'.
19796 2005-06-17  Martin Baulig  <martin@ximian.com>
19798         * class.c (mono_type_get_name_recurse): Don't add the assembly
19799         name for type arguments.
19801 2005-06-15  Martin Baulig  <martin@ximian.com>
19803         * reflection.c (mono_image_get_inflated_method_token): Encode
19804         correct klass; fixes #75260.
19806 2005-06-13 Michal Moskal <malekith@nemerle.org>
19808         * icall.c: Make GetCorrespondingMethod/Constructor take
19809         MonoReflectionMethod method not MonoMethod. Removed
19810         MonoType.GetCorrespondingField, and make
19811         MonoGenericType.GetCorrespondingField take name not
19812         MonoClassField.
19814 2005-06-13  Michal Moskal <malekith@nemerle.org>
19816         * reflection.c (field_encode_signature, encode_locals):
19817          Make sizes of buffers for types larger (for big generic types).
19818          (create_generic_typespec,
19819          mono_reflection_sighelper_get_signature_local,
19820          mono_reflection_sighelper_get_signature_field):
19821          Add asserts for too small buffers.
19823 2005-06-15  Martin Baulig  <martin@ximian.com>
19825         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19826         if our parent is not a dynamic type.
19828 2005-06-15  Martin Baulig  <martin@ximian.com>
19830         * class-internals.h (MonoTypeNameFormat): New enum.
19832         * class.c
19833         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19834         (mono_type_get_full_name): Removed.
19835         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19836         argument instead of the boolean's.
19838         * icall.c (ves_icall_System_MonoType_getFullName):
19839         Added `gboolean assembly_qualified'.    
19841         * reflection.h
19842         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19844         * reflection.c (mono_reflection_parse_type): Parse the new type
19845         name format.
19847 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19849         * icall.c: no need to convert from utf16 to utf8 and then back again
19850         after the call to GetLogicalDrives.
19852 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19854         * icall.c: frombase64. Fix problems exposed by new tests.
19856 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19858         * icall.c: added internal calls for converting char [] and strings in
19859         base64 into byte [].
19861 2005-06-10  Martin Baulig  <martin@ximian.com>
19863         * class.c (mono_class_create_generic_2): Read the nested classes
19864         from the metadata rather than from `gklass->nested_classes' since
19865         `gklass' might not be initialized yet.
19867 2005-06-09  Duncan Mak  <duncan@novell.com>
19869         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19870         all public headers. Fixes #74919.
19872 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19874         * domain.c: The key for proxy_vtable_hash is now a pointer
19875         array. Added new GHashFunc and GCompareFunc functions for this.
19877         * class.h: The list of interfaces in MonoRemoteClass is known in
19878         advance and can't grow (we create a new MonoRemoteClass if needed),
19879         so now the interface array can be allocated together with
19880         MonoRemoteClass.
19881         
19882         * object.c: Added a new method create_remote_class_key.
19883         Fixed mono_remote_class so it does not depend on
19884         mono_upgrade_remote_class.
19885         Removed extend_interface_array.
19886         Added new method clone_remote_class(), which makes a copy of a remote
19887         class and adds a new interface or class to it.
19888         mono_upgrade_remote_class() now creates a new remote class (or gets
19889         it from the cache) if an vtable upgrade is needed. In this way
19890         we make sure that other objects sharing the same remote class
19891         don't get the new vtable with unwanted interfaces.
19892         
19893         * object-internals.h:
19894         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19895         
19896         * marshal.c: Track changes in mono_upgrade_remote_class().
19898 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19899         * icall.c: Add runtime methods for obtaining members of inflated
19900         class, which were created from supplied non-inflated members. It
19901         is used in internal Get{Method,Constructor,Field} methods in
19902         System.Type
19904 2005-06-09  Martin Baulig  <martin@ximian.com>
19906         * reflection.c
19907         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19909 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19910         * reflection.c (mono_image_basic_init): Define
19911         Version in MonoDynamicAssembly. 
19912         
19913 2005-06-08  Martin Baulig  <martin@ximian.com>
19915         Fix #75136.
19917         * loader.c
19918         (mono_method_signature_full): New public method; takes a
19919         `MonoGenericContext *'.
19920         (find_method): Use mono_method_signature_full() and pass the
19921         klass'es context to it.
19923         * class.c (mono_class_is_inflated_method): Use
19924         mono_method_signature_full() and pass the context to it.
19926 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19928         * object.c: add proper locking in mono_remote_class_vtable(),
19929         fixes possible memory corruption.
19931 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19933         * marshal.c (mono_remoting_marshal_init): set
19934         initialized after initialization.
19936 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19938         * locales.c : hush.
19940 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19942         * object.c (extend_interface_array): fix really silly
19943         memory corrupting / comparison bug.
19945 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19947         * reflection.c: Functions added to support the creation
19948         of CustomAttributeData, which includes Attribute data
19949         used by ReflectionOnly methods.
19951         * reflection.h:  mono_reflection_get_custom_attrs_data and
19952          mono_custom_attrs_data_construct added (functions exposed).
19954          * icall.c: Added mono_reflection_get_custom_attrs_data
19955          as icall.
19956         
19957 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19959         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19960         lupus's request.
19962 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19964         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19966         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19967         dynamic DllImportAttribute.
19969         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19970         dynamic DllImportAttribute.
19972         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19973         Fixes #75162.
19975 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19977         * threads.c: avoid segfault when an unstarted thread is aborted.
19979 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19981         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19982         Returns the name and version of the runtime for reporting.
19984 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19986         * appdomain.c: bump corlib version.
19987         * object-internals.h: new field in MonoReflectionAssembly.
19989 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19991         * object-internals.h: Carlos forgot to add this field.
19993 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19995         * icall.c: Added create_version to create instances
19996         of Version of MonoReflectionAssemblyName. This change helps
19997         the AssemblyName tests to keep running fine.
19998         
19999 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20000   
20001         * object.c (mono_method_return_message_restore): A somehow less
20002         intrusive fix for #75138.
20004 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20006         * object.c (mono_method_return_message_restore): Fix computation
20007         of expected number of out args.
20009 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20011         * reflection.c (mono_image_get_method_info): Fix the case when the
20012         charset is empty.
20014 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20016         * object.c: Added missing null check in
20017           mono_method_return_message_restore.
20019 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20021         * reflection.c (mono_image_get_method_info): Handle the case when
20022         dllentry is empty.
20024 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20026         * object.c: When creating the vtable for a proxy, take into account
20027         all inherited interfaces, not only the ones registered in
20028         iclass->interfaces. This fixs bug #74996.
20029         Also, in mono_method_return_message_restore, verify that the array
20030         of out args has the expected lengh.
20032 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20034         * socket-io.c: update the timeout in Poll when the call is interrupte.
20036 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20038         * socket-io.c: support abort/suspend in Select_internal after last
20039         change.
20041 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20043         * threadpool.c: remove warning.
20045 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20047         * icall.c:
20048         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20049         removing the 1024 limit from select(). Runtime part of the fix for
20050         bug #71203.
20052 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20054         * socket-io.c: when resolving the addresses for the same
20055         host returned by gethostname(), get the local IPs from the interface
20056         list. Loopback addresses are discarded if the are interfaces up with
20057         non-loopback ones. Fixes bug #63265.
20059 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20061         * appdomain.c, verify.c, object-internals.h, reflection.c:
20062         bumped corlib number to 36, and added new extra_flags field
20063         to ReflectionMethodBuilder and friends.  Fixes #75060.
20065 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20067         * gc.c: register a new weak link only if the object is non-null
20068         (fixes bug#75047).
20070 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20072         * culture-info.h : short time pattern too.
20074 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20076         * culture-info.h : expand long time pattern string length.
20078 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20080         * culture-info-table.h : update (more French date format; #72788).
20082 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20084         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20085         the method is static. Fixes #75029.
20087 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20089         * reflection.c: Update the table_idx field of method builders after
20090         saving the module, since it can change. This is a workaround for
20091         bug #74914. 
20093 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20095         * culture-info-table.h : update (additional French date format).
20097 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20099         * icall.c (ves_icall_type_Equals): Revert last change.
20100         
20101         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20103         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20105 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20107         * class-internals.h: Added executioncontext_class field to 
20108         MonoDefaults structure.
20109         * domain.c: Cache System.Threading.ExecutionContext class in 
20110         mono_defaults.
20111         * object.c: Capture the ExecutionContext for asynchroneous calls in
20112          mono_async_result_new.
20113         * object-internals.h: Added execution_context and original_context 
20114         fields to MonoAsyncResult. Added execution_context to MonoThread.
20115         * security-manager.c|.h: Added mono_get_context_capture_method to 
20116         return the capture method (if required by the security manager or by
20117         the framework version used).
20118         * threadpool.c: Apply capture (if present) ExecutionContext in 
20119         mono_async_invoke and revert to original context after it completes.
20121 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20123         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20125 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20127         * culture-info-table.h : zh-CHT related workaround.
20129 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20131         * marshal.c (emit_marshal_custom): Add some error checking and call the
20132         methods in the ICustomMarshaler interface. Fixes #74875.
20133         
20134         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20135         native->managed wrappers.
20137 2005-05-12  Martin Baulig  <martin@ximian.com>
20139         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20140         here and use the loader lock.
20142         * mono-debug.c: Properly lock when the debugger is not attached.
20143         (mono_debug_init): Release the initial lock if we're not running
20144         in the debugger.
20146 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20148         * marshal.c (emit_marshal_custom): Pass through NULL values without
20149         calling the custom marshalling routines.
20151         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20152         conversion in structures. Fixes #74882.
20154 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20156         * culture-info-table.h : zh-* cultures were missing.
20158 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20160         * threads.c: Added a new event background_change_event which is signaled
20161         when a thread changes its background mode.
20162         Moved here several checks previously done in managed code. The checks
20163         require the thread lock, and using the thread lock in managed code
20164         can result in deadlocks.
20165         Merged Start_internal and Thread_internal into a single method. Now 
20166         Thread_internal does all work of creating and starting a thread.
20167         Added icalls for setting and getting the state of the object. Moved from
20168         managed code to avoid locking there.
20169         Added wait_for_tids_or_state_change() which is called instad of
20170         wait_for_tids when waiting for non-backround threads to end. This method
20171         will return if one of the threads ends or the background_change_event
20172         is signaled.
20173         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20174         the background mode. This method signals the background_change_event
20175         event.
20176         * icall.c:
20177         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20178         removed Start_internal.
20179         
20180 2005-05-11  Martin Baulig  <martin@ximian.com>
20182         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20183         to order of some fields to get proper alignment on 64-bit machines.
20185 2005-05-11  Martin Baulig  <martin@ximian.com>
20187         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20188         changes as they're broken and completely fuck up the debugger.
20190         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20192 2005-05-10  Martin Baulig  <martin@ximian.com>
20194         * reflection.c (mono_reflection_generic_class_initialize): Don't
20195         call mono_class_setup_parent() here.
20197 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20199         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20200         send/receive timeout use an integer in milliseconds. We were using a
20201         struct timeval.
20203 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20205         * locales.c:
20206         (internal_get_cultures): reserve the first slot of the array for the
20207         InvariantCulture, which will be filled in managed code.
20209 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20211         * reflection.c (mono_image_fill_module_table): Initialize the
20212         GENERATION field as well.
20214 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20216         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20217         Monitor.Enter on the object.
20219 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20221         * threads.c: Enable the wait for running threads when exiting.
20222         * icall.c: Suspend all threads before exiting.
20224 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20226         * assembly.c (mono_assembly_load_reference): Fix warning.
20228 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20230         * threadpool.c: changed the default number of threads per cpu. From now
20231         on, the default will be 20 + (5 * number of cpus) instead of 50.
20233 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20235         * loader.c (mono_method_get_signature_full): Add locking here.
20237 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20239         * appdomain.c: Moved methods for parsing and freeing assembly
20240         names to assembly.c.
20241         * assembly.c, domain-internals.h: Created public methods for parsing
20242         assembly names. Fixed mono_assembly_load_with_partial_name:
20243         it now finds the best match, taking into account the version,
20244         token and culture specified in the partial name. Also return
20245         the latest version if no version information is specified.
20247 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20249         * threadpool.c: replace check for SocketAsyncCall class.
20251 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20253         * threadpool-internals.h:
20254         * Makefile.am: added threadpool-internals.h
20256         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20257         that happen in threadpool threads (tested on MS).
20258         (mono_thread_pool_remove_socket): new function that dispatch any pending
20259         AIO call on a socket that is closing. By now only epoll really needs it,
20260         as select/poll wake up when the socket closes.
20263         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20265 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20267         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20269 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20271         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20273 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20275         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20276         has an abort request, convert it into a suspend request.
20278 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20280         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20281         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20282         is not supported yet.
20284 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20286         * image.c: register assemblies loaded from data (bundles) in the loaded
20287         assemblies hash. Fixes bug #74772.
20289 2005-04-29  Martin Baulig  <martin@ximian.com>
20291         * class.c (mono_type_get_name_recurse): Update to the new naming
20292         schema from the latest .NET 2.x beta2.
20293         (mono_class_setup_vtable_general): If we're a generic instance,
20294         copy the vtable from our generic type definition and inflate all
20295         the methods in it.
20297         * loader.c (find_method): Update to the new naming schema from the
20298         latest .NET 2.x beta2.
20300 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20302         * class.c (mono_class_init): Add a mono_loader_unlock to the
20303         #74734 fix.
20305 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20307         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20308         suspend_all_other_threads () call for the time being, since it can hang.
20310         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20311         the background threads to exit, since it can also hang.
20313         * class.c (mono_class_init): Applied patch from Ankit Jain 
20314         (radical@gmail.com). Avoid pending init errors when a field refers
20315         to a nested class using a typeref. Fixes #74734.
20317         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20318         this for dynamic modules.
20320 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20322         * threads.c: don't wait for threads that are in the process of aborting
20323         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20324         and waiting for background threads to finish. This makes xsp and
20325         mod-mono-server exit without random length delays and/or hangs.
20327 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20329         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20331 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20333         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20334         dynamic types to prevent infinite loops. Fixes #74727.
20336         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20337         ..._is_assignable_to.
20339 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20341         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20343 2005-04-25  Martin Baulig  <martin@ximian.com>
20345         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20347         * domain.c
20348         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20350         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20352         * reflection.c (build_compressed_metadata): Set metadata header
20353         version to 2.0.
20355 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20357         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20358         number into an integral and a decimal part. Fixes #70473.
20360         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20362 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20364         * culture-info-table.h : reflected the latest locale-builder output.
20366 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20368         * threadpool.c: check for SuspendRequested too when deciding if
20369         mono_thread_interruption_checkpoint should be called.
20371 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20373         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20374         * threads.c: remove interruption_mutex and use Interlocked instead. When
20375         suspending all the threads, wait for all the suspended events at once.
20376         If we're shutting down and get an APC that is going to be queued,
20377         call mono_thread_execute_interruption immediately, as the thread might
20378         be sleeping on a pthread condition or mutex.
20380         * icall.c: call mono_runtime_set_shutting_down before suspending the
20381         threads.
20383         Fixes bug #74693. And now xsp is happier when exiting.
20385 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20387         * loader.c (mono_stack_walk): Fix #74690.
20389 2005-04-22  Martin Baulig  <martin@ximian.com>
20391         * mono-debug.h (MonoDebugMethodJitInfo): Added
20392         `MonoDebugMethodJitInfo *jit'.
20394         * mono-debug.c (mono_debug_read_method): Cache the
20395         MonoDebugMethodJitInfo in `address->jit'.
20396         (mono_debug_free_method_jit_info): New public method.
20398 2005-04-22  Martin Baulig  <martin@ximian.com>
20400         * class.c (mono_class_is_assignable_from): Disallow
20401         type parameter -> interface.
20403 2005-04-21  Dick Porter  <dick@ximian.com>
20405         * threads.c (mono_thread_create): Turn an assertion into an error.
20407 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20409         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20410         
20411         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20412         Fix some gcc 4.0 warnings.
20414 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20416         * file-io.c: fix alt dir separator char on unix systems
20417         and cleanup (fixes bug #71214).
20419 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20421         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20422         a call to a remote domain, since the method may be an
20423         interface method in the client domain. This fixes bug #74192.
20425 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20427         * threadpool.c: recv/send are now performed before going back to managed
20428         code to save one transition.
20430 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20432         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20434         * metadata/threadpool.c: removed hack to workaround the bug above.
20436         Fixes bug #74618.
20438 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20440         * reflection.c reflection.h: Fix handling of parameter defaults in
20441         dynamic methods. Also fixes handling of parameter attributes.
20442         Fixes #74609.
20444         * mono-debug.c (mono_debug_close_image): Fix warning.
20446 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20448         * socket-io.h: replaced old unused field with new 'blocking'.
20449         * threadpool.c: restore socket blocking state on windows(tm).
20451 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20453         * icall.c: don't return the codebase in the AssemblyName[] returned by
20454         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20455         * object-internals.h: Removed FIXME (fields were presents) and fixed
20456         versioncompat declaration.
20458 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20460         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20461         not closed, so don't cleanup when it happens.
20463 2005-04-13  Chris Toshok  <toshok@ximian.com>
20465         * mono-debug-debugger.h: change prototype for
20466         mono_debugger_lookup_type.
20468         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20469         this function, although it should probably be named
20470         mono_debugger_init_type.
20472 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20474         * threadpool.c: fix non-AIO case.
20476 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20478         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20479         the built-in profiler to measure just JIT compilation times.
20481 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20483         * threadpool.c: the epollfd might be closed by another thread at
20484         any time, so ignore EBADF at treat it as a "we're closing" sign.
20486 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20488         * threadpool.c: release the semaphores with a count equals to the number
20489         of working threads in both IO and regular pools. Fixed typo that messed
20490         up the count of IO pool threads. Don't initialize the pipe handles if
20491         we're using epoll.
20493 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20495         * threadpool.c: some systems don't like a NULL when deleting the socket
20496         from epoll.
20498 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20500         * threadpool.c: fix semaphore allocation.
20502 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20504         * threadpool.c: added epoll() based implementation for asynchronous IO
20505         that is used instead of the default poll() when available.
20506         It can be disabled by setting MONO_DISABLE_AIO.
20508 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20510         * threadpool.c: windows needs 'closesocket' and instead of returning
20511         0 when the stream is closed while in select, it returns -1. Fixes bug
20512         #74573.
20514 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20516         * class.c (class_compute_field_layout): Fix the regression caused by
20517         the previous try.
20519 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20521         * threadpool.c: separate pool for socket async. IO.
20522         * threadpool.h: mono_max_worker_threads is not a global any more.
20524 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20526         * class.c (class_compute_field_layout): Fix #74549.
20528 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20530         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20531         use 2 connected sockets instead.
20533 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20535         * mono-config.c: Add new entry point for mkbundle
20536         mono_config_parse_memory. 
20538 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20540         * threadpool.c: removed another unused function.
20542 2005-04-08  Ankit Jain  <radical@corewars.org>
20544         * reflection.c (get_default_param_value_blobs): Add 'types'
20545         parameter to get the types encoded in the constant table.
20546         (mono_param_get_objects): Use the type from the constant table,
20547         not the type of the parameter, when creating default values.
20548         Handle null default values correctly.
20550 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20552         * file-io.c:
20553         * file-io.h:
20554         * threadpool.c:
20555         * threadpool.h:
20556         * icall.c:
20557         * socket-io.c: removed dead code for async IO.
20559 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20561         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20563         * threadpool.c: intercept socket async. calls and pass them to a thread
20564         that is polling and dispatching the job items to the threadpool as
20565         socket become ready. Fixes bugs #71217, #71933.
20567         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20568         between char and short/ushort arrays.
20570         * socket-io.c: remove dead code.
20572 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20574         * locales.c,
20575           icall.c : removed InternalToUpper_Comp() and
20576           InternalToLower_Comp().
20578 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20580         * char-conversions.h : The tables were incorrectly generated. Should
20581           be generated against invariant culture.
20583 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20585         * object.c (mono_runtime_invoke_array): Fix return value when 
20586         passing pre-created valuetype objects to ctors.
20588         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20589         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20590         Fixes #74338.
20592 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20594         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20595         only used with --security and hides the wrong corlib version error.
20597 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20599         * class.c: Changed mono_class_name_from_token so that types
20600         outside of a namespace don't have an initial period.  Improved
20601         the g_warning message used in _mono_class_get when loading
20602         fails.
20603         * assembly.c: In mono_assembly_load_reference, when an assembly
20604         can't be found, "No such file or directory" is misleading and
20605         unhelpful because a few paths were checked for the presence of
20606         the assembly.  When that happens (ENOENT), display a nicer
20607         message indicating the directories that were searched.  In all
20608         cases, the warning is made easier to read for non-hackers.
20610 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20612         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20613         project/solution.
20614         * appdomain.h|domain.c: Removed inline from functions.
20615         * appdomain.c: Reduced warnings when compiling on windows.
20616         * icall.c: Fixed output_debug declaration to gunichar2*.
20617         * mono-config.c: Reduced warnings when compiling on windows.
20618         * rand.c: Added missing "windows.h". Added missing return value.
20619         * rawbuffer.c: Added missing winsock2.h for windows.
20620         * sysmath.h: Added mono-compiler.h header to allow/ease 
20621         compilation with non-GCC compilers.
20622         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20623         Removed cast warnings.
20625         Adapted from the work of J Lothian (for VC6).
20627 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20629         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20630         from default_path.
20632 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20634         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20635         the 2.0 profile.
20637 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20639         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20640         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20641         stuff, and it would probably use $(prefix)/share rather than
20642         $(prefix)/lib.
20644 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20646         * console-io.c: added 2 includes that might be missing.
20648 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20650         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20651         profile.
20653         * reflection.c (create_custom_attr): Allocate the params array using
20654         alloca so it gets GC tracking.
20656 2005-03-23  Chris Toshok  <toshok@ximian.com>
20658         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20659         out some spew.
20661 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20663         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20664         changes to pick up any changes in prefix, etc.
20666 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20668         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20669         
20670         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20671         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20673 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20675         * class-internals.h object-internals.h class.c reflection.c: Extend the
20676         mono_lookup_dynamic_token () function to return the class of the
20677         token as well. 
20679         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20680         well. Fixes #73848.
20682 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20684         * security-manager.c: Skip inheritance checks for intra-corlib
20685         class inheritance and method overrides. This skips a lot of checks
20686         and (anyway) permissions cannot work until corlib is loaded.
20688 2005-03-23  Martin Baulig  <martin@ximian.com>
20690         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20691         MONO_TYPE_GENERICINST.  
20693 2005-03-23  Martin Baulig  <martin@ximian.com>
20695         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20697 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20699         * class.c: added locking comments to some functions.
20700         Cache the interface offsets arrays (saves about 20 KB
20701         of runtime memory in a typical app).
20702         Reduce the time overhead in mono_class_setup_supertypes ().
20704 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20706         * icall.c: speedup and fix leaks in GetMethodsByName and
20707         GetPropertiesByName.
20709 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20711         * reflection.c: some locking fixes.
20713 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20715         * metadata.c: added missing break in case statement.
20717 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20719         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20720         typedbyref return values. Fixes #73941.
20722 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20724         * security-manager.c|h: Added demandunmanaged method and 
20725         suppressunmanagedcodesecurity class to MonoSecurityManager.
20726         Renamed aptc class to allowpartiallytrustedcallers.
20728 2005-03-17  Martin Baulig  <martin@ximian.com>
20730         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20732 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20734         * file-io.c: disabled file async. IO using aio_*. It uses the
20735         threadpool now. Workaround for bug #73718.
20737 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20739         * assembly.h, mono-config.c: added code to deal with bundled configs
20740         for bundled assemblies.
20742 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20744         * *.c, private.h: cleanup, removing old private.h header file.
20746 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20748         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20749         and throw_on_unmappable_char attributes.
20751 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20753         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20754         _ProcessName_internal.
20756 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20758         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20759         #73631.
20761         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20762         are no longer used.
20764 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20766         * object.c (compute_class_bitmap): Add support for generics. Fixes
20767         #73527.
20769 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20771         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20773 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20775         * filewatcher.c: commented out the code for windows watcher, as we don't
20776         use it (we use the managed implementation instead).
20778 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20780         * object-internals.h (MonoThread): Remove 'unused1' field.
20782         * appdomain.c: Bump corlib version.
20784         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20786         * reflection.c (mono_reflection_create_runtime_class): Remove the
20787         AssemblyBuilder.Save optimization since it causes too many problems.
20789 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20791         * exception.c|h: Added mono_get_exception_reflection_type_load to
20792         create a ReflectionTypeLoadException object.
20793         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20794         to return NULL is a InheritanceDemand fails during reflection. Updated
20795         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20796         ReflectionTypeLoadException if an InheritanceDemand fails during 
20797         reflection. Added icall mapping for GetLinkDemandSecurity.
20798         * security-manager.c|h: Added ves_icall_System_Security_
20799         SecurityManager_GetLinkDemandSecurity internal call to return the
20800         class and methods permissions set for a LinkDemand. Removed unused
20801         fields in MonoSecurityManager.
20803 2005-03-10  Martin Baulig  <martin@ximian.com>
20805         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20806         it's a generic instance.
20808 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20810         * reflection.c (mono_get_object_from_blob): Applied patch from
20811         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20813         * class.c (mono_class_is_assignable_from): Another try at fixing 
20814         #73469 without breaking anything.
20816 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20818         * class.c: (mono_class_is_assignable_from): Revert the last changes
20819         since they don't work with generics.
20820         
20821         * class.c (mono_class_is_assignable_from): Fix build bustage.
20823         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20824         the managed IsAssignableFrom method. Fixes #73469.
20826         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20827         function.
20829 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20831         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20832         memory when the remoting callback does not sets the out arguments.
20833         Fixes #73007.
20835         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20836         by mistake.
20838         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20840         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20842         * appdomain.c: Bump corlib version.
20844 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20846         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20847         function.
20849         * threads.c (mono_thread_attach): Detect threads which are not started
20850         by the GC pthread wrappers.
20852 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20854         * icall.c: Added new icall for RNG.
20855         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20856         single handle on Linux to access /dev/urandom and fix #73183.
20858 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20860         * object.c: setting the new vtable in a transparent proxy object must
20861         not change the GC descriptor.
20863 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20865         * object.c: fixed compilation without GCJ support.
20866         * reflection.c: for runtime-created types ensure klass->has_references
20867         is correct (bug #73215).
20869 2005-03-02  Martin Baulig  <martin@ximian.com>
20871         * class.c (mono_class_is_assignable_from): Make this work if
20872         `oklass' is a generic instance; fixes #72831.
20874 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20876         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20877         with hasthis set.
20878         
20879         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20881         * marshal.c: Reorganize native->managed marshalling code to also use
20882         the emit_marshal_... functions.
20884 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20886         * object.c: typed allocs have issues with bitmap sizes > 30,
20887         so check for max_set >= 30.
20889 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20891         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20892         managed code. Fixes #73012.
20894         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20896         * metadata.c reflection.c: Load/Emit elem_mult as well.
20897         
20898         * metadata.h (MonoMarshalSpec): Add comment.
20900         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20902         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20903         num_elem to -1 if not given.
20905         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20907         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20908         given values.
20910 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20912         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20914 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20916         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20918         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20920 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20922         * object.c: generalized the reference bitmap creation
20923         and added hooks for the new GC.
20924         * class-internals.c: removed the gc_bitmap field from MonoClass.
20926 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20928         * domain.c: help the compiler to produce better code
20929         in mono_jit_info_table_find ().
20931 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20933         * object.c: make all allocations look typed.
20935 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20937         * socket-io.c: load Mono.Posix if it's not loaded already
20938         (fixes bug#73033).
20940 2005-02-24  Martin Baulig  <martin@ximian.com>
20942         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20943         * reflection.c (dup_type): Likewise.
20945 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20947         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20948         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20950 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20952         * domain.c, threads.c, object-internals.h: make the critical thread
20953         local vars use the fast access mode (even when we're compiled in
20954         a lib). Provide accessors to be used by the jit during codegen.
20956 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20958         * appdomain.c: Changed hook functios behavior to include
20959         support for the reflection only assemblies. Some icalls were changed
20960         to support the mentioned assemblies too. Signatures of static methods
20961         try_assembly_resolve and real_load now have an additional parameter:
20962         refonly.
20964         * assembly.c: General changes to mono_assembly_ methods to support
20965         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20966         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20967         suffix, to support an additional gbool parameter to specify whether
20968         the assembli is reflection only or not. Created some new hook functions 
20969         to add support for reflection only assemblies. Signatures of static 
20970         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20971         have now an additional parameter: refonly.
20973         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20974         indicating whether the assembly is reflection only or not.
20976         * exception.c: Add mono_get_exception_invalid_operation.
20978         * icall.c: Throw an InvalidOperationException when trying to invoke
20979         a property/method/event, or trying to set/get the value of a field.
20980         Also add an icall to retrieve the ref_only flag to the
20981         MonoReflectionAssembly.
20983 2005-02-23  Chris Toshok  <toshok@ximian.com>
20985         Part of fix for #72827.
20986         * mono-debug.c (mono_debug_add_method): add lexical block data to
20987         the info we write.  Kind of a hack at the moment - we copy the
20988         lexical block info from the MonoDebugMethodInfo to the
20989         MonoDebugMethodJitInfo here, before writing it.
20990         (mono_debug_read_method): read the lexical block info.
20992         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20994         * debug-mono-symfile.h: add lexical block support.
20996         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20997         support.
20999 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21001         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21003         * object.c (mono_runtime_free_method): Call mono_free_method () and
21004         put the TODOs there.
21006         * loader.c (mono_free_method): Free up most memory allocated for 
21007         dynamic methods.
21009 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21011         * reflection.c: properly flag a Type argument to a
21012         named custom attr value (bug #72248).
21014 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21016         * reflection.c: reduce code duplication in named custom
21017         attribute encoding.
21019 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21021         * reflection.c: properly encode custom attrs of type object
21022         (bug #72649).
21024 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21026         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21028 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21030         * socket-io.c: load System.dll if it's not loaded already
21031         (bug #72850 and #70477).
21033 2005-02-21  Martin Baulig  <martin@ximian.com>
21035         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21036         generic instances.
21038 2005-02-21  Martin Baulig  <martin@ximian.com>
21040         * reflection.c (mono_image_build_metadata): We also need to
21041         "fixup" the MethodImpl table after we computed the final method
21042         indices.  Call fixup_methodimpl() to do that.
21043         (fixup_methodimpl): New private method.
21045 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21047         * assembly.c: special case mscorlib.dll (bug#72536),
21048         patch from Carlos Alberto Cortez.
21050 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21052         * threads-types.h threads.c: Fix build bustage.
21054         * threads.c: Use a union for long<->double conversions.
21056         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21057         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21059         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21060         containing the checkpoint call with NOT_TAKEN.
21061         
21062         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21063         checkpoint before pushing the arguments, so they won't have to be
21064         spilled to stack.
21066 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21068         * domain.c, assembly.c, domain-internals.h: make some data
21069         const and relocation-free.
21071 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21073         * object.c, appdomain.c, class-internals.h: introduce the
21074         MonoClassRuntimeInfo structure to hold the info needed to
21075         use a class at runtime. Made mono_class_vtable() lock-free
21076         for all the appdomains.
21078 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21080         * metadata-internals.h, image.c: introduce a per-image mempool to
21081         be used for memory that has the same lifetime as the image.
21083 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21085         * domain.c: In mono_init_internal(), instead of selecting the first
21086         runtime version supported by an executable, get a list of all
21087         supported versions and select the one for which an mscorlib exists
21088         (since even if the runtime supports a given version, it doesn't mean
21089         that the framework for that version is installed).
21090         Modified get_runtimes_from_exe to support this behavior.
21091         In supported_runtimes, added information about additional system
21092         assembly versions.
21093         
21094         * assembly.c: Added support for more than one system assembly version
21095         per runtime version. Updated the assembly list.
21096         In mono_assembly_remap_version, removed the initial version check,
21097         since we don't know to which version we need to compare until we
21098         get the version set on which the assembly is based.
21099         Moved the code for loading corlib into the new method
21100         mono_assembly_load_corlib(), so it can be used by the initialization
21101         code.
21102         
21103         * domain-internals.h: Updated data structures and added declaration
21104         for mono_assembly_load_corlib.
21106 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21108         * reflection.c (resolve_object): Fix the creation of the signature in 
21109         the SignatureHelper case.
21111         * assembly.c (mono_assembly_remap_version): Fix binary search.
21112         
21113 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21115         * class.c: Added inheritance check when a method is overloaded (from a
21116         virtual method or when implementing an interface) and when a class is
21117         inherited. Added functions to set a failure for a class and to 
21118         retreive the exception from a failure.
21119         * class-internals.h: Added fields to MonoClass to keep the exception
21120         information status for inheritance (or other exceptions) to be thrown
21121         later (i.e. not at load time).
21122         * object.c: Throw the inheritance SecurityException when a type is to 
21123         be created with either class or method inheritance violations.
21124         * reflection.c|h: Fix when getting declsec from a class. Removed 
21125         unrequired code for class. Improved sanity in parameter naming.
21126         * security-manager.c|h: Added functions to check for class and method
21127         inheritance.
21129 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21131         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21132         and has_finalize in dynamic types as well.
21134 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21136         * culture-info-table.h : fixed currency format for en-GB (and so on).
21138 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21140         * gc.c: ensure the GC handles never have 0 as a value.
21142 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21144         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21145         a pointer to a struct to unmanaged code. Fixes #72625.
21147 2005-02-16  Martin Baulig  <martin@ximian.com>
21149         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21151 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21153         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21155 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21157         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21159         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21160         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21161         etc. Fixes #71471.
21163         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21165         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21167 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21169         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21170         changes to make the current context a field in MonoThread.
21172 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21174         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21175         the last change.
21176         
21177         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21178         extracted from mono_marshal_get_native_wrapper.
21180         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21181         to create wrappers around native functions.
21183         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21184         delegates for arbitrary function pointers. Fixes #71472.
21186 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21188         * threads.c: cleaned up the code a little.
21190 2005-02-15  Martin Baulig  <martin@ximian.com>
21192         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21193         the data table.
21195         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21196         allocate larger chunks if needed.
21198 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21200         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21201         in by mistake.
21203 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21205         * domain.c: keep the domains in an array and ensure the domain ids
21206         are kept small, so they can be used as indexes to domain-specific data
21207         with a small memory overhead.
21209 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21211         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21213 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21215         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21217 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21219         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21221         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21222         values.
21224         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21225         
21226 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21228         * domain-internals.h: add the hashtable here.
21230         * class-internals.h: Remove `info' from MonoMethod
21232         * domain.c: Add a new hashtable, jit_trampoline_hash
21234 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21236         * object.c: don't set the value of static fields
21237         (fixes bug#72494).
21239 2005-02-11  Martin Baulig  <martin@ximian.com>
21241         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21242         (mono_debug_add_method): Silently ignore the method if it's too big.
21243         (mono_debug_add_type): Likewise.
21245 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21247         * threads.c, appdomain.c: remove #ifdefs from the code.
21249 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21251         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21252         common security informations. This allows us to stay in unmanaged code
21253         when doing LinkDemand and it's special cases (except for the first 
21254         time for initialization). The flags a very much used with --security.
21255         * reflection.c|h: Added code to get declarative security attributes 
21256         for LinkDemand and InheritanceDemand. This required to refactor the
21257         existing code for Demand.
21258         * security-manager.c|h: Added new method fields for the special cases
21259         of LinkDemand.
21261 2005-02-10  Martin Baulig  <martin@ximian.com>
21263         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21264         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21266 2005-02-10  Martin Baulig  <martin@ximian.com>
21268         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21269         debugging code; this is almost a complete rewrite.
21271         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21273 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21275         * domain.c, object.h: expose mono_string_equal () and 
21276         mono_string_hash ().
21277         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21278         it's implemented in managed code.
21280 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21282         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21283         lo leak objects between appdomains.
21285 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21287         * assembly.c: old compilers compilation fix from 
21288         robertj@gmx.net (Robert Jordan).
21290 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21292         * class-internals.h: Little reminder for the future.
21294         * debug-helpers.c: Fix up wrapper_type_names
21296 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21298         * image.c, metadata-internals.h: when loading an image from a file,
21299         mmap all of it and use the same codepaths as when using a
21300         in-memory image: the code is simpler and we use less memory
21301         (both writable and readonly).
21303 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21305         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21306         API to alloc runtime data structures that need to be tracked by the
21307         GC and contain pointers.
21308         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21309         make the code more readable and eventually use a different GC.
21311 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21313         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21314         for out arguments.
21315         
21316 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21318         * object.c: In release_type_locks(), don't release the cctor lock
21319         if it has already been released. This fixes a crash in the
21320         thread5 test.
21322 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21324         * gc.c, marshal.c, icall.c: register a delegate for finalization
21325         only when the native function pointer has been allocated for it.
21327 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21329         * object.c: cleaned up some code, allocate objects that are
21330         pointer free with the atomic malloc variant. Allocate memory
21331         for static data from the mempool if it's pointer-free.
21332         Allocate the bounds array at the end of the array data, when needed.
21333         * object-internals.h, object.h: move a private function in a private
21334         header.
21335         * class.c: handle missing case in tracking references in fields.
21337 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21339         * class.c, class-internals.h: keep track if a type has
21340         reference fields in either the instance or static fields.
21342 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21344         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21345         and renamed to MonoRuntimeInfo. Added fields to store the expected
21346         framework assembly version. Changed mono_get_framework_version and
21347         mono_get_runtime_version for a single mono_get_runtime_info method.
21348         
21349         * assembly.c: Added method to remap system assembly versions to the
21350         current executing runtime version. Removed old mapping code.
21351         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21352         
21353         * icall.c, reflection.c: Track api changes.
21355 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21357         * loader.c (method_from_memberref): Improve error reporting,
21358         produce the class name instead of the typeref/typedef index. 
21360 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21362         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21364 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21366         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21367         stdcall and charset name mangling.  Reorganize the code and add
21368         some tracing stuff.
21370 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21372         * monodiet.c: More iters!
21374         * marshal.c: Iter usage.
21376         * icall.c: Iter usage.
21378         * object.c: Use iters.
21380         * debug-helpers.c: More iters
21382 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21384         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21385         under win32.
21387 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21389         * mono-debug-debugger.c: use iters
21391         * class.c, class-internals.h: mono_class_setup_events is static
21392         now
21394         * All callers: use iters
21396 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21398         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21399         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21401 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21403         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21405         * marshal.h: Add prototypes for ldfld/stfld_remote.
21407         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21408         this is called during startup.
21409         
21410 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21412         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21413         MonoThreadsSync struct private in monitor.c. Changed the way
21414         MonoThreadsSync is allocated so it's faster and there is no
21415         need to keep track of it with a finalizer and it uses less memory.
21416         This also finally allows us to allocate mono objects as ptrfree when
21417         there are no reference fields.
21419 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21421         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21422         disappearing link to the GC interface and use them to simplify
21423         the gchandles code.
21425 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21427         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21428         stfld_remote which call mono_load/store_field_new. This allows methods
21429         calling ldfld/stfld wrappers to be AOTed.
21431         * console-io.c: Include sys/filio.h under solaris.
21432         
21433         * console-io.c: Include curses.h if needed correctly.
21435 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21436         
21437         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21438         method->klass as well.
21440         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21442         * class.c (mono_class_init): Switch on lazy initialization of 
21443         methods.
21445         * class.c (mono_class_get_finalizer): Handle the case when the 
21446         finalizer is inherited.
21448 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21450         * console-io.c: <curses.h> is needed by term.h on solaris.
21452 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21454         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21455         mono_class_setup_properties where possible. Remove this ftn from
21456         the header file, and make it static.
21458 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21460         * loader.c: Add missing setup_... call.
21462         * class.c: Add missing setup_... calls.
21464         * class.c (mono_class_init): Switch on lazy initialization of 
21465         the generic vtable.
21466         
21467         * class.c (mono_class_init): Fix generics broken by the recent changes.
21469         * monodiet.c (handle_type): Add missing setup_... calls.
21471         * class.c: Back out garbage in previous patch.
21472         
21473         * class.c: Add missing setup_... calls.
21475         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21476         mono_class_setup_methods () if possible.
21478         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21480         * class-internals.h (MonoCachedClassInfo): New structure.
21482         * class.c: Initialize properties and events fields of MonoClass lazily.
21484         * class.c: Add infrastructure for lazily initializing the methods and
21485         vtable fields of MonoClass. Not yet used.
21487         * class.c (mono_class_get_finalizer): New helper function.
21489         * class.c: Add infrastructure for loading some class related data from
21490         an AOT file.
21492         * object.c: Add infrastructure for initializing the vtable from data
21493         in the AOT file.
21495         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21497         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21498         appropriate initialization function before accessing parts of the
21499         MonoClass structure.
21501         * marshal.c: Fix warnings.
21502         
21503         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21505         * mono-debug-debugger.c (get_exception_message): Use 
21506         mono_class_get_method_from_name_flags ().
21508 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21510         * reflection.c, appdomain.c: Replace a few manual searches that
21511         Zoltan missed. (Paolo approved this part of my initial patch).
21513 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21515         * profiler.c: disable recording statistical events at report time.
21517 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21519         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21520         to byteswap arrays of enum values, too (bug #72080).
21522 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21524         * appdomain.c (set_domain_search_path): Allow this to be called if
21525         domain->setup is not yet set.
21527         * loader.c (mono_method_get_index): New helper function.
21529         * loader.c reflection.c: Use mono_method_get_index ().
21531         * class.c (mono_class_get_method_from_name_flags): New helper method.
21533         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21534         this.
21536         * class.c (mono_class_get_cctor): New helper method.
21538         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21539         mono_class_get_method () to look up methods.
21541 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21543         * console-io.c: Fix the build, this should work on Windows.
21545 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21547         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21548         be set to null to keep things valid
21550 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21552         * icall.c: added Console 2.0 icalls.
21553         * Makefile.am: added console-io.[ch]
21554         * console-io.[ch]: internal calls for Console 2.0 API.
21556 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21558         * class.c: make sure we consider all the interfaces
21559         when calculating max_interface_id (bug found by
21560         Jeroen Frijters running ikvm).
21562 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21564         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21565         valuetype fields to null.
21567         * object.c (set_value): Ditto. Fixes #71669.    
21569 2005-01-31  Martin Baulig  <martin@ximian.com>
21571         * metadata.c (mono_metadata_has_generic_params): New public
21572         function; checks whether something is a generic method.
21574 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21576         * appdomain.c: fix infinite recursion when adding assemblies.
21578 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21580         * object.c: Fix small typo to return all items for Environment.
21581         GetCommandLineArgs.
21583 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21585         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21586         reflection.c: more domain and assembly-unload related fixes
21587         and memory leaks plugs.
21589 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21591         * 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.
21593 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21595         * loader.c (mono_method_signature): Make this method lazy
21596         (mono_get_method_from_token): Don't computate the signature here.
21598         Doing this saves quite a bit of memory. I got 90 kb on starting up
21599         monodoc. It should also save some disk reads on startup.
21601         * *: MonoMethod->signature might be NULL now. You *MUST* use
21602         mono_method_signature.
21604 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21606         * object.c (mono_runtime_get_main_args): Return an array from the
21607         current domain here. Fixes #71938.
21609 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21611         * monitor.c: formatting changes to comply with the
21612         mono coding style and remove #ifdefs from the code.
21614 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21616         * metadata.c, private.h: remove some unneeded data
21617         and use a more compact representation for table schemas.
21619 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21621         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21622         to get a better distribution in hash tables.
21623         * *.c: use mono_aligned_addr_hash() where appropriate.
21624         * assembly.c: make var static.
21626 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21628         * domain-internals.h: Put MonoJitInfo on a diet.
21630         * domain.c: Fix a warning.
21632 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21634         * gc.c: rework the gc handles code to reuse handles
21635         when freed.
21637 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21639         * domain.c: fixed long standing bug in mono_string_equal() which
21640         was brought to light with the ldstr changes.
21642 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21644         * reflection.c: Remove warning by adding missing include for marshal.h
21646 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21648         * domain.c, object.c: change the ldstr_table to hold
21649         MonoString* as keys: makes the runtime isinterned lookup
21650         faster and simplifies memory management.
21652 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21654         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21655         possible to add imperative security checks before calling the icall.
21656         * reflection.c: Return security attributes on the original MonoMethod
21657         (and not the wrapped one). This fix permissions on icalls.
21659 2005-01-25  Dick Porter  <dick@ximian.com>
21661         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21662         the check for mktime() support actually test the mktime() return
21663         value.  "Fixes" bug 71682, though the output is still different to
21664         MS.
21666 2005-01-25  Martin Baulig  <martin@ximian.com>
21668         * class.c (mono_class_is_assignable_from): Make this work for
21669         generic instances.
21671 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21673         * marshal.c (mono_string_utf8_to_builder)
21674         (mono_string_builder_to_utf16): We might not have ownership of the
21675         string. In thise case, we need to create a new buffer.
21677         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21678         be null, in which case, use the default capacity.
21680 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21682         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21683         GC events to the profiler.
21685 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21687         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21688         if you don't want the GC to run.
21690 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21692         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21693         start providing a GC API and keeping different implementations in
21694         their own file.
21695         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21697 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21699         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21700         mmap rather than allocating a huge buffer.
21701         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21702         above.
21704 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21706         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21707         and CheckExecutionRights.
21708         * reflection.c|h: Keep the index of the declarative security to be 
21709         used, instead of the pointer, when AOT compiler is used. Also add 
21710         class initialization when requesting demands.
21711         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21712         CheckExecutionRights. Both properties are now FALSE by default, and
21713         unmodifiable, unless the --security option is used.
21715 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21717         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21718         reflection.c: properly refcount images and assemblies, many leaks fixed.
21720 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21722         * threadpool.c: increase the timeout for threads in the thread pool to
21723         10s.  Fixes bug #67159.
21725 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21727         * class-internals.h: Sun's compiler insists on explicit
21728         signed on bit fields to handle then correctly.
21730 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21732         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21733         Make the size of the array fit only the number of invalid path
21734         chars that we have.
21736         * class.c (_mono_class_get): Improve the error reporting when a
21737         class referenced is not found, to assist debugging. 
21739 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21741         * threads.c: fix off-by-one error.
21742         * domain.c: free data allocated in the domain.
21744 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21746         * reflection.c (mono_method_body_get_object): Fill out exception info
21747         as well.
21749         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21750         structure.
21751         
21752 2005-01-19  Martin Baulig  <martin@ximian.com>
21754         * loader.c (mono_get_method_constrained): Make this work again.
21756 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21758         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21759         guint16 to match the managed side.
21761         * reflection.c (mono_reflection_body_get_object): Fill out local
21762         variables array.
21764         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21765         as well.
21767         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21768         'local_var_sig_token'.
21770 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21772         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21773         System.Drawing.
21775         * reflection.c (mono_method_body_get_object): Handle abstract and
21776         runtime methods.
21778 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21780         * marshal.c, loader.c, class-internals.h, reflection.c:
21781         store the emthod data for a wrapper in an array instead of a list.
21783 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21785         * marshal.c: change the code to allocate memory more
21786         conservatively for method wrappers.
21788 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21790         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21791         fields from MonoClass to the marshal info structure where they belong.
21793 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21795         * class.c, object.c, class-internals.h, marshal.c: rearrange
21796         some fields and tweak some types to lower memory usage.
21798 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21800         * threads.c (signal_thread_state_change): Handle the case when the
21801         target thread is the current thread.
21803         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21805         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21806         emit_ptr_to_object_conv. 
21808         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21809         marshalling. Fixes #71352.
21811 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21813         * metadata.h, blob.h: move table enum to blob.h so it can be included
21814         in any header.
21815         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21816         cut the size of MonoImage/MonoDynamicImage.
21818 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21820         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21822 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21824         * reflection.c, reflection.h, icall.c: add a function to check
21825         if an attribute type is defined for a metadata object.
21827 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21829         * object-internals.h: Added some needed fields from StringBuilder class.
21830         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21832 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21834         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21835         threads before shutting down the runtime.
21837         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21839 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21841         * object-internal.h, threads.c: implement stacksize and 
21842         parameterized thread start functionality (requires
21843         matching corlib). Marked broken code for later removal.
21845 2005-01-12  Martin Baulig  <martin@ximian.com>
21847         * class-internals.h (MonoGenericClass): Moved the `initialized'
21848         flag to MonoDynamicGenericClass, removed `init_pending'.
21849         (MonoGenericInst): Added `is_reference' flag.
21851 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21853         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21854         inside the MSDOS header. Fixes #71201.
21856         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21857         gc thread.
21858         (mono_domain_finalize): Ditto.
21860 2005-01-12  Martin Baulig  <martin@ximian.com>
21862         * class.c (mono_get_shared_generic_class): Use the cache for
21863         non-dynamic generic classes.
21865         * class-internals.h (mono_class_create_generic_2): Removed
21866         function prototype, this function is now static inside class.c.
21868         * class.c (mono_class_create_generic_2): Made this static, only
21869         call it from mono_class_init() and mono_class_setup_parent().
21870         (collect_implemented_interfaces_aux): Call mono_class_init() on
21871         the interfaces we collect.
21872         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21874 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21876         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21877         it a real thread handle.
21879         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21880         MonoJitExceptionInfo, since each catch clause needs its own variable.
21881         
21882 2005-01-11  Dick Porter  <dick@ximian.com>
21884         * image.c (mono_pe_file_open): New variant on mono_image_open()
21885         that does not set up the CLI metadata; used for FileVersionInfo so
21886         it can get the data for windows binaries too.
21887         
21888         * process.c (process_read_string_block): Don't read off the end of
21889         the StringTable block.
21891         These both fix bug 70766.
21893 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21895         * gc.c: set some fields to NULL at GC cleanup time.
21896         * threads.c: if we quit the main thread, call exit ().
21898 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21900         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21902 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21904         * threads.h, threads.c, object.c: added accessor and settor for
21905         main_thread. Handle it specially when exiting from it: wait
21906         for other foreground threads to exit.
21908 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21910         * process.c, verify.c: remove some bloat.
21912 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21914         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21915         the calling convention to cdecl under win32.
21917 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21919         * object.c (mono_object_get_size): New function to get the size of
21920         an object instance.
21922         * profiler.c (simple_allocation): Use above.
21924 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21926         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21927         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21928         get an appdomain by it's id and we can't assume the root's id is 0).
21929         * domain-internals.h: Change the function prototype to match.
21930         * icall.c: Change the icall table for AppDomain.
21932 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21934         * locales.c (string_invariant_compare_char): Only compute
21935         GUnicodeTypes in the case where we need them.  Test for ordinality
21936         first and return if so.
21938         From the commit:
21940                 /*
21941                  * FIXME: here we must use the information from c1type and c2type
21942                  * to find out the proper collation, even on the InvariantCulture, the
21943                  * sorting is not done by computing the unicode values, but their
21944                  * actual sort order.
21945                  */
21947 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21949         * loader.c: for P/Invoke methods, allow the "Internal" shared
21950         library name to refer to the calling process symbol namespace.
21952 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21954         * Makefile.am: Add the security manager to the build.
21955         * security-manager.c|h: New. Initialization of the security manager.
21957 2005-01-07  Dick Porter  <dick@ximian.com>
21959         * threads.c: 
21960         * monitor.c: Update thread state during Monitor and WaitHandle
21961         waits.  Fixes bug 71031.
21963 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21965         * reflection.c (property_encode_signature): Correctly handle when the
21966         property has no methods.
21968 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21970         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21971         
21972         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21973         fields from mb, not rmb. Fixes #71017.
21975         * marshal.c (emit_ptr_to_str_conv): Add support for 
21976         ByValTStr -> string conversion. Fixes #71015.
21978         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21980         * mempool.c (mono_mempool_contains_addr): New helper function.
21982 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21984         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21985         HasSematics encoded fields.
21986         
21987         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21988         invalid string marshalling.
21990         * metadata.c: Fix warnings.
21991         
21992 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21994         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21995         profiler support.
21997 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21999         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22000         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22001         tests.
22003 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22005         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22006         so methods containing these can be AOTed.
22008 2005-01-03  Martin Baulig  <martin@ximian.com>
22010         * loader.c (find_method): Removed the hack for generic instances.
22011         (method_from_memberref): If our parent is a generic instance, pass
22012         its generic type definition to find_method() and then inflate the
22013         method.
22014         (mono_get_method_constrained): Pass the generic type definition to
22015         find_method() and inflate the method later.
22017         * class-internals.h (MonoStats): Added `generic_class_count'.
22019         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22020         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22022         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22023         generic type definitions.
22025 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22027         * loader.c icall.c: Fix warnings.
22029 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22031         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22032         blittable types. Fixes #70864.
22034 2004-12-29  Martin Baulig  <martin@ximian.com>
22036         * icall.c
22037         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22039         * reflection.c (mono_method_get_object): Create a
22040         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22041         call mono_get_inflated_method().
22043         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22045 2004-12-27  Martin Baulig  <martin@ximian.com>
22047         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22048         (MonoMethodInflated): Added `inflated' field.
22050         * class.c (mono_class_inflate_generic_method): Don't really
22051         inflate the method here; just set the `is_inflated' flag in the
22052         MonoMethod.
22053         (mono_class_get_inflated_method): Actually inflate the method here
22054         if it's not already inflated; we use the MonoMethodInflated's new
22055         `inflated' field as a cache.
22057 2004-12-26  Martin Baulig  <martin@ximian.com>
22059         * class.c
22060         (inflate_generic_class): Moved some code out of inflate_generic_type().
22061         (mono_class_inflate_generic_method): If we're already inflated,
22062         inflate the context and use the declaring method; ie. make sure
22063         the declaring method of an inflated method is always the generic
22064         method definition.
22065         (mono_class_create_from_typedef): Create
22066         `class->generic_container->context->gclass'.
22068 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22070         * metadata-internals.h, marshal.c, reflection.c: More
22071         MonoGHashTable->GHashTable.
22073         * domain-internals.h, class.c: Change MonoGHashTable's into
22074         GHashTables for some cases where no gc stuff is used
22076         All users: update apis
22078 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22080         * metadata.c (builtin_types): Make this `const'. Makes this get
22081         put into the shareable section.
22082         (mono_metadata_init): Casts to make gcc happy.
22084 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22086         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22088 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22090         * icall.c: Added an internal call to retrieve the position and length
22091         of assembly-level declarative security attributes (RequestMinimum, 
22092         RequestOptional and RequestRefuse). This is used by the Assembly class
22093         to re-create the corresponding permission sets.
22095 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22097         * marshal.c: fix the stelemref wrapper to be type correct
22098         (and faster).
22100 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22102         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22103         to do key & 0x7fffffff. Hashtable already does this. It just
22104         results in longer code.
22106 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22108         * appdomain.c: Bump corlib version.
22109         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22110         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22111         * reflection.c|h: Add functions to get declarative security infos
22112         (blob position and length) for assemblies, classes and methods.
22114 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22116         * reflection.c: sort the constant table (bug #70693).
22118 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22120         * object-internals.h, threads.c, domain.c: add accessors for
22121         the MonoThread and MonoDomain tls keys.
22123 2004-12-18  Martin Baulig  <martin@ximian.com>
22125         * class.c (inflate_generic_type): If we're inflating a generic
22126         instance, set `ngclass->context->container = context->container';
22127         ie. the container we inflated into.
22129         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22130         inflate_generic_type() changes.
22132 2004-12-17  Martin Baulig  <martin@ximian.com>
22134         * class-internals.h
22135         (MonoGenericClass): Replaced `MonoType *generic_type' with
22136         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22137         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22138         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22140 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22142         * exception.c (mono_exception_from_token): New helper function.
22144 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22146         * assembly.c (mono_assembly_load_with_partial_name): Call 
22147         mono_assembly_loaded before invoking the preload hooks. Fixes
22148         #70564.
22150         * object-internals.h (MonoThread): Change culture_info and 
22151         ui_culture_info into an array.
22153         * threads.c: Cache culture info objects from more than one appdomain.
22155         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22156         current UI culture.
22158 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22160         * threads.h threads.c appdomain.c: Clear the culture_info field of
22161         all threads during unloading if they point to an object in the dying
22162         appdomain.
22164 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22166         * culture-info.h (TextInfoEntry): New struct
22167         * object-internals.h: sync with managed
22168         * locales.c: fill the `text_info_data' field
22169         * culture-info-tables.h: update
22171 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22173         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22174         collector.
22176 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22178         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22179         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22181 2004-12-12  Martin Baulig  <martin@ximian.com>
22183         * mono-debug-debugger.c (write_type): If we're an enum and the
22184         builtin types have already been initialized, call mono_class_init().
22186 2004-12-11  Martin Baulig  <martin@ximian.com>
22188         * metadata.c (mono_metadata_load_generic_params): Added
22189         `MonoGenericContainer *parent_container' argument; automatically
22190         compute `container->is_method'; pass the correct owner to
22191         get_constraints().      
22193         * reflection.c (compare_genericparam): Sort the GenericParam table
22194         according to increasing owners. 
22196 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22198         * profiler.c: allow disabling the default profiler.
22200 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22202         * decimal.c, icall.c: allow disabling System.Decimal support.
22204 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22206         * reflection.c: Add support for null attribute arguments.
22208 2004-12-09  Martin Baulig  <martin@ximian.com>
22210         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22211         names to get rid of compiler warnings.
22213 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22215         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22216         mono_marshal_load_type_info (). Fixes #69625.
22217         (mono_marshal_get_ptr_to_struct): Likewise.
22219 2004-12-08  Martin Baulig  <martin@ximian.com>
22221         * mono-debug.h: Bumped version number to 47.
22223         * mono-debug-debugger.c
22224         (mono_debugger_event_handler, mono_debugger_event): Take two
22225         guint64 arguments insteed of a gpointer and a guint32.  
22227 2004-12-08  Martin Baulig  <martin@ximian.com>
22229         * debug-mono-symfile.h
22230         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22231         `address' to `native_offset'.
22233 2004-12-08  Martin Baulig  <martin@ximian.com>
22235         * class.c (mono_class_create_from_typespec): Only inflate if we
22236         either have `context->gclass' or `context->gmethod'.
22238 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22240         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22242         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22244         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22246         * reflection.c (mono_assembly_get_object): Remove the workaround put
22247         in for the release.
22248         
22249         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22251         * appdomain.c: Bump corlib version.
22253         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22254         be visible in other appdomains.
22256 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22258         * threads.c: Interlocked inc and dec for longs were messed up,
22259         use a KISS based impl for this. Fixes 70234
22261 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22263         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22265 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22267         * icall.c: fix to follow policy not to allow struct
22268         arguments in icalls.
22270 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22272         * process.c: make the patch that handles spaces in file paths work
22273         on mono/windows too.
22275 2004-12-06  Martin Baulig  <martin@ximian.com>
22277         * class.c (mono_class_create_generic): Call
22278         mono_class_setup_supertypes() if we're dynamic.
22279         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22281 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22283         * object-internals.h: Add new fields to MonoThread.
22285         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22287         * icall.c threads-types.h threads.c: Add new icalls.
22289         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22291         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22292         managed side.
22294         * appdomain.c: Bump corlib version.
22296         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22297         internal assemblies. Fixes #69181.
22299 2004-12-05  Martin Baulig  <martin@ximian.com>
22301         * class.c (mono_class_inflate_generic_signature): Make this a
22302         no-op if `context' is NULL or we don't have any type parameters;
22303         also copy `sentinelpos'.        
22305 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22307         * image.c: Add unbox_wrapper_cache.
22309         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22311         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22312         function generator.
22313         
22314         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22315         Fixes #70173.
22317         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22318         
22319 2004-12-04  Martin Baulig  <martin@ximian.com>
22321         * loader.c (mono_method_get_signature_full): New public function;
22322         like mono_method_get_signature(), but with an additional
22323         `MonoGenericContext *' argument.
22325         * class.c (mono_class_inflate_generic_signature): Formerly known
22326         as inflate_generic_signature(); make this public.
22328 2004-12-04  Martin Baulig  <martin@ximian.com>
22330         * metadata.c
22331         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22332         instead of a `MonoGenericContainer *'.  
22333         (mono_metadata_parse_array_full): Likewise.
22334         (mono_metadata_parse_signature_full): Likewise.
22335         (mono_metadata_parse_method_signature_full): Likewise.
22336         (mono_metadata_parse_generic_inst): Likewise.
22337         (mono_metadata_parse_generic_param): Likewise.
22338         (mono_metadata_parse_mh_full): Likewise.
22339         (mono_type_create_from_typespec_full): Likewise.
22341 2004-12-03  Martin Baulig  <martin@ximian.com>
22343         * class-internals.h (MonoGenericContainer): Replaced the
22344         `MonoGenericContext * pointer with a `MonoGenericContext'
22345         structure and made it the first element.
22347 2004-12-03  Martin Baulig  <martin@ximian.com>
22349         * class.c
22350         (inflate_generic_type): Set the `context->container' when creating
22351         a new MonoGenericContext.
22352         (mono_class_inflate_generic_method): Likewise.
22353         (mono_class_create_from_typespec): Just use `context->container'
22354         to get the container.
22356         * loader.c (method_from_methodspec): Set `context->parent' from
22357         `context->container' - and if that's a method container, use its
22358         parent.  Also set the `context->container' when creating a new
22359         MonoGenericContext.
22360         (mono_get_method_from_token): Use just `context->container' to get
22361         the container.
22363         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22364         `gclass->context->container'.
22366         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22367         the `context->container' when creating a new MonoGenericContext.
22369 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22371         * reflection.c (compare_genericparam): Sort params with identical
22372         owner by their number. Fixes gen-111 on sparc.
22374 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22376         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22377         around the domain changes.
22379         * appdomain.c (mono_domain_unload): Handle the case when the thread
22380         calling Unload is itself being aborted during unloading. Fixes #70022.
22382         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22384         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22385         checkpoint_func as an icall so it gets a wrapper.
22386         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22387         in the cross-appdomain wrappers too.
22389         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22391         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22393         * reflection.c: Fix some memory leaks.
22394         
22395 2004-12-02  Martin Baulig  <martin@ximian.com>
22397         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22399         * metadata.c (generic_class_cache): New static hashtable.
22400         (mono_metadata_lookup_generic_class): New public method.
22402 2004-12-02  Martin Baulig  <martin@ximian.com>
22404         * class.c (mono_class_create_from_typedef): Call
22405         mono_class_setup_parent() and mono_class_create_mono_type() before
22406         parsing the interfaces.
22408 2004-12-02  Martin Baulig  <martin@ximian.com>
22410         * metadata.c (generic_inst_cache): New static hashtable.
22411         (mono_metadata_lookup_generic_inst): New public function.
22412         (mono_metadata_inflate_generic_inst): New public function.
22413         (mono_metadata_parse_generic_inst): New public function.
22414         (do_mono_metadata_parse_generic_class): Use the new
22415         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22416         since this'll also use the cache.
22418         * reflection.c (mono_reflection_bind_generic_method_parameters):
22419         Use mono_metadata_lookup_generic_inst() to use the new cache.
22421         * class.c (inflate_mono_type): Use
22422         mono_metadata_inflate_generic_inst() to inflate a generic
22423         instance; this'll also use the new cache.
22425         * loader.c (method_from_methodspec): Use
22426         mono_metadata_parse_generic_inst() and
22427         mono_metadata_inflate_generic_inst() rather than parsing it
22428         manually, so we can use the new cache.
22430 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22432         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22433         the wait times out.
22435 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22437         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22438         iter->args based on whether parameters are passed in registers (i.e.
22439         MONO_ARCH_REGPARMS is defined)
22441 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22443         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22444         the exception message. Fixes #70070.
22445         (method_from_methodspec): Fix warnings.
22447 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22449         * process.c: (complete_path) return the path quoted
22451 2004-12-01  Martin Baulig  <martin@ximian.com>
22453         * class-internals.h (MonoGenericInst): New structure.
22454         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22455         `is_open' with `MonoGenericInst *inst'.
22456         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22457         `is_open' with `MonoGenericInst *inst'.
22459 2004-11-30  Martin Baulig  <martin@ximian.com>
22461         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22463         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22464         to `generic_class_cache'.
22466         * metadata.c
22467         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22468         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22469         (mono_generic_inst_is_valuetype): Renamed to
22470         mono_generic_class_is_valuetype().
22472         * class-internals.h
22473         (MonoGenericInst): Renamed to MonoGenericClass.
22474         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22475         (MonoClass): Renamed `generic_inst' to `generic_class'.
22476         (MonoGenericContext): Renamed `ginst' to `gclass'.
22478         * object-internals.h
22479         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22481         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22482         mono_reflection_generic_class_initialize().
22484         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22485         now known as "System.Reflection.MonoGenericClass".
22486         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22488 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22490         * class-internals.h: Added a flag field to MonoClass to cache the
22491         declarative security attributes actions associated with the class.
22492         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22493         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22494         applicable to the JITted method.
22495         * reflection.c|h: Added functions to extract (as flags) which security
22496         actions are available (declaratively) for a method, class or assembly.
22497         * metadata.c|h: Added functions to search the declarative security
22498         table in the metadata.
22499         
22500 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22502         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22503         EXPORTEDTYPES are already in the class name cache, so there is no
22504         need to add extra code here to look at them. Just removes a bit of
22505         cruft.
22507         (ves_icall_System_Environment_get_TickCount): No need for #if
22508         WINDOWS. We already have the code in io-layer.
22510 2004-11-28  Martin Baulig  <martin@ximian.com>
22512         * loader.c
22513         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22514         Fixes gen-112.cs.
22516 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22518         * assembly.c (do_mono_assembly_open): Instead of having a
22519         conditional WITH_BUNDLE, incorporate support for bundles here, by
22520         having a global `bundles' variable holding a pointer to the actual
22521         bundles. 
22523         (mono_register_bundled_assemblies): New API call used by the
22524         bundle code. 
22526         See mkbundle.1 for details.
22527         
22528 2004-11-27  Martin Baulig  <martin@ximian.com>
22530         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22531         the vtable for generic methods.
22533 2004-11-26  Martin Baulig  <martin@ximian.com>
22535         * metadata.c
22536         (mono_metadata_generic_method_hash): New public function.
22537         (mono_metadata_generic_method_equal): Likewise.
22539         * class-internals.h
22540         (MonoGenericContainer): Added `GHashTable *method_hash'.
22542         * reflection.c (ReflectionMethodBuilder): Added
22543         `MonoGenericContainer *generic_container'.
22544         (reflection_methodbuilder_to_mono_method): Don't create a new
22545         MonoGenericContainer each time we're called.
22546         (mono_reflection_bind_generic_method_parameters): Use
22547         `container->method_hash' to cache the results so we don't create a
22548         different method if we're called several times with the same
22549         arguments.
22551         * loader.c (method_from_methodspec): Use the new
22552         `container->method_hash' here, too.
22554 2004-11-26  Martin Baulig  <martin@ximian.com>
22556         * class.c (inflate_generic_signature): Correctly compute
22557         `res->has_type_parameters'.
22558         (mono_class_vtable): Use the `has_type_parameters' flag to
22559         determine whether we're a generic method.
22561         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22563 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22565         * object.c (mono_runtime_run_main): Fix a small memory leak.
22567 2004-11-25  Martin Baulig  <martin@ximian.com>
22569         * class.c (set_generic_param_owner): Fixed the loop.
22571 2004-11-25  Martin Baulig  <martin@ximian.com>
22573         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22574         generic methods.
22576 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22578         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22579         names. Fixes #69787.
22581 2004-11-24  Martin Baulig  <martin@ximian.com>
22583         * class.c (mono_class_create_generic_2): If we don't have a
22584         `ginst->parent', inflate `gklass->parent' to get our parent.
22586 2004-11-24  Martin Baulig  <martin@ximian.com>
22588         * reflection.c (compare_genericparam): Correctly sort the
22589         GenericParam table; fixes #69779.
22591 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22593         * reflection.c: When writing a PE file, don't create a huge
22594         buffer in memory. Just write the arrays we have to the file.
22595         This reduces memory usage.
22597         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22598         globally.
22600 2004-11-17  Martin Baulig  <martin@ximian.com>
22602         * class.c (mono_class_init): Don't setup `class->parent' for
22603         dynamic instances; moved this to mono_class_generic_2().
22604         (mono_class_create_generic): Also set `klass->inited' for dynamic
22605         generic instances.
22606         (mono_class_create_generic_2): Don't do anything for dynamic
22607         generic instances.  Set `klass->parent' here and also call
22608         mono_class_setup_parent() here. 
22610         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22611         `MonoType *parent' argument; set `ginst->parent' before calling
22612         mono_class_create_generic_2(), so we set the correct parent.
22614 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22616         * reflection.c: allow getting attributes from ModuleBuilder
22617         (used by ikvm).
22619 2004-11-17  Martin Baulig  <martin@ximian.com>
22621         * class.c (mono_class_create_from_typedef): If a type parameter is
22622         inherited from an outer class, set its owner to that class.
22624 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22626         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22627           for (int*) written size. This fixes bug #69592.
22629 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22631         * icall.c: Added IsAuthenticodePresnet internal call.
22632         * image.c|h: New function that check a MonoImage for an Authenticode
22633         signature in the certificate PE data directory.
22634         * security.c|h: New internal call to ask the runtime if an 
22635         Authenticode signature seems referenced in the PE header.
22637 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22639         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22641         * reflection.c (mono_image_create_pefile): Free the assembly streams
22642         after writing out the assembly file.
22644         * object.c (mono_runtime_run_main): Fix small memory leak.
22646         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22647         property access modifiers. Fixes #69389.
22649 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22651         * domain.c, object.c, object-internals.h, domain-internals.h,
22652         object.h, marshal.c: keep dynamic code info per domain.
22654 2004-11-15  Martin Baulig  <martin@ximian.com>
22656         * class.c (mono_type_get_name_recurse): Put type arguments in
22657         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22658         see bug #68387.
22660 2004-11-15  Martin Baulig  <martin@ximian.com>
22662         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22663         (mono_class_setup_vtable): When computing `the_cname' for a
22664         generic instance, don't include the namespace since we'd otherwise
22665         add it twice.
22667 2004-11-15  Martin Baulig  <martin@ximian.com>
22669         * class.c (mono_class_create_generic): Changed return type to void.
22670         (mono_class_create_generic_2): New public function; setup
22671         `class->method', `class->field' and `class->interfaces' here
22672         instead of in mono_class_init().
22674         * class.h (mono_class_create_generic): Moved to class-internals.h.
22676 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22678         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22679         rather than writing to memory, write to this file. Right now,
22680         we are just writting into a buffer, and copying that. However
22681         we can avoid the buffer later.
22683         (mono_dynamic_stream_reset): new function
22685         * icall.c, object-internals.h: update for the above.
22687 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22689         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22690         have been using gc'd memory. First it is slower, unlikely
22691         the comment in the source code said, secondly, it increases
22692         our footprint to do it in the gc.
22694         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22695         the method so that it does not have to copy to managed code.
22697 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22699         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22701 2004-11-12  Martin Baulig  <martin@localhost>
22703         * reflection.c (mono_image_create_token): Allow generic method
22704         definitions here, since they may appear in an `.override'; see
22705         gen-98/gen-99 for an example.
22707 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22709         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22710         #69365.
22712         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22713         descriptive.
22715 2004-11-11  Martin Baulig  <martin@ximian.com>
22717         * class.c (mono_class_setup_vtable): In an explicit interface
22718         implementation, the method name now includes the arity.
22720 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22722         * object.c (mono_array_full_copy): Fix warning.
22724 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22726         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22727         mono_class_get_method_from_name() instead.
22728         
22729         * class-internals.h: Added two new types of wrappers. 
22730         Added MonoRemotingTarget enum. Added new trampoline function type, which
22731         takes an additional MonoRemotingTarget value as parameter, so it is
22732         possible to request a trampoline for a specific target.
22733         
22734         * class.c: Added new mono_class_get_method_from_name() method.
22735         
22736         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22737         general remoting sinks and one specific for cross domain calls.
22738         
22739         * debug-helpers.c: Added new wrapper names.
22740         
22741         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22742         of a remote class.
22743         
22744         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22745         
22746         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22747         with several other methods (mono_marshal_get_xappdomain_dispatch,
22748         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22749         and others) can generate a fast remoting wrapper for cross domain calls.
22750         More information can be found in docs/remoting.
22751         Other changes: Removed mono_find_method_by_name, and used
22752         mono_class_get_method_from_name instead.
22753         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22754         is stored in the remoting invoke hashtable.
22755         
22756         * marshal.h: published the new method for getting the xdomain wrapper,
22757         and also added a method for getting the adequate wrapper for a given
22758         method and target.
22759         
22760         * object-internals.h, object.c: Added a couple of methods for capying and
22761         cloning arrays.
22762         Modified mono_install_remoting_trampoline, which takes the new remoting
22763         trampoline that has a remoting target as parameter.
22764         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22765         will return the most suitable vtable for the target.
22766         Added mono_remote_class_vtable, which returns the vtable of a remote class
22767         (which can be the normal remoting vtable or the xdomain vtable).
22768         
22769         * threads.c: the xdomain invoke and dispatch wrappers must also be
22770         protected against interruptions.
22772 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22774         * icall.c: use memmove in BlockCopyInternal when the source and
22775         destination arrays are the same.
22777 2004-11-09  Martin Baulig  <martin@ximian.com>
22779         * class-internals.h (MonoGenericContainer): Removed `method' and
22780         `signature', replaced them with `is_method' and `is_signature'
22781         flags.  Added `context'.
22783         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22784         instead of a `MonoGenericContainer *'.
22786         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22787         for dynamic type parameters.
22788         (mono_metadata_load_generic_params): Setup `container->context'.
22790         * reflection.c (mono_reflection_setup_generic_class): Setup
22791         `tb->generic_container->context'.
22792         (do_mono_reflection_bind_generic_parameters): Use
22793         mono_class_inflate_generic_type() to correctly inflate types,
22794         rather than using our own hack just for MONO_TYPE_VAR.
22796 2004-11-09  Martin Baulig  <martin@ximian.com>
22798         * class.c (mono_class_inflate_generic_method): Small fix; don't
22799         crash here.
22801         * icall.c
22802         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22803         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22804         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22805         (ves_icall_Type_BindGenericParameters): Likewise.
22806         (ves_icall_Type_get_IsGenericInstance): Likewise.
22807         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22808         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22809         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22810         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22812 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22814         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22815         assembly versions and public key tokens. Fixes #69113.
22817 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22819         * metadata.c: fix bug introduced with the type cache changes
22820         on 2004-11-06.
22822 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22824         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22825         the MonoClass pointer instead of the token in exception clauses.
22826         * reflection.c: updates for the above and make the code not depend
22827         on the structure of MonoExceptionClause.
22829 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22831         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22832         Add support for dynamic assemblies. Fixes #69114.
22834         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22836 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22838         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22839         since most only those methods use it. the code member of
22840         MonoMethodPInvoke was dead, so that can be removed too. Also,
22841         remove inline_count (again, not used), and move slot so that it
22842         can share bits with some other flags. This saves 8 bytes in the
22843         structure and gives us about 50 kb back for mcs helloworld.cs
22845         * *.[ch]: Do naming changes for the above.
22847         * loader.c (mono_method_get_header): Lazily init the header
22848         on first access.
22849         (mono_get_method_from_token): don't init the header here
22850         (mono_free_method): the header may never be allocated
22852         Overall, this saves 150 kb of unmanaged allocations
22853         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22854         memory at runtime.
22855         
22856         * loader.c, loader.h (mono_method_get_header): new accessor.
22858         * *.[ch]: use the above method. Prepares us to lazily load
22859         the header.
22861         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22862         three warnings, which are actual bugs (see 69206).
22864         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22865         unused. Saves a cool 4 bytes / method.
22867 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22869         * metadata.c (builtin_types): Add types for System.Object here.
22870         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22871         for a class or valuetype from klass->this_arg or klass->byval_arg.
22873         On mcs for a hello world, this gets us down from 21836 MonoType's
22874         to 14560.
22876         (mono_metadata_free_type): Account for the above change.
22878 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22880         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22881         exception instead of asserting if name is null.
22882         (ves_icall_System_AppDomain_GetData): Ditto.
22884 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22886         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22887         EnumBuilder.
22889         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22890         Return NULL when the domain does not have entry_assembly set.
22892         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22893         Add a 'resource_modules' argument.
22894         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22896         * reflection.c (mono_reflection_create_runtime_class): Move setting
22897         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22898         for enums too.
22900         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22901         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22902         Throw an ArgumentNullException if 'ptr' is null.
22904         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22905         assemblies here. Fixes #69020.
22907 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22909         * reflection.c (build_compressed_metadata): Fix the previous patch for
22910         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22911         the stack.
22913 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22915         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22916         the cultures is false. Fixes #69090.
22918         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22919         detected by valgrind.
22920         
22921         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22922         TypeResolve multiple times for the same type. Fixes #65577.
22924 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22926         * marshal.c: Avoid using ldftn to call managed functions. It is
22927         much slower than just a call.
22929         * reflection.c (mono_module_get_object): free the basename we
22930         allocate here from glib.
22931         
22932         * reflection.c (ensure_runtime_vtable): make sure to free
22933         overrides.  Also, we were allocating an array of MonoMethod not an
22934         array of MonoMethod*.
22936         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22938         * image.c (mono_image_close): free image->guid here.
22940 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22942         * reflection.c: Fix some spec conformance issues with the PE file
22943         structures so mcs compiled apps run on the Net 2.0 beta.
22945 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22947         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22948         Implement this. Fixes #67264.
22950         * debug-helpers.h debug-helpers.c marshal.c: Move 
22951         mono_find_method_by_name to debug-helpers.c.
22953 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22955         * object.c (mono_release_type_locks): type_initialization_hash is
22956         a GHashTable.
22958         * reflection.c object.c object-internals.h: Fix warnings.
22960         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22961         without accessors. Fixes #61561.
22963         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22964         application base from the root domain if not set. Fixes #65641.
22965         (mono_runtime_init): Fix warning.
22967 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22969         * appdomain.c: call mono_thread_pool_init.
22970         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22971         of worker threads based on the number of CPUs and the environment
22972         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22973         for non-windows (windows) systems.
22975 2004-10-27  Chris Toshok  <toshok@ximian.com>
22977         * mono-debug-debugger.c (write_class): don't call mono_class_init
22978         here, as even with the check for (!klass->init_pending), we get
22979         into a situation where we're hitting cycles in class
22980         initialization.  Fixes #68816.
22982 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22984         * image.c: Avoid overwriting values in the loaded_images_hash when an
22985         assembly is loaded multiple times. Fixes #61152.
22987         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22988         so multiple satellite assemblies for the same name can be loaded.
22989         Fixes #68259.
22991         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22992         not NULL.
22994         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22995         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22997         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22998         pending finalizers are not invoked after the appdomain has been 
22999         unloaded. Fixes #67862.
23001 2004-10-22  Martin Baulig  <martin@ximian.com>
23003         * mono-debug-debugger.c
23004         (mono_debugger_runtime_invoke): Don't box valuetypes.
23006 2004-10-22  Chris Toshok  <toshok@ximian.com>
23008         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23009         don't hide private methods.
23011 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23013         * icall.c: Allows the runtime to "share" (when known) the public key
23014         token of an assembly. This avoid the need to recalculate the token 
23015         (from the public key) in managed code.
23017 2004-10-21  Chris Toshok  <toshok@ximian.com>
23019         * debug-helpers.c (append_class_name): argh, revert last patch.
23020         
23021 2004-10-21  Chris Toshok  <toshok@ximian.com>
23023         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23024         not '/', so that it matches what the debugger uses to look up
23025         methods.
23027 2004-10-21  Martin Baulig  <martin@ximian.com>
23029         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23030         public method; this is called each time an exception is thrown and
23031         allows the debugger to use exception catch points.
23033 2004-10-21  Martin Baulig  <martin@ximian.com>
23035         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23036         the stack pointer and the exception object in some struct and pass
23037         that to the debugger.
23039 2004-10-21  Chris Toshok  <toshok@ximian.com>
23041         * mono-debug-debugger.c (do_write_class): add instance/static
23042         event support.  We don't expose "raise" or "other" yet.
23043         (event_is_static): new method.
23045 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23047         * mono-debug-debugger.c
23048         (mono_debugger_handle_exception): Remove
23049         bogus return value for fussy compilers.
23051 2004-10-20  Martin Baulig  <martin@ximian.com>
23053         * mono-debug-debugger.c
23054         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23055         (mono_debugger_handled_exception): Likewise.
23057 2004-10-20  Martin Baulig  <martin@ximian.com>
23059         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23060         MONO_DEBUGGER_EVENT_EXCEPTION.
23062         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23063         public function to send the debugger a notification for an
23064         exception and inform it about a catch/finally clause.
23066 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23068         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23069         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23070         fix 2.95 build. 
23072         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23074 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23076         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23077         marshalled as [In,Out]. Fixes #58325.
23079 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23081         * reflection.c (mono_method_body_get_object): Implement some fields.
23083 2004-10-12  Martin Baulig  <martin@ximian.com>
23085         * reflection.c (mono_reflection_bind_generic_parameters): Small
23086         fix, correctly retrieve our parent from a generic instance.
23088 2004-10-12  Martin Baulig  <martin@ximian.com>
23090         * metadata.c (mono_metadata_generic_param_equal): We always have
23091         an owner.
23093         * class.c
23094         (mono_class_from_generic_parameter): We need to have an owner.
23095         (my_mono_class_from_generic_parameter): Likewise.
23097         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23098         mono_reflection_create_generic_class() and added a new
23099         mono_reflection_setup_generic_class().  
23100         (mono_reflection_initialize_generic_param): If we're a nested
23101         generic type and inherited from the containing class, set our
23102         owner to the outer class.
23104 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23106         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23108         * reflection.c (mono_method_body_get_object): New function to create
23109         a MethodBody object.
23111         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23113 2004-10-11  Martin Baulig  <martin@ximian.com>
23115         * metadata.c (_mono_metadata_type_equal): Renamed to
23116         do_mono_metadata_type_equal() and made static.
23118 2004-10-11  Martin Baulig  <martin@ximian.com>
23120         * appdomain.c: Bump corlib version number to 28.
23122 2004-10-10  Martin Baulig  <martin@ximian.com>
23124         * class-internals.h
23125         (MonoGenericInst): Added `MonoGenericContainer *container'.
23126         (MonoGenericMethod): Likewise.
23127         (MonoGenericContext): Likewise.
23128         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23130         * metadata.c
23131         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23132         (do_mono_metadata_parse_generic_inst): Likewise.
23133         (mono_metadata_parse_type_full): New public method.  This is the actual
23134         mono_metadata_parse_type() implementation - with an additional
23135         `MonoGenericContainer *' argument.
23136         (mono_metadata_parse_array_full): Likewise.
23137         (mono_metadata_parse_signature_full): Likewise.
23138         (mono_metadata_parse_method_signature_full): Likewise.
23139         (mono_metadata_parse_mh_full): Likewise.
23140         (mono_type_create_from_typespec): Likewise.
23141         (mono_metadata_interfaces_from_typedef_full): New public method;
23142         this is similar to the other _full() methods, but we take a
23143         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23144         (mono_metadata_parse_generic_param): Take an additional
23145         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23146         from that container.
23147         (mono_metadata_generic_param_equal): New static method to compare
23148         two type parameters.
23149         (_mono_metadata_type_equal): New static method; takes an
23150         additional `gboolean signature_only' argument - if true, we don't
23151         compare the owners of generic parameters.
23152         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23153         with a TRUE argument - do a signature-only comparision.
23155         * loader.c: Use the new _full() methods and pass the
23156         MonoGenericContainer to them.
23158         * object-internals.h (MonoReflectionTypeBuilder): Added
23159         `MonoGenericContainer *generic_container' field.
23160         (MonoReflectionMethodBuilder): Likewise.
23162 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23164         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23165         case initial images of dynamic assemblies.
23167         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23169         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23171         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23172         length of event->other array.
23173         (typebuilder_setup_events): Ditto.
23175         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23176         'assembly_by_name' and add an 'assemblies' list.
23178         * assembly.h assembly.c: Add a new search hook for determining whenever
23179         an assembly is already loaded. Use this instead of searching in the
23180         loaded_assemblies list.
23182         * domain.c appdomain.c: Implement the new search hook so loaded 
23183         assemblies are now scoped by appdomain. Fixes #67727.
23185 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23187         * threads.c (mono_thread_attach): Initialize synch_lock field so
23188         mono_thread_detach works again.
23190         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23191         'lib' too. Fixes #63130.
23193 2004-10-06  Jackson Harper  <jackson@ximian.com>
23195         * culture-info-tables.h: regenerated.
23197 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23199         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23200         implemented by other interfaces in the result. Fixes #65764.
23201         
23202         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23203         Handle unloadable modules without crashing.
23205         * image.c (load_modules): Revert the previous patch since modules must
23206         have a fixed index inside the array.
23207         
23208         * image.c (load_modules): Don't include native modules in the modules
23209         array.
23211 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23213         * reflection.h: Add param_defaults field.
23215         * reflection.c: Add support for parameter defaults in dynamic methods.
23216         Fixes #64595.
23218         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23219         an empty string when a type has no namespace. Fixes #64230.
23221 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23223         * tabledefs.h: Added "internal" security actions to support non-CAS
23224         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23225         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23227 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23229         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23230         constructor of abstract class. Fixes #61689.
23232 2004-10-04  Martin Baulig  <martin@ximian.com>
23234         * class-internals.h (MonoGenericContainer): New type.
23235         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23236         `MonoGenericContainer *generic_container'.
23237         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23238         `MonoGenericContainer *generic_container'.
23240         * metadata.c (mono_metadata_load_generic_params): Return a
23241         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23242         removed the `num' argument.
23244 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23246         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23247         for dynamic images.
23249         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23250         machine fields.
23252         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23254         * reflection.c: Save pe_kind and machine values into the generated
23255         image file.
23257         * appdomain.c: Bump corlib version number.
23259         * object-internals.h: Reorganize layout of LocalBuilder.
23261         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23262         New helper function.
23264         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23265         created MonoType for dynamic types. Fixes #66180.
23267 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23269         * threadpool.c: the ares hashtable needs a critical section around it.
23270         this prevents some nasty segfaults
23272 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23274         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23275         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23276         bug 67324).
23277         
23278 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23280         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23281         
23282 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23284         * image.c: Always canonicalize image file names, to avoid loading
23285         the same assembly twice when referenced using a relative path.
23287 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23289         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23291         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23293         * marshal.c: Fix warnings.
23295 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23297         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23298         attempting to marshal the delegate_trampoline as the method_addr.
23299         This patch has a static hashtable of marshalled delegates so that 
23300         we can map delegate_trampoline addresses back to delegates.  This
23301         allows a delegate passed to managed code to be passed back into native
23302         code.  Fixes #67039
23304 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23306         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23308         * reflection.c (method_encode_code): Align method headers properly.
23309         Fixes #66025.
23311 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23313         * marshal.c: In the runtime invoke wrapper, reset the abort
23314         exception if it is cached. This avoids the automatic rethrowal of 
23315         the exception after the catch of the wrapper. Also check for pending
23316         interruptions before calling the managed method. This is done using
23317         the new method emit_thread_force_interrupt_checkpoint, since the
23318         normal checkpoint method is ignored when running the invoke wrapper.
23319         * object.c: If the abort exception is rethrown, set the abort_exc
23320         field of the thread, so it will be rethrown aftere every catch.
23321         * threadpool.c: Only run an interruption checkpoint if what has been
23322         requested is a stop of the thread (aborts will be ignored).
23323         * threads.c: By default, a thread will now never be interrumped while
23324         running the runtime invoke wrapper (this ensures that runtime_invoke
23325         will always return to the caller if an exception pointer is provided).
23326         There is a new special method mono_thread_force_interruption_checkpoint()
23327         to force an interruption checkpoint even if running a protected
23328         wrapper, which is used by the same runtime invoke wrapper to do a check
23329         at a safe point.
23331 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23333         * object.c, object-internals.h: Implemented mono_release_type_locks,
23334         which releases the cctor locks held by a thread.
23335         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23336         by a thread. Added mono_thread_exit() method to be used to safely stop
23337         a thread.
23339 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23341         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23342         Move null check before dereference.  Avoid indexing beyond the end
23343         of the 'modules' array.
23345 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23347         * metadata-internals.h (MonoImage): Add module_count field.
23348         * image.c (load_modules): Set image->module_count.
23349         (mono_image_load_file_for_image): Use image->module_count.
23350         * reflection.c (mono_image_load_module): Append to image->modules array 
23351         of dynamic assembly.
23352         (mono_module_get_object): Fix loop to actually increment index.
23353         Use image->module_count.
23354         * assembly.c (mono_assembly_load_references): Use image->module_count.
23355         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23356         Likewise.
23358 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23360         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23361         Avoid assert on generic types.
23363 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23365         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23367         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23369         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23370         function to convert a MarshalSpec structure to its managed counterpart.
23372         * reflection.c: Fix warnings.
23373         
23374         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23375         field.
23377         * icall.c (mono_create_icall_signature): Fix build.
23379 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23381         * icall.c: Add MakePointType icall.
23383         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23384         warnings.
23386 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23388         * threadpool.c: reuse allocated slots in the queue.
23390 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23392         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23394         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23396         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23397         previous change.
23399         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23400         ThrowOnUnmappableChar.
23402         * icall.c (ves_icall_Type_GetPacking): New icall.
23404 2004-09-24  Martin Baulig  <martin@ximian.com>
23406         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23408 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23410         * appdomain.c:
23411         (mono_domain_set): allow setting a domain that is being unloaded.
23412         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23413         being unloaded.
23415 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23417         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23418         the GetCustomAttributes icall.
23420 2004-09-23  Martin Baulig  <martin@ximian.com>
23422         * object-internals.h (MonoReflectionGenericParam): Replaced
23423         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23424         with `guint32 attrs'.
23426 2004-09-23  Martin Baulig  <martin@ximian.com>
23428         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23430 2004-09-23  Martin Baulig  <martin@ximian.com>
23432         * object-internals.h (GenericParameterAttributes): New enum.
23434 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23436         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23437         
23438         * class.c (init_events): Fill out event->other field.
23440         * class.c: Fix warnings.
23442         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23444 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23446         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23447         walk which doesn't supply the IL offset.
23449 2004-09-22  Martin Baulig  <martin@ximian.com>
23451         * reflection.c (mono_reflection_setup_internal_class): If we're
23452         System.ValueType, System.Object or System.Enum, set
23453         `klass->instance_size' and create the vtable.
23454         (mono_reflection_create_internal_class): If we're an enum type,
23455         get the base class from our current corlib.
23457 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23459         * reflection.h (MonoResolveTokenError): New type.
23461         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23462         icall.
23464         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23466 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23468         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23469         Support also calling constructors, but only for already allocated objects.
23471 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23473         * reflection.c (type_get_qualified_name): If the klass is null
23474         return the typename to avoid a NullRefEx.
23475         (encode_cattr_value): Get the qualified name of the boxed type,
23476         not the underlying enumtype.  Fixes #62984.
23478 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23480         * marshal.c: Fix problems with previous checkin.
23482 2004-09-21    <vargaz@freemail.hu>
23484         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23485         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23487         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23489 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23491         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23492         should only return a type for pointers, arrays, and passbyref types.
23493         Fixes bug #63841.
23495 2004-09-21  Martin Baulig  <martin@ximian.com>
23497         * domain.c (mono_debugger_check_runtime_version): New public
23498         function.
23500         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23502 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23504         * reflection.c: Added missing sort to the declarative security 
23505         attributes table. MS implementation stops seeing the attributes if the
23506         token number regress in the table (as shown by ildasm and permview).
23508 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23510         * object-internals.h (MonoReflectionModule): Add 'token' field.
23511         
23512         * reflection.c (mono_reflection_get_token): Add support for Module
23513         and Assembly.
23514         (mono_module_get_object): Set 'token' field.
23515         (mono_module_file_get_object): Set 'token' field.
23517         * icall.c: Add new Assembly and Module icalls.
23519         * appdomain.c: Bump corlib version.
23521 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23523         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23524         tokens of metadata objects.
23526         * reflection.h reflection.c (mono_reflection_get_token): New function
23527         to obtain the token of a metadata object.
23529         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23531 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23533         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23534         
23535         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23537 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23539         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23540         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23541         AssemblyBuilder to access the permissions set in the class lib.
23542         * reflection.c: Added security attributes encoding step in 
23543         mono_image_build_metadata.
23544         * tabledefs.h: Added new security actions defined in 2.0:
23545         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23547 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23549         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23550         macro parameter.
23552 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23554         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23555           finalized. There where random SIGSEVs at program termination, when
23556           an object being finalized was trying to do a string comparison and
23557           the current culture was already finalized.
23559 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23561         * threads.c: call thread_cleanup before finishing the thread if we get
23562         there.
23564 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23566         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23567         assemblies from the parent. Fixes #65665.
23569 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23571         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23572         modifiers.
23574 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23576         * reflection.h: add prototype for mono_get_dbnull_object
23577         * reflection.c: add prototypes for get_default_param_value_blobs 
23578         and mono_get_object_from_blob for fussier compilers
23580 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23582         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23583         false deadlock checks in class initialization.
23585 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23587         * image.c (mono_image_addref): Fix comment.
23589         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23590         possible.
23592 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23594         * reflection.c (mono_param_get_objects): Modified to return
23595         ParameterInfo.DefaultValue object.
23597         (get_default_param_value_blobs):
23598         (mono_get_object_from_blob):
23599         (mono_get_dbnull_object): New helper routines. 
23601         * object.c (mono_get_constant_value_from_blob): New helper routine
23602         carved out from get_default_field_value ()
23604         * object-internals.h (mono_get_constant_value_from_blob): Added
23605         function declaration.
23607 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23609         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23610         referenced assemblies. Fixes #62135.
23612         * exception.h exception.c (mono_get_exception_file_not_found2): New
23613         helper function.
23615 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23617         * class.h class.c: Add mono_type_get_underlying_type ().
23619 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23621         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23622         Fix GetTypes() to support dynamically created assemblies.
23624 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23626         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23627         
23628         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23629         previous patch.
23631         * reflection.h reflection.c loader.c: Allow dynamic construction of
23632         pinvoke methods. Fixes #65571.
23633         
23634         * reflection.c (mono_reflection_get_type): Revert previous change since
23635         it causes regressions.
23637 2004-09-08  Martin Baulig  <martin@ximian.com>
23639         * class.c (class_compute_field_layout): Don't call
23640         mono_class_layout_fields() for open generic instances.
23642 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23643         * threads.c appdomain.c: fix typo in GC macro
23645 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23647         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23648         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23650 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23652         * image.c (mono_image_close): Applied patch from 
23653         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23654         assembly is loaded multiple times from data.
23655         
23656         * image.c (mono_image_open): Fix warning.
23658 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23660         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23661         once. Fixes #58334.
23662         
23663         * reflection.c (mono_reflection_create_runtime_class): Initialize
23664         klass->nested_classes. Fixes #61224.
23666 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23668         * threads.c: sched_yield() on exit, to allow threads to quit.
23670 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23672         * object.c (mono_unhandled_exception): Remove leftover debug code.
23674 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23676         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23678 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23680         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23681         
23682         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23684 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23686         * marshal.c (emit_marshal_array): Null terminate string arrays.
23687         
23688         * marshal.c (raise_auto_layout_exception): Fix warning.
23690         * reflection.c (mono_param_get_objects): Initialize the default value
23691         with DBNull.Value, not null. Fixes #62123.
23693 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23695         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23696         throw an exception with a cute explanation.
23698 2004-09-06  Dick Porter  <dick@ximian.com>
23700         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23701         Close the new process's thread handle, as we don't use it.  The
23702         handle stays around forever otherwise.
23704 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23706         * object.c (arith_overflow): Fix warning.
23708         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23709         calling conventions in method refs. Fixes #65352.
23711         * reflection.c: Fix warnings.
23713 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23715         * icall.c: Add a new icall for Array.Clear
23717 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23719         * object.c: When allocating an array, we have to throw
23720         an overflow exception if any of the lengths are < 0.
23722 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23724         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23725         properly. Also move implementation of string array marshalling to 
23726         managed code. Fixes #42316.
23728 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23730         * assembly.c: provide more information when loading an assembly fails.
23732 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23734         * filewatcher.c: don't expect the development fam package to be
23735         installed.
23737 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23739         * marshal.c: Make a copy of the signature cookie since it will be
23740         freed by the caller.
23741         
23742         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23744         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23746         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23747         marshal specs.
23749         * marshal.c: More refactoring.
23750         
23751         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23752         smaller functions.
23754 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23756         * object.c: In mono_message_invoke, fill the output parameter array after
23757           calling the managed method (it was done before the call). This fixes
23758           bug #59299.
23760 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23762         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23763         as well.
23765 2004-09-02  Martin Baulig  <martin@ximian.com>
23767         * class.c (mono_class_instance_size): Don't allow generic type
23768         definitions or open generic instances.
23769         (mono_class_array_element_size): If we're a value type, call
23770         mono_class_instance_size() on the original class.
23772         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23773         handle generic instances.
23775         * mono-debug-debugger.c (write_type): Handle generic instances
23776         like classes.
23778 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23780         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23781         the allocation request fails. Fixes #65089.
23783         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23784         
23785         * object.c (mono_runtime_free_method): New function to free a dynamic
23786         method.
23788         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23789         delegate trampoline.
23791         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23792         with hasthis as dynamic,
23794         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23796         * domain.c (mono_jit_info_table_remove): New function to remove an
23797         entry from the jit info table.
23799         * class-internals.h (MonoMethod): Add 'dynamic' field.
23801         * loader.c: Fix warnings.
23803 2004-09-01  Martin Baulig  <martin@ximian.com>
23805         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23806         instead of mono_debugger_lock() because the latter one is a no-op
23807         unless running in the debugger.
23809 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23811         * class.c (class_compute_field_layout): Classes with auto-layout or
23812         reference fields are not blittable.
23813         
23814 2004-09-01  Dick Porter  <dick@ximian.com>
23816         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23817         mono_image_get_filename() to get the assembly location.
23819         * icall.c:
23820         * metadata.h: Fix compile warnings
23822 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23824         * class.c (class_compute_field_layout): System.Object is blittable.
23826         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23827         as in/out. Fixes #59909.
23829 2004-09-01  Martin Baulig  <martin@ximian.com>
23831         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23832         mono_metadata_generic_inst_is_valuetype() if we're a generic
23833         instance to check whether our underlying type is a reference type.
23835 2004-09-01  Martin Baulig  <martin@ximian.com>
23837         * metadata.c (mono_type_size): If we're a generic instance, call
23838         mono_class_value_size() for value types.
23840 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23842         * marshal.c: Implement more custom marshalling functionality. Fixes
23843         #64915.
23845 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23847         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23849 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23851         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23853         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23855         * icall.c: Fix some warnings.
23857         * threads.c (abort_appdomain_thread): Fix unref errors.
23858         (mono_thread_current): Fix THREAD_DEBUG define.
23860 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23862         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23864         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23866 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23868         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23869         string arrays.
23871 2004-08-28  Martin Baulig  <martin@ximian.com>
23873         * metadata.c
23874         (mono_metadata_generic_inst_is_valuetype): New public function.
23876         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23877         mono_metadata_generic_inst_is_valuetype() if we're a generic
23878         instance to check whether our underlying type is a valuetype.
23880 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23882         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23883         #63768.
23885 2004-08-25  Martin Baulig  <martin@ximian.com>
23887         * loader.c (mono_get_method_from_token): Abstract methods can also
23888         be generic and thus have type parameters.
23890         * metadata-internals.h
23891         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23893         * reflection.c (mono_image_get_generic_param_info): Don't create a
23894         metadata row, just add an entry to the `gen_params' array.
23895         (build_compressed_metadata): Sort the `gen_params' array and then
23896         actually create the metadata.
23898 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23900         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23902 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23904         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23906 2004-08-24  Martin Baulig  <martin@ximian.com>
23908         * class.cs (mono_class_is_subclass_of): Like an interface, a
23909         generic instance also derives from System.Object.
23911 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23913         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23914         custom modifiers to be in any order. Fixes #61990.
23916 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23918         * object.c: Register mono_object_new_fast icall.
23919         
23920         * object.c (mono_class_get_allocation_ftn): Return to calling
23921         mono_object_new_fast, since it seems faster to compute the object 
23922         size in unmanaged code than passing it as a parameter.
23924         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23926         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23927         this function with Boehm as the oom handler, so we don't have to check
23928         the result of GC_malloc.
23930         * object.c: Remove checks for oom.
23932         * object.h object.c (mono_class_get_allocation_ftn): New function to
23933         return the icall which can be used to allocate an instance of a given
23934         class. 
23936         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23938         * class-internals.h: Add 'enabled' field.
23940 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23942         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23944 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23945         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23946         value 0x0010.
23948 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23950         * appdomain.c: use the Tls function for appdomain too,
23951         at Zoltan's request. Actually return in mono_context_get
23953         * appdomain.c, profiler.c, threads.c: use __thread
23955 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23957         * appdomain.c threads.c: Call GC_CreateThread on windows.
23959         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23960         multiple libraries since this don't work on windows.
23962 2004-08-18  Martin Baulig  <martin@ximian.com>
23964         * class-internals.h
23965         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23966         MonoMethodHeader.
23968         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23969         MonoMethodNormal since we also need it for abstract and interface
23970         methods.
23972         * reflection.c
23973         (build_compressed_metadata): Sort the GenericParam table.
23974         (mono_image_create_token): Added `gboolean create_methodspec'
23975         argument; this is false when generating a MethodImpl token.
23976         (reflection_methodbuilder_to_mono_method): Abstract and interface
23977         methods may also have generic parameters.
23979 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23981         * appdomain.c: thread local alloc
23983 2004-08-17  Martin Baulig  <martin@ximian.com>
23985         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23987         * icall.c
23988         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23989         argument.
23991         * class.c (mono_type_get_full_name): New public function.
23992         (mono_type_get_name): Don't include the type arguments.
23994 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23996         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23997         for inclusion into the mono executable.
23999 2004-08-16  Martin Baulig  <martin@ximian.com>
24001         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24002         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24004 2004-08-14  Martin Baulig  <martin@ximian.com>
24006         * class.c (dup_type): Also copy the `byref' field.
24008 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24010         * reflection.c (create_dynamic_mono_image): Revert the last change 
24011         since it breaks bootstrap.
24013 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24015         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24017         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24018         not free them with g_free.
24020 2004-08-11  Martin Baulig  <martin@ximian.com>
24022         * reflection.c (mono_reflection_setup_internal_class): Also call
24023         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24025 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24027         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24028         called during default (first) AppDomain creation. Keep track of
24029         Evidence when loading assemblies.
24031 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24033         * opcodes.c, opcodes.h: reduce runtime relocations.
24035 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24037         * culture-info.h, locales.c: fixes and chages to sue the new
24038         optimized format of the locale data.
24039         * culture-info-tables.h: regenerated.
24041 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24042         
24043         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24045 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24047         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24048         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24049         * domain-internals.h: icall declaration.
24050         * icall.c: icall registration.
24051         * object-internals.h: New fields in MonoAssembly for CAS.
24053 2004-08-05  Duncan Mak  <duncan@ximian.com>
24055         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24056         CEE_LDELEM_ANY.
24058 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24060         * reflection.c: fix to deal with object[] arrays in custom ctors
24061         (bug #62550).
24063 2004-08-05  Martin Baulig  <martin@ximian.com>
24065         * class.c (mono_class_array_element_size): Added support for
24066         generic instances and correctly handle "recursive" types.
24068 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24070         * assembly.c: Fix warnings.
24072 2004-08-04  Martin Baulig  <martin@ximian.com>
24074         * class.c
24075         (mono_type_get_name_recurse): Added `gboolean include_arity'
24076         argument specifying whether or not we should include the generic
24077         arity in the type name.
24078         (_mono_type_get_name): New static function.
24079         (mono_class_setup_vtable): If we're a generic instance, don't
24080         include the generic arity in the names of explicit method
24081         implementations.        
24083 2004-08-03  Martin Baulig  <martin@ximian.com>
24085         * class.c (mono_type_get_name_recurse): Enclose the generic type
24086         arguments in `<', '>'.
24088 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24090         * gc.c: make GC warning messages use the trace API, they are just
24091         noise to most of the users.
24093 2004-08-03  Martin Baulig  <martin@ximian.com>
24095         * debug-mono-symfile.c (read_string): Correctly read the string.
24097 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24099         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24100         
24101         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24102         icalls.
24103         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24105 2004-07-30  Martin Baulig  <martin@ximian.com>
24107         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24108         Reflect latest symbol writer changes.   
24110 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24112         * object.c: always create an object if null is passed
24113         to Invoke() where a valuetype is expected.
24115 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24117         * marshal.c (mono_marshal_init): make managed
24118         signatures match native ones better for 64bits.
24120 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24122         * appdomain.c: hack to build correctly the private bin path on windows.
24123         Fixes bug #61991.
24125 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24127         * assembly.c: Load mscorlib from the correct framework directory
24128           (mono/<version>/mscorlib.dll).
24129         * appdomain.h: Added prototypes for new functions.
24130         * internals.h: Added some prototypes.
24131         * domain.c: When initializing the runtime, get from the executable and
24132           the configuration files the runtime version that the app supports.
24133           Added support methods for reading app.exe.config. Added list of versions
24134           supported by the JIT. Added two new methods: mono_init_from_assembly,
24135           which initializes the runtime and determines the required version from
24136           the provided exe file, and mono_init_version, which initializes
24137           the runtime using the provided version.
24138         * icall.c: Get machine.config from version-specific directory.
24139         * reflection.c: When generating an image, embed the version number
24140           of the current runtime.
24142 2004-07-28  Dick Porter  <dick@ximian.com>
24144         * socket-io.c
24145         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24146         returned sockaddr size before creating the remote address object.
24147         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24148         61608.
24150 2004-07-28  Dick Porter  <dick@ximian.com>
24152         * locales.c (string_invariant_compare_char): Fix invariant char
24153         compares between upper and lower cases.  Fixes bug 61458.
24155 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24156         
24157         * marshal.c: actually cache stelem.ref wrappers.
24158         
24159 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24161         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24162         sections and remove the mono_cli_rva_map () function.
24164 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24166         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24167         by Geoff Norton (<gnorton@customerdna.com>).
24169 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24171         * class.c: fix class loads for pointer types (typeof(int) !=
24172         typeof(int*)).
24174 2004-07-27  Martin Baulig  <martin@ximian.com>
24176         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24177         reading the debugging information from an external ".mdb" file.
24179 2004-07-24  Martin Baulig  <martin@ximian.com>
24181         * reflection.c (mono_image_get_type_info): Only write a class
24182         layout entry if we actually have a size or a packing size.
24184 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24186         * reflection.c (type_get_fully_qualified_name): 
24187         insert cast to get type checking of ?: with non-gcc compilers
24189 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24191         * rand.c: use g_getenv for both lookups of
24192         MONO_EGD_SOCKET
24194 2004-07-17  Martin Baulig  <martin@ximian.com>
24196         * reflection.c (mono_reflection_bind_generic_method_parameters):
24197         Set `gmethod->reflection_info'.
24199 2004-07-17  Martin Baulig  <martin@ximian.com>
24201         * class.c (mono_class_create_from_typedef): Insert the newly
24202         created class into the hash table before computing the interfaces
24203         since we could be called recursively.
24205 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24207         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24208         function to implement stelem.ref in managed code
24209         * class-internals.h, debug-helpers.c: a new wrapper type
24210         for the above.
24212 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24214         * gc.c: allow GC handles to work even when no GC is compiled in.
24215         Fix part of bug #61134 (GetAddrOfPinnedObject).
24217 2004-07-13  Peter Williams  <peter@newton.cx>
24219         * process.c (complete_path): Make sure we don't attempt to execute
24220         directories.
24222 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24224         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24225           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24226           and will add/subtract the hour if needed
24228 2004-07-12  Martin Baulig  <martin@ximian.com>
24230         * reflection.c (mono_field_get_object): If we have
24231         `field->generic_info', take the attributes from
24232         `field->generic_info->generic_type'.    
24234 2004-07-12  Martin Baulig  <martin@ximian.com>
24236         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24237         This function must be called before initializing the runtime.
24238         (mono_debug_init_1): New function; call this after initializing
24239         the runtime, but before loading the assembly.  It tells the
24240         debugger to load corlib and the builtin types.
24242         * mono-debug-debugger.c: Did some larger changes in the debugging
24243         code; support recursive class declarations, make sure we actually
24244         add all classes.
24246 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24248         * debug-helpers.c: undo my previous patch and fixed the real issue in
24249         ../mini/exceptions-x86.c
24251 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24253         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24254         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24255         called from other .cctors.
24257 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24259         * loader.c: Removed the mono_loader_wine_init hack now that we are
24260         doing a managed version of Windows.Forms.
24262 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24264         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24265         threadpool.c, threads.c: remove static data from rootset.
24267 2004-07-09  Dick Porter  <dick@ximian.com>
24269         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24270         Don't do any more processing if the matched length was 0.  It was
24271         increasing the size of the string before.  Fixes bug 61167.
24273 2004-07-09  Dick Porter  <dick@ximian.com>
24275         * socket-io.h:
24276         * socket-io.c
24277         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24278         Add support for SO_PEERCRED if its available.
24280 2004-07-09  Peter Bartok <pbartok@novell.com>
24281         * loader.c: winelib.exe.so error message is now only displayed if
24282         MONO_DEBUG is set. To help us avoid questions when people are trying
24283         out the new Managed.Windows.Forms.
24285 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24287         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24288         for isinst and castclass wrappers.
24290         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24291         to libmetadata from the JIT, so they could be used by the marshalling
24292         code and the interpreter.
24294         * marshal.c: Register marshalling related JIT icalls here instead of
24295         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24296         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24298         * metadata.h: Remove unneeded marshalling conversions.
24300         * opcodes.c: Update for new opcodes.
24301         
24302 2004-07-08  Martin Baulig  <martin@ximian.com>
24304         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24305         (mono_debug_get_domain_data): Make this function static.
24307 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24309         * gc.c, object.h: add nice GC handle API for embedders.
24311 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24313         * reflection.c: more changes for the new api
24315         * object.c: When we reflect on a field w/ a constant value, it
24316         will not have a memory location, so we must access metadata. Also,
24317         allow easier reading of strings so that we can read them from
24318         the constant data.
24320         * class.c (mono_class_layout_fields): no need for literal fields here.
24322         * class-internals.h: api changes for const fields
24324         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24326 2004-07-06  Martin Baulig  <martin@ximian.com>
24328         * mono-debug.h: Increment version number to 44.
24330         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24331         now a gpointer, rewrote this whole method.
24333         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24334         function.  Add information about the wrapper in a new "misc table".
24336         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24337         for the new misc table.
24339 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24341         * metadata-internals.h image.c: Add a cache for helper signatures.
24343         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24345 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24347         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24348         delegates from a delegate. Fixes #61033.
24349         
24350         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24351         marshalling of stringbuilder arrays. Fixes #59900.
24353 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24355         * icall.c: Add EnumBuilder:setup_enum_type icall.
24357 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24359         * icall.c: Added a new icall for the property version of
24360         OffsetOfStringData.
24362 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24364         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24365         it has a constant size across platforms.
24367         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24368         stack trace.
24370 2004-06-29  Martin Baulig  <martin@ximian.com>
24372         * mono-debug.c (mono_debug_add_method): Protect the whole function
24373         in mono_debugger_lock(), not just parts of it.
24375 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24377         * reflection.c: make sure padding bytes in heaps are zeroed.
24379 2004-06-24  David Waite  <mass@akuma.org>
24381         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24382         image.c, loader.c, locales.c, marshal.c, metadata.c,
24383         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24384         string-icalls.c, threads.c: change to C90-style comments from C99 /
24385         C++ -style
24387 2004-06-24  Dick Porter  <dick@ximian.com>
24389         * threads.c
24390         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24391         return createdNew.  Fixes bug 60412.
24393         * threads-types.h: 
24394         * icall.c: Add createdNew parameter to CreateMutex icall
24396 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24398         * reflection.c, object-internals.h: save default value in params.
24400 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24402         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24403         no need to build a new path combining that with the application base.
24404         Fixes bug #60442.
24406 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24408         * reflection.c: fixed minor standard compliance issues.
24410 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24412         * reflection.c: fixed issue with encoding some custom attributes
24413         (arrays in properties and fields, bug #60411).
24415 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24417         * reflection.c: fix start address when copying the public key token.
24419 2004-06-23  Martin Baulig  <martin@ximian.com>
24421         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24422         the `exc' object in a static object to put it into the GC's root set.
24424 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24426         * reflection.c: make mono_reflection_setup_internal_class ()
24427         callable a second time to setup a new parent class.
24429 2004-06-23  Dick Porter  <dick@ximian.com>
24431         * threads.c: Check for WAIT_IO_COMPLETION return values.
24433 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24435         * appdomain.c: Removed the g_free on the public key token. Now copy 
24436         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24437         * assembly.c: Added public key token string value when loading 
24438         assemblies. Fix bug #60439.
24439         * icall.c: Added missing informations (like public key) in 
24440         GetReferencedAssemblies. Fix #60519.
24441         * image.h: Changed definition for public key token from const char*
24442         public_tok_value to guchar public_key_token [17];
24443         * reflection.c: Updated for changes to public key token.
24445 2004-06-22  Lluis Sanchez Gual
24447         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24448         for the field in base classes.
24450 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24452         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24453         mark headers as not supported, they are installed only for use by the
24454         debugger.
24456 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24458         * *.c, *.h: avoid namespace pollution in public headers.
24460 2004-06-21  Martin Baulig  <martin@ximian.com>
24462         * exception.c (mono_get_exception_security): It's in
24463         "System.Security", not in "System".
24465         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24466         the exception classes.
24468 2004-06-21  Martin Baulig  <martin@ximian.com>
24470         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24471         Protect the exception object from being finalized.
24473 2004-06-21  Martin Baulig  <martin@ximian.com>
24475         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24476         public function.
24478 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24480         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24481         if it was not loaded before. Fix parts of #60439.
24483 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24485         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24486         code that was broken since Ben's change: wrappers are now
24487         dependent on the method signature only again.
24489 2004-06-21  Martin Baulig  <martin@ximian.com>
24491         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24492         added interface support.
24494 2004-06-21  Martin Baulig  <martin@ximian.com>
24496         * class.c (mono_vtable_get_static_field_data): New public method.
24498 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24500         * filewatcher.c : Windows build fix to be compliant with API changes.
24502 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24504         * class.h, class.c: more accessors.
24505         * metadata.h, metadata.c: prepare for hiding MonoType and
24506         MonoMethodSignature: people should use the accessors from now on
24507         outside of the tree.
24509 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24511         * *.c, *.h: more API cleanups.
24513 2004-06-18  Jackson Harper  <jackson@ximian.com>
24515         * assembly.c: Trace loading assemblies.
24516         * loader.c: Trace loading native libraries.
24517         * mono-config.c: Trace loading config files.
24518         
24519 2004-06-18  Dick Porter  <dick@ximian.com>
24521         * locales.c: Tell ICU the lengths of strings, it can cope with
24522         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24524 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24526         * image.c: swapped name/filename;
24528 2004-06-18  Martin Baulig  <martin@ximian.com>
24530         * mono-debug-debugger.c (write_class): Write the parent class at
24531         the end of the header.
24533 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24535         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24537 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24539         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24540         (bundle_obj): New conditional define.
24541         (BUILT_SOURCES): Remove.
24542         ($(bundle_srcs)): Make parallel-make safe.
24543         (libmonoruntime_la_LIBADD): Make unconditional.
24544         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24545         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24547 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24549         * culture-info-tables.h: It was inconsistent with the latest
24550           supp info files.
24552 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24554         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24555         be loaded.
24557         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24558         with gcc 2.95.
24560 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24562         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24563         cleaned up public header threads.h.
24565 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24567         * Makefile.am, *.c, *.h: more API cleanups.
24569 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24571         * Makefile.am: removed monosn from compilation.
24572         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24573         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24574         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24575         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24576         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24577         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24579 2004-06-15  Jackson Harper  <jackson@ximian.com>
24581         * assembly.c: Make locales lower case when searching the GAC for
24582         assemblies. gacutil will always make locales lowercase when
24583         installing so this effectively makes them case insensitive.
24584         
24585 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24587         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24588         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24589           parameter which allows to choose whether the wait can be interrupted or 
24590           not. Also added the method mono_monitor_enter(), which locks the monitor
24591           using an infinite wait and without allowing interruption.
24592           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24593           interrupted.
24594         * object.h: Added new fields in MonoThread. suspend_event holds the event
24595           used to susped/resume the thread. synch_lock is the lock object to use for
24596           modifying the thread state.
24597         * threads.c: Use the new synch_lock object for locking, instead of "this",
24598           which can generate deadlocks.
24599           Moved thread state change in Thread.Sleep and Thread.Join from managed
24600           to unmanaged code. This avoids a deadlock when the thread was suspended
24601           just after acquiring the thread lock.
24602           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24603           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24604           which is not fully implemented in the io-layer.
24605         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24607 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24609         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24610         threads-types.h: more API cleanups.
24612 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24614         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24615         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24616         threadpool.c, threads.c: first pass at the exported API cleanup.
24618 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24620         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24622 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24624         * icall.c: added internalGetHome.
24626 2004-06-14  Dick Porter  <dick@ximian.com>
24628         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24629         possible to return successfully when '.' or '..' were the only
24630         entries in a directory, but were skipped.  The MonoIOStat was not
24631         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24632         Fixes bug 59574.
24634 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24636         * reflection.c: make binaries run on .Net 1.1 by default.
24638 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24640         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24642 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24644         * marshal.c: keep track of struct size with explicit layout
24645         (bug #59979).
24647 2004-06-12  Martin Baulig  <martin@ximian.com>
24649         * mono-debug-debugger.c: Comment out a debugging g_message().
24651 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24653         * reflection.c, reflection.h: do not free custom attrs that are cached.
24654         * icall.c: use braces to make code clearer.
24656 2004-06-11  Martin Baulig  <martin@ximian.com>
24658         * class.h (MonoInflatedField): New type.
24659         (MonoClassField): Replaced `MonoType *generic_type' with
24660         `MonoInflatedField *generic_info'.
24662         * icall.c
24663         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24665 2004-06-11  Martin Baulig  <martin@ximian.com>
24667         * reflection.c (mono_image_create_method_token): Correctly encode
24668         varargs methods.
24670 2004-06-11  Martin Baulig  <martin@ximian.com>
24672         * metadata.c (mono_metadata_parse_method_signature): When parsing
24673         a MethodDef which has VarArgs, also set sentinelpos if we don't
24674         have any parameters.
24676 2004-06-11  Martin Baulig  <martin@ximian.com>
24678         * verify.c (mono_method_verify): In CEE_CALL, use
24679         mono_method_get_signature() to get the method's signature, unless
24680         we're a PInvoke method.
24682 2004-06-10  Jackson Harper  <jackson@ximian.com>
24684         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24685         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24686         logical name as the supplied path is just a prefix to the gac not
24687         the direct path to it.
24688         
24689 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24691         * reflection.c: make the token for a created method match
24692         the token of the MethodBuilder it was created from
24693         (IKVM requires this behaviour now).
24695 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24697         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24698         reflection.c, socket-io.c: leak fixes.
24700 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24702         * icall.c: handle sentinel pos in vararg methods in position different
24703         from 0.
24705 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24707         * culture-info-tables.h: freshly generated.
24709 2004-06-09  Martin Baulig  <martin@ximian.com>
24711         * loader.c (mono_get_method_constrained): Call `mono_class_init
24712         (constrained_class)'.   
24714 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24716         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24717         any methods. Fixes #59629.
24719 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24721         * culture-info-tables.h: reflecting locale-builder updates.
24723 2004-06-08  Dick Porter  <dick@ximian.com>
24725         * object.h:
24726         * locales.c: Fixed compile warnings, including a real bug in
24727         CompareInfo_internal_compare.
24728         
24729 2004-06-08  Dick Porter  <dick@ximian.com>
24731         * locales.c
24732         (ves_icall_System_Globalization_CompareInfo_internal_index):
24733         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24734         Double-check the resuls of usearches, because ICU currently
24735         ignores most of the collator settings here.  Fixes bug 59720.
24736         
24737 2004-06-08  Dick Porter  <dick@ximian.com>
24739         * locales.c
24740         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24741         Fix memory leak and segfault-causing typo.  No idea how this one
24742         lasted so long without being noticed.
24744 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24746         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24747         any methods. Fixes #59629.
24749 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24751         * assembly.c:
24752         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24753         own the critical section before). Removed dead code (that's done
24754         in the preload hook).
24756         (mono_assembly_load_with_partial_name): call the preload hook.
24758 2004-06-08  Martin Baulig  <martin@ximian.com>
24760         * metadata.c (mono_metadata_signature_alloc): Default
24761         `sentinelpos' to -1.
24763         * reflection.c (mono_image_get_array_token): Likewise.
24765 2004-06-08  Martin Baulig  <martin@ximian.com>
24767         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24769         * metadata.c (mono_metadata_parse_method_signature): When parsing
24770         a MethodDef which has VarArgs, set sentinelpos.
24772         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24773         `gint16' since we're using -1 for non-varargs methods.
24775         * reflection.c
24776         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24777         (method_encode_signature): Added varargs support.
24778         (method_builder_encode_signature): Likewise.
24779         (mono_image_get_varargs_method_token): New static method.
24780         (mono_image_create_method_token): New public method; this is
24781         called via an icall instead of mono_image_create_token() when
24782         calling a varargs method.       
24784 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24786         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24788 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24790         * culture-info-tables.h : Reflecting the latest locale-builder that
24791           fixed empty array representation ({} to {0}).
24793 2004-06-07  Jackson Harper  <jackson@ximian.com>
24795         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24796         looking up extra gac paths. This allows MONO_GAC_PATH to act
24797         exactly like a prefix.
24798         
24799 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24801         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24802         type name before modifying it. Fixes #59405.
24804 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24806         * culture-info.h: added fields for "all datetime patterns".
24807         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24808           _construct_datetime_format ()): fill xxx_patterns fields.
24809         * object.h: added fields for "all datetime patterns" to
24810           MonoDateTimeFormatInfo.
24811         * culture-info-tables.h: reflecting locale-builder updates.
24813 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24815         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24816         the event has no add and remove methods. Fixes #59629.
24818 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24820         * object.c: Fixed possible integer overflow when allocating large
24821         strings.
24823 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24825         * culture-info-tables.h: reflecting locale-builder updates.
24827 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24829         * culture-info-tables.h: reflecting locale-builder updates.
24831 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24833         * culture-info-tables.h: reflecting locale-builder updates.
24835 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24837         * threads.c: Made Thread.Sleep abortable.
24839 2004-06-02  Martin Baulig  <martin@ximian.com>
24841         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24843         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24845 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24847         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24849 2004-05-30  Jackson Harper  <jackson@ximian.com>
24851         * reflection.c: Do not hardcode assembly versions or public key
24852         tokens anymore. All of this except the corlib section was dead
24853         code anyways.
24854         
24855 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24857         * object.c (mono_runtime_invoke_array): Automatically create boxed
24858         objects for byref valuetypes if needed. Fixes #59300.
24859         
24860         * object.c (mono_method_return_message_restore): Handle 
24861         MONO_TYPE_OBJECT as well.
24863 2004-05-28  Jackson Harper  <jackson@ximian.com>
24865         * reflection.c: The modified type encoding was causing build
24866         problems. Reverted for now.
24867         
24868 2004-05-28  Jackson Harper  <jackson@ximian.com>
24870         * reflection.c/h: Take an assembly ref so that we dont create
24871         fully qualified names when encoding types in the same assembly as
24872         the custom attribute being emitted.
24873         * appdomain.c: Increment version number.
24874         
24875 2004-05-26  Duncan Mak  <duncan@ximian.com>
24877         * icall.c
24878         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24879         Set the full version number (major, minor, build, revision).
24881 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24883         * marshal.c (emit_struct_conv): increment src/dst after blit
24884         (mono_marshal_get_managed_wrapper,
24885         mono_marshal_get_native_wrapper): make sure we have marshalling
24886         info before marshalling params (info computation affects
24887         blittable)
24889         * class.c (class_compute_field_layout): correctly deal with
24890         blittable
24891         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24892         value types (as per what windows dows by default)
24893         (mono_class_setup_mono_type): System.ValueType is blittable
24894         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24895         blittable
24897         * marshal.c (mono_marshal_load_type_info): flag types  as
24898         non-blittable if the native layout doesn't match the managed
24899         layout
24901 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24903         * appdomain.c: don't add stuff in the private search path that is
24904         above the application base. If application base is not set, there's
24905         no private search path.
24907 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24909         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24910         byref struct arguments in native->managed marshalling.
24912 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24914         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24915         cache methods using signature (special case for methods
24916         that are value type or string class)
24917         
24918         * image.c (mono_image_close): clean up allocated GSList's
24919         in runtime_invoke_cache.
24921 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24923         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24924         there's no MONO_CFG_DIR environment variable defined.
24926 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24928         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24930 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24932         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24933           is interrumped.
24934         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24935           before waiting for it, and call CloseHandle after the wait to unref it.
24936           This will make sure that handles are not disposed too early.
24938 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24940         * appdomain.c:
24941         * appdomain.h:
24942         * icall.c: removed
24943         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24944         needed now.
24946         * object.c: se the application_base only for the domain that runs
24947         Main. Fixes bug #59216,
24949 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24951         * appdomain.c:
24952         * object.c: only the domain in which Main is run have
24953         SetupInformation.ConfigurationFile set, so moved a few lines from
24954         appdomain.c to object.c.
24956 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24958         * appdomain.c: we tried to load [name].(dll|exe), but according
24959         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24960         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24961         There's a test case attached to bug #58922.
24963 2004-05-27  Dick Porter  <dick@ximian.com>
24965         * icall.c:
24966         * file-io.c: Implemented icalls for locking and unlocking regions
24967         in a file.
24968         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24969         FALSE on error (fixes both compiler warning and real bug.)
24971 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24973         * culture-info-tables.h: reflecting locale-builder updates.
24975           (Added missing ChangeLog entry for 05/26)
24977 2004-05-27  Jackson Harper  <jackson@ximian.com>
24979         * locales.c: Fix some cut and paste errors.
24980         
24981 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24983         * mono-config.c: set the correct path for config. directory on windows.
24985 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24987         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24988           on win32.
24990 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24992         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24993         from pinvoke functions.
24994         
24995         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24997 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24999         * culture-info-tables.h: reflecting locale-builder updates.
25001 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25003         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25004         #59086.
25006 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25008         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25009         * icall.c: Modified icalls for RNG.
25010         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25011         Windows (CryptoAPI).
25013 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25015         * locales.c: Fix build.
25017 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25019         * culture-info-tables.h: reflecting locale-builder updates.
25021 2004-05-25  Jackson Harper  <jackson@ximian.com>
25023         * locales.c: When creating the current culture use the $LANGs
25024         specific culture. So DateTimeFormat and NumberFormat entries are created.
25025         
25026 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25028         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25029         a char array as parameter.
25031 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25033         * image.c: In mono_image_open(), always use an absolute path name to
25034           look for already loaded images.
25036 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25038         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25039         missing in the windows build (like older cygwin include files).
25041 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25043         * icall.c: Fixed check for possible integer overflow in Buffer_
25044         BlockCopy icall. Replaced comments style // by /* */.
25046 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25048         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25049         
25050         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25051         check after MONO_VTADDR. Fixes pinvoke2.exe.
25053         * marshal.h marshal.c metadata.h: Add beginnings of support for
25054         ftnptr -> delegate marshalling.
25056 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25058         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25059         * threads.c: Fix warnings.
25061 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25063         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25064         * icall.c: Registered icalls for Suspend and Resume.
25065         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25066           Thread.Abort.
25067         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25068         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25069         * process.c: Use WaitForSingleObjectEx.
25070         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25071           checkpoints.
25072         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25073           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25074           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25075           background threads. Added basic support for Abort in Windows.
25076           Start new threads using a managed delegate invoke wrapper. This wrapper
25077           has an interruption checkpoint that is needed since an interruption
25078           can be requested before the thread leaves the unmanaged code that starts 
25079           the thread.
25080         * marshal.c: Added interruption checkpoint after every native call, and
25081           also before managed calls for wrappers called from unmanaged code to
25082           go into managed code.
25083         * object.h: Added new field in MonoThread to keep track of interruption
25084           requests.
25086 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25088         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25089         calls.
25091 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25093         * appdomain.c:
25094         * assembly.c:
25095         * gc.c:
25096         * locales.c:
25097         * mono-config.c:
25098         * rand.c: getenv -> g_getenv (windows!)
25100         * process.c: complete_path is also used on non-windows platforms.
25102 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25104         * icall.c: new signature for Process_Start.
25106         * process.[ch]: new signature for Process_Start. If we're on windows
25107         and UseShellExecute is false, we have to search for the program by
25108         ourselves if we don't get a full path.
25110 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25112         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25113         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25115 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25117         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25118         Fixes bug #58373.
25120 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25122         * process.c: use double quotes to quote program name and arguments on
25123         windows. Fixes bug #58575.
25125 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25127         * file-io.c: don't return "." and ".." when using windows Find*File.
25129 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25131         * marshal.c: Don't pass wrappers to message init because method 
25132         addressed used to lookup metadata. part of remoting[2|3] fix.
25134 2004-05-15  Jackson Harper  <jackson@ximian.com>
25136         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25137         path is essentially the same as MONO_PATH except that it points to
25138         GACs instead of lib directories.
25139         * loader.h: The user gac is gone so we dont need function to
25140         enable/disable it.
25141         * mono-config.c: user gac option is now gone.
25142         
25143 2004-05-15  Jackson Harper  <jackson@ximian.com>
25145         * culture-info.h: Make defines more consistent, add calendar data
25146         to the culture info table.
25147         * culture-info-tables.h: Add basic calendar data. Basically
25148         everyone gets default gregorian until all the data is
25149         updated.
25150         * locales.c: Use the new consistent defines. Set calendar data for
25151         culture info objects.
25152         * object.h: add a field for calendar data to CultureInfo
25153         
25154 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25156         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25157         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25158         a signature.
25159         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25160         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25161         an extra param that is the pointer of the method to invoke. The IL for
25162         the invoke method is no longer specific to the method, but to the
25163         signature of the method. Thus, we can share the same code for multiple
25164         methods. This reduces the number of methods that have to be compiled.
25166 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25168         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25170         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25172         * icall.c: Optimize Buffer.BlockCopy.
25174 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25176         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25177         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25178         quote). Changed them to "MMMM yyyy".
25180 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25182         * rand.c
25183         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25185 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25187         * reflection.h: Updated after changes to managed structures.
25189         * appdomain.c: Bump corlib version.
25191 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25193         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25194         windows.
25196 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25198         * Makefile.am: link to ../os/libmonoos.la on windows.
25200         * assembly.c:
25201                 -If MONO_DEBUG, warn about non-existing directories in
25202                 MONO_PATH.
25203                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25204                 compile time variable.
25205                 -Removed init_default_path and call mono_set_rootdir from
25206                 libmonoos.a instead (windows only).
25208         * assembly.h: declare mono_assembly_getrootdir().
25210         * domain.c:
25211         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25213         * loader.c: s/getenv/g_getenv/
25215 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25217         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25219         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25221         * metadata.h: Add new marshalling conversions.
25223         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25224         function.
25226         * reflection.c (mono_reflection_get_type): Lookup the type in all
25227         modules of a multi-module assembly. Fixes #58291.
25229 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25231         * threads.c: Before aborting a background, set the StopRequested
25232         state.  This avoids throwing the Abort exception.
25233         In mono_thread_manage, don't continue with the shutdown until all
25234         aborted threads have actually stopped.
25236 2004-05-10  Jackson Harper  <jackson@ximian.com>
25238         * locales.c: Remove the modifier from culture names.
25239         
25240 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25242         * Makefile.am: monosn is not installed any more. It has been deprecated
25243         in favor of sn.
25245 2004-05-07  Jackson Harper  <jackson@ximian.com>
25247         * locales.c
25248         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25249         Fix array construction, add bailout if the length is 0.
25251 2004-05-07  Dick Porter  <dick@ximian.com>
25253         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25254         machine doesn't have a DNS entry.  Patch by Urs Muff
25255         (umuff@quark.com), fixes bug 57928.
25257 2004-05-06  Jackson Harper  <jackson@ximian.com>
25259         * reflection.c: Handle null PublicTokens properly. alloc mem for
25260         assembly names culture so we dont crash when freeing it.
25261         
25262 2004-05-06  Jackson Harper  <jackson@ximian.com>
25264         * assembly.c: Check the usergac when loading with partial names.
25265         
25266 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25268         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25269         does nothing for now (not required for Linux/Windows) but the class
25270         library can call it (and a newer or modified runtime could need it).
25271         * icall.c: Registred icall.
25273 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25275         * loader.c: prints a message on module loading error we set MONO_DEBUG
25276         environment variable.
25278 2004-05-05  Jackson Harper  <jackson@ximian.com>
25280         * appdomain.c: Handle PublicKeyToken=null properly.
25281         
25282 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25284         * environment.c|h: Added icall ves_icall_System_Environment_
25285         GetOSVersionString to get the current OS version as a string.
25286         * icall.c: Registred icall.
25288 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25290         * object.c: in mono_object_get_virtual_method(), take into account that
25291         non-virtual methods don't have a slot in the vtable. Check needed when
25292         the object is a proxy.
25294 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25296         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25297         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25299         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25301         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25302         passed when a valuetype is expected.
25304         * object.c (mono_unhandled_exception): Only set the exit code if the
25305         exception happens in the main thread. Fixes thread5.exe.
25307         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25308         invalid names. Fixes #58047.
25310 2004-05-03  Jackson Harper  <jackson@ximian.com>
25312         * assembly.c: This line was committed accidently and is unneeded.
25313         
25314 2004-05-03  Jackson Harper  <jackson@ximian.com>
25316         * icall.c: Add new icall for Assembly::LoadWithPartialName
25317         * assembly.c/.h: new function that probes the GAC to load partial
25318         assembly names by Paolo Molaro.
25319         
25320 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25322         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25323         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25324         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25325         full type name.
25327 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25329         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25330         * reflection.c: fix bug when parsing a full type name and Version is not
25331         the last thing in the string.
25333 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25335         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25336         crashes when it is freed.
25338 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25340         * assembly.c: print the compat warning to stderr.
25342 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25344         * assembly.c (mono_assembly_load_references): Add a compatibility
25345         hack to run old applications that might be still referencing the
25346         3300-based assemblies, only do this for System.xxx.
25348 2004-05-01  Jackson Harper  <jackson@ximian.com>
25350         * appdomain.c: If the culture is neutral we set it to "".
25351         
25352 2004-04-29  Jackson Harper  <jackson@ximian.com>
25354         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25356 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25358         * string-icalls.c: added low overhead function for copying chars
25359         * icall.c: added needed icall for the above function
25361 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25363         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25364         Environment.GetLogicalDrives.
25366 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25368         * rand.c: try and talk to egd or prngd
25369         for random bytes if opening devices fail.
25371 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25373         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25374         alignment for the type using the native alignment of its members 
25375         instead of using klass->min_align.
25377         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25379 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25381         * file-io.c:
25382         * socket-io.c: added check for sys/aio.h.
25384 2004-04-28  Dick Porter  <dick@ximian.com>
25386         * threads.c: Don't abort a thread thats already aborting, when
25387         terminating everything.
25389 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25391         * icall.c: added 2 new async calls for Socket.
25393         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25394         IO on *nix systems.
25396         * threadpool.c: removed unused variable.
25398 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25400         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25402 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25404         * locales.c: put back string_invariant_tolower () and
25405         string_invariant_toupper ().
25407 2004-04-26 David Waite <mass@akuma.org>
25409         * file-io.h:
25410         * socket-io.h:
25411         * threads.h:
25412         * unicode.h: remove comma from end of enumeration declarations
25414 2004-04-26 David Waite <mass@akuma.org>
25416         * debug-mono-symfile.h:
25417         * decimal.c:
25418         * mono_debug.h:
25419         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25422 2004-04-26  Jackson Harper  <jackson@ximian.com>
25424         * appdomain.c: Increment version number.
25425         
25426 2004-04-26  Jackson Harper  <jackson@ximian.com>
25428         * appdomain.c: Set assembly references public token value when
25429         PublicKeyToken is specified, not the hash_value. Free public token
25430         values when free assembly name data. Previously the public key
25431         token was hex decoded, however we are using hex encoded public key
25432         tokens, so this is not neccasary.
25433         * assembly.c: Lookup assemblies in the gac if their public token
25434         value is set. Add function to allow enabling user gac
25435         lookups. Specify whether or not the assembly was loaded from the
25436         GAC. Compare full assembly names when checking the cache for
25437         assemblies (Temporarily disabled see comment in code). Remove
25438         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25439         specifies trace-loader they get extra info to stdout on the
25440         loading of assemblies.
25441         * image.h: Add a field for an assembly references public token
25442         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25443         whether an assembly has been loaded from the GAC.
25444         * image.c: Remove a corlib -> mscorlib name mapping.
25445         * loader.h: Add function to enable/disable the user gac.
25446         * mono-config.c: Check if the usergac is enabled in the config
25447         file.
25448         * icall.c: New icall to determine whether or not an assembly has
25449         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25450         * tabldefs.h: Add constant for assemblyref flag that specifies a
25451         full public key is used instead of a public token.
25452         * reflection.c: Remove mscorlib -> corlib mappings. Set
25453         PublicTokenValue instead of hash value. This value is a hex
25454         string so it does not need to be expanded.
25456 2004-04-26  Martin Baulig  <martin@ximian.com>
25458         * mono-debug-debugger.c (mono_debugger_initialize): Set
25459         `mono_debugger_initialized' before calling mono_debug_lock().
25461 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25463         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25464           InternalToUpper/InternalToLower.
25465         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25466           removed invariant culture shortcut.  This is now done in managed code.
25467         * locales.c: (string_invariant_toupper/tolower) removed.
25469 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25471         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25472         Added Poll internal call.
25474         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25475         call for Poll. Select was too heavy for polling a single socket.
25477         * threadpool.[ch]: added mono_threadpool_cleanup.
25478         * threads.c: use it. Don't use Thread_Abort on windows.
25480 2004-04-23  Martin Baulig  <martin@ximian.com>
25482         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25484 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25486         * icall.c: Registred new icalls for key pair protection and added an
25487         icall for Environment.GetFolderPath on Windows.
25488         * security.c|h: Added new icalls for key pair protection.
25490 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25492         * socket-io.c: don't display the non-supported family warning for known
25493         families. Now this is not displayed on windows when checking support
25494         for IPv4/IPv6.
25496 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25498         * class.c: don't display the layout warning for static fields.
25500 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25502         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25503         * locales.c, locales.h: Added new icalls for culture-specific
25504         Char.ToLower and Char.ToUpper.
25506 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25508         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25509         by David Waite.
25511 2004-04-20  Martin Baulig  <martin@ximian.com>
25513         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25514         of the type name before passing it to mono_reflection_type_from_name().
25516 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25518         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25519         encodings here. Fixes #56965.
25521 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25523         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25524         fix test on strstr result not that I can see anything that
25525         relies on the result.
25527 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25529         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25530         Fixes #57081.
25532         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25534         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25535         function to determine which marshalling to use for strings. Fixes
25536         #56965.
25538         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25540         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25542 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25544         * icall.c: #include mono-config.h
25546 2004-04-15  Jackson Harper  <jackson@ximian.com>
25548         * culture-info-tables.h: Fix date formats for en-US culture.
25549         
25550 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25552         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25553         ThreadPool.SetMinThreads.
25554         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25555         ThreadPool.SetMinThreads.
25557 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25559         * mono-config.c: also load the .config file in the directory
25560         where the assembly was found.
25562 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25564         * assembly.c: load per-assembly config files.
25565         * icall.c: decrapified code to get the config dir and moved to
25566         mono-config.c.
25567         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25568         per-assembly config files. When doing a dll map lookup give precedence
25569         to the per-assembly data.
25571 2004-04-14  Martin Baulig  <martin@ximian.com>
25573         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25574         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25575         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25577         * mono-debugger-debugger.c: While the debugger is locked, remember
25578         whether the symbol tables have changes and send one single
25579         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25581 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25583         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25585         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25586         function.
25588         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25589         account when marshalling string arrays. Fixes #56965.
25591 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25593         * icall.c: Add new icalls mapping for security.
25594         * security.c|h: Add internal calls for WindowsIdentity,
25595         WindowsImpersonationContext and WindowsPrincipal.
25597 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25599         * class.c: Added comment to ensure the System.MonoDummy class
25600         is removed when no longer necessary
25602 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25604         * appdomain.c: Pass arguments to the bootstraping exceptions to
25605         minimize JITed methods at boot
25607         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25608         second string to be null.
25610         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25611         Change the protocol to minimize the JIT methods at startup.  Now
25612         it Returns the internal codepage, if the value of "int_code_page"
25613         is 1 at entry, and we can not compute a suitable code page
25614         number, returns the code page as a string.
25616 2004-04-13  Jackson Harper  <jackson@ximian.com>
25618         * culture-info-tables.h: Fix number of decimal digits for all
25619         english locales.
25621 2004-04-13  Jackson Harper  <jackson@ximian.com>
25623         * icall.c: Clairfy out of sync error message. It is not always
25624         your corlib that is out of sync.
25626 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25628         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25629         properties when only the set accessor is overriden. Fixes #55874.
25631 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25633         * assembly.c (mono_assembly_load_references): Make this thread safe.
25634         Fixes #56327.
25636 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25638         * monosn.c: Add missing initialization calls.
25640 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25642         * locales.c:
25643         ves_icall_System_Globalization_CultureInfo_construct_number_format
25644         Fix g_assert so it compiles on fussier compilers re int/ptr
25645         mismatch
25647 2004-04-08  Dick Porter  <dick@ximian.com>
25649         * socket-io.h:
25650         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25651         53992.  Also rearrange the code so that the internal calls return
25652         an error value and exceptions are thrown from managed code.
25654         * icall.c: Add type info to the socket icalls.
25656 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25658         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25659         owes me a beer.
25661 2004-04-07  Martin Baulig  <martin@ximian.com>
25663         * class.c (mono_class_from_generic_parameter): Don't default
25664         `klass->parent' to `mono_defaults.object_type'.
25666 2004-04-07  Martin Baulig  <martin@ximian.com>
25668         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25669         `param->pklass->reflection_info'.       
25671 2004-04-07  Jackson Harper  <jackson@ximian.com>
25673         * culture-info-tables.h: Fix date separator symbol.
25674         
25675 2004-04-07  Martin Baulig  <martin@ximian.com>
25677         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25678         from System.Type to System.MonoType.
25680 2004-04-07  Martin Baulig  <martin@ximian.com>
25682         * reflection.h
25683         (MonoReflectionGenericParam): Added `has_reference_type' and
25684         `has_value_type' fields.
25686         * reflection.c (mono_image_get_generic_param_info): Encode the
25687         correct flags if we have the `class' or `struct' constraint.
25689 2004-04-07  Martin Baulig  <martin@ximian.com>
25691         * reflection.h
25692         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25694 2004-04-07  Jackson Harper  <jackson@ximian.com>
25696         * appdomain.c: Revert extra patches, just wanted to bump the
25697         version number.
25698         
25699 2004-04-07  Jackson Harper  <jackson@ximian.com>
25701         * Makefile.am: Add culture-info private headers.
25702         * icall.c: Add new icalls for contructing locales.
25703         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25704         * locales.h: Declare new culture info construction methods.
25705         * object.h: Add new fields used to avoid the CultureMap to
25706         MonoCultureInfo.
25707         * culture-info.h: Definition of structs used in the culture info
25708         tables.
25709         * culture-info-tables.h: Autogenerated tables that contain culture
25710         info data. This file was generated with the locale-builder tool.
25711         * appdomain.c: Incement corlib version number.
25712         
25713 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25715         * appdomain.c: (mono_runtime_init) move mono_thread_init
25716         to before mono_object_new calls so critical sections
25717         are initialized before use.
25719 2004-04-07  Martin Baulig  <martin@ximian.com>
25721         * icall.c
25722         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25723         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25724         (ves_icall_MonoGenericParam_initialize): Removed.
25725         (monogenericparam_icalls): Removed.
25726         (generictypeparambuilder_icalls): Added new table for
25727         System.Reflection.Emit.GenericTypeParameterBuilder.
25729         * reflection.c
25730         (mono_reflection_define_generic_parameter): Removed.
25731         (mono_reflection_initialize_generic_parameter): This is now called
25732         from GenericTypeParameterBuilder's .ctor.
25734 2004-04-06  Martin Baulig  <martin@ximian.com>
25736         * class.c (mono_class_init): Don't inflate nested classes in a
25737         generic instance.
25738         (mono_type_get_name_recurse): Include the generic arguments for
25739         generic instances and generic type declarations.
25740         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25741         (_mono_class_get_instantiation_name): Removed.
25742         (mono_class_create_generic): Always use `gklass->name' as our name.
25744         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25746         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25747         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25748         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25749         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25750         closed generic methods here.
25752         * reflection.c
25753         (mono_reflection_generic_inst_get_nested_types): Removed.
25754         (inflate_mono_method): Copy the generic parameters from the
25755         MonoMethodHeader into out MonoGenericMethod.
25757 2004-04-06  Martin Baulig  <martin@ximian.com>
25759         * row-indexes.h
25760         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25762         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25764         * reflection.c (build_compressed_metadata): If we have any entries
25765         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25766         set the header version to 1.1.
25768 2004-04-06  Martin Baulig  <martin@ximian.com>
25770         * class.c (mono_class_init): If we're a generic instance,
25771         initialize our nested classes, too.
25772         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25773         suffix. 
25775 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25777         * process.c: quote the argument passed to the shell on windows.
25779 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25781         * threads.c (mono_alloc_special_static_data): Allow this to be
25782         called during startup.
25784 2004-04-02  Martin Baulig  <martin@ximian.com>
25786         * icall.c
25787         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25789 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25791         * icall.c: Fix build.
25793 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25795         * Makefile.am: Added security.c|h.
25796         * icall.c: Added icall for get_UserName;
25797         * security.c: New file for security related icalls. Added function
25798         get_UserName for System.Environment (fix #56144).
25799         * security.h: New. Header file for security.c
25801 2004-04-02  Dick Porter  <dick@ximian.com>
25803         * icall.c: Deleted the icalls that were obsoleted some time ago
25804         by the ICU string code, and which were mixed into the icall
25805         rearranging.  Fixes bug 55969.
25807         * string-icalls.h: 
25808         * string-icalls.c: Deleted the code that those icalls reference.
25810 2004-04-01  Martin Baulig  <martin@ximian.com>
25812         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25814         * class.c (mono_class_from_generic_parameter): Don't set 
25815         TYPE_ATTRIBUTE_INTERFACE.
25816         (my_mono_class_from_generic_parameter): Likewise.
25818 2004-04-01  Martin Baulig  <martin@ximian.com>
25820         * loader.c (find_method): Added an optional `MonoClass *ic'
25821         argument to search in a specific interface.
25822         (mono_get_method_constrained): New public function.
25824 2004-04-01  Martin Baulig  <martin@ximian.com>
25826         * reflection.c (mono_image_get_generic_field_token): Use the
25827         `handleref' cache here.
25829 2004-04-01  Martin Baulig  <martin@ximian.com>
25831         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25833         * reflection.c (create_generic_typespec): Use the `typespec' hash
25834         here, not the `typeref' one.    
25836 2004-04-01  Martin Baulig  <martin@ximian.com>
25838         * class.c (mono_class_inflate_generic_type): Moved the
25839         functionality into a new static inflate_generic_type() which
25840         returns NULL if it didn't do anything.  Only increment the
25841         `mono_stats.inflated_type_count' if we actually inflated
25842         something.
25843         (mono_class_get_full): Check the classes type to see whether we
25844         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25846 2004-04-01  Jackson Harper  <jackson@ximian.com>
25848         * reflection.c: Set culture for assembly references.
25849         
25850 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25852         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25854 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25856         * assembly.c:
25857         (do_mono_assembly_open): the critical section also covers
25858         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25860 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25862         * threads.c:
25863         (mono_manage_threads): abort the background threads when finishing.
25864         Fixes bug #47232.
25866 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25868         * gc.c: only close the done_event handle if there was no timeout.
25869         C-ified comments.
25871 2004-03-30  Martin Baulig  <martin@ximian.com>
25873         * icall.c (icall_entries): It's called "System.Activator", not
25874         "System.Activation".    
25876 2004-03-30  Martin Baulig  <martin@ximian.com>
25878         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25879         (mono_class_create_from_typespec): Likewise.
25881 2004-03-30  Martin Baulig  <martin@ximian.com>
25883         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25884         `has_ctor_constraint' and `initialized'.
25886 2004-03-30  Martin Baulig  <martin@ximian.com>
25888         * reflection.c (encode_new_constraint): New static function to add
25889         the constructor constraint attribute to a type parameter.
25890         (encode_constraints): Call encode_new_constraint() if necessary.
25892         * reflection.h
25893         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25895         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25896         
25897 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25899         * reflection.c, icall.c: add support for pinning variables. 
25901 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25903         * marshal.c (mono_marshal_get_managed_wrapper):
25904         init bool local with zero rather than null.
25906 2004-03-29  Martin Baulig  <martin@ximian.com>
25908         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25909         the "official" behavior here.
25910         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25912 2004-03-29  Martin Baulig  <martin@ximian.com>
25914         * icall.c: Reflect latest API changes.
25916 2004-03-29  Martin Baulig  <martin@ximian.com>
25918         * loader.c (mono_get_method_from_token): Also call
25919         mono_metadata_load_generic_params () for abstract and interface
25920         methods; replace the type arguments in the method signature with
25921         the ones which are loaded from the metadata.
25923 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25925         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25926         of the lock is not the current thread. MS.NET don't do it, in spite of
25927         what the documentation says. See bug #56157.
25929 2004-03-28  Martin Baulig  <martin@ximian.com>
25931         * class.c (mono_class_init): Don't call init_properties() and
25932         init_events() for generic instances; set `prop->parent' when
25933         inflating properties.
25935         * reflection.c (mono_generic_inst_get_object): Call
25936         `mono_class_init (ginst->klass)'.
25937         (mono_type_get_object): Only create a MonoGenericInst if your
25938         generic type is a TypeBuilder.
25939         (do_mono_reflection_bind_generic_parameters): Only set
25940         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25942 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25944         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25945         Fixes #56091.
25947 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25949         * icall.c: added Kill_internal icall.
25950         * process.[ch]: added Kill_internal icall.
25952 2004-03-25  Martin Baulig  <martin@ximian.com>
25954         * class.h (MonoStats): Added `generic_instance_count',
25955         `inflated_method_count', `inflated_type_count' and
25956         `generics_metadata_size'.       
25958 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25960         * reflection.c: no warnings now.
25962 2004-03-25  Martin Baulig  <martin@ximian.com>
25964         * class.c (mono_class_get_full): New public function; does a
25965         mono_class_get(), but also takes a `MonoGenericContext *'.
25967         * loader.c (mono_field_from_memberref): Renamed to
25968         `field_from_memberref', made static and added `MonoGenericContext *'
25969         argument.
25970         (mono_field_from_token): Added `MonoGenericInst *' argument.
25971         (method_from_memberef): Likewise.
25972         (mono_get_method_from_token): Likewise.
25973         (mono_get_method_full): New public function; does a
25974         mono_get_method(), but also takes a `MonoGenericContext *'.
25976         * verify.c (mono_method_verify): Get the method's generic context
25977         and pass it to mono_field_from_token(), mono_get_method_full() and
25978         mono_class_get_full().
25980 2004-03-25  Martin Baulig  <martin@ximian.com>
25982         * class.c (mono_class_inflate_generic_type): Take a
25983         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25984         `MonoGenericMethod *'.
25986 2004-03-25  Martin Baulig  <martin@ximian.com>
25988         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25989         instead of the MonoGenericMethod here.
25991 2004-03-25  Martin Baulig  <martin@ximian.com>
25993         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25994         each time we create a new MonoGenericInst, we also create a new
25995         context which points back to us.
25997         * class.c (inflate_method): Use `ginst->context' instead of
25998         creating a new context.
26000         * loader.c (method_from_memberref): Use
26001         `klass->generic_inst->context' instead of creating a new context.
26003 2004-03-25  Martin Baulig  <martin@ximian.com>
26005         * class.h (MonoGenericContext): New struct.
26006         (MonoGenericMethod): Removed `generic_inst'.
26008         * class.c (mono_class_inflate_generic_method): Take a
26009         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26011 2004-03-25  Martin Baulig  <martin@ximian.com>
26013         * loader.h (MonoMethodInflated): New typedef.
26015         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26016         `generic_param_count' consume just 30 bits, added `is_inflated'
26017         and `has_type_parameters' flags (one bit each).
26019         * class.c (mono_class_inflate_generic_method): Create a
26020         MonoMethodInflated instead of a MonoMethodNormal and set
26021         `is_inflated' in the method signature.
26023         * class.h (MonoGenericMethod): Removed `generic_method'.
26025 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26027         * image.c: Make sure the name of a MonoImage is always an absolute path.
26028           This fixes bug #54415.
26030 2004-03-24  Martin Baulig  <martin@ximian.com>
26032         * class.c (mono_class_setup_vtable): If we're a generic instance,
26033         use our generic type's vtable size.
26035 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26037         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26038         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26039         problems.
26041 2004-03-23  Martin Baulig  <martin@ximian.com>
26043         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26044         `MonoEvent *events'.
26046         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26047         (typebuilder_icalls): Added "get_event_info"; calls
26048         mono_reflection_event_builder_get_event_info(). 
26050         * reflection.c (mono_reflection_generic_inst_initialize): Added
26051         `MonoArray *events'.
26052         (mono_reflection_event_builder_get_event_info): New function.
26054 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26056         * object.h: add mono_type_initialization_init
26058         * object.c (mono_runtime_class_init): 
26059         implement class constructor synchronization rules
26060         to cope with threading issues.  
26061         add mono_type_initialization_init
26063         * appdomain.c (mono_runtime_init): call 
26064         mono_type_initialization_init
26066         * class.h: removing initializing field from MonoVTable
26068 2004-03-23  Martin Baulig  <martin@ximian.com>
26070         * class.c (my_mono_class_from_generic_parameter): Use
26071         `param->name' if it's not NULL. 
26073 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26075         * class.c: do not insert non-virtual methods in the vtable.
26076         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26077         that means the method is non-virtual. This never would have
26078         happened before.
26080 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26082         * profiler.c: Added lock for accessing coverage_hash.
26084 2004-03-22  Martin Baulig  <martin@ximian.com>
26086         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26087         `method->method->signature->generic_param_count != 0' to make it
26088         work for interface methods.
26090 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26092         * process.c: quote the string passed to the shell using g_shell_quote.
26094 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26096         * threads.c:
26097         (mono_threads_manage): don't remove the finalizer thread and self
26098         from the threads hash table so that mono_thread_manage can be called
26099         more than once.
26101 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26103         * process.c: quote the arguments when UseShellExecute is true. Fixes
26104         bug #55790.
26106 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26108         * threads.c: set mono_thread_detach as a cleanup routine for every
26109         thread. This way it's always executed upon thread termination, either
26110         aborted or finished normally. No more xsp hangs!
26112 2004-03-17  Martin Baulig  <martin@ximian.com>
26114         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26115         `int count_nested' and a `MonoType **nested'.
26117         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26118         most of the functionality into a new static
26119         do_mono_reflection_bind_generic_parameters() and don't take a
26120         `MonoType *nested_in' argument any more.  Don't compute nested
26121         types here.
26122         (mono_reflection_generic_inst_get_nested_types): New public method
26123         to get nested types.
26125         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26126         we're a nested class.
26128         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26129         mono_reflection_generic_inst_get_nested_types() to compute the
26130         nested types.
26132 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26134         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26135         descriptive error message under windows.
26136         
26137 2004-03-17  Martin Baulig  <martin@ximian.com>
26139         * class.c (dup_type): Added `const MonoType *original' argument;
26140         copy the attrs from the original type.
26142 2004-03-17  Martin Baulig  <martin@ximian.com>
26144         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26145         `m->generic_inst_cache' here.
26147 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26149         * exception.h exception.c: Add stack_overflow_exception.
26151 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26153         * threadpool.c:
26154         (overlapped_callback): call SetEvent *after* invoking the callback.
26155         No need to call CloseHandle.
26157 2004-03-16  Martin Baulig  <martin@ximian.com>
26159         * reflection.c (mono_image_get_fieldref_token): Take a
26160         `MonoReflectionField *' instead of a `MonoClassField *' and a
26161         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26163 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26165         * appdomain.c: don't add the culture to the filename we're looking for
26166         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26168 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26170         * locales.c: don't ignore symbols when doing case insensitive compares.
26171         Thanks Dick! Fixes bug #54046.
26173         * threads.c: surround 'threads' usage with enter/leave in
26174         mono_thread_manage.
26176 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26178         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26179         implicitly marshalled as [Out]. Fixes #55450.
26181         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26182         an exception.
26184 2004-03-16  Martin Baulig  <martin@ximian.com>
26186         * class.c (mono_class_from_generic_parameter): Use the actual
26187         parameter name. 
26189 2004-03-16  Martin Baulig  <martin@ximian.com>
26191         * reflection.c (type_get_signature_size): New static function.
26192         Compues the size of the type in a method signature.
26193         (method_get_signature_size): New static function; calls
26194         type_get_signature_size() to compute the actual size of the
26195         method's signature.
26196         (method_encode_signature): Use method_get_signature_size() to get
26197         the signature's size rather than using `nparams * 10'.
26199 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26201         * file-io.h: define here WapiOverlapped on windows. I don't want the
26202         regular OVERLAPPED one.
26204         * file-io.c:
26205         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26206         Disabling AIO on windows.
26208 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26210         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26211         bug #55385.
26213 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26215         * appdomain.c: upgraded corlib version.
26217         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26218         and BeginWrite. Allow opening files for asynchrnous operations.
26220         * file-io.h: new struct that maps FileStreamAsyncResult.
26221         * icall.c: added new icalls.
26222         * process.[ch]: support setting child process environment variables
26223         and use the SHELL or COMSPEC when UseShellExecute is true.
26225         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26226         callback for async. IO is here and also BindHandle.
26228         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26229         from here.
26231 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26233         * reflection.c (create_custom_attr): Allow len == 0.
26235         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26236         computation on big-endian machines.
26238 2004-03-13  Martin Baulig  <martin@ximian.com>
26240         * class.h (MonoGenericInst): Added `int count_ifaces'.
26242         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26243         `ginst->count_ifaces' instead `klass->interface_count' since we
26244         may get called before the vtable is created.
26246         * loader.c (mono_method_get_param_names): If we're a generic
26247         instance, return and don't initialize the class.
26249         * reflection.c (mono_reflection_setup_generic_class): Don't call
26250         ensure_runtime_vtable().
26251         (mono_reflection_bind_generic_parameters): Set
26252         `ginst->count_ifaces'.
26254 2004-03-11  Jackson Harper <jackson@ximian.com>
26256         * icall.c:
26257         * unicode.c:
26258         * unicode.h: Remove unused System.Char icalls.
26259         
26260 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26262         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26263         code when we P/Invoke the first library in Windows.Forms, instead
26264         of when we first open the assembly.
26266         * assembly.c: Drop the lookup from here.
26268 2004-03-10  Martin Baulig  <martin@ximian.com>
26270         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26271         class for properties, fields and events.  Finally fixes #54945.
26273 2004-03-10  Martin Baulig  <martin@ximian.com>
26275         * metadata.c (mono_metadata_class_equal): New static function;
26276         checks whether two generic instances or two generic parameters are
26277         equal.
26278         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26279         compare classes.        
26281 2004-03-10  Martin Baulig  <martin@ximian.com>
26283         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26285         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26286         argument and write it into the `reflection_info' field.
26288         * icall.c
26289         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26290         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26292 2004-03-09  Jackson Harper  <jackson@ximian.com>
26294         * char-conversions.h: use 8 bits for numeric data its all we need
26295         * icall.c: numeric data is only 8 bits now.
26297 2004-03-09  Martin Baulig  <martin@ximian.com>
26299         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26301         * class.c (init_properties, init_events): Initialize the new
26302         `parent' field.
26304         * reflection.c (typebuilder_setup_properties): Likewise.
26305         (typebuilder_setup_events): Likewise.
26307         * reflection.h (MonoEventInfo): Replaced `parent with
26308         `declaring_type' and `reflected_type'.
26310         * icall.c (ves_icall_get_property_info): Distinguish between
26311         declaring and reflected type.
26312         (ves_icall_get_event_info): Likewise.
26314 2004-03-09  Martin Baulig  <martin@ximian.com>
26316         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26317         (ves_icall_Type_GetField): Correctly set field->klass.
26319 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26321         * loader.h: Fix warning.
26323 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26325         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26326         library routine if present.  Notice that it will still continue
26327         executing even if its missing, for those working on the Gtk#
26328         edition of Windows.Forms.
26330         * assembly.c (do_mono_assembly_open): If loading the
26331         System.Windows.Forms call mono_loader_wini_init.
26333 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26335         * class.h: Added MonoRemoteClass struct.
26336         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26337         function for MonoStrings.
26338         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26339         Added internal call for getting the proxy type.
26340         * marshal.c: Get the type of transparent proxies from its remote_class.
26341         Added methods that generate the IL for type checks and casts:
26342         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26343         mono_marshal_get_proxy_cancast.
26344         * marshal.h: Declaration of the previous new methods.
26345         * object.c: Added new moethods for creating and updating MonoRemoteClass
26346         instances: mono_remote_class, mono_upgrade_remote_class, 
26347         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26348         * verify.c: FIx transparent_proxy_fields layout.
26349         * appdomain.c: Bump corlib version.
26351 2004-03-04  Jackson Harper  <jackson@ximian.com>
26353         * icall.c: Add icall to access char conversion tables.
26354         * char-conversions.h: Character conversion tables.
26355         * Makefile.am: Add char-conversions.h private header file.
26356         
26357 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26359         * appdomain.c (unload_thread_main): Increase unloading timeout to
26360         10 sec as a temporary workaround for Nant problems.
26362 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26364         * gc.c: Add checks for GC_enable and GC_disable.
26366         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26367         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26368         (bug #54988).
26369         
26370 2004-02-27  Martin Baulig  <martin@ximian.com>
26372         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26373         `MonoReflectionType *' instead of a `MonoType *'.
26375 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26377         * gc.c (run_finalize): Avoid finalizing the object representing the
26378         finalizer thread.
26379         (finalizer_thread): Fix warning.
26381 2004-02-25  Martin Baulig  <martin@ximian.com>
26383         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26384         argument for nested types.
26385         (mono_class_create_generic): Added support for nested generictypes.
26387         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26388         `GList *nested'.
26390         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26392         * reflection.c (method_encode_signature): Increase the minimum
26393         value of `size' from 10 to 11.
26394         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26395         and `MonoType **types' arguments instead of the `MonoArray
26396         *types'; added `MonoType *nested_in'.  Recursively instantiate
26397         nested classes. 
26399 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26401         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26402         stack_overflow_ex members which are used by exception handling.
26404         * appdomain.c (mono_runtime_init): Initialize the new members.
26406         * gc.c (mono_gc_enable): New helper function.
26407         * gc.c (mono_gc_disable): New helper function.
26409 2004-02-23  Martin Baulig  <martin@ximian.com>
26411         * icall.c: I must have been really stupid - make it actually work
26412         this time ;-)
26414 2004-02-23  Martin Baulig  <martin@ximian.com>
26416         * loader.c (method_from_memberref): Only inflate the method if
26417         it's in another klass.
26419 2004-02-23  Martin Baulig  <martin@ximian.com>
26421         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26422         (mono_class_init): If we're a generic instance and an interface,
26423         compute `class->interface_id'; also create `class->interfaces'
26424         here and inflate them.
26426         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26427         `ginst->is_open'.
26428         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26430         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26432 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26434         * reflection.c (method_encode_code): Improved the error message
26435         generated by the exception.
26437 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26439         * icall.c: Martin did not do what he said in the ChangeLog for
26440         2004-02-18, but put back the changes for properties and events.
26441         Commenting those changes out again and adding comment to bug #54518.
26442         
26443         * process.c: removed warning.
26445 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26447         * marshal.c (emit_struct_conv): Print an error message instead of
26448         asserting when a type does not have the StructLayout attribute.
26450 2004-02-20  Martin Baulig  <martin@ximian.com>
26452         * reflection.c (mono_type_get_object): Also use the cache for
26453         generic instances.
26454         (mono_reflection_bind_generic_parameters): Always compute
26455         `ginst->ifaces'.        
26457 2004-02-20  Martin Baulig  <martin@ximian.com>
26459         * class.h (MonoGenericMethod): Removed `klass'.
26461         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26462         *klass' argument.
26464 2004-02-20  Martin Baulig  <martin@ximian.com>
26466         * reflection.c (method_encode_methodspec): Actually use the
26467         uninflated signature for the memberref.
26469 2004-02-20  Martin Baulig  <martin@ximian.com>
26471         * class.h (MonoGenericMethod): Removed `declaring'.
26473         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26474         is NULL, compute it here.
26476 2004-02-20  Martin Baulig  <martin@ximian.com>
26478         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26480         * metadata.c (mono_metadata_generic_inst_hash): New method.
26481         (mono_metadata_generic_inst_equal): New method.
26483         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26484         `klass->image->generic_inst_cache' cache to avoid creating
26485         duplicate MonoGenericInst's.
26487         * class.c (mono_class_inflate_generic_type): Use the cache.
26489 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26491         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26493 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26495         * icall.c: added Socket.WSAIoctl icall.
26497         * socket-io.[ch]: implemented
26498         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26500 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26502         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26504 2004-02-18  Urs C Muff  <umuff@quark.com>
26506         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26507         this work on PPC and other big-endian architectures.
26509         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26510         fields with an underscore to make sure they're only accessed by
26511         the read32() macro.
26513 2004-02-18  Martin Baulig  <martin@ximian.com>
26515         * icall.c: Put the klass->refclass changes back for methods and
26516         fields, but not for properties and events.  We're currently not
26517         distinguishing between DeclaringType and ReflectedType for
26518         properties and events, that's what caused the regressions.
26520 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26522         * object.c:
26523         (mono_async_result_new): the handle can be NULL.
26525         * threadpool.c: Use an event instead of a semaphore, don't initialize
26526         it until needed. This saves quite a few semaphores from being created
26527         when using the threadpool.
26529 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26531         * object.c (mono_string_is_interned_lookup): Fix interning of long
26532         strings. Fixes #54473.
26534         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26536         * icall.c: Revert the klass->refclass changes since they introduce
26537         regressions (bug #54518).
26539 2004-02-18  Martin Baulig  <martin@ximian.com>
26541         * class.c (mono_class_init): If we're a generic instance and don't
26542         come from a TypeBuilder, inflate our members here.
26543         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26544         (mono_class_create_generic): New public method.
26545         (mono_class_initialize_generic): Removed.
26546         (get_instantiation_name): Renamed to
26547         _mono_class_get_instantiation_name() and made it public.
26549 2004-02-18  Martin Baulig  <martin@ximian.com>
26551         * class.c (mono_class_inflate_generic_type): Clear the new
26552         instance's `nginst->klass' when inflating a generic instance.
26553         (mono_class_is_subclass_of): Added (basic) support for generic
26554         instances.
26556 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26558         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26559         MonoMempool to hold compiled native code.
26561 2004-02-17  Martin Baulig  <martin@ximian.com>
26563         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26564         `properties'.
26566         * reflection.c (mono_reflection_generic_inst_initialize): Added
26567         `MonoArray *properties' argument.
26569         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26571 2004-02-17  Martin Baulig  <martin@ximian.com>
26573         * icall.c (ves_icall_Type_GetFields): Renamed to
26574         ves_icall_Type_GetFields_internal() and added a
26575         `MonoReflectionType *rtype' argument; pass it to
26576         mono_field_get_object() to set the field's "reflected" type.
26577         (ves_icall_Type_GetConstructors): Likewise.
26578         (ves_icall_Type_GetEvents): Likewise.
26579         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26580         argument; pass it to mono_method_get_object() to set the method's
26581         "reflected" type.       
26583 2004-02-17  Martin Baulig  <martin@ximian.com>
26585         * class.h (MonoDynamicGenericInst): New type.
26586         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26588         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26589         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26590         (ves_icall_MonoGenericInst_GetFields): New interncall.
26592         * class.c (mono_class_from_generic): Don't call
26593         mono_class_initialize_generic() if this is a dynamic instance;
26594         ie. it's being created from a TypeBuilder.
26595         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26596         `class->byval_arg.type'.
26598         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26599         to `inflate_method' and made static.
26600         (mono_reflection_inflate_field): Removed.
26601         (mono_reflection_generic_inst_initialize): New public method.
26603         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26604         `ctors' and `fields'; added `initialized'.
26606 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26608         * debug-helpers.c (mono_method_full_name): Fix output for empty
26609         namespaces.
26611 2004-02-12  Martin Baulig  <martin@ximian.com>
26613         * class.h (MonoClassField): Added `MonoType *generic_type'.
26615         * reflection.c (mono_image_get_fieldref_token): Added support for
26616         instantiated generic types.
26617         (field_encode_inflated_field): Removed.
26618         (mono_image_get_inflated_field_token): Removed.
26619         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26621         * reflection.h (MonoReflectionInflatedField): Removed.
26623 2004-02-12  Martin Baulig  <martin@ximian.com>
26625         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26626         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26628         * reflection.c (mono_image_get_methodspec_token): Take a
26629         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26630         (mono_image_create_token): Check whether we have a
26631         `method->signature->gen_method' and call
26632         mono_image_get_methodspec_token() if appropriate.
26633         (inflated_method_get_object): Removed.
26634         (mono_reflection_bind_generic_method_parameters): Return a
26635         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26636         (mono_reflection_inflate_method_or_ctor): Likewise.
26638         * reflection.h (MonoReflectionInflatedMethod): Removed.
26640 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26642         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26643         for custom valuetype marshalling.
26645         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26647 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26649         * icall.c: fixed WSAGetLastError_internal name.
26651 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26653         * threads.c (mono_thread_attach): Allow this to be called multiple
26654         times for a thread.
26655         
26656         * threads.c (build_wait_tids): Do not wait for ourselves.
26658         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26659         appdomain list is empty.
26661         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26662         memory returned by mono_string_builder_to_utf16, since it points into
26663         managed memory. Thanks to Bernie Solomon for noticing this.
26665         * icall.c: Add AppDomainSetup icalls.
26667         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26669         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26670         types.
26672         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26673         custom attributes to the method_aux struct. Also fix array indexes etc.
26675         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26676         
26677 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26679         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26680         (both static and runtime) and reduce startup time.
26682 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26684         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26685         AsAny marshalling conversion instead of crashing.
26687         * marshal.c: Fix warnings.
26689 2004-02-09  Martin Baulig  <martin@ximian.com>
26691         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26693         * reflection.h (MonoReflectionInflatedMethod): Removed the
26694         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26696         * reflection.c (method_encode_methodspec): Removed the `method'
26697         argument; we get it from `gmethod->declaring'.
26698         (inflated_method_get_object): Removed the `declaring' argument.
26700 2004-02-09  Martin Baulig  <martin@ximian.com>
26702         * class.h (MonoGenericMethod): New type.
26703         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26704         `generic_method'.
26706         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26707         a `MonoGenericMethod *gen_method' one.
26709         * class.c (mono_class_inflate_generic_type): Take an additional
26710         `MonoGenericMethod * argument.  This is only non-NULL if we're
26711         inflating types for a generic method.   
26712         (mono_class_inflate_generic_signature): Renamed to
26713         inflate_generic_signature() and made static; take a
26714         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26715         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26716         instead of a `MonoGenericInst *' one.
26717         (mono_class_inflate_generic_method): Likewise.
26719         * reflection.c (encode_generic_method_sig): Take a
26720         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26721         (method_encode_methodspec): Likewise.
26722         (inflated_method_get_object): Likewise. 
26724         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26725         field with a `MonoGenericMethod *gmethod' one.  
26727 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26729         * class.h (mono_class_has_parent): add parens to expansion
26730         so you can ! this.
26732 2004-02-08  Martin Baulig  <martin@ximian.com>
26734         * image.h (MonoImage): Removed `generics_cache'.
26736         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26737         instead of a `MonoType *' argument; removed the `inflate_methods'
26738         argument.  Don't inflate methods here.
26740         * loader.c (find_method): If it's a generic instance, call
26741         mono_class_init() on the `sclass->generic_inst->generic_type'.
26743         * metadata.c (mono_type_size): Make this work on uninitialized
26744         generic instances; call it on the `ginst->generic_type's class.
26746         * reflection.c (mono_reflection_bind_generic_parameters): Call
26747         mono_class_from_generic() to create the `ginst->klass'.
26749 2004-02-08  Martin Baulig  <martin@ximian.com>
26751         * class.h (MonoClass): Changed type of `generic_inst' from
26752         `MonoType *' to `MonoGenericInst *'.
26754 2004-02-08  Martin Baulig  <martin@ximian.com>
26756         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26757         mono_type_get_object(), this is now creating a `MonoGenericInst'
26758         for MONO_TYPE_GENERICINST.
26759         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26760         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26762         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26763         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26764         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26765         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26766         and reflected type.
26768         * reflection.h (MonoReflectionInflatedMethod): Removed
26769         `declaring_type' and `reflected_type'.
26771 2004-02-08  Martin Baulig  <martin@ximian.com>
26773         * class.h (MonoGenericInst): Added `MonoType *parent' and
26774         `MonoType **ifaces'.
26776         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26777         `parent' and `interfaces'.
26779         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26780         `MonoType *' argument and return a `MonoType *'.
26782         * icall.c
26783         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26784         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26786 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26788         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26789         valuetype marshalling.
26791 2004-02-06  Martin Baulig  <martin@ximian.com>
26793         * class.c
26794         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26795         (my_mono_class_from_generic_parameter): Likewise.
26797 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26799         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26800         contents of the symbol files lazily.
26802         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26804         * threads.h threads.c icall.c: New icalls for getting and setting the
26805         threads name.
26807 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26809         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26810         Raise an exception when the domain is not found.
26812 2004-02-03  Martin Baulig  <martin@ximian.com>
26814         * reflection.c (mono_image_get_methodspec_token): Use the
26815         uninflated signature; fixes gen-33.
26817 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26819         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26820         the finalizer code can use thread functionality.
26822         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26823         the finalizer thread.
26825         * threads.c: Make some functions more robust.
26827         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26829         * metadata.h: Add new marshalling conventions.
26831         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26832         stringbuilder marshalling. Fixes #53700.
26834         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26836         * reflection.c (mono_image_get_type_info): Save declarative security
26837         info.
26839         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26840         unmanaged fields as well.
26842         * appdomain.c: Bump corlib version.
26844 2004-02-01  Martin Baulig  <martin@ximian.com>
26846         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26847         method type arguments.  
26849 2004-01-30  Duncan Mak  <duncan@ximian.com>
26851         * marshal.h: Add prototype for
26852         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26853         and
26854         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26855         fix the build.
26857 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26859         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26860         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26862 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26864         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26865         custom marshalling of valuetypes.
26867         * marshal.c: Fix some warnings.
26869 2004-01-29  Martin Baulig  <martin@ximian.com>
26871         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26872         for generic method parameters.
26874         * reflection.c (method_encode_methodspec): Write the uninflated
26875         signature into the methodspec table.
26876         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26877         is always the uninflated method.
26878         (reflection_methodbuilder_to_mono_method): Copy the generic
26879         parameters from the MethodBuilder into `header->gen_params'.
26881 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26883         * class.c (mono_class_from_generic_parameter): Fix warning.
26885 2004-01-27  Martin Baulig  <martin@ximian.com>
26887         * class.c (mono_class_from_generic_parameter): Don't create
26888         `klass->methods' here.  
26890 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26892         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26893         extension since it does not work with libraries named lib<FOO>.dll.so.
26895 2004-01-25  Martin Baulig  <martin@ximian.com>
26897         * class.c (mono_class_inflate_generic_type): Added support for
26898         MONO_TYPE_GENERICINST.
26900         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26901         inflate methods on open constructed types.      
26903 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26905         * object.c: fire ProcessExit event in the root AppDomain after running
26906         Main. Fixes bug #53299.
26908 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26910         * socket-io.c: include the new socket-wrappers.h header.
26911         Use the wrappers instead of the unix socket functions to make the code
26912         more clear.
26914 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26916         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26918         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26919         Fixes #22532.
26921 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26923         * reflection.c (mono_image_create_pefile): Handle the case when the
26924         entry point is not a MethodBuilder.
26926         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26927         field to ReflectionMethod since it is not allways a builder.
26929         * reflection.c (type_get_fully_qualified_name): New helper function to
26930         return the fully qualified name of a type.
26932         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26933         type name for custom marshallers.
26935         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26937         * class.c (mono_class_setup_vtable): If a parent class already 
26938         implements an interface, use the implementing methods from that class.
26939         Fixes #53148.
26941 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26943         * threadpool.c: just return instead of ExitThread to allow for thread
26944         clean up earlier.
26946 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26948         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26949         when closing resource modules.
26951         * reflection.c (mono_image_create_pefile): Handle the case when the
26952         entry point is not a MethodBuilder.
26954         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26955         field to ReflectionMethod since it is not allways a builder.
26957 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26959         * marshal.c (mono_marshal_get_managed_wrapper): 
26960         mono_marshal_alloc takes native int so CONV_I
26961         the arg for 64bits.
26963 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26965         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26966         tokens in the cattr table. Fixes #53108.
26968 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26970         * loader.c: don't trim ".dll" before looking up in the config file.
26971         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26973 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26975         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26976         Return the module which contains the resource as well.
26977         (ves_icall_System_Reflection_Module_Close): New icall.
26979         * appdomain.c: Bump corlib version number.
26981         * image.c (mono_image_addref): New public function.
26983         * assembly.c: Call mono_image_addref.
26985         * reflection.c (mono_module_get_object): Increase reference count of 
26986         the image.
26988         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26989         Fixes #22532.
26991         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26992         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26993         proper exceptions on DllImport problems.
26995 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26997         * class.c, metadata.c: eliminate CSIZE macro.
26999 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27001         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27002         * object.h: Added async_callback field in MonoAsyncResult.
27003         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27004         * verify.c: Added async_callback in MonoAsyncResult layout.
27006 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27008         * reflection.c (mono_reflection_get_custom_attrs): Add support
27009         for Modules.
27011 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27013         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27014         marshalling.
27015         (mono_marshal_method_from_wrapper): Add null pointer check.
27017 2004-01-16  Martin Baulig  <martin@ximian.com>
27019         * debug-mono-symfile.h: Set version number to 36 and reflect
27020         latest symbol writer changes.
27022 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27024         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27025         multi-dimensional arrays.
27026         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27027         (mono_class_from_mono_type): Use bounded_array_class_get.
27028         
27029         * class.c (mono_bounded_array_class_get): New function which takes
27030         a 'bounded' bool argument to distinguish vectors from one dimensional
27031         arrays.
27033         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27034         bounded_array_class_get if the array has bounds.
27036         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27037         Search modules loaded using AssemblyBuilder:AddModule as well.
27039 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27041         * appdomain.c: increased corlib version.
27042         * filewatcher.c: removed g_print.
27043         * icall.c:
27044         (get_property_info): only allocate what is actually requested.
27045         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27047 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27049         * Makefile.am: added filewatcher.[ch]
27050         * filewatcher.[ch]: FileSystemWatcher runtime support.
27051         * icall.c: added new FSW icalls.
27053 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27055         * string-icalls.c: fix stringbuilder regression as suggested by
27056         Iain McCoy <iain@mccoy.id.au>.
27058 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27060         * process.c (process_read_stringtable_block): Recognize '007f' as
27061         a language neutral stringtable block.
27063 2004-01-12  Patrik Torstensson
27065         * object.h (MonoStringBuilder) : Changed layout to support our
27066         new stringbuilder class.
27067         * marshal.c: Change marshalling to support the new layout of 
27068         string builder.
27069         * appdomain.c: increased version number because new layout of
27070         string builder.
27072 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27074         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27075         assembly name as an string instead of an AssemblyName, since it is
27076         easier to extract info from it.
27078         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27079         the culture subdirectories too. Fixes #52231.
27081 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27083         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27084         It takes 2 new parameters with an optional name for the method to look
27085         for and case ignoring info.
27087         * threadpool.c: removed unused variable.
27089 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27091         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27092         It takes 2 new parameters with an optional name for the property to look
27093         for and case ignoring info.
27094         Fixes bug #52753.
27096 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27098         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27099         Fix #52451.
27101 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27103         * appdomain.c:
27104         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27105         Fixes bug #52630.
27107 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27109         * reflection.c: Add support for more than one unmanaged resource.
27111         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27112         in field->def_value, as done in all other cases.
27114         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27115         TypeBuilders.
27117         * reflection.c (mono_reflection_create_runtime_class): Remove 
27118         errorneous assignment to klass->element_class, since it is already
27119         done in mono_reflection_setup_internal_class.
27121 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27123         * gc.c: added missing LeaveCriticalSection.
27124         * icall.c: indented a couple of lines.
27125         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27126         if we call EndInvoke inside a callback. Fixes bug #52601.
27128 2004-01-07  Martin Baulig  <martin@ximian.com>
27130         * mono-debug-debugger.h
27131         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27133 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27135         * appdomain.c: Use messages in NotImplementedException.
27137         * exception.c (mono_get_exception_not_implemented): Now this takes
27138         a message argument.
27140         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27141         exception instead of g_asserting an aborting when something is not
27142         implemented.
27144         Add some inline docs.
27146 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27148         * reflection.h: Update after changes to object layout.
27150         * reflection.c: Implement saving of unmanaged aka win32 resources.
27152         * appdomain.c: Bump version number.
27154         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27155         Handle missing domains gracefully.
27157 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27159         * file-io.c : On Windows, there are much more invalid_path_chars.
27161 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27163         * class.h, object.c: prepare for GetType () speedup.
27165 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27167         * profiler.c: workaround for --profile null reference exception on
27168           cygwin. Patch by Patrik Torstensson.
27170 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27172         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27173         make work for unaligned access.
27175 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27177         * class.c: small cleanup (class->fields [i] -> field).
27178         * image.c: check address of metadata is valid.
27180 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27182         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27183         search the list of loaded assemblies.
27185         * reflection.c (mono_reflection_type_from_name): Use 
27186         mono_assembly_loaded instead of mono_image_loaded.
27188         * reflection.c: Fix warnings.
27190 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27192         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27193         is dynamic. This is needed since an assembly can contain both dynamic and
27194         non-dynamic images.
27196         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27197         assembly->dynamic.
27199         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27201         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27202         to store modules loaded using AddModule.
27204         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27205         on Modules.
27207         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27209         * reflection.c (mono_image_fill_export_table_from_module): New function to
27210         fill out the EXPORTEDTYPES table from a module.
27212         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27213         into a separate function. Also handle loaded non-dynamic modules.
27215         * reflection.c (mono_image_basic_init): Fix memory allocation.
27217         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27219         * assembly.c (mono_assembly_load_references): Make this public.
27221 2003-12-19  Martin Baulig  <martin@ximian.com>
27223         * class.c (mono_class_initialize_generic): Made this static, take
27224         a `MonoGenericInst *' instead of a `MonoClass *'.
27225         (mono_class_from_generic): Call mono_class_initialize_generic()
27226         unless we're already initialized or being called from
27227         do_mono_metadata_parse_generic_inst().
27229         * class.h (MonoGenericInst): Added `initialized' and
27230         `init_pending' flags.
27232         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27233         `mono_class_init (gklass)' or mono_class_initialize_generic()
27234         here; set `generic_inst->init_pending' while parsing the
27235         `type_argv'.
27237 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27239         * locales.c: include string.h for memxxx prototypes
27241 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27243         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27244         constructor when accessing literal fields.
27246 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27248         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27250         * reflection.c (assembly_add_resource_manifest): New function to fill
27251         the MANIFESTRESOURCE table.
27253         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27255         * reflection.h: Update to changes in class layout.
27257         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27258         Reenable call to mono_runtime_is_shutting_down ().
27260         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27261         determine if the runtime is shutting down.
27263 2003-12-16  Jackson Harper <jackson@ximian.com>
27265         * icall.c: comment out call to mono_runtime_is_shutting_down to
27266         fix build.
27267         
27268 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27270         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27271         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27273 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27275         * reflection.c: move definition of swap_with_size
27276         to before its first call
27278 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27280         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27282         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27283         icall.
27285         * object.c: Fix warnings.
27287         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27288         members if FlattenHierarchy is set.
27290         * reflection.c (mono_image_add_decl_security): New function to emit
27291         declarative security.
27293         * reflection.h reflection.c: Add support for declarative security.
27295         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27296         
27297 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27299         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27300         
27301         * appdomain.c verify.c: Moved corlib version checking into its own
27302         function in appdomain.c since it needs to create vtables etc.
27304 2003-12-13  Patrik Torstensson <p@rxc.se>
27306         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27307         instead of unwrapped server.
27309 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27311         * verify.c (check_corlib): Fix field index.
27313 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27315         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27316         GetGacPath icall.
27318 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27320         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27321         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27322         cope with sizeof(size_t) != sizeof(guint32).
27324 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27326         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27327         in case of failure.
27329 2003-12-10  Mark Crichton <crichton@gimp.org>
27331         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27332         in managed code.
27334         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27336 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27338         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27339         marked as deleted.
27341 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27343         * verify.c (check_corlib): Handle the case when the version field is 
27344         initialized by a static constructor.
27346 2003-12-08  Patrik Torstensson  <p@rxc.se>
27348     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27350 2003-12-08  Martin Baulig  <martin@ximian.com>
27352         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27353         a MonoReflectionGenericParameter, also take the parameter index
27354         and name as arguments.
27355         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27356         (ves_icall_MonoGenericParam_initialize): New interncall.
27357         (ves_icall_Type_make_byref_type): New interncall.
27359         * reflection.h (MonoReflectionGenericParam): Derive from
27360         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27361         `index' fields.
27363         * reflection.c (mono_reflection_define_generic_parameter): Create
27364         and return a new MonoReflectionGenericParam; don't initialize the
27365         constraints here.
27366         (mono_reflection_initialize_generic_parameter): New public method;
27367         initializes the constraints and creates the `param->pklass'.
27369 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27371         * reflection.h reflection.c: Use the new fields 'num_types', 
27372         'num_fields' and 'num_methods' to track the number of types etc.
27374         * verify.c (check_corlib): Check corlib version number.
27376 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27378         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27379         function works on all methods.
27381 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27383         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27384         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27385         the custom_type_info flag of the transparent proxy.
27386         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27387         objects that supports IRemotingTypeInfo.
27388         * object.h: Added custom_type_info field in transparent proxy.
27390 2003-12-06  Martin Baulig  <martin@ximian.com>
27392         * class.c (mono_class_create_from_generic): Removed.
27393         (mono_class_from_generic): Check `ginst->klass' before doing
27394         anything else.  This is important to fully support "recursive"
27395         generic types.
27397         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27398         empty `generic_inst->klass' before doing anything else.
27400 2003-12-06  Dick Porter  <dick@ximian.com>
27402         * verify.c: 
27403         * object.h:
27404         * icall.c:
27405         * locales.c: Use C structs to access class fields.  Don't do a
27406         conversion between MonoString and UChar because both are
27407         platform-endian UTF-16.  Compare now takes startindex and count
27408         parameters.  Add a char overload for IndexOf.  Speed up the
27409         invariant string IndexOf.
27411 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27413         * Makefile.am (monosn_LDADD): Fix parallel build.
27415 2003-12-04  Martin Baulig  <martin@ximian.com>
27417         * icall.c
27418         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27419         (ves_icall_Type_make_array_type): New interncall.       
27421 2003-12-04  Martin Baulig  <martin@ximian.com>
27423         * locales.c: also change it in the !HAVE_ICU case.
27425 2003-12-04  Dick Porter  <dick@ximian.com>
27427         * icall.c:
27428         * locales.c: construct_compareinfo is now in CompareInfo, not
27429         CultureInfo.
27431 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27433         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27434         image->files array.
27436         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27437         table as well.
27439         * assembly.c (mono_assembly_load_references): Only load references
27440         once.
27442         * class.c (mono_class_from_name): Avoid linear search of the 
27443         EXPORTEDTYPE table.
27445         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27447 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27449         * image.h (MonoImage): Add 'field_cache' field.
27451         * loader.c (mono_field_from_token): Cache field lookups.
27452         
27453         * reflection.c (mono_module_get_object): Fix name property.
27455         * icall.c (ves_icall_get_enum_info): Update after changes to 
27456         mono_metadata_get_constant_index ().
27458         * icall.c: Get rid of get_type_info icall, use a separate icall for
27459         each type property to avoid needless memory allocations. Fixes #51514.
27461         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27462         to avoid needless binary searches.
27464         * class.c (class_compute_field_layout): Move the initialization of
27465         field->def_value to mono_class_vtable ().
27467         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27468         non-corlib types.
27470         * object.c (mono_object_allocate): Make it inline.
27472         * object.c (mono_object_allocate_spec): Make it inline.
27473         
27474 2003-12-02  Dick Porter  <dick@ximian.com>
27476         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27477         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27479 2003-12-01  Dick Porter  <dick@ximian.com>
27481         * threads.c: Fix signature and call in CreateMutex and
27482         CreateEvent.
27484 2003-12-01  Dick Porter  <dick@ximian.com>
27486         * icall.c: 
27487         * locales.c: Implement string compares and searching
27489         * object.h: Add extra Thread field
27491 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27493         * reflection.c (fixup_method): Add support for MonoCMethod.
27495 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27497         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27499         * reflection.c (assembly_name_to_aname): Allow extra characters in
27500         assembly names. Fixes #51468.
27502 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27504         * exception.c (mono_exception_from_name_domain): New helper function.
27506         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27507         exception object in the correct domain.
27509         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27510         formatting + make a copy a the input data.
27512         * loader.c (mono_get_method_from_token): Methods which contain
27513         native code do not have entries in the ImplMap.
27515         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27516         Thanks to Gonzalo for spotting this.
27517         
27518         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27519         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27521         * assembly.h (mono_assembly_load_from): Split the second part of 
27522         assembly loading into a new public function.
27524         * exception.h (mono_get_exception_bad_image_format): New function.
27526 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27528         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27529         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27530         
27531         * icall.c: Add new icall for creating dynamic methods.
27533         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27535         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27537         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27538         create a dynamic method.
27540         * reflection.c (resolve_object): New helper function.
27542         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27543         which manipulate it so they can also work on dynamic methods.
27545         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27546         creating the MonoReflectionMethodAux structure if it is not needed.
27547         
27548         * reflection.h verify.c: Update after changes to object layout.
27550         * reflection.c (method_builder_encode_signature): Fix compilation on
27551         gcc 2.95.x.
27553 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27555         * appdomain.h: Added support for context static fields. Added static_data
27556           field to MonoAppContext and renamed thread_static_fields to a more
27557           generic special_static_fields in MonoAppDomain, since it can now contain
27558           context static fields.
27559         * domain.c: Updated hashtable name.
27560         * object.c: Replaced field_is_thread_static() for a more generic
27561           field_is_special_static() which also checks for context static attribute.
27562           In mono_class_vtable(), added support for static context fields.
27563         * threads.c: Changed methods that manage thread static fields to more
27564           generic methods so they can be reused both for thread and context static
27565           data.
27566         * threads.h: Declared some new methods.
27568 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27570         * reflection.h: Update after changes to the managed types.
27572         * reflection.c (encode_custom_modifiers): New helper function.
27574         * reflection.c (method_encode_signature): Emit custom modifiers.
27576         * reflection.c (field_encode_signature): Emit custom modifiers.
27578 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27580         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27582         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27583         implementation.
27585         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27586         icall.
27588         * object.c (mono_field_get_value_object): New function.
27590         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27591         specific.
27593 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27595         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27596         return a preallocated out-of-memory exception instance.
27598         * object.c (out_of_memory): Use the new function.
27600         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27601         flag is before the custom modifiers. Fixes #49802.
27603 2003-11-16  Martin Baulig  <martin@ximian.com>
27605         * class.c (mono_class_is_open_constructed_type): Implemented the
27606         MONO_TYPE_GENERICINST case.
27608 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27610         * assembly.c (mono_assembly_fill_assembly_name): New function to
27611         fill out the MonoAssemblyName structure.
27612         (mono_assembly_open): Use the new function.
27614         * icall.c (fill_reflection_assembly_name): New helper function.
27616         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27617         new function.
27619         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27621 2003-11-15  Martin Baulig  <martin@ximian.com>
27623         * class.c (mono_class_is_open_constructed_type): New public
27624         function; checks whether a type is an open constructed type,
27625         ie. whether it still contains type parameters.
27626         (mono_class_inflate_generic_type): If we're a type parameter and
27627         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27628         type.
27630         * class.h (MonoGenericInst): Added `guint32 is_open'.
27632         * loader.c (method_from_methodspec): Check whether we're an open
27633         or closed constructed type and set `ginst->is_open'.
27635         * reflection.c (mono_reflection_bind_generic_parameters): Check
27636         whether we're an open or closed constructed type and set
27637         `ginst->is_open'.
27638         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27639         from open constructed types.
27641 2003-11-15  Martin Baulig  <martin@ximian.com>
27643         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27644         a generic instance (instead of a generic type declaration) with
27645         unbound generic parameters, bind them to our actual types.
27647 2003-11-14  Martin Baulig  <martin@ximian.com>
27649         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27651         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27652         an interface type, populate `res->interfaces' with instantiated
27653         versions of all the interfaces we inherit.
27655 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27657         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27658         when MONO_PATH is set but doesn't contain the install dir.
27660 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27662         * icall.c:
27663         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27664         it's also implemented in base classes. Fixes bug #50927.
27666 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27668         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27669         if this method is called from a finalizer. Fixes #50913.
27671 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27673         * threads.c: Implement VolatileRead/VolatileWrite
27675         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27677 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27679         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27680         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27681         2.95.3.
27683         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27684         from Peter Ross (pro@missioncriticalit.com).
27685         
27686 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27688         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27690 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27692         * assembly.c (mono_assembly_load_references): Disable check because it
27693         triggers on older corlibs which lots of people have.
27695 2003-11-12  Jackson Harper  <jackson@ximian.com>
27697         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27698         load corlib.dll if mscorlib.dll is not found.
27699         * assembly.h: Remove corlib name define.
27700         * class.c:
27701         * domain.c:
27702         * image.c: Change corlib name to mscorlib.
27703         
27704 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27706         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27708 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27710         * appdomain.h: Added loader_optimization here to sync with the C#
27711         code, and add disallow_binding_redirects field.
27713 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27715         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27717         * reflection.c (mono_image_build_metadata): Fix crash on modules
27718         with no types.
27720         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27722         * icall.c (ves_icall_get_method_info): Return callingConvention as
27723         well.
27725         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27726         namespaces from the EXPORTEDTYPE table as well.
27728         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27729         from all modules inside the assembly.
27730         
27731 2003-11-11  Martin Baulig  <martin@ximian.com>
27733         * reflection.c (mono_reflection_bind_generic_parameters): Make
27734         this work for interfaces.
27736 2003-11-11  Martin Baulig  <martin@ximian.com>
27738         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27740 2003-11-11  Martin Baulig  <martin@ximian.com>
27742         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27743         "MonoInflatedMethod" and "MonoInflatedCtor".
27745 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27747         * reflection.c (resolution_scope_from_image): Use the assembly table
27748         from the manifest module, since other modules don't have it.
27750         * debug-helpers.c (mono_type_full_name): New helper function.
27752         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27754         * image.c (mono_image_load_file_for_image): New public function which
27755         is a replacement for the load_file_for_image in class.c.
27757         * assembly.c (mono_assembly_load_module): A wrapper for the function
27758         above which does assembly association and reference loading too.
27760         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27762 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27764         * appdomain.c: not all of the attributes for the full assembly name
27765         are required and the order doesn't matter. Fixes bug #50787.
27767 2003-11-10  Dick Porter  <dick@ximian.com>
27769         * locales.c: Use platform-endian UTF16
27771 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27773         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27774         
27775 2003-11-10  Martin Baulig  <martin@ximian.com>
27777         * metadata.c
27778         (mono_metadata_load_generic_params): Make this actually work.
27780         * reflection.c (mono_reflection_bind_generic_parameters): If our
27781         parent is a generic instance, pass all the `types' to it, no
27782         matter whether it has the same number of type parameters or not.
27784 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27786         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27788         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27789         assignment code to this function so it gets called recursively for all
27790         modules.
27792         * image.c (load_modules): Remove the assembly assignment since it is
27793         now done by mono_assembly_load_references.
27794         
27795         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27796         Add 'module' argument.
27797         (mono_module_get_types): New helper function.
27798         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27800 2003-11-08  Martin Baulig  <martin@ximian.com>
27802         * class.c (mono_class_inflate_generic_method): Interface method
27803         don't have a header.
27805         * reflection.c (mono_image_get_methodspec_token): Take an
27806         additional `MonoGenericInst *' argument instead of reading it from
27807         the header; this is necessary to support interfaces.
27808         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27809         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27810         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27811         argument.
27813         * reflection.h (MonoReflectionInflatedMethod): Added
27814         `MonoGenericInst *ginst'.
27816 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27818         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27820 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27822         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27824 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27826         * reflection.c 
27827         (reflection_methodbuilder_from_method_builder):
27828         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27829         initialize a ReflectionMethodBuilder structure.
27830         (mono_image_get_methodbuilder_token):
27831         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27832         tokens which point to types in another module inside the same assembly.
27834         * reflection.c: Use the new helper functions.
27835         
27836         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27838         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27839         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27841         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27842         neccesary.
27844         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27845         current module. Emit the manifest only for the main module.
27847         * reflection.c (mono_image_create_token): Add assertion when a 
27848         memberref needs to be created.
27850         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27852         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27853         larger buffer for the custom attribute blob. Fixes #50637.
27854         
27855 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27857         * threadpool.c: notify listener on async processing handles after
27858         invoking the async callback. Thanks to Zoltan.
27860 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27862         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27863         avoid code duplication.
27865         * reflection.h (MonoDynamicImage): New type which is currently unused,
27866         but will be used through the ref.emit code in place of 
27867         MonoDynamicAssembly.
27869         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27870         object layout.
27872         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27873         a MonoDynamicImage instead of just a MonoImage.
27874         
27875         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27876         icalls to ModuleBuilder but keep their semantics, so they will work
27877         with moduleb->assemblyb. This will change later.
27878         
27879 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27881         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27882         object layout.
27884         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27885         main module, since it is now done by the managed code.
27887 2003-11-03  Martin Baulig  <martin@ximian.com>
27889         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27890         `ginst->klass' here.
27891         (method_encode_methodspec): Don't use the `ginst->generic_method's
27892         klass if it's a generic instance, use `ginst->klass' in this case.
27894 2003-11-03  Martin Baulig  <martin@ximian.com>
27896         * reflection.c (mono_image_get_generic_method_param_info):
27897         Removed, use mono_image_get_generic_param_info() instead.
27898         (mono_image_get_type_info): Write the GenericParam table before
27899         the Method table.  This is neccessary because in the GenericParam
27900         table, type parameters of the class (ie. '!0' etc.) must come
27901         before the ones from its generic methods (ie. '!!0' etc).
27903 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27905         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27907 2003-11-02  Martin Baulig  <martin@ximian.com>
27909         * reflection.c (create_generic_typespec): Take a
27910         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27911         the generic parameters from it.
27913 2003-11-02  Martin Baulig  <martin@ximian.com>
27915         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27916         instead of a `MonoClassField *' since we just need the type.
27917         (create_generic_typespec): New static function.  Creates a
27918         TypeSpec token for a generic type declaration.
27919         (mono_image_get_generic_field_token): New static function.
27920         (mono_image_create_token): If we're a FieldBuilder in a generic
27921         type declaration, call mono_image_get_generic_field_token() to get
27922         the token.
27924 2003-11-02  Martin Baulig  <martin@ximian.com>
27926         * reflection.h
27927         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27928         `MonoReflectionGenericInst *declaring_type' and
27929         `MonoReflectionGenericInst *reflected_type' fields.
27931         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27932         `MonoReflectionGenericInst *declaring_type' and a
27933         `MonoReflectionGenericInst *reflected_type' argument instead of a
27934         single `MonoReflectionGenericInst *type' one.  Set
27935         `res->declaring_type' and `res->reflected_type' from them.
27936         (mono_reflection_inflate_field): Likewise.      
27938 2003-11-02  Martin Baulig  <martin@ximian.com>
27940         * class.c (mono_class_setup_vtable): Don't store generic methods
27941         in the vtable.  
27943 2003-11-02  Martin Baulig  <martin@ximian.com>
27945         * reflection.h (MonoReflectionGenericInst): Added
27946         `MonoReflectionType *declaring_type'.
27948         * reflection.c (mono_reflection_bind_generic_parameters): Use
27949         `if (tb->parent)' instead of `klass->parent'.
27951 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27953         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27954         with an empty ASSEMBLY table.
27956         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27957         variable in the inner and outer loops.
27959 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27961         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27962         argument.
27964         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27965         
27966         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27967         icalls. Instead, do everything in managed code. This is needed since
27968         it is hard to restore the original domain etc. in unmanaged code in the
27969         presence of undeniable exceptions.
27971         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27972         New icalls to push and pop appdomain refs.
27974 2003-10-31  Martin Baulig  <martin@ximian.com>
27976         * class.c (inflate_generic_type): Renamed to
27977         mono_class_inflate_generic_type() and made it public.
27979         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27980         New interncall.
27982         * loader.c (mono_field_from_memberref): Also set the retklass for
27983         typespecs.
27985         * fielder.c (mono_image_get_inflated_field_token): New static
27986         method; creates a metadata token for an inflated field.
27987         (mono_image_create_token, fixup_method): Added support for
27988         "MonoInflatedField".
27989         (fieldbuilder_to_mono_class_field): New static function.
27990         (mono_reflection_inflate_field): New public function.
27992         * reflection.h
27993         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27994         (MonoReflectionInflatedField): New typedef.     
27996 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27998         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27999         for Solaris and other platforms without s6_addr16
28001 2003-10-30  Martin Baulig  <martin@ximian.com>
28003         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28004         argument instead of two.
28005         (mono_class_inflate_generic_signature): Likewise.
28006         (inflate_generic_header): Likewise.
28007         (mono_class_inflate_generic_method): Likewise.  In addition, if
28008         `ginst->klass' is set, it becomes the new `method->klass'.
28010         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28011         field.
28013         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28014         first byte. [FIXME]
28015         (method_encode_methodspec): If we have generic parameters, create
28016         a MethodSpec instead of a MethodRef.
28017         (fixup_method): Added support for "MonoInflatedMethod" and
28018         "MonoInflatedCtor".
28019         (mono_image_create_token): Added support for "MonoInflatedMethod"
28020         and "MonoInflatedCtor".
28021         (inflated_method_get_object): New static function; returns a
28022         managed "System.Reflection.MonoInflatedMethod" object.
28023         (mono_reflection_bind_generic_method_parameters): Return a
28024         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28025         (mono_reflection_inflate_method_or_ctor): Likewise.
28026         (mono_image_get_generic_method_param_info): Initialize unused
28027         fields to zero.
28028         (mono_image_get_generic_param_info): Likewise.
28030         * reflection.h (MonoReflectionInflatedMethod): New public
28031         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28032         "S.R.MonoInflatedCtor" classes.
28034         * loader.c (method_from_memberref): If we're a TypeSpec and it
28035         resolves to a generic instance, inflate the method.
28037 2003-10-28  Dick Porter  <dick@ximian.com>
28039         * object.c (mono_runtime_run_main): Convert command-line arguments
28040         into utf8, falling back to the user's locale encoding to do so.
28042 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28044         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28045         at this time.
28047         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28049         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28050         up icalls at method definition time. Partially fixes #33569.
28052 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28054         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28055         marshalling of arrays. Fixes #50116.
28057         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28059         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28060         points to a vtable in the dying appdomain.
28062         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28063         listeners into unmanaged code inside the lock.
28065         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28066         domains and add some comments.
28068 2003-10-25  Martin Baulig  <martin@ximian.com>
28070         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28072         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28074         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28075         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28076         currently parsing.  Create the generic class and store it in
28077         `generic_inst->klass' before parsing the type arguments.  This is
28078         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28079         for an example.
28080         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28081         to support recursive typespec entries.
28083         * class.c (mono_class_setup_parent): If our parent is a generic
28084         instance, we may get called before it has its name set.
28085         (mono_class_from_generic): Splitted into
28086         mono_class_create_from_generic() and mono_class_initialize_generic().
28088 2003-10-25  Martin Baulig  <martin@ximian.com>
28090         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28091         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28092         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28093         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28095         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28096         (create_typespec): Likewise.
28097         (mono_reflection_bind_generic_parameters): Return a
28098         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28099         (mono_reflection_inflate_method_or_ctor): New public function.
28101         * reflection.h (MonoReflectionGenericInst): New typedef.        
28103 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28105         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28106         inside the domain lock. Fixes #49993.
28107         
28108         * object.c (mono_class_vtable): When typed allocation is used, 
28109         allocate vtables in the GC heap instead of in the mempool, since the
28110         vtables contain GC descriptors which are used by the collector even
28111         after the domain owning the mempool is unloaded.
28113         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28115         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28116         reflect what it does. Also invalidate mempools instead of freeing
28117         them if a define is set.
28119         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28120         of the appdomain.
28121         
28122         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28123         hold the finalizable objects in this domain.
28125         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28126         appdomain.
28128         * appdomain.c (mono_domain_set): New function to set the current
28129         appdomain, but only if it is not being unloaded.
28131         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28132         appdomain which is being unloaded.
28133         
28134         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28135         unloading of the root appdomain.
28137         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28138         icall to execute a method in another appdomain. Intended as a 
28139         replacement for InternalSetDomain, which can confuse the code 
28140         generation in the JIT.
28142         * appdomain.c (mono_domain_is_unloading): New function to determine
28143         whenever an appdomain is unloading.
28145         * appdomain.c (mono_domain_unload): New function to correctly unload
28146         an appdomain.
28148         * assembly.c (mono_assembly_load_references): Check that an assembly
28149         does not references itself.
28151         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28152         domain manually, it asks the finalizer thread to do it, then waits for
28153         the result. Also added a timeout.
28155         * icall.c: Register the new icalls.
28157         * threads.h threads.c: Export the mono_gc_stop_world and 
28158         mono_gc_start_world functions.
28159         
28160         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28161         function to fill out the mempool with 0x2a.
28163 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28165         * reflection.h (MonoReflectionMethodAux): New structure to store
28166         information which is rarely used, thus is not in the MonoMethod
28167         structure.
28169         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28170         store the aux info.
28172         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28173         and marshalling info into the aux structure.
28175         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28176         from the aux structure.
28178         * loader.c (mono_method_get_param_names): Retrieve the param names from
28179         the aux structure.
28180         
28181 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28183         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28184         warning.
28186 2003-10-21  Dick Porter  <dick@ximian.com>
28188         * socket-io.c
28189         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28190         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28192 2003-10-21  Martin Baulig  <martin@ximian.com>
28194         * reflection.c (mono_reflection_bind_generic_parameters):
28195         `klass->parent' is NULL for interfaces.
28197 2003-10-21  Martin Baulig  <martin@ximian.com>
28199         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28201 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28203         * exception.c (mono_exception_from_name_msg): New helper function for
28204         creating exceptions and initializing their message field.
28206         * exception.c: Simplify functions using the new helper.
28208         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28209         New function.
28211         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28212         mono_raise_exception, since otherwise gcc doesn't generate the function
28213         epilog for raise_exception, confusing the stack unwinding in the JIT.
28214         Fixes #45043.
28216         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28217         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28218         Fixes #49499.
28220 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28222         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28223         utf8.
28225 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28227         * icall.c: Removed GetUninitializedObject method because
28228           AllocateUninitializedClassInstance does the same.
28230 2003-10-18  Martin Baulig  <martin@ximian.com>
28232         * class.c (inflate_generic_signature): Renamed to
28233         mono_class_inflate_generic_signature() and made it public.
28234         (my_mono_class_from_generic_parameter): New static function; if we
28235         don't already have the generic parameter's MonoClass, create a
28236         very simple one which is just used internally in the runtime and
28237         not passed back to managed code.
28239         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28241         * metadata.h (MonoMethodSignature): Moved the
28242         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28243         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28245         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28246         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28247         interncall on the MonoMethod class, not on MethodInfo.
28248         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28249         calling mono_reflection_bind_generic_method_parameters() directly.
28251         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28252         return the already computed `method->signature'.
28253         (method_from_methodspec): New static function to load a method
28254         from a MethodSpec entry.
28255         (mono_get_method_from_token): Call the new method_from_methodspec()
28256         for MethodSpec tokens.  
28257         (mono_get_method_from_token): If we're a generic method, load the
28258         type parameters.
28260         * reflection.c (mono_image_get_memberref_token): Allow
28261         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28262         table.
28263         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28264         (mono_image_create_token): First check whether it's a generic
28265         method (so we'd need to create a MethodSpec), then do the other
28266         two alternatives.
28267         (mono_reflection_bind_generic_method_parameters): Return a
28268         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28269         called directly from the interncall.
28271 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28273         * reflection.c (load_public_key): Move loading of the public key
28274         into managed code.
28276         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28278         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28279         fields.
28281         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28282         culture, hash_alg and public_key. Fixes #49555.
28284 2003-10-17  Martin Baulig  <martin@ximian.com>
28286         * class.h (MonoGenericInst): Moved this declaration here and added
28287         `MonoMethod *generic_method'.
28289         * icall.c
28290         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28291         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28293         * metadata.c (mono_metadata_type_equal): Two types of
28294         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28295         index; ie. don't compare the address of the `MonoGenericParam'
28296         structure.
28297         (mono_metadata_load_generic_params): Removed the `MonoMethod
28298         *method' argument.
28300         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28301         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28303         * reflection.c (method_encode_signature): Encode the number of
28304         generic parameters.
28305         (encode_generic_method_sig): New static function.
28306         (method_encode_methodspec): New static function; creates an entry
28307         in the MethodSpec table for a generic method.
28308         (mono_image_get_methodspec_token): New static function.
28309         (mono_image_create_token): Call mono_image_get_methodspec_token()
28310         for generic methods.
28311         (mono_reflection_bind_generic_method_parameters): New public
28312         function.  Instantiates a generic method.
28314 2003-10-16  Martin Baulig  <martin@ximian.com>
28316         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28317         *gen_params' here from MonoMethodHeader.
28319         * metadata.c (mono_metadata_parse_method_signature): If we have
28320         generic parameters, initialize `method->gen_params' and then set
28321         the correct `type->data.generic_param' in all the parameters.
28323 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28325         * threads.c (mono_threads_get_default_stacksize): New function to 
28326         return the default stacksize.
28328         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28329         termination of the finalizer thread, since the previous method had
28330         race conditions. Fixes #49628.
28332         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28333         as for the other managed threads.
28335 2003-10-16  Martin Baulig  <martin@ximian.com>
28337         * class.c (inflate_generic_signature): Copy `generic_param_count'
28338         and `gen_params'.
28340         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28341         New interncall.
28343         * metadata.c (mono_metadata_parse_method_signature): Actually set
28344         the `method->generic_param_count' here.
28345         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28347 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28349         * object.h: Add a new field to TypedRef to simplify the implementation
28350         of the REFANY opcodes in the JIT.
28352         * icall.c: Make use of the new field.
28354         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28355         dynamically.
28357 2003-10-15  Martin Baulig  <martin@ximian.com>
28359         * class.c (mono_class_from_gen_param): Renamed to
28360         mono_class_from_generic_parameter() and moved most of the
28361         functionality from mono_reflection_define_generic_parameter()
28362         here; ie. we create a "real" class here.
28363         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28364         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28365         previously been called.
28367         * class.h (MonoGenericParam): Moved the declaration of this struct
28368         here from metadata.h and added `MonoMethod *method'.
28370         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28371         interncall.
28373         * loader.c (mono_get_method_from_token): If we have any generic
28374         parameters, call mono_metadata_load_generic_params() to read them
28375         from the MONO_TABLE_GENERICPAR.
28377         * metadata.c (mono_metadata_load_generic_params): Added
28378         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28380         * metadata.h (MonoMethodSignature): Replaced
28381         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28382         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28384         * reflection.c (mono_reflection_define_generic_parameter): Moved
28385         most of the functionality into the new
28386         mono_class_from_generic_parameter(); set the `method' field if
28387         we're a method parameter.       
28389 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28391         * marshal.c (emit_struct_conv): if native size is 0
28392         emit no code.
28394 2003-10-14  Martin Baulig  <martin@ximian.com>
28396         * icall.c: The generics API has changed in the spec since it was
28397         added to System.Type; these modifications make it match the spec
28398         again.
28399         (ves_icall_Type_GetGenericParameters): Renamed to
28400         `ves_icall_Type_GetGenericArguments'.
28401         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28402         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28403         `ves_icall_MonoType_get_HasGenericArguments'.
28404         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28405         `ves_icall_MonoType_get_IsGenericParameter'.
28406         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28407         this is no interncall anymore.
28408         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28409         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28411 2003-10-14  Martin Baulig  <martin@ximian.com>
28413         * reflection.c (mono_reflection_bind_generic_parameters): Also
28414         inflate generic methods if we're reading the class from IL.
28416 2003-10-13  Martin Baulig  <martin@ximian.com>
28418         * reflection.c (mono_reflection_define_generic_parameter): This
28419         method isn't called directly from the icall anymore; take a
28420         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28421         method generic parameters.
28422         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28423         (method_builder_encode_signature): Encode generic parameters.
28424         (mono_image_get_method_info): Write generic params to the
28425         MONO_TABLE_GENERICPARAM table.
28427         * reflection.h (MonoReflectionMethodBuilder): Added
28428         `MonoArray *generic_params'.
28430         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28432         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28433         wrapper for mono_reflection_define_generic_parameter().
28434         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28436 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28438         * marshal.h: Add missing function to fix build.
28440         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28441         the SetLastError pinvoke attribute.
28443         * marshal.c (mono_marshal_set_last_error): New helper function called
28444         by the generated code.
28445         
28446         * marshal.c (mono_mb_emit_branch): New helper function.
28448         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28450         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28451         classes as parameters and return values of delegates. Fixes #29256. 
28453 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28455         * locales.c: use gint32 in non HAVE_ICU case
28457 2003-10-11  Martin Baulig  <martin@ximian.com>
28459         * mono-debug.c (mono_debug_add_method): Added a workaround for
28460         bug #48591.
28462 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28464         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28465         delegates passed to native code must use the STDCALL calling 
28466         convention. Fixes #35987.
28468 2003-10-10  Martin Baulig  <martin@ximian.com>
28470         * class.c (inflate_generic_type): If we're inflating for a generic
28471         type instance (and not for a generic method), return
28472         MONO_TYPE_MVAR unchanged.
28474 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28476         * string-icalls.c: Join ignores null strings in the source array.
28477         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28478         * threads.c: GetAvailableTheads is slightly more accurate.
28480 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28482         * threads.h threads.c : add mono_threads_set_default_stacksize
28483         and pass default to CreateThread calls.
28485 2003-10-09  Dick Porter  <dick@ximian.com>
28487         * icall.c:
28488         * locales.h:
28489         * locales.c: Internal calls for constructing CultureInfo and
28490         related objects from libicu (if its available.)
28492 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28494         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28496 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28498         * threadpool.c: added an argument to async_invoke_thread that is the
28499         item to process, pass the MonoAsyncResult to the thread start function
28500         when creating a new thread. This way we don't need to acquire any lock
28501         when we're creating a new thread. Readded a semaphore for faster
28502         response times (instead of that Sleep i added).
28504 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28506         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28507         get daylight change dates better on Windows, fix handling
28508         of platforms without tm_gmtoff.
28510 2003-10-06  Martin Baulig  <martin@ximian.com>
28512         * class.c (inflate_generic_method): Renamed to
28513         mono_class_inflate_generic_method() and made public.
28514         (mono_class_init): Don't inflate the generic methods here.
28515         (mono_class_from_generic): Added `gboolean inflate_methods'
28516         argument.  Inflate the methods here.
28518         * loader.c (mono_method_get_param_names): Ignore instances of
28519         generic types for the moment.
28521         * reflection.c (fixup_method): Added support for inflated methods.
28522         (mono_image_create_token): Use mono_image_get_methodref_token()
28523         for inflated methods.
28524         (mono_custom_attrs_from_param): Ignore instances of generic types
28525         for the moment.
28526         (mono_reflection_bind_generic_parameters): New public function.
28527         Moved all the functionality from
28528         ves_icall_Type_BindGenericParameters() here and added support for
28529         dynamic types.
28530         (mono_reflection_define_generic_parameter): Initialize
28531         `klass->methods' here.
28533         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28534         functionality into mono_reflection_define_generic_parameter().
28535         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28536         TypeBuilder, return that TypeBuilder.
28538 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28540         * appdomain.c: removed mono_delegate_semaphore.
28542         * threadpool.c:
28543         (mono_thread_pool_add): moved hash table creation inside and the thread 
28544         creation outside of the critical region.
28545         (mono_thread_pool_finish): removed obsolete code.
28546         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28547         continue or exit the thread depending on the queue.
28549 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28551         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28552         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28553         handle more bool marshalling options
28555 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28557         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28558         arrays of structs. Also add a more descriptive error message when
28559         a structure member is marshalled as LPArray.
28561 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28563         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28564         marshalling arrays of complex types. Fixes #29098. Also remove an
28565         usused and incomplete function.
28567 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28569         * gc.c: report heap_size - free_bytes as total memory allocated
28570         (bug#49362).
28572 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28574         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28575         fix timezone handling problems on Windows.
28576         
28577         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28578         asserts when the year is outside the range handled by ms the functions.
28580         * class.c (setup_interface_offsets): If the class is an interface,
28581         fill out its interface_offsets slot.
28583 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28585         * threadpool.c: mark threadpool threads as background.
28587 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28589         * decimal.c - define DECINLINE to nothing if not using GCC
28591 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28593         * assembly.c: More refcount fixes.
28595 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28597         * string-icalls.c: if we're not trimming, return the same string.
28598         When not splitting, don't create a new string.
28600 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28602         * image.c:
28603         (mono_image_open): increment the ref_count inside the critical section.
28605 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28607         * image.c (mono_image_open): Fix reference counting bug.
28609 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28611         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28612         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28613         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28614         mono_lookup_pinvoke_call throws.        
28616 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28618         * reflection.c (mono_reflection_parse_type): Fix #49114.
28620         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28621         temporary workaround for cygwin header problem.
28623         * object.c (mono_object_isinst): Synchronize this with the code
28624         generated by the JIT for casts.
28626 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28628         * reflection.c (encode_type): Fix #38332.
28630 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28632         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28633         the original method from the wrapper method.
28635 2003-09-25  Martin Baulig  <martin@ximian.com>
28637         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28638         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28639         (ves_icall_Type_get_IsGenericInstance): New interncall.
28641 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28643         * object.c: fix cast warning in big endian code.
28645 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28647         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28648         
28649 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28651         * assembly.c: don't call check_env from mono_assembly_load. It's
28652         already done once in mono_assemblies_init and may cause headaches when
28653         multiple threads are loading assemblies.
28655 2003-09-19  Martin Baulig  <martin@ximian.com>
28657         * reflection.c (mono_reflection_define_generic_parameter): Don't
28658         allocate `klass->methods', set `klass->flags' to
28659         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28661 2003-09-18  Martin Baulig  <martin@ximian.com>
28663         * class.c (mono_class_init): Don't create `class->methods' if it's
28664         already initialized.
28666         * metadata.c (mono_metadata_load_generic_params): Make this
28667         actually work.
28669         * reflection.c (mono_reflection_define_generic_parameter): Set
28670         parent class and interfaces from the constraints.
28672         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28673         to keep this struct in sync with the declaration in TypeBuilder.cs.
28675 2003-09-17  Martin Baulig  <martin@ximian.com>
28677         * metadata.h (MonoType): Replaced the data's `int type_param'
28678         field with `MonoGenericParam *generic_param'.
28679         (MonoGenericParam): Added `MonoClass *klass'.
28681         * class.c (mono_class_from_gen_param): Removed the
28682         `MonoImage *image' and `int type_num' arguments.
28684         * metadata.c (mono_metadata_parse_generic_param): New static
28685         method; creates a MonoGenericParam which just contains the index.
28686         (do_mono_metadata_parse_type): Call
28687         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28688         MONO_TYPE_MVAR.
28690         * reflection.c (mono_image_typedef_or_ref): Generic type
28691         parameters may be in the same assembly, but never use a typedef
28692         for them.
28693         (mono_reflection_define_generic_parameter): We're now creating a
28694         "real" class for the type parameter; it's now safe to call
28695         mono_class_from_mono_type() on the class'es type, it'll do the
28696         right thing.
28698 2003-09-16  Martin Baulig  <martin@ximian.com>
28700         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28701         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28702         the `symfile' data structure must be fully initialized before it
28703         gets added to the table.
28705 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28707         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28709         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28710         class init trampolines.
28712 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28714         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28715         to the built-in profiler to turn off time and allocation profiling
28716         respectively.
28718 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28720         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28721         g_direct_equal.
28723         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28724         in human readable form.
28726 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28728         * reflection.c icall.c: Fixed warnings.
28730         * image.c (load_class_names): Use a temporary hash table to hold the
28731         namespaces in order to avoid doing many string comparisons.
28733         * image.h: Fix typo.
28735         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28736         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28737         since the NULL case is short-circuited inside g_hash_table_lookup, 
28738         leading to better performance.  
28740         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28741         obtain the first custom attribute for a given index. Depends on the
28742         CustomAttribute table being sorted by the parent field.
28744         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28745         for better performance.
28747 2003-09-07  Martin Baulig  <martin@ximian.com>
28749         * class.c (mono_class_init): If we're a generic instance, inflate
28750         all our methods instead of loading them from the image.
28751         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28753 2003-09-07  Martin Baulig  <martin@ximian.com>
28755         * mono-debug-debugger.c: Added support for constructors.
28757 2003-09-06  Martin Baulig  <martin@ximian.com>
28759         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28760         New interncall.
28762         * reflection.c (mono_reflection_setup_generic_class): Call
28763         ensure_runtime_vtable() to create the vtable.
28765 2003-09-05  Martin Baulig  <martin@ximian.com>
28767         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28768         MONO_TYPE_MVAR.
28770 2003-09-04  Martin Baulig  <martin@ximian.com>
28772         * reflection.c (mono_reflection_define_generic_parameter): Generic
28773         parameters start with zero.
28775 2003-09-04  Martin Baulig  <martin@ximian.com>
28777         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28779         * reflection.h (MonoReflectionGenericParam): New typedef.
28780         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28781         the generic parameters from the managed TypeBuilder.
28783         * reflection.c (mono_reflection_define_generic_parameter): New function.
28784         (mono_reflection_create_runtime_class): Encode generic parameters.
28785         (mono_reflection_setup_generic_class): New function; this is
28786         called after adding adding all generic params to the TypeBuilder.
28787         (encode_type): Added MONO_TYPE_VAR.
28789 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28791         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28792         here from the JIT.
28794         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28795         load hook.
28797 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28799         * reflection.h reflection.c class.h class.c: Delete duplicate 
28800         definition of mono_type_get_name () from reflection.c and export the
28801         one in class.c.
28803         * class.c: Class loading fixes from Bernie Solomon 
28804         (bernard@ugsolutions.com).
28806         * reflection.c: Endianness fixes from Bernie Solomon 
28807         (bernard@ugsolutions.com).
28808         
28809 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28811         * assembly.h assembly.c: Define a file format version for AOT
28812         libraries.
28813         
28814         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28816         * appdomain.h (MonoJitInfo): New field to determine whenever the
28817         code is domain neutral.
28818         
28819 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28821         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28823 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28825         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28826         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28827         Avoid caching the result since strings must be domain specific. Fixes
28828         #48050.
28830 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28832         * marshal.c (mono_marshal_init): Make this callable multiple times
28833         since it is hard to find a correct place to call it.
28835         * object.c (mono_runtime_class_init): Execute static constructors in
28836         the correct appdomain.
28838         * image.c (build_guid_table): Handle the case when multiple images have
28839         the same GUID.
28841 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28843         * icall.c: added a couple of icalls for System.Web.
28845 2003-08-28  Martin Baulig  <martin@ximian.com>
28847         * icall.c (ves_icall_Type_BindGenericParameters): Use
28848         `klass->generic_inst' instead of `&klass->byval_arg' in the
28849         mono_type_get_object() call.  The returned type must be
28850         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28852 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28854         * NOTES: New file.
28856         * object.c (mono_class_proxy_vtable): Make it thread safe.
28858         * pedump.c: Fix warning.
28860         * object.c appdomain.h: Get rid of metadata_section. 
28861         It is no longer needed and it was causing deadlocks with domain->lock.
28863         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28865 2003-08-26  Martin Baulig  <martin@ximian.com>
28867         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28869 2003-08-26  Martin Baulig  <martin@ximian.com>
28871         * pedump.c (main): Call mono_metadata_init(),
28872         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28873         and mono_loader_init().
28875 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28877         * loader.h: Add missing include to fix build.
28879         * image.h: mono_image_load_references is no more.
28881         * assembly.c: Reworked assembly loading to make it really thread safe.
28882         After these changes, the assembly returned by mono_assembly_open is
28883         fully initialized, i.e. all its references assemblies are loaded.
28885         * assembly.c (mono_image_load_references): Renamed to 
28886         mono_assembly_load_references, and made private, since clients no
28887         longer need to call it.
28889         * class.c: Removed calls to mono_assembly_load_references, since it was
28890         a source of deadlocks.
28892         * loader.h loader.c class.h class.c: Protect data structures using a 
28893         new lock, the loader lock.
28895         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28896         GPtrArrays only when needed.
28898         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28899         into empty structures by mcs. Fixes pinvoke7.cs.
28900         
28901         * domain.c (mono_init): Call a new initialization function.
28903         * appdomain.c (mono_runtime_init): Call the new initializer function
28904         of the marshal module.
28906         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28907         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28909         * marshal.h marshal.c: Added locks around the wrapper caches to make
28910         this module thread safe.
28912         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28913         this argument. Fixes pinvoke1.exe.
28915 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28917         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28918         enumeration of values. Removed fields to store remote call output values in
28919         MonoAsyncResult. Not needed any more.
28920         * object.c: Initialize call_type and async_result fields in mono_message_init.
28921         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28922         dispatching the message.
28923         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28924         async call to finish. To do it use a message with EndInvoke call type.
28926 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28928         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28929         determines whenever a method has marshalling info.
28931 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28933         * assembly.c: fix the build on windows.
28935 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28937         * object.cs: Fixed bug #47785.
28939 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28941         * string-icalls.c (StringReplace): If their are no occurances of
28942         the old string found return a reference to the supplied
28943         string. This saves some memory and matches MS behavoir.
28944         
28945 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28947         * socket-io.c: fixed compilation for systems that define AF_INET6
28948         and don't define SOL_IP/SOL_IPV6.
28950 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28952         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28953         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28955         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28957         * domain.c: Make this module thread safe.
28959         * domain.c (mono_init): Call new initialization function.
28961         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28962         reference types too. Fixes #38812.
28964         * image.c (mono_image_init): Fixed warnings.
28966         * class.c (mono_class_from_typeref): Handle assembly load failure
28967         correctly.
28969         * appdomain.c (add_assemblies_to_domain): Handle the case when
28970         the references of an assembly are not yet loaded.
28972         * metadata.c image.c assembly.c: Moved initialization of global
28973         variables to a separate function called at startup since lazy 
28974         initialization of these variables is not thread safe.
28975         
28976         * image.c assembly.c: Made this module thread safe by adding locks in 
28977         the appropriate places.
28979         * domain.c (mono_init): Call the new initialization functions of the
28980         three modules.
28982 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28984         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28985           make a direct call. It is proxy's work to make the call asynchronous.
28986           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28987           the return values.
28988         * object.cs: mono_method_call_message_new(): read AsyncResult and
28989           state object from parameters list, if this info is requested.
28990         * object.h: Added fields to store remote call output values in
28991           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28993 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28995         * object.h: add needed fields to MonoThread.
28996         * threads.c, threads.h: allow registering a function to cleanup data
28997         allocated per thread by the JIT.
28999 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29001         * loader.h: portability fix by Bernie Solomon
29002         * <bernard@ugsolutions.com>.
29004 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29006         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29007         return a MonoArray. This simplifies the code and also ensures that
29008         the cache allways contains an object reference as a value.
29010         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29011         function.
29013 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29015         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29016         fixes a problem with byte ordering when getting the address family for
29017         a socket.
29019 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29021         * .cvsignore: Added monosn.
29023         * reflection.h reflection.c loader.c: Added support for parameter
29024         marshalling to dynamically created types. Fixes #47295.
29026 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29028         * rand.c: remove useless warnings.
29030 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29032         * class.c: implemented ldtoken for methods and fieldrefs.
29034 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29036         * threadpool.c: when mono_async_invoke was called, no one took care of
29037         monitoring the queue. So if the method invoked took some time and we
29038         got new async invoke requests after 500 ms (the thread created waited
29039         that long in WaitForSingleObject), the new async invoke was not called
29040         until the previous one finished.
29042         This is fixed now. Thanks to Totte for helping with it.
29044 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29046         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29048 2003-08-11  Martin Baulig  <martin@ximian.com>
29050         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29052 2003-08-06  Martin Baulig  <martin@ximian.com>
29054         * mono-debug-debugger.c: Added support for static fields,
29055         properties and methods.
29057 2003-08-06  Martin Baulig  <martin@ximian.com>
29059         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29060         make this work for applications with multiple application domains.
29062 2003-08-04  Martin Baulig  <martin@ximian.com>
29064         * mono-debug-debugger.c: Completely reworked the type support; the
29065         most important thing is that we're now just using one single
29066         `MonoType' instance per type.
29068 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29070         * mono-endian.h, mono-endian.c, icall.c: Added icall
29071         ves_icall_System_Double_AssertEndianity to assert double word endianity
29072         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29074 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29076         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29077         support, icalls and fixes.
29079 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29081         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29082         classes that are a punctuation character in .NET is not the same a
29083         g_unichar_ispunct.
29085 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29087         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29089 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29091         * icall.c: Add new MemCopy internalcall.
29092         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29093         Simplified code; It is not necessary to handle all the cases here,
29094         as the C# code takes care of it.  Only handle the case of the name
29095         resource embedded into the assembly.
29097         Changed signature to return the data pointer and the size of the
29098         data. 
29100 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29102         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29103         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29105 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29107         * socket-io.c: ignore EINTR error in select.
29109 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29111         * class.h, class.c: removed unused subclasses field in MonoClass.
29113 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29115         * icall.c: improve fix of get_base_definition(). If the parent class
29116           doesn't have the mehod, look at the parent of the parent.
29117         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29118           to check if a parameter is an in or out parameter
29119           (PARAM_ATTRIBUTE_IN is not set by default).
29120           mono_method_return_message_restore(): Use mono_class_value_size to
29121           get the size of a value type. mono_type_stack_size (parameterType)
29122           does not return the correct value if parameterType is byRef.
29123           mono_load_remote_field(), mono_load_remote_field_new(),
29124           mono_store_remote_field(), mono_store_remote_field_new():
29125           raise exception if the remote call returns an exception.
29127 2003-07-28  Martin Baulig  <martin@ximian.com>
29129         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29130         method.  This is a wrapper around mono_runtime_invoke() which
29131         boxes the instance object if neccessary.
29133 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29135         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29136         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29138 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29140         * icall.c: disable mcs bug workaround.
29142 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29144         * object.c (mono_runtime_class_init): Take the metadata_section
29145         mutex before obtaining the domain mutex.
29147         * appdomain.h: Added definition of metadata_section mutex here. 
29149         * object.c: define metadata_mutex here.
29151 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29153         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29154         fixed.
29156 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29158         * reflection.c: Fix bug #46669
29160 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29162         * exception.c:
29163         * exception.h:
29164         * icall.c:
29165         * object.h: fill in the type name for TypeLoadException.
29167 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29169         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29170         relationship between TypeBuilders while compiling corlib) and bug
29171         45993 (Array types returned from the runtime while compiling
29172         corlib were from the loaded corlib).
29174 2003-07-22  Martin Baulig  <martin@ximian.com>
29176         * mono-debug-debugger.c: Reworked the type support a bit more;
29177         distinguish between types and classes.
29179 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29181         * icall.c: add IsArrayImpl icall.
29183 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29185         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29186         initializing real_size only once. Also fix bug #46602.
29188 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29190         * object.c: Renamed mono_metadata_section to metadata_section.
29192 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29194         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29195           empty array if the type is an array. Fixed.
29196           ves_icall_MonoMethod_get_base_definition: if the base method
29197           is abstract, get the MethodInfo from the list of methods of
29198           the class.
29199         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29200           and it was 1-based. Fixed in mono_param_get_objects.
29202 2003-07-20  Martin Baulig  <martin@ximian.com>
29204         * mono-debug.h: Set version number to 31.
29205         (mono_debug_init): Added `MonoDomain *' argument.
29207         * mono-debug-debugger.c: Reworked the type support; explicitly
29208         tell the debugger about builtin types; pass the `klass' address to
29209         the debugger.
29211 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29213         * image.c: Allow new metadata tables to be loaded without a
29214         warning. Also update the warning message to give the new constant value.
29215                 
29216 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29218         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29219         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29220         array type representation changes.
29222 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29224         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29225         on Environment.Exit () call.
29227 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29229         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29230         requires a matching corlib.
29232 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29234         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29235           Committed again without the CRs.
29236         
29237 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29239         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29240           getting it from the "this" socket instance. Did not work
29241           if the socket is a subclass of Socket.
29242           Also fixed bug #35371.
29244 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29246         * metadata.c: fixed size for TypedByRef.
29247         * loader.c: when searching for a method, consider the vararg amrker.
29248         * unicode.c, decimal.c: constify some arrays.
29250 2003-07-15  Dick Porter  <dick@ximian.com>
29252         * socket-io.c: Fixed compilation for gcc < 3.2.
29254         Fixed compilation for machines that don't have AF_INET6 (thanks to
29255         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29257         Fixed compile warnings.
29258         
29259         Fixed formatting and line endings.
29261 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29263         * socket-io.h:
29264         * socket-io.c: Added IPv6 support.
29266 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29268         * class.c (mono_class_is_assignable_from): New function to implement
29269         the is_assignable_from logic. Used by mono_object_isinst, 
29270         Type::IsAssignableFrom () and the interpreter.
29272         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29273         Object, even interfaces.
29274         
29275         * object.c (mono_object_isinst): Implement in terms of 
29276         is_assignable_from.
29278         * icall.c (ves_icall_type_is_assignable_from): New icall.
29280 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29282         * domain.c (foreach_domain): fix compiler warning.
29284 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29286         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29287         not available on all plattforms
29289 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29291         * image.h image.c: Store the metadata version string in MonoImage.
29292         * icall.c: New icall to retrieve the image version.
29293         * reflection.c (create_dynamic_image): Fill in the image version field
29294         * reflection.c (build_compressed_metadata): Use the image version
29295         from the image structure.
29297 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29299         * appdomain.c: modified comment.
29300         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29301         That will be its last iteration when mono_gc_cleanup is called from
29302         mono_runtime_cleanup and before the domain is unloaded.
29304         Fixes bug #45962.
29306 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29308         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29309         attributes.
29311 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29313         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29314         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29315         Bernie Solomon <bernard@ugsolutions.com>.
29317 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29319         * object.c, object.h: provide mono_object_new_fast() for faster
29320         allocation in some special cases.
29322 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29324         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29325         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29327 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29329         * threadpool.c: fix leaks.
29331 2003-07-01  Dick Porter  <dick@ximian.com>
29333         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29334         using MonoGHashTables.  Fixes threadpool bug posted to list.
29336 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29338         * image.h, image.c: added support to load an assembly from a byte array.
29339         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29340         assembly bundle support.
29342 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29344         * threadpool.c (mono_thread_pool_add): keep a reference to the
29345         AsyncResult to prevent GC
29347 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29349         * class.c: leak fix.
29351 2003-06-25  Dick Porter  <dick@ximian.com>
29353         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29354         for the async object, the WaitHandle object will close the handle.
29355         Fixes bug 45321.
29357 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29359         * class.c: in mono_array_class_get (), lookup from the hash with the
29360         same type we insert: this works around a bug in
29361         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29362         lluis. The real fix will have to wait for after the release.
29364 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29366         * icall.c: fix memory leak when getting type members.
29368 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29370         * reflection.c: added more pubtoken special cases.
29372 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29374         * class.c: handle field offset correctly when class size
29375         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29377 2003-06-20  Martin Baulig  <martin@ximian.com>
29379         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29380         *image' field.
29382 2003-06-20  Martin Baulig  <martin@ximian.com>
29384         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29386 2003-06-20  Martin Baulig  <martin@ximian.com>
29388         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29389         just distinguish between variables in registers and variables at
29390         an offset relative to a register.
29392 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29394         * icall.c: #ifdef out latest changes until mcs is fixed.
29396 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29398         * icall.c: return members in metadata order.
29400 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29402         * icall.c: avoid infinite loop in GetTimeZoneData.
29404 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29406         * icall.c: added Marshal.Prelink/All icalls.
29408 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29410         * object.c, object.h: fix warnings and do some overflow checking
29411         when creating arrays.
29413 2003-06-17  Dick Porter  <dick@ximian.com>
29415         * file-io.h:
29416         * file-io.c: File attributes need to be tweaked slightly when
29417         passed from the managed to the w32 world.
29419 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29420         * profiler.h profiler-private.h profiler.c: Rework last patch
29421         based on suggestion by Paolo.
29422         
29423 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29425         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29426         instruction level coverage data collection.
29427         * profiler.h profiler.c (: Added new callback function which can be
29428         used by the profiler to limit which functions should have coverage
29429         instrumentation.
29430         * profiler.c (mono_profiler_load): Call g_module_build_path to
29431         generate the file name of the profiler library.
29433 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29435         * profiler.c, profiler.h, profiler-private.h: added basic block 
29436         coverage profiling API.
29438 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29440         * reflection.c (mono_reflection_create_runtime_class): Add support
29441         for events in dynamically generated code.
29443         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29444         not allocated.
29446 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29448         * icall.c: when getting timezone info, return reasonable values if we
29449         can't get the actual data.
29451 2003-06-14  Dick Porter  <dick@ximian.com>
29453         * threads.c (start_wrapper): Remove the reference to the thread
29454         object in the TLS data, so the thread object can be finalized.
29455         This won't be reached if the thread threw an uncaught exception,
29456         so those thread handles will stay referenced :-( (This is due to
29457         missing support for scanning thread-specific data in the Boehm GC
29458         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29460 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29462         * reflection.c: ensure streams and tables are first allocated with
29463         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29465 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29467         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29469 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29471         * reflection.c (mono_reflection_create_runtime_class): Add support for
29472         properties to dynamically created classes.
29473         * reflection.c: Fix a few places where non-MonoObjects were inserted
29474         into the tokens hashtable.
29476 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29478         * object.c: some support to handle out of memory exceptions.
29480 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29482         * marshal.c (mono_marshal_get_native_wrapper): support reference
29483         return types
29485 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29487         * object.h, object.c: more portability stuff from Bernie Solomon.
29488         Unexport mono_object_allocate(). Added mono_object_unbox ().
29489         Set exitcode when an unhandled exception is thrown.
29491 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29493         * marshal.c (mono_marshal_get_native_wrapper): use custom
29494         marshaler for return types.
29496 2003-06-10  Dick Porter  <dick@ximian.com>
29498         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29499         ip_mreq is available
29501 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29503         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29504         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29505         by Bernie Solomon <bernard@ugsolutions.com>.
29507 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29509         * gc.c (mono_gc_init): Avoid error message on shutdown when
29510         GC_DONT_GC=1 is used.
29512         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29513         New icall to return the GUID of a module.
29515 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29517         * class.c: ensure instance size always includes the parent's size
29518         even whem class size is set explicitly (fixes bug#44294).
29520 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29522         * profiler.h, profiler.c: made the simple profiler thread-safe,
29523         get more accurate timing info. Allow the loading of an
29524         externally-developed profiler module.
29526 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29528         * marshal.c (mono_marshal_get_native_wrapper): improved
29529         class/byref arguments.
29530         (mono_marshal_get_native_wrapper): better string marshaling support.
29532 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29534         * class.c: ensure .pack and .size are handled correctly and
29535         simplified layout of static fields.
29537 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29539         * appdomain.c
29540         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29542         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29543         current directory (fix bug 44008)
29545 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29547         * marshal.c (mono_marshal_get_native_wrapper): started support for
29548         custom marshalers.
29549         (mono_delegate_to_ftnptr): consider marshalling specifications
29551 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29553         * reflection.c, reflection.h: emit custom marshal info.
29555 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29557         * object.c: free the GError.
29558         * icall.c: added CloseEvent_internal.
29559         * threads.[ch]:
29560         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29561         call.
29563 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29565         * loader.c (mono_method_get_signature): Add support for dynamic
29566         assemblies.
29568 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29570         * reflection.c: fixed bug #43905.
29572 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29574         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29575         handling TypedReference and ArgIterator.
29576         * loader.c, loader.h: added function to get signature at call site.
29578 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29580         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29581         data readonly. Buglets and warning fixes. Some MethodSpec support.
29583 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29585         * class.h, class.c, object.c: remove relative numbering support.
29587 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29589         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29590         free the string, until we get a chance to fix Gtk#
29592 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29594         * marshal.c: revert last patch.
29596 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29598         * icall.c: updates for new mono_class_vtable() not calling
29599         the type constructor anymore.
29601 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29603         * object.h, object.c: separate vtable creation from type
29604         initialization. Make running the .cctor thread safe.
29606 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29608         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29610 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29612         * loader.c (mono_get_method): consider calling convention
29614 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29616         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29617         to return the invisible global type for a module.
29619         * reflection.c (mono_image_build_metadata): Emit global fields too.
29621 2003-05-20  Peter Williams  <peterw@ximian.com>
29623         * loader.c (mono_lookup_internal_call): Add a few newlines.
29625 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29627         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29628         literal strings.
29630         * appdomain.c (set_domain_search_path): Recalculate search path when
29631         AppDomainSetup.PrivateBinPath changes.
29633         * object.c (mono_class_compute_gc_descriptor): It turns out some
29634         parts of the class libs (like System.Thread) holds pointers to
29635         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29636         to treat native int a pointer type here.
29637         
29638 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29640         * appdomain.h, domain.c: add hashtable for jump target resolution.
29642 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29644         * reflection.h reflection.c icall.c: Added new icalls 
29645         GetManifestResourceInfoInternal, GetModulesInternal and support
29646         infrastructure.
29648 2003-05-16  Dick Porter  <dick@ximian.com>
29650         * icall.c:
29651         * file-io.h:
29652         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29654 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29656         * object.c: mono_store_remote_field: little fix to previous patch.
29658 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29660         * class.c: add constructors to array classes.
29661         * icall.c: special case array construction for InternalInvoke (),
29663 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29665         * class.h class.c reflection.c object.c: Added support for field
29666         defaults in dynamically generated classes.
29668 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29670         * reflection.c: properly encode charset for ddlimport.
29672 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29674         * threads.c: allow compiling without GC.
29676 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29678         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29679         handling of thread static data.
29681 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29683         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29685 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29687         * class.c (mono_array_class_get): always set the serializable flags
29688         (mono_array_class_get): always set the SEALED attribute for array types
29690 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29692         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29693         attributes (fix for bug 42021).
29695 2003-05-12  Dick Porter  <dick@ximian.com>
29697         * gc.c: Don't run finalizers when the finalizer thread is
29698         finishing up, because the default domain has already been
29699         destroyed.
29701 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29703         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29704         value is null, we should throw an exception.   This is slightly
29705         different than the other conventions used for the constructor.
29707 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29709         * socket-io.c: fixed windows build.
29711 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29713         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29715 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29717         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29718         compilers.
29720 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29722         * class.c (mono_class_layout_fields): Add experimental GC aware
29723         auto layout facility. Requires class library changes to work correctly.
29725         (mono_class_setup_vtable): Avoid overriding explicit interface
29726         method implementations. Fixes iface3.exe test.
29728         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29729         object reference.
29730         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29731         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29733         * metadata.h: Add new type classification macro which determines
29734         whenever the type holds an object reference.
29736 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29738         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29740 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29742         * gc.c (finalizer_thread): Work around a GC bug.
29744 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29746         * marshal.c (emit_struct_conv): allow unions
29748         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29750 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29752         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29754 2003-05-06  Martin Baulig  <martin@ximian.com>
29756         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29758 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29760         * socket-io.c:
29761         (Select_internal): allow NULLs, don't create arrays if not needed.
29762         Coupled with Socket.cs changes.
29764         * threadpool.c:
29765         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29766         register a finalizer for it that will close the semaphore handle. This
29767         fixes the leak and make Lupus' test run with > 4080 loops.
29769 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29771         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29772         Jerome Laban (bug #42287)
29774 2003-05-02  Martin Baulig  <martin@ximian.com>
29776         * debug-mono-symfile.h
29777         (MonoSymbolFile): Moved declaration into mono-debug.h.
29778         (MonoDebugMethodJitInfo): Likewise.
29779         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29780         argument.
29781         (_mono_debug_address_from_il_offset): Take a
29782         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29784         * mono-debug.h
29785         (MonoDebugDomainData): New struct.
29786         (mono_debug_get_domain_data): New function.
29787         (mono_debug_add_method): Take an additional `MonoDomain *'
29788         argument.
29789         (mono_debug_source_location_from_address): Likewise.
29790         (mono_debug_il_offset_from_address): Likewise.
29791         (mono_debug_address_from_il_offset): Likewise.
29793 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29795         * reflection.c: one more check for null type in custom attrs.
29797 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29799         * reflection.c: avoid warning (comparison is always false due to limited
29800         range of data type).
29802 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29804         * icall.c: throw an exception in Type.GetField if the argument 'name'
29805         is NULL.
29807 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29809         * reflection.c: fixed handling of enums in named arguments to custom
29810         attributes (bug #42123).
29812 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29814         * reflection.c: use the right array element type and handle
29815         a null for a Type argument, too.
29817 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29819         * reflection.c: handle arrays as arguments to custom attributes.
29821 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29823         * reflection.c: handle a string value in a custom attr
29824         ctor that takes an object.
29826 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29828         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29829         (fix bug #42063)
29831 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29833         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29835 2003-04-27  Martin Baulig  <martin@ximian.com>
29837         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29838         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29839         MONO_DEBUGGER_EVENT_BREAKPOINT.
29840         (mono_breakpoint_trampoline_code): Removed.
29841         (mono_debugger_event_handler): The last argument is now a
29842         `guint32'.
29843         (mono_debugger_insert_breakpoint_full): Removed the
29844         `use_trampoline' argument.
29845         (mono_debugger_method_has_breakpoint): Likewise.
29846         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29847         mono_debugger_breakpoint_callback(); take the method and
29848         breakpoint number as arguments.
29850 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29852         * metadata.c: fix off by one when loading parameters attributes.
29854 2003-04-24  Martin Baulig  <martin@ximian.com>
29856         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29858 2003-04-24  Martin Baulig  <martin@ximian.com>
29860         * mono-debug-debugger.c: Moved all code which interacts with the
29861         Mono Debugger here.
29863         * debug-mono-symfile.c: This code now just deals with the symbol
29864         file itself, the debugger code is now in mono-debug-debugger.c.
29866 2003-04-23  Martin Baulig  <martin@ximian.com>
29868         * mono-debug.c (mono_debug_source_location_from_il_offset):
29869         New method; like mono_debug_source_location_from_address(), but
29870         takes an IL offset instead of a machine address.
29872 2003-04-23  Martin Baulig  <martin@ximian.com>
29874         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29875         `line' field; this is now computed by the debugger.
29877 2003-04-23  Martin Baulig  <martin@ximian.com>
29879         * mono-debug.[ch]: New files.  This is the new debugging interface.
29881         * mono-debug-debugger.[ch]: New files.  Moved all code which
29882         interacts with the Mono Debugger here.
29884 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29886         * domain.c (mono_init): initialize mono_defaults.monitor_class
29888 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29890         * reflection.c (method_encode_code): Add a spicy exception to help
29891         future compiler authors.
29893 2003-04-21  Martin Baulig  <martin@ximian.com>
29895         * icall.c
29896         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29897         Make this work with relative pathnames; g_filename_to_uri() needs
29898         an absolute filename.
29900 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29902         * icall.c: Track name changes in Object and ValueType.
29904 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29906         * metadata.c (mono_type_stack_size): size should be a multiple of
29907         sizeof (gpointer)
29909 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29911         * gc.c:
29912         (internal_domain_finalize): moved into mono_domain_finalize. No need
29913         to create another thread because the finalizers will be run in the
29914         finalizer thread.
29915         
29916         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29917         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29918         to be run (MS does this too).
29920 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29922         * object.c (mono_class_compute_gc_descriptor): Update comment.
29924         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29926         * image.h: Add synchronized wrapper cache.
29928         * image.c (do_mono_image_open): Initialize cache.
29930         * reflection.c (create_dynamic_mono_image): Initialize cache.
29932 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29934         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29935         ves_icall_System_Buffer_ByteLengthInternal.
29937 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29939         * reflection.c: setup klass->nested_in earlier. Allow
29940         a dash in the assembly name.
29942 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29944         * metadata.c (mono_type_to_unmanaged): dont access
29945         type->data.klass for MONO_TYPE_OBJECT
29946         (mono_type_to_unmanaged): consider System.Delegate class
29948 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29950         * class.c: just setup supertypes in the proper place instead of
29951         initializing the full element class for arrays.
29953 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29955         * class.c: ensure the element class of arrays is initialized.
29956         Setup the supertype info for array classes, too.
29958 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29960         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29962 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29964         * Makefile.am: re-added -m option when running cygpath. This way,
29965         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29966         separator.
29967         * mono-config.c: same codepath for locating mono config file for WIN32
29968         and the rest.
29969         * assembly.c: if mono_assembly_setrootdir is called, don't override
29970         the value set.
29972 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29974         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29975         MONO_ASSEMBLIES variable.
29977 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29979         * icall.c: added Assembly::GetNamespaces() icall.
29981 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29983         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29985 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29987         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29988         * object.c: fixed bug in the construction of vtable for proxies
29990 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29992         * object.c (mono_array_new): Mark mono_array_new as an icall.
29994 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29996         * class.c: fixed test for public method when overriding interfaces.
29997         Closes bug #40970.
29999 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30001         * appdomain.h, domain.c: added mono_domain_foreach() to
30002         be able to access the currently loaded appdomains.
30003         * object.c: make string interning work across sppdomains.
30004         Mark some functions for use as icalls.
30006 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30008         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30010         * reflection.h reflection.c: Allocate long living data using 
30011         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30013         * reflection.c: Double the allocation size in streams instead of
30014         increasing it, to prevent unneccesary copying on large assemblies.
30015         
30016         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30017         creation if the assembly does not have the Run flag set.
30019 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30021         * class.h: avoid the C++ keywords in header files (Jerome Laban
30022         spotted and fixed this).
30024 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30026         * object.c:
30027         (mono_unhandled_exception): fill in the arguments for the
30028         UnhandledException event. Only trigger that event for the default
30029         domain (as MS does).
30031 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30033         * object.c: Improve typed allocation stuff based on suggestions from
30034         Paolo. Also turn it on if the GC library supports it.
30036 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30038         * object.c object.h class.h: Added experimental typed allocation
30039         facility using the interfaces in gc_gcj.h.
30041         * os/gc_wrapper.h: Added new include files.
30042         
30043 2003-04-03  Martin Baulig  <martin@ximian.com>
30045         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30046         which is not yet enabled by default.
30048         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30049         functions.
30050         (mono_gc_lock, mono_gc_unlock): New static functions.
30052         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30053         functions; stop/start the world for the garbage collector.  This
30054         is using the windows API; we need to complete the SuspendThread()/
30055         ResumeThread() implementation in the io-layer to make this work on Unix.
30056         (mono_gc_push_all_stacks): New public function; tells the garbage
30057         collector about the stack pointers from all managed threads.
30059 2003-04-03  Martin Baulig  <martin@ximian.com>
30061         * object.h (MonoThread): Added `gpointer stack_ptr'.
30063         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30065 2003-04-03  Martin Baulig  <martin@ximian.com>
30067         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30069 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30071         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30072         field.last.
30074 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30076         * loader.c (mono_lookup_internal_call): Report the corlib that is
30077         out of sync.
30079 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30081         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30082         System.DBNull (it's class not valuetype).
30084 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30086         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30087         if the array method was already assigned a token (fixes bug#40646).
30089 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30091         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30092         if no assembly is given.
30094 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30096         * metadata.h: Added the new tables.
30098         * row-indexes.h: Added definitions for new tables.
30100         * metadata.c: Add schemas for new tables, and add support for
30101         computing the sizes of them.
30103         * class.c: Update for handling the new type cases.
30105 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30107         * metadata.h (MONO_TYPE_IS_VOID): new macro
30109 2003-03-31  Martin Baulig  <martin@ximian.com>
30111         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30113         * threads.c (mono_thread_new_init): Call `thread_created' in the
30114         mono_thread_callbacks.
30116 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30118         * loader.h: added marshalbyrefobject_class to mono_defaults
30119         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30120         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30121           generation of output parameters.
30122           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30123         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30124           contextbound and the target object belongs to the context of the caller.
30125         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30126         * object.c: Implemented support for interfaces and abstract classes
30127           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30128           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30130 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30132         * class.h class.c (mono_class_is_subclass_of): New function.
30133         
30134         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30135         routines for most common case (calls from ArrayList::ToArray).
30137         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30138         routine so programs which call Environment::Exit() can be profiled.
30140         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30141         Added MONO_ARCH_SAVE_REGS.
30143         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30145 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30147         * blob.h: Add a couple of new MonoType types definitions.
30149         * tabledefs.h: Add a couple of new call convs.
30151 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30153         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30154         the layout of the class.
30156         * reflection.c (alloc_table): double the size on overflow to avoid
30157         unnecessary copying.
30159         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30160         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30161         null so it can be garbage collected.
30162         
30163 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30165         * reflection.c (mono_reflection_get_type): Return the resolved type
30166         only if it is in the assembly we searched.
30168         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30170         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30171         method.
30173 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30175         * appdomain.c:
30176         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30177         the right one is 'file:///blah', but MS allows it.
30178         * assembly.c:
30179         (mono_assembly_open): allow 'file://blah'
30181         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30183 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30185         * socket-io.c: fixes bug #40310.
30187 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30189         * reflection.c (mono_reflection_parse_type): handle deeply nested
30190         types correctly.
30192         * reflection.c (mono_image_create_token): Use unique token values
30193         since they will be put into a hash table.
30195         * class.c (mono_class_setup_vtable): If a method occurs in more than
30196         one place in the vtable, and it gets overriden, then change the
30197         other occurances too.
30199         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30200         object as return type.
30202 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30204         * icall.c: Deleted "ToString" implementation for double and float
30205         because they are full implemented in managed code.
30207 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30209         * reflection.c, reflection.h: implemented and exported functions
30210         to retrieve info about custom attributes.
30212 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30214         * appdomain.c: moved Uri handling to assembly.c
30215         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30216         work when using a file Uri in *nix and windows.
30218         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30219         GetReferencedAssemblies.
30221 2003-03-18  Dick Porter  <dick@ximian.com>
30223         * icall.c: Rename a couple of internal calls
30225         * threads.c: Set the thread state to Stopped when a thread exits.
30226         Fixes bug 39377.
30228 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30230         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30231         New icall.
30233         * object.c (mono_class_vtable): fix warning.
30235 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30237         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30239         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30240         memory.
30241         (method_encode_clauses): Create exception info structures in the right
30242         order.
30243         (mono_reflection_setup_internal_class): Initialize supertypes field.
30245         * class.c object.c: Handle interfaces which implement other interfaces 
30246         correctly.
30248         * class.h class.c: Move the supertypes array initialization code into 
30249         a separate function so it can be used for dynamic types too. Also call
30250         it earlier, in mono_class_init(), since it can be used before the
30251         type is initialized.
30253 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30255         * Makefile.am:
30256         * assembly.c:
30257         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30259         * appdomain.c:
30260         * appdomain.h:
30261         * marshal.c:
30262         * object.c: remove warnings.
30264 2003-03-13  Martin Baulig  <martin@ximian.com>
30266         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30267         (MonoDebugLexicalBlockEntry): New types.
30269         * debug-mono-symfile.c
30270         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30272 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30274         * process.c: ret can be any non-zero value accroding to MS doc.
30276 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30278         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30279         fixing a warning for a miss-used prototype, would have cause
30280         random memory corruption.
30282 2003-03-07  Martin Baulig  <martin@ximian.com>
30284         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30285         getting really annoying ....
30287 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30289         * reflection.c (fixup_method): added support for array methods.
30291 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30293         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30294         (pointed out by Michael Adams).
30296 2003-03-04  Dick Porter  <dick@ximian.com>
30298         * icall.c: Temporarily reverted the Double and Single ToString()
30299         change, because it broke nunit.
30301 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30303         * object.h, threads.h: make include files compatible with C++
30304         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30306 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30308         * icall.c: Erased ToString helper functions for Double and Single.
30309         Now, that implementations ar all in managed code (Double and Single
30310         Formatters).
30312 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30314         * appdomain.c: Added method for initializing the default context of
30315         a domain. Added internal call for getting the default context.
30316         * appdomain.h: Added context variable in MonoDomain struct.
30317         * domain.c: mono_domain_set also sets the default context of the domain
30318         * icall.c: Mapped internal method InternalGetDefaultContext.
30319         * object.c: mono_object_get_virtual_method returns always a remoting
30320         wrapper if the object is a transparent proxy.
30321         mono_runtime_invoke_array: when creating an object by calling the
30322         constructor, if the created object is a proxy, then the constructor should
30323         be called using the a remoting wrapper.
30325 2003-03-03  Dick Porter  <dick@ximian.com>
30327         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30328         variable so it compiles on solaris.  Problem spotted by
30329         Christopher Taylor <ct@cs.clemson.edu>
30331 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30333         * appdomain.c:
30334         (get_info_from_assembly_name): don't leak value.
30336         * icall.c:
30337         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30338         result.
30340 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30342         * assembly.c: export mono_image_load_references ().
30343         * class.c: handle function pointers. mono_class_from_name() now
30344         supports nested type names directly.
30346 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30348         * reflection.h reflection.c: Encode already created dynamic methods 
30349         and fields correctly as a DEF instead of a REF.
30351         * reflection.c: Get rid of the force_ref argument to 
30352         mono_image_typedef_or_ref since it was wrong in the first place.
30354         * string-icalls.c: add error checking to string constructors according
30355         to the MSDN docs.
30357         * reflection.c: Emit types in the order their TypeBuilders were 
30358         created. Previously, a new table index was assigned to each type before
30359         the tables were emitted. This was wrong because the signature blob
30360         might already refer to a type by its original table index.
30362 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30364         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30365         change.
30366         
30367 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30369         * Makefile.am: make assemblies dir have \ instead of / on windows.
30371 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30373         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30374         iterate over the NESTEDCLASS table using a linear search since the
30375         table is not guaranteed to be sorted by the secondary key.
30377         * class.c (mono_class_create_from_typedef): fixed up call to
30378         mono_metadata_nesting_typedef.
30379         
30380 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30382         * marshal.c (mono_string_to_byvalstr): clear the memory as
30383         suggested by Jerome Laban <jlaban@wanadoo.fr>
30385 2003-02-26  Dick Porter  <dick@ximian.com>
30387         * process.c: Cope with padding in .rsrc blocks
30389 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30391         * metadata.h: reverted the filter_len change, it breaks reflection
30392         
30393 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30395         * metadata.h: added a new field to store the filter_len
30396         
30398 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30400         * reflection.c: handle custom attributes for types and members
30401         created with Reflection.Emit (bug#38422).
30403 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30405         * reflection.c: define RTSpecialName automatically for constructors for
30406         compatibility with MS.NET.
30408         * reflection.c (mono_reflection_create_runtime_class): initialize
30409         nested_in field of dynamically created classes.
30411 2003-02-22  Martin Baulig  <martin@ximian.com>
30413         * debug-mono-symfile.h: Incremented version number.
30415 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30417         * object.h icall.c process.c: fix warnings.
30419 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30421         * appdomain.h appdomain.c:
30422         (mono_domain_try_type_resolve): split the 
30423         name_or_tb argument into a name and a tb argument.
30424         (mono_domain_has_type_resolve): new function to check whenever the
30425         application has registered a TypeResolve event handler.
30426         
30427         * icall.c reflection.h reflection.c: move the type resolve logic into
30428         mono_reflection_get_type () so it will be invoked when 
30429         Assembly::GetType () is called.
30431         * reflection.c:
30432         (mono_reflection_get_type): renamed to get_type_internal.
30433         (mono_reflection_get_type): fixed type name generation so it works 
30434         for nested types too.
30435         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30436         costly type name generation if there is no resolve event handler.
30438 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30440         * class.c, image.c: load exported types from file references.
30442 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30444         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30445           used to cache the managed methods used to create proxies and make 
30446           remote invocation of methods.
30447         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30448           to be remotely created.
30449         * object.c: Modified the method mono_class_vtable(). It now initializes 
30450           the remote flag of the vtable. Modified mono_object_new_specific(), 
30451           so now it checks the remote flag.
30452         * icall.c: Added a couple of internal methods, one for enabling instance 
30453           creation interception for a type, and one for creating objects bypassing
30454           the remote check.
30456 2003-02-18  Martin Baulig  <martin@ximian.com>
30458         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30459         New interncall to get a method's metadata token.
30461         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30462         New interncall for the debugger.
30464 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30466         * class.c (mono_class_setup_vtable): allocate supertype array
30468 2003-02-18  Martin Baulig  <martin@ximian.com>
30470         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30472 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30474         * reflection.c:
30475         (assembly_name_to_aname): jump over unknown properties (i've found
30476         something like: 'type, assembly, version=xxx, custom=null, public...',
30477         so now will ignore custom=null and still get the rest of the values).
30479 2003-02-17  Dick Porter  <dick@ximian.com>
30481         * threads.c: Have Thread.Start() wait for a semaphore to signal
30482         that the thread has set up all its local data.  This fixes bug
30483         34323, where Abort() raced the new thread's TLS data.
30485         Also removes the handle_store() call from start_wrapper, because
30486         threads are now always created suspended and there is no longer a
30487         race between the parent and child threads to store the info.
30489 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30491         * image.c: explain the #- heap issue in a message, hopefully
30492         avoiding FAQs on mono-list.
30494 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30496         * icall.c:
30497         (GetEntryAssembly): if the domain has not invoked
30498         AppDomain.ExecuteAssembly yet, return the assembly of the default
30499         AppDomain.
30501 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30503         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30505 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30507         * metadata.c, reflection.c: simple speedup to type hash
30508         and equals code.
30510 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30512         * image.c, image.h, class.c, assembly.c: move module loading
30513         to MonoImage. When loading metadata, consider alignemnet from
30514         the start of metadata, not from the metadata address in memory.
30516 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30518         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30519         AssemblyBuilder objects. Factored out custom attribute creation into
30520         a separate function.
30521         (create_custom_attr): new function to create custom attributes.
30523 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30525         * Makefile.am: Got tired of typing the full pathname to pedump.
30526         Until there is another option, am installing this.
30528 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30530         * class.c (class_compute_field_layout): always set field->parent 
30531         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30533 2003-02-11  Dick Porter  <dick@ximian.com>
30535         * threads-types.h:
30536         * monitor.c: Rewrote Monitor, making lock much faster and
30537         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30538         creates them as needed.
30540         * exception.c: Added SynchronizationLockException
30542         * threads.c: Deleted old Monitor implementation.  The new one is
30543         in a new file.
30545 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30547         * class.c: handled TypedReference type code. Set the correct size for
30548         class data. Setup interface_offsets for interface classes, too.
30550 2003-02-09  Martin Baulig  <martin@ximian.com>
30552         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30554 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30556         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30557         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30558         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30559         * verify.c: check for code that runs after the end of the method.
30561 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30563         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30564         "System.Math::Round2".
30565         * sysmath.h: Added Floor, Round and Round2 definitions.
30566         * sysmath.c: Modified certain functions that were not 100% compliant
30567         with MS.NET (math precision) and added the implementation of Floor,
30568         Round and Round2.
30570 2003-02-07  Martin Baulig  <martin@ximian.com>
30572         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30574 2003-02-07  Martin Baulig  <martin@ximian.com>
30576         * debug-mono-symfile.c: Reflected latest symwriter changes.
30577         (mono_debug_create_mono_symbol_file): Removed.
30578         (mono_debug_open_mono_symbol_file): Take an argument which
30579         specifies whether to create a dynamic symbol file.
30581 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30583         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30585 2003-02-05  Martin Baulig  <martin@ximian.com>
30587         * reflection.c (mono_image_build_metadata): Make this public,
30588         protect it against being called multiple times, don't create
30589         resources and don't build the compressed metadata here.
30590         (mono_image_create_pefile): Do this here.
30592         * icall.c
30593         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30595 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30597         * socket-io.c: fixed bug #36322.
30599 2003-02-06  Piers Haken <piersh@friskit.com>
30601         * appdomain.[ch]:
30602         * class.h:
30603         * debug-mono-symfile.c:
30604         * icall.c:
30605         * loader.c:
30606         * mono-config.c:
30607         * monosn.c:
30608         * reflection.c:
30609         * socket-io.c: warning cleanups
30611 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30613         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30614         function. works like remoting invoke, but does a check for the Proxy first.
30616 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30618         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30620 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30622         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30623         array of pointers.
30624         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30625         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30627         * object.c (mono_store_remote_field_new): used by the new jit
30628         instead of mono_store_remote_field
30629         (mono_load_remote_field_new): used by the new jit
30630         instead of mono_load_remote_field
30632 2003-02-05  Patrik Torstensson
30634         * appdomain.c: changed unload to take the domain id instead
30635         of domain
30636         
30637         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30640 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30642         * appdomain.c: don't look for assemblies in ApplicationBase if
30643         PrivateBinPathProbe is set.
30645 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30647         * object.c: make the first argument in main_args contain the absolute
30648         path to the assembly. Fixes bug #37511.
30650 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30652         * icall.c: get correct UTC offset for countries not using daylight
30653         time saving. Fixes bug #30030.
30655 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30657         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30658         and 1 are the family).
30660 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30662         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30664         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30666 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30668         * reflection.c: added support for SignatureHelper tokens, which is
30669         needed by the Calli opcode.
30671         * reflection.h: track changes to SignatureHelper class.
30673         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30675 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30677         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30679 2003-02-03  Patrik Torstensson
30680         * appdomain.[c|h], domain.c : 
30681          - Added support for getting a domain via domain id
30682          - Support for setting and getting domain from System.AppDomain 
30683            (used in cross appdomain channel)
30684          - Added support for get/set for a MonoAppContext on a thread 
30685            (Context class in System.Runtime.Remoting.Contexts),
30686          - Removed hack in Get/SetData and ExecuteAssembly.
30687         
30688         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30689         the managed world to get control when a proxy is created.
30691         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30692         
30693 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30695         * icall.c
30696         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30697         Populate the codebase field as well.
30699 2003-02-02  Martin Baulig  <martin@ximian.com>
30701         * debug-mono-symfile.c
30702         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30703         (mono_debug_symfile_add_method): Allow interncalls.
30705 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30707         * icall.c: throw parse exception if strtod fails or the string is empty.
30709 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30711         * marshal.c: handle object type separately from defined
30712         class types.
30714 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30716         * marshal.c: handle NATIVE_LPSTR for strings when it's
30717         explicitly specified.
30719 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30721         * reflection.c, reflection.h, icall.c: setup the reflection
30722         handle cache for ModuleBuilders and AssemblyBuilders.
30724 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30726         * reflection.c (reflection_methodbuilder_to_mono_method): set
30727         pinvoke flag
30729 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30731         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30733 2003-01-29  Dick Porter  <dick@ximian.com>
30735         * threads.c: No need for the fake_thread kludge now that Thread
30736         doesn't run a class constructor
30737         
30738 2003-01-29  Dick Porter  <dick@ximian.com>
30740         * threads.c: Use g_direct_hash instead of the rather bogus
30741         g_int_hash
30743 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30745         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30746         (fix pinvoke12.exe)
30747         (mono_marshal_get_struct_to_ptr): generate valid IL code
30748         (mono_marshal_get_ptr_to_struct): generate valid IL code
30749         (*): correctly set sig->pinvoke, we need to memdup the signature
30750         to do that
30752 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30754         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30755         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30757 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30759         * profiler.c: provide more callers information.
30761 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30763         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30765         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30767         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30769 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30771         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30772         exception instead of going into an infinite loop on dates which it 
30773         can't yet handle.
30775         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30776         out-of-range exception if needed.
30778         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30779         an implementation for an interface method and to override an inherited
30780         method at the same time. 
30781         Imagine a scenario when a virtual method is used to override a
30782         virtual abstract method in a parent class, and this same method 
30783         provides an implementation for an method inherited from an interface. 
30784         In this case, the interface resolution code will set im->slot, which 
30785         means that the virtual method override pass will skip this method 
30786         which means a pointer to the abstract method inherited from the parent
30787         will remain in the vtable of this non-abstract class.
30789         * class.c: (mono_class_setup_vtable): continue search for a real 
30790         method if only an abstract method is found.     
30792 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30794         * reflection.c: add size to encoding for ByValStr and ByValArray
30795         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30797 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30799         * class.c (mono_class_setup_vtable): pass the override info as an
30800         argument.
30802         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30803         correctly.
30804         
30805         * reflection.c (ensure_runtime_vtable); add support for method 
30806         overrides.
30807         
30808 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30810         * reflection.c (resolution_scope_from_image): Hack to work to work with
30811         dynamic assemblies.
30813         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30814         added a 'force_ref' argument to force this function to allways return 
30815         a TypeRef. This is needed by mono_image_get_memberref_token ().
30816         
30817 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30819         * reflection.c (mono_image_get_type_info): interfaces really don't have
30820         a parent.
30822         * reflection.c (mono_image_basic_init): fill out missing fields of
30823         image structure.
30825         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30826         dynamic assemblies. This is required so dynamic assemblies show up in
30827         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30828         Type::GetType() etc. This is consistent with MS behaviour.
30830         * image.c image.h reflection.c: add newly created classes to the name 
30831         cache so mono_class_get () will find them.      
30833 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30835         First part of changes to get IKVM.NET running under mono.
30836         
30837         * appdomain.h, appdomain.c: added new function 
30838         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30839         This function will call AppDomain::DoTypeResolve to do the actual work.
30841         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30842         moved existing code dealing with dynamic tokens to a new function 
30843         called mono_reflection_lookup_dynamic_token (). This function will 
30844         raise TypeResolve events when appropriate. Since reflection.c is not 
30845         part of libmetadata, a new hook function called 
30846         mono_lookup_dynamic_token() is added to class.c which will call this.
30848         * assembly.h assembly.c: make the invoke_load_hook function public,
30849         so it can be called for dynamic assemblies.
30851         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30853         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30854         type isn't found.
30856         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30857         MonoGHashTable, since it contains pointers to objects which the GC 
30858         needs to track.
30860         * assembly.c (search_loaded): remove unused variable.
30861         
30862 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30864         * object.c: fixed issue exposed by gcc-generated IL programs
30865         that use RVA data for pointers.
30867 2003-01-25  Martin Baulig  <martin@ximian.com>
30869         * threads.c (start_wrapper): Moved the initialization of
30870         `start_func' above the mono_new_thread_init() call to which we
30871         pass it as argument.
30873 2003-01-24  Martin Baulig  <martin@ximian.com>
30875         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30876         the MonoThread pointer.
30878 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30880         * icall.c: Rename `PowImpl' to Pow.
30882 2003-01-23  Dick Porter  <dick@ximian.com>
30884         * threads.c (start_wrapper): Create a Thread object if needed, so
30885         the Main() thread can do the class initialisation in a subthread
30886         that has been set up to allow managed code execution.
30888         Pass the thread ID instead of the MonoThread pointer to the thread
30889         start and attach callbacks.  This change is required, because the
30890         jit thread start callback must be called _before_ the Thread
30891         object can be created.
30892         
30893         (mono_thread_init): Removed much object creation code that is no
30894         longer needed.  No managed code is called from here now.
30896         * object.c (mono_runtime_exec_managed_code): Create a subthread
30897         for Main, and call back to the runtime to use it.
30898         Set the exit code when Main exits.
30900         * gc.c: Make sure domain finalisation happens in a subthread.
30901         Re-enable threaded GC, fixing bug 31333 (again).
30903         * environment.c: System.Environment internall calls (so far just
30904         ExitCode is here, the others are still in icall.c)
30906         * appdomain.c (mono_runtime_cleanup): All threads running managed
30907         code should have finished before mono_runtime_cleanup() is
30908         reached, so no need to clean up threads.
30910 2003-01-22  Martin Baulig  <martin@ximian.com>
30912         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30913         `gpointer func' arguments.      
30914         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30915         but added `MonoThread *thread' argument.
30916         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30918         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30919         and pass it to the mono_thread_start_cb callback.
30920         (mono_install_thread_callbacks): New public function to install a
30921         set of callbacks which are set by the debugger.
30922         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30924 2003-01-22  Martin Baulig  <martin@ximian.com>
30926         * Makefile.am: Install debug-mono-symfile.h.
30928 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30930         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30932 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30934         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30935         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30936         (mono_array_class_get): correctly set access levels of arrays
30938 2003-01-20      Patrik Torstensson
30939         * image.h (MonoAssemblyName): changed major, minor, build, revision
30940         from signed to unsigned.
30942 2003-01-20  sean kasun <skasun@azstarnet.com>
30944         * reflection.c (load_cattr_value): Now this handles
30945         MONO_TYPE_SZARRAY.  Fixes bug #35629
30947 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30949         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30950         integer value
30952 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30954         * decimal.c: fixed bug #26056.
30956 2003-01-17  Martin Baulig  <martin@ximian.com>
30958         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30960 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30962         * exception.[ch]:
30963         (mono_get_exception_type_initialization): new function.
30965         * object.c: throw a TypeInitializationException when an exception is
30966         thrown invoking the class constructor.
30968 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30970         * reflection.c: fixed attribute reading.
30972 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30974         * icall.c:
30975         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30976         provided, look for the type in the calling assembly and then in
30977         mscorlib; if the assembly name is provided, only try that one.
30979 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30981         * object.c: register the vtable before there is a chance it's
30982         queried again recursively.
30984 2003-01-13  Duncan Mak  <duncan@ximian.com>
30986         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30987         gc-internal.h. 
30988         
30989 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30991         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30993 2003-01-11  Martin Baulig  <martin@ximian.com>
30995         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30996         this to 20 for the release.
30998 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31000         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31002         * loader.c (mono_method_get_marshal_info): bug fix
31004         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31005         structures with explicit layout
31007 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31009         * profiler.c: made the output more readable (and sorted). 
31010         Added caller information for the allocation profiler.
31012 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31014         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31016 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31018         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31019         to get value types.
31020         
31021 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31023         * object.c, profiler.h, profiler.c, profiler-private.h:
31024         Added object allocation profiler.
31026 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31028         * reflection.h, reflection.c: handle global methods.
31029         Compress blob entries.
31031 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31033         * marshal.c: fix compilation.
31035 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31037         * loader.c (mono_method_get_marshal_info): impl.
31039         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31041 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31043         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31044         for reference types.
31046 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31048         * loader.c: fixed off by one error in loaded parameter names.
31050 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31052         * marshal.c (mono_marshal_get_icall_wrapper): like
31053         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31054         instead of a MonoMethod.
31056 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31058         * decimal.c: fixed bug #36537.
31060 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31062         * marshal.c: throw a missing method exception if a
31063         P/Invoke method is not found.
31065 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31067         * icall.c: allow a null this for constructors.
31069 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31071         * icall.c: raise the proper exceptions if the arguments to the
31072         internal Invoke are incorrect.
31074 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31076         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31078 2003-01-03  Martin Baulig  <martin@ximian.com>
31080         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31082 2002-12-31  Martin Baulig  <martin@ximian.com>
31084         * debug-mono-symfile.c: Completely rewrote the type section.
31085         Instead of using individual malloc()ed fields, we use one big
31086         continuous memory area and offsets into this area.
31087         See the comments in the source code for details.
31089 2002-12-30  Martin Baulig  <martin@ximian.com>
31091         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31093 2002-12-30  Martin Baulig  <martin@ximian.com>
31095         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31096         line number table in this data blob instead of using an external
31097         pointer.
31099 2002-12-28  Martin Baulig  <martin@ximian.com>
31101         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31103 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31105         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31106         as a boxed return type.
31108 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31110         * appdomain.c
31111         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31112         g_build_filename to properly get separators on the filename created.
31114         * object.h: Small change, introduce MonoMarshalByRefObject to
31115         track the layout of that structure in the C# universe as we make
31116         changes there.
31118 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31120         * object.c: removed assert to allow static fields on interfaces.
31121         * loader.c: a TypeSpec may be used for any type, not just arrays.
31123 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31125         * class.c, class.h: added mono_class_array_element_size ().
31126         Ignore static methods in interfaces.
31128 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31130         * threads.c: fixed the build under cygwin.
31132 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31134         * reflection.c: handle nullref constants. Allocate keys for
31135         reflection handles with the GC.
31137 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31139         * threads.c, threads.h: added mono_thread_get_abort_signal()
31140         to get a suitable signal for thread abort.
31142 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31144         * metadata.c: fix handling of ExportedType table.
31146 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31148         * icall.c: added WriteWindowsDebugString internal call.
31150 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31152         * reflection.h: added fields to match C# implementation.
31154 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31156         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31158 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31160         * gc.h, gc-internal.h: Rename header for GC internal calls to
31161         gc-internal.h from gc.h as to not clash with Boehm GC having its
31162         header installed as <gc.h> in outside include paths.
31163         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31164         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31166 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31168         * icall.c: assign minor, build and revision in FillName.
31170 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31172         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31173         Added support for running code generated by Reflection.Emit.
31175 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31177         * appdomain.c: check for NULL argument in LoadFrom.
31179 2002-12-10  Dick Porter  <dick@ximian.com>
31181         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31183 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31185         * appdomain.c: fix buglet when building exe file name.  Handle full
31186         assembly name (needed after latest changes to AssemblyName).
31187         * image.c:
31188         (mono_image_close): free some hashtables.
31190 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31192         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31193         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31194         on some systems (redhat 7.3) 
31196 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31198         * threads.c: delete the critical section of a sync block,
31199         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31201 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31203         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31205 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31207         * appdomain.[ch]: handle the assembly preload event to try loading the
31208         assemblies using the paths we have in the current domain.
31210         * assembly.[ch]: created an assembly preload hook that is called to try
31211         loading the assembly by other means that the ones provided here.
31213         * domain.c: initialize the domain search path.
31215         From now on, assemblies (TODO: except corlib and System) are loaded
31216         according to these rules when using mono_assembly_load ():
31218                 1. It tries to load the assembly from the ApplicationBase
31219                 of the current domain appending .dll and .exe (TODO: have to
31220                 try loading from name/name.dll and name/name.exe).
31222                 2. It tries the search path specified in PrivateBinPath for the
31223                 current domain (if any).
31225                 3. Previous behavior.
31227 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31229         * icall.c: implemented GetInterfaceMap() related icall.
31230         * domain.c, loader.h: load MethodInfo in mono_defaults.
31232 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31234         * gc.c: disable the finalizer thread for now, untill all the issues
31235         with it are resolved.
31237 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31239         * string-icalls.c: handle embedded nulls in string ctor when the
31240         length is specified.
31242 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31244         * class.c: look for explicit interface implementation in parent
31245         classes, too.
31247 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31249         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31251 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31253         * gc.c: protect handles with a critical section.
31255 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31257         * icall.c:
31258         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31259         parameters. If no assembly specified, try getting the type from all
31260         the assemblies in the current domain, else, load the assembly and get
31261         the type from it.
31263 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31265         * marshal.c: applied patch from Aleksey Demakov that fixes
31266         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31268 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31270         * icall.c: fixed get_location.
31272 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31274         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31275         declarations to make it work with older gcc. 
31277         * loader.c (mono_get_method): set signature->pinvoke for native calls
31279 2002-11-20  Dick Porter  <dick@ximian.com>
31281         * threads.c (mono_thread_init): Set the main thread's handle
31283 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31285         * gc.c: allow compilation without GC support. Changed to match the
31286         mono coding style.
31288 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31290         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31292 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31294         * reflection.c: set a public key token on the core assemblies.
31296 2002-11-18  Dick Porter  <dick@ximian.com>
31298         * threads.c: Split out some thread initialisation so that other
31299         files can set the start callback function.
31301         * gc.c: Run finalisers in a separate thread, to avoid stack
31302         overflow.  Fixes bug 31333.
31304         * appdomain.c: Set up GC finalisation thread.
31306         * reflection.c: 
31307         * object.c: 
31308         * domain.c: Use gc.h macros for GC_malloc
31309         
31310 2002-11-15  Dick Porter  <dick@ximian.com>
31312         * threadpool.c: 
31313         * threads.c:
31314         * appdomain.c: Removed mono_runtime_init_with_attach(),
31315         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31316         merging the extra parameter with the existing function.  Removed
31317         unneeded code in mono_thread_attach().
31319 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31321         * image.c (mono_image_loaded_by_guid): a method to get loaded
31322         images by guid. 
31323         (load_metadata_ptrs): we store the guid as string.
31325 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31327         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31329         * metadata.c (mono_guid_to_string): imported method form Zoltan
31330         Varga (slightly modified)
31332         * assembly.c (mono_assembly_open): load precompiled code
31334         * loader.h (MonoMethod): we store the method token for use in the
31335         aot compiler. 
31337 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31339         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31340         the hook function called when an assembly is loaded.
31341         
31342         * domain.c: Modified file.
31343         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31345         Fixes bug #33196.
31347 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31349         * reflection.c: Map PEFileKind to the value expected by the WinNT
31350         image loader. 
31352 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31354         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31355         Read until the buffer is filled completely.
31357 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31359         * icall.c: implemented MonoType.InternalGetEvent ().
31361 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31363         * appdomain.c: implemented InitAppDomainSetup. Delayed
31364         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31365         the entry_assembly.
31367         * assembly.c: base_dir is now an absolute path ending with
31368         G_DIR_SEPARATOR.
31370         * icall.c: modified get_location according to the above changes.
31372         * object.c: init AppDomain.SetupInformation for the default domain after
31373         we have the entry assembly.
31375         * domain.c: when unloading a domain, setup = NULL.
31377 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31379         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31381 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31383         * object.h, object.c: introduced mono_object_get_virtual_method ()
31384         to lookup the method invoked on an object when a callvirt is done on
31385         a method.
31386         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31388 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31390         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31391         current domain when loaded an assembly and failed to load it.
31393         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31395 2002-10-31  Dick Porter  <dick@ximian.com>
31397         * icall.c: 
31398         * file-io.h: 
31399         * file-io.c: Return the error status in a parameter, as the
31400         GetLastError() value has long since been blown away if we try and
31401         look it up in a subsequent internal call invocation.  Delete the
31402         GetLastError() internal call, because it's useless.
31404 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31406         * class.[ch]: added cast_class to fix bug 29517
31408 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31410         * marshal.c: create valid IL code in the filter clause:
31411         the new JIT is less forgiving:-)
31413 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31415         * icall.c: removed get_property internal call.
31417 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31419         * appdomain.h domain.c: Added an ID to appdomains.
31420         
31421         * threads.c threads.h icall.c: Implement icall
31422         Thread:GetDomainID(), and remove unused icall 
31423         CurrentThreadDomain_internal.
31425 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31427         * icall.c: Don't recurse through the base types in GetConstructor.
31428         Fixes bug #32063. 
31430 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31432         * mempool.h, mempool.c: added mono_mempool_empty() and
31433         mono_mempool_stats().
31435 2002-10-23  Dick Porter  <dick@ximian.com>
31437         * file-io.c: 
31438         * file-io.h: 
31439         * icall.c: Added MonoIO.GetFileType internal call
31441 2002-10-17  Dick Porter  <dick@ximian.com>
31443         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31444         delegate semaphore before waiting for all threads to finish,
31445         because new threads can also call async delegates.  Fixes bug
31446         32004.
31448         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31449         of 3 seconds, in case another async job is queued.  (This part is
31450         needed because the bug fix reintroduced the 3s exit lag.)  This
31451         makes the mono_runtime_shutdown flag superfluous.
31453 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31455         * reflection.c: include ehader size in method section headers.
31456         Really check for suplicated modules entries.
31458 2002-10-17  Martin Baulig  <martin@gnome.org>
31460         * debug-mono-symfile.c: Added back support for locals.
31462 2002-10-14  Martin Baulig  <martin@gnome.org>
31464         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31465         MONO_TYPE_VOID.
31467 2002-10-14  Martin Baulig  <martin@gnome.org>
31469         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31470         mono_class_get() instead of looking in the class cache. 
31472 2002-10-13  Martin Baulig  <martin@gnome.org>
31474         * debug-mono-symfile.c: Set version number to 28, include the
31475         signature in method names.
31477 2002-10-13  Martin Baulig  <martin@gnome.org>
31479         * debug-mono-symfile.h: Set version number to 27.
31481 2002-10-11  Martin Baulig  <martin@gnome.org>
31483         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31485 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31487         * metadata.c, metadata.h: added helper function to allocate signatures.
31489 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31491         * icall.c: added internal call to get the location of machine.config.
31493 2002-10-08  Martin Baulig  <martin@gnome.org>
31495         * debug-mono-symfile.c: Ignore classes with a pending init for the
31496         moment.
31498 2002-10-03  Dick Porter  <dick@ximian.com>
31500         * threads.c: Freebsd pthread_t is a pointer
31502 2002-10-03  Dick Porter  <dick@ximian.com>
31504         * socket-io.c: Implemented GetHostName_internal
31506 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31508         * mono-config.c:
31509         (mono_config_parse_file): don't leak the text.
31511 2002-10-02  Martin Baulig  <martin@gnome.org>
31513         * debug-mono-symfile.c: Added support for methods.
31515 2002-10-01  Martin Baulig  <martin@gnome.org>
31517         * debug-mono-symfile.c: Don't emit methods and line numbers for
31518         the dynamic symbol file, just write the type table.  We can easily
31519         have an external helper program which creates a symbol file for an
31520         IL file.        
31522 2002-10-01  Dick Porter  <dick@ximian.com>
31524         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31525         Only add the handle to the cleanup array when we're about to
31526         launch the thread.  Bug 31425 deadlocked when the test was run on
31527         mono under w32.
31529 2002-10-01  Martin Baulig  <martin@gnome.org>
31531         * debug-mono-symfile.c: Added support for properties.
31533 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31535         * reflection.c: unaligned store fix from Mark Crichton
31536         <crichton@gimp.org>.
31538 2002-09-27  Martin Baulig  <martin@gnome.org>
31540         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31541         New interncall.
31543 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31545         * assembly.h, assembly.c: use a sane API to hook into the assembly
31546         loading process instead of a useless special-purpouse hack
31547         (ngen needs a hook, too, for example).
31549 2002-09-27  Dick Porter  <dick@ximian.com>
31551         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31552         io-layer can set up some process handle info.  Not needed on w32,
31553         but doesn't hurt either.
31555         * process.c: Pass the program name in the second parameter to
31556         CreateProcess, so the path is searched.  Include the working
31557         directory. Implemented process name, process enumeration, and some
31558         process detail internal calls.
31559         
31560         * icall.c: Added internal calls for process lookup, and some
31561         process details
31563 2002-09-26  Martin Baulig  <martin@gnome.org>
31565         * assembly.c (mono_install_open_assembly_hook): New global
31566         function to install a function to be invoked each time a new
31567         assembly is loaded.
31568         (mono_assembly_open): Run this callback function if set.
31570         * debug-mono-symfile.c: Put back line numbers for the dynamic
31571         symbol file and also record the .il file as source file.  This
31572         allows us to install the temporary symbol file as `file.dbg' just
31573         like a compiler-generated one.
31575 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31577         * Corrected typo in gc.c (BOHEM vs BOEHM).
31579 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31581         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31582         GetProperties. Also avoid calling g_slist_length in GetProperties and
31583         GetMethods.
31585 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31587         * reflection.c: avoid unaligned stores (bug spotted by
31588         Mark Crichton  <crichton@gimp.org>).
31590 2002-09-25  Martin Baulig  <martin@gnome.org>
31592         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31593         instead of guint64 for addresses and added prologue/epilogue info.
31595 2002-09-25  Martin Baulig  <martin@gnome.org>
31597         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31598         store line number info.  For the dynamic symbol file, we only need
31599         to provide the JIT generated dynamic line number info for the dynamic
31600         symbol file.
31602 2002-09-25  Martin Baulig  <martin@gnome.org>
31604         * debug-mono-symfile.h: Incremented version number.
31606 2002-09-24  Martin Baulig  <martin@gnome.org>
31608         * class.c (mono_debugger_class_init_func): New global function
31609         pointer variable.
31610         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31611         call it.
31613         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31614         function.  This is called via the mono_debugger_class_init_func
31615         hook to add all types to the dynamic type table.
31616         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31617         from its metadata token.
31619         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31620         New interncall for the debugger.
31622 2002-09-24  Nick Drochak <ndrochak@gol.com>
31624         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31625         before using it in case it is null.
31626         
31627 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31629         * metadata.c: allow custom modifiers in local var signatures
31630         (bug spotted by Zoltan Varga).
31632 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31634         * class.c: deal with the <Module> class that may have a NULL vtable.
31635         Eliminate warnings.
31637 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31639         * image.c, image.h: more strong name helpers.
31640         * monosn.c: more work: convert pem keys to cryptoapi format.
31642 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31644         * string-icalls.c: speedup IndexOf.
31646 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31648         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31650 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31652         * icall.c: cleanup: use mono_object_domain ().
31654 2002-09-23  Martin Baulig  <martin@gnome.org>
31656         * debug-mono-symfile.c: Improved type support.
31658 2002-09-22  Martin Baulig  <martin@gnome.org>
31660         * debug-mono-symfile.c: Added support for reference types and strings.
31662 2002-09-22  Martin Baulig  <martin@gnome.org>
31664         * debug-mono-symfile.c: Started to work on the type table.
31666 2002-09-21  Martin Baulig  <martin@gnome.org>
31668         * debug-mono-symfile.c: Largely reworked the symbol table format.
31669         The symbol table is now incrementally updated each time a new
31670         method is added.  We're now also using our own magic and version
31671         so that you don't need to recompile all your classes if the
31672         dynamic table changes.
31673         (mono_debug_update_mono_symbol_file): Removed.
31674         (mono_debug_symfile_add_method): New function to add a method.
31676 2002-09-21  Martin Baulig  <martin@gnome.org>
31678         * icall.c
31679         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31680         New interncall.
31682         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31683         New interncall to get a method from its metadata token.
31685 2002-09-21  Martin Baulig  <martin@gnome.org>
31687         * debug-mono-symfile.c: Create type table.
31689 2002-09-20  Martin Baulig  <martin@gnome.org>
31691         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31693 2002-09-20  Martin Baulig  <martin@gnome.org>
31695         * debug-mono-symfile.c: Provide information about params and locals.
31697 2002-09-20  Martin Baulig  <martin@gnome.org>
31699         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31700         New interncall.
31702         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31703         interncall to get a method from its metadata token.
31705 2002-09-20  Martin Baulig  <martin@gnome.org>
31707         * debug-mono-symfile.c: Added a few checks for method->header
31708         being non-NULL.  This should never happen, but for the moment
31709         let's use a g_warning() rather than a g_assert().
31711 2002-09-19  Mark Crichton  <crichton@gimp.org>
31713         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31714         even if support for it isn't present.  Added an #ifdef to fix this.
31716         * socket-io.c: Added checks back for Solaris support.
31718 2002-09-19  Martin Baulig  <martin@gnome.org>
31720         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31721         changes in the symbol file format.
31723 2002-09-18  Martin Baulig  <martin@gnome.org>
31725         * debug-mono-symfile.c: Set version number to 21.
31727 2002-09-18  Dick Porter  <dick@ximian.com>
31729         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31730         on netbsd.  Fixes bug 30051.
31732 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31734         * reflection.c:
31735         (set_version_from_string): little fix.
31737 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31739         * monosn.c, Makefile.am: added strong name utility.
31740         * reflection.h, reflection.c: implemented delayed signing,
31741         locale, version and hash id assembly attributes.
31743 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31745         * loader.c, metadata.c: load param attributes in signatures.
31747 2002-09-16  Martin Baulig  <martin@gnome.org>
31749         * debug-mono-symfile.c: Added string table with all method names.
31751 2002-09-14  Martin Baulig  <martin@gnome.org>
31753         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31754         fast method lookup.
31756 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31758         * reflection.c: record the public key token of referenced assemblies.
31760 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31762         * image.c, image.h: added functions to get the strong name and the
31763         public key of an assembly.
31764         * pedump.c: use them.
31766 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31768         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31770 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31772         * marshal.c (mono_marshal_get_managed_wrapper): Added
31773         MONO_TYPE_BOOLEAN 
31775 2002-09-11  Martin Baulig  <martin@gnome.org>
31777         * gc.c: Call GC_unregister_disappearing_link() on all links when
31778         finalizing them, this is necessary to aviod a crash in boehm's
31779         finalize handler.
31781 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31783         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31784         nick@chemlab.org.
31786 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31788         * icall.c: implemented MonoType::Module.
31789         * reflection.c, reflection.h: mono_module_get_object () from
31790         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31792 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31794         * icall.c: ignore overridden methods in GetMethods ().
31795         Fix for FieldInfo::SetValue().
31796         * object.c: handle float/double in runtime invoke.
31798 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31800         * object.c: allow a constructor to be called again on an object.
31802 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31804         * class.h, class.c: move field layout code to it's own function and
31805         export it. Get an interface id earlier. Move fields in MonoClass
31806         so they are more cache friendly and align the bitfields.
31807         * loader.c: temporary handle get_param_names() for a runtime method.
31808         * reflection.c, reflection.h: more code to handle runtime creation of
31809         types.
31811 2002-09-09  Martin Baulig  <martin@gnome.org>
31813         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31814         signature with the pinvoke field being set for the actual call.
31816 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31818         * icall.c: removed some unused icalls. Start of map of glib charsets
31819         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31821 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31823         * debug-helpers.c: break infinite loop (found and fixed by
31824         Holger Arnold <harnold@gmx.de>).
31826 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31828         * icall.c: target may be null in create_delegate.
31830 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31832         * marshal.c: handle a boolean return type.
31834 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31836         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31838 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31840         * gc.c: fix weakreferences.
31842 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31844         * icall.c: added icall to get default codepage.
31846 2002-09-03  Dick Porter  <dick@ximian.com>
31848         * threads.h: 
31849         * threads.c: Use MonoThread instead of MonoObject where
31850         apropriate.
31852         Store running thread objects in a hash table, so that we have all
31853         the info to hand when waiting for them to finish
31854         (means we don't need OpenThread() any more, so mingw builds should
31855         be fully functional again.)
31857         * verify.c:
31858         * object.h: Added thread ID to MonoThread
31860 2002-09-03  Martin Baulig  <martin@gnome.org>
31862         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31864 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31866         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31868 2002-09-03  Martin Baulig  <martin@gnome.org>
31870         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31871         argument to store the end address of the disassembled instruction.
31873         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31874         here from debug-symfile.h.
31875         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31876         JIT into this struct.
31877         (MonoSymbolFile): Added `char *image_file' field.
31878         (MonoDebugGetMethodFunc): Removed.
31879         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31880         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31881         (mono_debug_find_method): New method.
31883         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31884         create a full symbol file.
31885         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31886         and static symbol files.
31887         (mono_debug_find_method): The symbol file keeps an internal method hash,
31888         call this to get a MonoDebugMethodInfo from a MonoMethod.
31890         * debug-symfile.[ch]: Removed.
31892 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31894         * image.c (do_mono_image_open): Remove linker version check.
31896 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31898         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31899         wrappers for instance methods.
31900         
31901 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31903         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31905 2002-08-28  Dick Porter  <dick@ximian.com>
31907         * Makefile.am: Export HOST_CC for w32 builds
31909 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31911         * file-io.c process.c: MonoString are null terminated, no
31912         need for mono_string_to_utf16() anymore.
31914 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31916         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31918 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31920         * icall.c, reflection.h: speedup System.MonoType.
31922 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31924         * reflection.c: allow null as the value of a string argument in
31925         custom attributes constructors.
31927 2002-08-27  Martin Baulig  <martin@gnome.org>
31929         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31930         `trampoline_address' field.
31932 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31934         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31935         check (fixes bug #29486) 
31937 2002-08-27  Martin Baulig  <martin@gnome.org>
31939         * debug-mono-symfile.c: Changed the file format in a way that allows us
31940         open it read-only and to use a specially malloced area for all the
31941         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31942         debugging IL code and there is no MCS generated symbol file for it.
31944 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31946         * object.c: added a define for a good string and array
31947         creation speedup (not enabled by default because we need to deal with
31948         the synch stuff).
31950 2002-08-26  Martin Baulig  <martin@gnome.org>
31952         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31953         function to create a dynamic symbol file.  This is used by the
31954         debugger to create a symbol file for IL code on-the-fly.
31956 2002-08-26  Martin Baulig  <martin@gnome.org>
31958         * loader.c (mono_lookup_pinvoke_call): Include the error message
31959         from g_module_error() in the error message.
31961 2002-08-24  Martin Baulig  <martin@gnome.org>
31963         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31964         function to update the symbol file.  The symbol file is mmap()ed
31965         writable, but private.  This allows us to install the symbol file
31966         together with the assembly.
31968 2002-08-24  Martin Baulig  <martin@gnome.org>
31970         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31971         but they can read the new symbol file format which mcs is now creating.
31973         * debug-symfile.c (mono_debug_find_source_location): Moved to
31974         debug-mono-symfile.c; this is now operating on the new symbol file.
31976 2002-08-23  Martin Baulig  <martin@gnome.org>
31978         * debug-helpers.c (mono_method_desc_from_method): New function to get
31979         a MonoMethodDesc from a MonoMethod.
31981 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31983         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31984         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31986 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31988         * string-icalls.[ch]: make helper methods static.
31990 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31992         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31993         types to it and to SetValueInternal.
31995         * object.c: Moved handle_enum label to its proper place. This was the
31996         f... bug! ;-)
31998         This time i compiled mcs and gtk-sharp and they both work.
32000 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32002         * icall.c: reverted partially my previous patch until 
32003         object.c:set_value handles enums correcly.
32005 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32007         * icall.c:
32008         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32009         (ves_icall_System_Environment_get_MachineName): removed warning when
32010         compiling under cygwin.
32012 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32014         * object.c: fixed field_get_value() for reference types.
32016 2002-08-22  Dick Porter  <dick@ximian.com>
32018         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32019         Don't free a buffer while it's still needed.  Patch from Jonathan
32020         Liger <Jonathan.liger@wanadoo.fr>
32022 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32024         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32025         internal call.
32027 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32029         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32030         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32032         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32033         we call unmanaged code which throws exceptions.
32035 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32037         * appdomain.h: added per-domain entry_assembly.
32038         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32039         arguments.
32040         * icall.c: Assembly::GetEntryAssembly icall.
32041         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32042         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32044 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32046         * appdomain.h, gc.c: added mono_domain_finalize ().
32048 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32050         * object.c:
32051         (mono_print_unhandled_exception): changed g_warning by g_printerr
32052         because g_log has a 1024 characters limit (yeah, i got a big stack
32053         trace). Don't print exception name, that should be in ToString 
32054         returned string.
32056 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32058         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32059         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32061 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32063         * object.c:
32064         (mono_print_unhandled_exception): after previous commit, i realized
32065         that MS calls ToString on the exception. I changed this function to
32066         do that. This way we get stack_trace for free.
32068 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32070         * object.c:
32071         (mono_print_unhandled_exception): invoke Message property instead of
32072         getting 'message' field from Exception. Don't allocate memory for
32073         'trace' and 'message' if not needed.
32075 2002-08-18  Dick Porter  <dick@ximian.com>
32077         * unicode.c: Fix asserts to match Encoder.cs checks
32079 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32081         * marshal.c: fix unaligned store issue and a few wrong
32082         opcode argument types.
32084 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32086         * icall.c: added GetUninitializedObjectInternal internal call.
32088 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32090         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32091         to the right domain.
32093 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32095         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32097         * class.c (class_compute_field_layout): set blittable to false for Strings
32099         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32101 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32103         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32104         first chunk of code to create types at runtime. Code to
32105         handle ReflectedType/DeclaringType. Make reflection handles
32106         domain specific.
32108 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32110         * class.c: set correct name in arrays.
32112 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32114         * appdomain.c (mono_domain_transfer_object): make it work with
32115         valuetypes. bug fixes.
32117 2002-08-12  Dick Porter  <dick@ximian.com>
32119         * object.h: Rename some parameters to avoid c++ keywords (Patch
32120         from Joseph Wenninger <kde@jowenn.at>)
32122 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32124         * icall.c: added icall to implement Assembly.GetFile*.
32126 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32128         * reflection.h, reflection.c: code to embed managed resources.
32130 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32132         * class.c: move all the type size stuff into
32133         class_compute_field_layout().
32135 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32137         * class.c: ensure enums have always the correct instance size.
32138         * unicode.c: remove wrong assert.
32140 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32142         * assembly.c: fix mem corruption issue.
32143         * image.h, image.c: added mono_image_get_resource () to access
32144         managed resources.
32145         * icall.c: implemented Assembly.EntryPoint property and some
32146         Managed Resources related internalcalls.
32149 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32151         * image.c, image.h: impemented mono_image_get_entry_point ().
32152         * appdomain.c: use mono_image_get_entry_point.
32154 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32156         * reflection.c: support the object type argument when loading
32157         custom attributes.
32159 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32161         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32162         String as return type.
32164 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32166         * reflection.c: fix encoding of named args for custom attrs to match
32167         the ms implementation. Read them back when instantiating custom
32168         attributes.
32170 2002-08-02  Radek Doulik  <rodo@ximian.com>
32172         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32173         by Dietmar as quick fix
32174         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32175         16 as stack size, used on more places as quick fix before Dietmar
32176         will fix it properly
32178 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32180         * object.h, object.c: added accessors for fields and properties.
32182 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32184         * class.c, class.h: made mono_class_get_field_from_name ()
32185         loop on parent types.
32186         Added mono_class_get_property_from_name ().
32188 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32190         * class.c, class.h: move the code to setup the type vtable in its own
32191         function so that it can be reused also for types created at runtime.
32192         Eliminate the "class" identifier from the header file.
32193         * reflection.c: setup the vtable for enums so that we can create
32194         objects for use in SetConstant ().
32196 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32198         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32199         instead of the delegate itself as this pointer (bug #28383)
32201 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32203         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32204         conversions.
32206 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32208         * loader.c: don't set the pinvoke bit on icalls.
32210 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32212         * debug-helpers.c (mono_method_full_name): only print a number to
32213         indicate wrapper type (so that the output is more readable in traces).
32215 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32217         * class.c (mono_class_init): include method override patch from Paolo
32219 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32221         * icall.c: fixed GetTypeCode().
32223 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32225         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32226         use real delegate invoke function to make it work with multicast
32227         delegates (fix bug# 28291).
32229 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32231         * object.c: load constant strings.
32233 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32235         * reflection.c: no magic numbers.
32236         * tabledefs.h: security action enum.
32238 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32240         * assembly.c: fix possible memory corruption.
32242 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32244         * reflection.h, reflection.c: added support for linking resources.
32245         * verify.c: check we have an updated corlib.
32247 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32249         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32250         string arrays.
32251         (mono_marshal_string_array): null terminate unmanaged string arrays.
32252         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32254 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32256         * icall.c: Type.GetType () can now return also types from the
32257         calling assembly.
32259 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32261         * loader.h, loader.c: stack walking support.
32262         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32263         GetCallingAssembly.
32265 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32267         * marshal.c: added optimisations for blittable types 
32269         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32270         (mono_class_setup_mono_type): set blittable attribute for single
32271         and double.
32273         * marshal.c (mono_string_utf8_to_builder): impl.
32274         (mono_string_builder_to_utf8): impl.
32275         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32277 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32279         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32280         (mono_marshal_get_managed_wrapper): impl. byref types
32282 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32284         * icall.c:
32285         (search_method): don't display debug message. 
32287 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32289         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32291 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32293         * appdomain.c: set the missing filename when throwing exception.
32295 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32297         * metadata.c (mono_type_size): code cleanup
32298         (mono_type_stack_size): removed some test code
32300 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32302         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32303         mono_get_exception_file_not_found now.
32305         * exception.c (mono_exception_from_name_two_strings): New version
32306         that will call a constructor with two string arguments. 
32307         (mono_get_exception_file_not_found): New helper routine, used to
32308         report file-not-found errors.
32310 2002-07-20  Dick Porter  <dick@ximian.com>
32312         * process.h:
32313         * process.c: Pass file handles to CreateProcess
32314         
32315         * icall.c:
32316         * file-io.h:
32317         * file-io.c: Implemented CreatePipe
32319 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32321         * metadata.c (mono_get_param_info): set alignment for value types
32323 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32325         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32326         Constify mono_domain_assembly_open().
32327         * loader.c: handle null namespace in icalls.
32329 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32331         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32332         (emit_str_to_ptr_conv): marshal object as structs
32334         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32336         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32338 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32340         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32341         (mono_marshal_get_native_wrapper): we an now return value types
32343 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32345         * verify.c: more checks implemented.
32347 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32349         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32350         (fix bug #27695)
32351         (mono_marshal_get_native_wrapper): allow byref arguments
32352         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32353         impl. PtrToStringXXX methods
32354         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32355         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32356         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32357         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32358         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32360 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32362         * reflection.c: fix buglet in parsing an assembly name.
32364 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32366         * marshal.c (emit_ptr_to_str_conv): first impl.
32368 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32370         * object.c, class.h: cache the vtable in the class as suggested by
32371         vargaz@freemail.hu (Zoltan Varga).
32373 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32375         * class.h, loader.c: added mono_field_from_token().
32376         * verify.c: first cut of type checking code.
32378 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32380         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32382 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32384         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32385         (fix bug #27782)
32386         (mono_marshal_get_remoting_invoke): impl.
32387         (mono_delegate_begin_invoke): impl.
32388         (mono_mb_emit_save_args): impl.
32389         (mono_delegate_end_invoke): impl.
32390         (mono_marshal_get_delegate_begin_invoke):
32391         (mono_marshal_get_delegate_end_invoke):
32392         (mono_marshal_get_delegate_invoke): generate a special name for
32393         those methods (including the signature) and associate them whith
32394         the delegate class. 
32396 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32398         * reflection.[ch]: 
32399         (mono_reflection_type_from_name): now it has a MonoImage parameter
32400         which is used as the default image to search the type in. If the image
32401         is NULL or getting the type from it fails, it defaults to corlib.
32403         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32404         new parameter.
32406 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32408         * reflection.c: update the parameter table index.
32410 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32412         * domain.c: don't include the mark byte in the string hash.
32414 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32416         * icall.cs: icall for Type.GetTypeCode ().
32417         * verify: a couple of fixes and disabled local initialization checks.
32419 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32421         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32423         * debug-helpers.c (mono_method_full_name): print the type of the
32424         runtime wrapper
32426         * metadata.c (mono_signature_hash): a hash function for signatures
32427         (mono_signature_hash): better hash algorithm
32429         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32431         * debug-helpers.c (mono_method_full_name): this can now generate
32432         method names with signatures
32434         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32435         method dont have this pointers.
32437 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32439         * reflection.c: fixup typebuilder tokens.
32440         * image.c: fix buglet.
32441         * marshal.h: remove whitespace.
32442         * metadata.h, metadata.c: reinstate code that was removed.
32443         * verify.c: handle catch directives and fix another couple of bugs.
32445 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32447         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32448         (mono_marshal_get_native_wrapper): make it comp. with the old code
32449         (mono_marshal_get_native_wrapper): support boolean
32450         (mono_marshal_get_managed_wrapper): support more types
32452 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32454         * class.c (class_compute_field_layout): compute class->blittable attribute.
32456 2002-07-09  Dick Porter  <dick@ximian.com>
32458         * threads.c: Make the thread cleaning up cope with threads that
32459         call ExitThread()
32461 2002-07-08  Radek Doulik  <rodo@ximian.com>
32463         * reflection.c (method_encode_code): use non-translated values to
32464         compute finally_start, this fixes exception handling on ppc, yay!
32466         * decimal.h (struct signscale): fix endianess
32468 2002-07-07  Radek Doulik  <rodo@ximian.com>
32470         * reflection.c: swap box_val and not val
32472 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32474         * reflection.c, reflection.h: handle full assembly info in type name.
32475         Handle Type arguments when loading custom attributes.
32476         * icall.c: updated to use new mono_reflection_type_from_name () method.
32478 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32480         * loader.c:
32481         (method_from_memberref): also print assembly name when method not found.
32483 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32485         * icall.c:
32486         (ves_icall_TypeGetProperties): fixed bug #27473. 
32488 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32490         * reflection.c: display image name and token when cannot find the
32491         .ctor for an attribute.
32493 2002-07-05  Martin Baulig  <martin@gnome.org>
32495         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32497 2002-07-04  Dick Porter  <dick@ximian.com>
32499         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32500         compile on mingw.  This will cause mingw builds to not wait for
32501         subthreads to terminate after the main thread does.  I've lodged a
32502         bug with the mingw developers for them to wrap OpenThread().
32504 2002-07-03  Dick Porter  <dick@ximian.com>
32506         * threads.c: Store thread IDs instead of handles, because
32507         GetCurrentThread() returns a pseudohandle and therefore stores
32508         useless values.  mono_thread_cleanup() continues checking the
32509         array of threads until it is empty, to cope with subthreads
32510         spawning new threads after the main thread has finished.
32512         * profiler.h:
32513         * profiler.c:
32514         * profiler-private.h: Pass the thread ID to thread profiler
32515         functions, instead of a handle
32517 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32519         * verify.c: fixes to make it more usable.
32520         * pedump.c: added --verify code to verify IL code in an assembly.
32522 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32524         * reflection.c: turn errors into warnings to allow compiling corlib.
32526 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32528         * reflection.c: add special cases to compile corlib.
32530 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32532         * reflection.c: handle properties with only a set method.
32534 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32536         * opcodes.h: add enum with opcodes in opval order.
32538 2002-07-01  Dick Porter  <dick@ximian.com>
32539         
32540         * object.h:
32541         * object.c (mono_runtime_run_main): Removed unneeded argument
32543 2002-06-28  Martin Baulig  <martin@gnome.org>
32545         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32547 2002-06-27  Dick Porter  <dick@ximian.com>
32549         * threads.c: Store the handle in both the parent thread and in the
32550         subthread, to minimise the time between starting a new thread and
32551         storing its ID.
32553 2002-06-26  Dick Porter  <dick@ximian.com>
32555         * appdomain.c (mono_runtime_cleanup): Close the socket library
32556         after all the threads have finished, not before
32558 2002-06-26  Martin Baulig  <martin@gnome.org>
32560         * debug-symfile.c (mono_debug_find_source_location): Added
32561         `guint32 *line_number' argument.  If it's not NULL, store the line number
32562         there and return the file name without the line number.
32564 2002-06-25  Dick Porter  <dick@ximian.com>
32566         * icall.c:
32567         * process.h:
32568         * process.c: Process forking and other support functions
32570 2002-06-25  Dick Porter  <dick@ximian.com>
32572         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32573         things dont happen when the image is closed.
32574         (mono_image_lookup_resource): Walk the resource section looking
32575         for a particular entry
32577         * cil-coff.h: PE resource section decoding
32579 2002-06-25  Dick Porter  <dick@ximian.com>
32580         
32581         * assembly.h:
32582         * assembly.c: 
32583         (mono_assembly_foreach): Accessor functions to walk the list of
32584         loaded assemblies
32585         (mono_assembly_set_main):
32586         (mono_assembly_get_main): Process methods need to know which
32587         assembly is the "main" one
32589         * object.c (mono_runtime_run_main): Record the main assembly
32591         * debug-helpers.c: Fix typo
32593 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32595         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32596         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32598 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32600         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32602 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32604         * image.c (do_mono_image_open): Initialize reference count,
32605         otherwise we leak the MonoImage.
32607 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32609         * reflection.c: small tweak to handle self-hosting.
32611 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32613         * reflection.c: fix type name parse code.
32615 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32617         * reflection.c: break out of the loop.
32618         * image.c: special case corlib.
32620 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32622         * reflection.c: add all the custom attrs at the end to ensure the
32623         ctors have been properly initialized when the attributes are defined
32624         in the current assembly.
32626 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32628         * reflection.c: handle correctly multiple-nested types.
32630 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32632         * row-indexes.h: fix typos.
32633         * reflection.c: adjust for typos and fix method_def_or_ref
32634         encoding in MethodImpl table.
32636 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32638         * reflection.c: fix entry point patching (thanks Serge!).
32640 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32642         * verify.c: add check for System.Exception
32644 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32646         * image.c, class.c: minifix for code just c&p'ed.
32647         * reflection.c: warning fix.
32648         * object.h, loader.h, domain.c: load also StringBuilder.
32650 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32652         * marshal.h, marshal.c: some support code to handle complex marshaling.
32654 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32656         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32657         Better signatures with vtable error dump.
32659 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32661         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32663 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32665         * icall.c (ves_icall_Type_GetField): impl.
32667 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32669         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32670         to retrieve a marshal description blob for a field or param.
32672 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32674         * reflection.h, reflection.c: change order of nested type emission
32675         to avoid table corruption. The NestedTypes table is sorted.
32676         * icall.c: change order of GetConstructor results to workaround mcs bug.
32678 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32680         * reflection.h, reflection.c: handle field and param marshal
32681         information.
32683 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32685         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32687 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32689         * reflection.c: fix call convention.
32691 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32693         * reflection.h, reflection.c: mono_image_get_memberref_token()
32694         takes a type instead of a class, now. Added
32695         mono_image_get_array_token() to create tokens for the special
32696         multi-dim array methods.
32698 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32700         * assembly.c: handle modules (no assembly table). Split
32701         loading references in its own function.
32702         * class.c: handle moduleref resolution scope.
32703         * image.c, image.h: cache module name in image.
32705 2002-06-07  Martin Baulig  <martin@gnome.org>
32707         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32708         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32710 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32712         * icall.c: more signature fixes that used uint instead of int.
32714 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716         * reflection.c: fixed signature of field refs.
32718 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32720         * class.c, reflection.c: handle typerefs of nested types
32721         (both on read and when writing files).
32723 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32725         * icall.c: fix method signatures that tried to workaround the previous
32726         typo, d'oh!
32728 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32730         * debug-helpers.c: fix typo.
32732 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32734         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32735         rewrote the PE/COFF writing code (our programs are understood by the
32736         ms runtime, now).
32738 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32740         * gc.c, gc.h, icall.c: weakreference support.
32742 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32744         * Makefile.am, mono-config.c: use $(sysconfdir).
32746 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32748         * icall.c: changed default precision of Double.ToString() to 15.
32749         Fixed memory leak. Unified with Single.ToString.
32751 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32753         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32755 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32757         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32758         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32759         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32760         and myself.
32762 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32764         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32766 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32768         * reflection.c, socket-io.c: more compilation fixes.
32770 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32772         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32773         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32774         unicode.c: warning and compiler compatibility fixes.
32776 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32778         * class.h, metadata.c: fixed warnings/compilation errors.
32780 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32782         * Makefile.am, mono-config.c, mono-config.h: configuration file
32783         support routines.
32784         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32785         config file. Export methods to insert and lookup mappings.
32787 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32789         * reflection.c: handle types and boxed objects in custom attr
32790         constructors.
32792 2002-05-30  Martin Baulig  <martin@gnome.org>
32794         * debug-symfile.c
32795         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32797 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32799         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32800         to lookup the implmap row for a P/Invoke method.
32801         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32802         P/Invoke method from the runtime on an as needed basis.
32804 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32806         * metadata.c (mono_metadata_parse_signature): impl.
32808 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32810         * class.c: handle .pack directive.
32812 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32814         * object.c: initialize static fields with RVA data.
32816 2002-05-25  Martin Baulig  <martin@gnome.org>
32818         * debug-symfile.c
32819         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32821 2002-05-24  Martin Baulig  <martin@gnome.org>
32823         * debug-symfile.c
32824         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32825         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32826         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32828 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32830         * object.c: special case string ctros in invoke.
32831         * gc.c: silly whitespace changes.
32833 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32835         * threadpool.[ch]: impl. a threadpool that can
32836         be used by mint and mono.
32838 2002-05-22  Martin Baulig  <martin@gnome.org>
32840         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32841         The first argument is now a `MonoReflectionModuleBuilder *', the return
32842         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32843         `methods' field to get the method builder.  The `token' argument is the
32844         unfixed token.
32846         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32847         invalid characters instead of g_assert_not_reached()ing.  This seems
32848         to be the behaviour of mscorlib.
32850 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32852         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32853         Hestilow to fix bug #25104
32855 2002-05-21  Martin Baulig  <martin@gnome.org>
32857         * debug-symfile.c (mono_debug_find_source_location): New function.
32858         Looks up an IL offset in the line number table and returns the source
32859         location as a string.
32861 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32863         * icall.c:
32864         (mono_double_ToStringImpl): changed %f by %g until we have something
32865         better.
32867 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32869         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32870         parameters first in C#.
32872 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32874         * icall.c, reflection.h: added icall to get info about an event.
32876 2002-05-20  Radek Doulik  <rodo@ximian.com>
32878         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32879         endian
32880         (mono_value_box): don't use memcpy for small sizes on
32881         architectures with unaligned access
32883 2002-05-20  Martin Baulig  <martin@gnome.org>
32885         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32886         if `tb->parent == NULL'.
32887         (mono_reflection_create_internal_class): New function.  This is
32888         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32889         for enum types.
32891         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32892         New interncall.
32894 2002-05-19  Martin Baulig  <martin@gnome.org>
32896         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32897         argument to get the length, don't default to the array length.
32899 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32901         * assembly.c (mono_assembly_setrootdir): New function used to
32902         override the MONO_ASSEMBLIES directory.
32904 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32906         * icall.c: ValueType_GetHashCode() initialize local var.
32908 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32910         * reflection.c: sort custom attributes table.
32912 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32914         * reflection.c: support named args in custom attributes (write support).
32916 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32918         * reflection.c: fix finally position calculation.
32920 2002-05-15  Radek Doulik  <rodo@ximian.com>
32922         * reflection.c: fixed endianess at many places
32924         * icall.c (ves_icall_InitializeArray): comment out debug msg
32926 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32928         * object.c (mono_unhandled_exception): new function to handle
32929         unhandled exceptions.
32930         (mono_unhandled_exception): call the UnhandledException event.
32931         (mono_runtime_delegate_invoke): impl.
32933 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32935         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32936         returns the RVA, not the direct pointer to the data. Handle the case
32937         when the class size is fixed.
32939 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32941         * reflection.c: fix some endianess issues.
32943 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32945         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32947         * threads.c (mono_thread_init): added a callback which is invoked
32948         at thread start.
32950 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32951         
32952         * icall.c: make GetHashCode return non-negative values.
32954 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32956         * object.c, icall.c, gc.c: revert to address-based hashcode.
32958 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32960         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32962 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32964         * icall.c, class.c: special case <Module>.
32966 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32968         * icall.c: fix bug in GetNow().
32970 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32972         * object.c (mono_runtime_class_init): make sure that we call all
32973         static class constructors.
32975 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32977         * reflection.c: sort methodsemantics table.
32979 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32981         * reflection.h, reflection.c: honour init locals setting.
32983 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32985         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32987 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32989         * reflection.c: support ContructorBuilders in attribute blob creation.
32991 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32993         * reflection.c: some changes to build a binary that can be run
32994         directly in windows.
32996 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32998         * loader.c: print a big message when an icall can't be found.
33000 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33002         * string-icalls.c: fix bug 24248.
33004 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33006         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33007         icall.c, reflection.h: separate assembly loading by pathname and by
33008         assembly name. Use the MONO_PATH env var to search for assemblies.
33010 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33012         * assembly.c, image.h: add some support for assemblies
33013         with multiple modules.
33014         * class.c, class.h: export mono_class_from_typeref().
33015         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33016         instead.
33018 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33020         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33021         documentation says (the ECMA one is correct).
33023 2002-05-02  Dick Porter  <dick@ximian.com>
33025         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33026         Don't name the synchronisation mutex.
33028 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33030         * rand.c
33031         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33032         Make the prototypes match.
33033         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33034         Same.
33036         * icall.c
33037         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33038         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33039         all systems have tm.tm_zone, so use strftime() with %Z to print
33040         the timezone abreviation into a temp string.
33042         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33043         rather than mono_array_addr() on a MonoString on Big Endian
33044         machines.
33046 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33048         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33049         fix bug 24041
33051 2002-04-30  Dick Porter  <dick@ximian.com>
33053         * socket-io.c: Cope with SOCKET being an integer rather than a
33054         pointer now.
33056         * threads.c: Added Thread_free_internal, to deal with thread
33057         handle cleanup.  Moved calls to handle_store() and handle_remove()
33058         to start_wrapper(), so each can only be called once.  Allocate
33059         synchronisation blocks with GC_malloc(), and use GC finalisation
33060         to close the handles.
33062         * icall.c: added System.Threading.Thread::Thread_free_internal
33064 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33066         * icall.c: support Environment.Exit, CommandLineArgs().
33068 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33070         * object.c, object.h: added mono_runtime_run_main () and
33071         mono_runtime_get_main_args () for use in System.Environment.
33073 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33075         * gc.c: fix thinko, enable actual finalization since the jit is now
33076         fixed.
33078 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33080         * gc.c, object.c: take into account that an object may be offset wrt the address
33081         returned by GC_malloc().
33083 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33085         * image.c: handle files without entries in the assembly table (modules).
33087 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33089         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33090         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33091         allowed to be null when it's System.Object class setup.
33093 2002-04-27  Martin Baulig  <martin@gnome.org>
33095         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33096         if `tb->parent == NULL' rather than crashing.
33098 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33100         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33101         calling acos() where asin() should have been called.
33103 2002-04-26  Martin Baulig  <martin@gnome.org>
33105         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33106         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33107         there's a subdirectory called `System', but we don't want to read that
33108         subdirectory as an assembly.
33110 2002-04-25  Martin Baulig  <martin@gnome.org>
33112         * debug-symfile.c: Reflect latest MonoString changes.
33114 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33116         * rand.c, rand.h: instance method icalls need to have an explicit
33117         this pointer as first argument in the C implementation.
33119 2002-04-25  Nick Drochak <ndrochak@gol.com>
33121         * icall.c: Fix typo in map for GetNonZeroBytes
33123 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33125         * string-icalls.c : String does now passes unit tests without any 
33126         errors, the following changes has been made:
33127         
33128         Implemented replace methods.
33129         Renaming of methods to (try) follow the standard.
33130         Fixed compare ordinal
33131         Made all memory allocated directly to function instead of via icall function.
33132         Small performance fix in is_in_array function
33133                         
33134  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33136         c (mono_string_Internal_ctor_charp_int_int):
33137         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33138         sindex < 0, throw ArgumentOutOfRangeException instead of
33139         ArgumentNullException.
33141         Added new check for length == 0, however
33142         I need to make it return String.Empty from the C code.
33143         
33144         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33145         that calculate the length for us here.
33146         
33147         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33148         mono_string_new_utf16 with mono_string_new, since value is utf8.
33150 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33152         * object.c: register the object for finalization if needed.
33153         Allocate one more char in the string for the terminating 0 char.
33155 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33157         * class.c, class.h, image.c: check if a type implemenst a destructor.
33158         Use the proper key for array class lookups.
33159         * icall.c: register the icalls in the System.GC class.
33160         * gc.c, gc.h: GC-related functions and icalls.
33162 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33164         * icall.c:
33165         * socket-io.c:
33166         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33167         changed a couple of free () by g_free ().
33169         * decimal.c: one-liner in the comments for decimal2string ().
33171 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33173         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33175 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33177         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33178         * object.c (mono_runtime_invoke_array) : handle null in params
33180 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33182         * string-icalls.c: fixed bug in split (one off bug)
33184 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33186         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33187         * icalls.c: added String::Equals as internal method
33189 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33191         * threads.c: fixed bug in the double interlocked functions
33193 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33195         * threads.c: implemented all of the new interlocked icalls.
33196         * string-icalls.c: fix a bug in insert.
33197         * icalls.c: added the icalls for interlocked, removed old string functions.
33198         
33199 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33201         * loader.c: fix off-by-one error when reading argument names.
33203 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33205         * profiler.c: win32 counter implementation (untested).
33206         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33207         (the latter needs testing and more complete impl. from win32 folks).
33209 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33211         * object.c: mono_array_new_full workaround mono_array_class_get
33212         problem.
33214 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33216         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33217         * object.h (mono_string_chars): Changed casting type.
33219 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33221         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33222                            method signatures to use gunichar2 instead of gint16.
33224 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33226         * object.h, object.c: domain-specific versions of mono_object_new and
33227         mono_array_new.
33229 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33231         * object.c: changed String layout
33233         * string-icalls.c (mono_string_Internal_ctor_chara): added
33234         internal string constructors.
33236 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33238         * threads.c: pass 'this' to the thread start routine.
33240 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33242         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33243         InternalCompareStr don't call twice mono_string_cmp_char for the last
33244         character. Improved performance in mono_string_cmp_char.
33246 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33248         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33249         code into its own library: libmonoruntime.
33251 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33253         * object.h, object.c: changed array format so that szarrays do not
33254         require a bounds structure.
33255         * icall.c, appdomain.c: support for new szarray format.
33257 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33259         * metadata.c: compare also the retuns type when comparing signatures:
33260         we didn't do this as an optimization since really overloaded methods
33261         must differ also in the arguments, but this doesn't work with
33262         low-level IL code (or when using explicit conversion operators: see
33263         bug#23498 for an example).
33265 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33267         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33269 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33271         * icall.c: make MonoType::GetElementType its own icall.
33273 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33275         * icall.c: remove MonoMethod_get_Name().
33276         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33277         object.
33279 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33281         * string-icalls.c: optimized a few methods.
33283 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33285         * icall.c: added all new string internal calls
33286         * string-icalls.c: added, new string internal call implementation.
33287         * object.c: added mono_string_new_size for allocating a string a size
33289 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33291         * object.c (mono_object_isinst): use the same code as in the
33292         optimized x86 version.
33294 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33296         * profiler.c: TSC-based timer code (faster and more accurate).
33297         Not hooked up in configure, yet (set USE_X86TSC to 1).
33299 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33301         * profiler.c, profiler.h: track time spent compiling methods.
33302         * threads.c: track thread creation/destruction.
33304 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33306         * profiler.c, profiler.h, profiler-private.h: profiling interface
33307         and sample implementation. Moved here so that it can be used also by
33308         the jit.
33310 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33312         * reflection.c, reflection.h: keep types and other handles separate in
33313         the hash tables for referred tokens. Add guid for modules.
33315 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33317         * assembly.c: fix bugs found with valgrind.
33318         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33320 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33322         * threads: added icall support for getting current domain for
33323                    the thread.
33325 2002-04-13  Martin Baulig  <martin@gnome.org>
33327         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33328         (MonoDebugVarInfo): Added `index' field for register based addresses.
33329         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33330         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33331         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33332         `MonoDebugVarInfo *this_var'.
33334         * debug-symfile.c (relocate_variable): New static function to write
33335         a location description for a local variable or method parameter.
33337 2002-04-12  Martin Baulig  <martin@gnome.org>
33339         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33340         stack offset and begin/end scope address of a local variable.
33341         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33342         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33343         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33345         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33346         Added new relocation types for start/end scope of a local variable.
33348 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33350         * object.h: add mono_object_domain() macro.
33351         * reflection.c: handle typespecs.
33352         * icall.c: MonoMethod::get_Name() implementation.
33354 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33356         * icall.c: String::GetHashCode() icall implementation.
33358 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33360         * icall.c: String::IndexOfAny icall.
33361         * object.c, object.h: make array->max_length more useful.
33362         Intrduced mono_object_class() and mono_string_length() macros.
33364 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33366         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33367         instead of g_unichar_isdigit.
33369 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33371         * icall.c: Implement a simple Double.ToString().
33373 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33375         * appdomain.h: only io-layer.h is supposed to be included.
33376         * icall.c: explicitly import environ. Fix warning.
33378 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33380         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33381                 return true even if it's not Daylight Savings time.
33382                 Only return false for the case where the function isn't
33383                 implemented for a plaform (read Windows).
33385 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33387         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33388         data with a mutex.
33390 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33392         * mempool.c (mono_mempool_alloc): only use g_malloc when
33393         absolutely necessary.
33395 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33397         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33399         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33400         (mono_class_proxy_vtable): use domain mempool
33402 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33404         * appdomain.h, appdomain.c: split initialization that requires the
33405         execution engine support into mono_runtime_init().
33407 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33409         * class.c (mono_class_init): don't include vtable inside MonoClass
33410         to save some memory, gather some statistics.
33411         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33413 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33415         * icall.c: internalcall implementation for ValueType.Equals().
33417 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33419         * object.c (mono_message_init): moved 
33420         (mono_runtime_exec_main): new arch. independent impl.
33421         (mono_runtime_invoke_array): new method - like
33422         mono_runtime_invoke, but you can pass an array of objects.
33423         (mono_remoting_invoke): new arch. independent impl.
33424         (mono_message_invoke): new arch. independent impl.
33425         (mono_runtime_class_init): new arch. independent impl.
33426         (mono_runtime_object_init): new arch. independent impl.
33428 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33430         * metadata.c, object.c, reflection.c: documented the exported
33431         functions.
33433 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33435         * icall.c: simpler code to pass the assembly builder data to corlib.
33436         Implement GetNestedTypes() internalcall.
33438 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33440         * class.c: warn if a type can't be loaded.
33442 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33444         * image.h: typedef MonoImageOpenStatus
33445         * types.h: removed unused file
33446         
33447 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33449         * icall.c: Enum_ToObject accepts enum value arguments.
33451 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33453         * class.c: move initialization of properties, events and nested
33454         classes, so that they happen for interfaces, too.
33456 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33458         * icall.c: cleanup some ugly casts in Array_SetValue*.
33460 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33462         * icall.c: the values array fro enums is of the correct type, now.
33463         Implement (correctly) getFullName instead of assQualifiedName for
33464         MonoType.
33465         * reflection.h, reflection.c: added mono_type_get_name ().
33467 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33469         * assembly.c, image.h: for each MonoImage, record from wich assembly
33470         it was loaded.
33471         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33472         Make Type.Assembly work.
33474 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33476         * debug-symfile.h: use char* instead of gpointer to avoid
33477         unnecessary casts.
33479         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33481         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33482         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33484 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33486         * icall.c (mono_message_init): impl. (code cleanup)
33487         (ves_icall_InternalExecute): impl. FieldGetter
33489         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33490         defined we call all (non-static)methods through the vtable. 
33492 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33494         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33495         finalizer even though the memory is still referenced (and the chunk of
33496         memory is not freed).
33498 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33500         * assembly.c: fix brokeness.
33502 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33504         * class.c: kill some warnings. Check explicit interface method
33505         implementation also without considering the namespace.
33506         Load also literal strings in static class data.
33508 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33510         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33511         (default_assembly_name_resolver): Make the resolver take the
33512         "base" directory where the assembly was originally defined, so we
33513         can load DLLs that are in the same directory as the assembly that
33514         is being referenced.
33516 2002-03-28  Dick Porter  <dick@ximian.com>
33518         * file-io.h: 
33519         * file-io.c:
33520         * socket-io.c: 
33521         * unicode.h: 
33522         * unicode.c: Warning cleanups
33524 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33526         * object.h, reflection.h: use the correct type instead of MonoObject.
33528 2002-03-28  Martin Baulig  <martin@gnome.org>
33530         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33531         (mono_debug_update_symbol_file): Initialize classes if necessary.
33533 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33535         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33536         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33538 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33540         * assembly.h: fix function prototype.
33541         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33542         * mono-endian.h: use const cast.
33544 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33546         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33548 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33550         * loader.c: don't assert when a typeref can't be loaded, give
33551         a chance to the runtime to trow an exception instead.
33552         * loader.h: fix warning.
33554 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33556         * class.c (mono_class_proxy_vtable): added proxy support
33558 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33560         * icall.c: removed last of PAL calls, added System.Environment
33561         * file-io.h, file-io.c: MonoIO implementation
33562         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33564 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33566         * appdomain.c: do not use the byte marker in ldstr table lookup.
33567         * debug-helpers.c: allow two ':' to separate class and method name.
33568         * object.c: allocate arrays bounds with the GC, too.
33569         * verify: add a few more checks.
33571 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33573         * reflection.c: output also literal strings. Allocate parameter data
33574         with GC_malloc() (thanks, Martin, for catching this!).
33576 2002-03-26  Martin Baulig  <martin@gnome.org>
33578         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33579         include the `this' offset in the `param_offsets'.
33581 2002-03-25  Martin Baulig  <martin@gnome.org>
33583         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33584         mono_debug_get_class() function to get the classes. Added new
33585         relocation types for arrays and strings.
33586         (mono_debug_get_class): New static function to search in all
33587         referenced assemblies for a metadata token.
33589         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33591 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33593         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33594         hold gc-allocated objects. Make the string heap a stream like the
33595         others. Removed duplicated code when writing stream info.
33596         Added asserts to catch possible buffer overflows. Set the sorted map
33597         for tables that need sorting. Added some documentation.
33599 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33601         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33602         for interned strings and vtables.
33604 2002-03-24  Martin Baulig  <martin@gnome.org>
33606         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33607         it in the array since it was created with g_slist_prepend().
33609 2002-03-24  Martin Baulig  <martin@gnome.org>
33611         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33612         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33613         (mono_debug_method_from_token): Renamed to
33614         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33615         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33617         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33618         relocation types.
33620         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33622 2002-03-24  Martin Baulig  <martin@gnome.org>
33624         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33625         (mono_debug_method_from_token): New func.
33627         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33628         New interncall, calls mono_debug_local_type_from_signature().
33629         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33630         calls mono_debug_method_from_token().
33632 2002-03-23  Martin Baulig  <martin@gnome.org>
33634         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33635         specifies the number of bytes to be converted, not the array size.
33636         Return the number of chars, not the number of bytes.
33637         (ves_icall_iconv_get_chars): The `byteCount' argument
33638         specifies the number of bytes to be converted, not the array size.
33640 2002-03-23  Martin Baulig  <martin@gnome.org>
33642         * reflection.h (MonoReflectionSigHelper): New type.
33644         * reflection.c (mono_reflection_sighelper_get_signature_local),
33645         (mono_reflection_sighelper_get_signature_local): New functions.
33647         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33648         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33649         interncalls.
33651 2002-03-23  Martin Baulig  <martin@gnome.org>
33653         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33654         is_writeable is set.
33655         (mono_raw_buffer_update): New function to write the modified map
33656         back to disk.
33658         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33660         * debug-symfile.c (mono_debug_update_symbol_file): Call
33661         mono_raw_buffer_update() when done writing.
33663 2002-03-23  Martin Baulig  <martin@gnome.org>
33665         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33667         * debug-symfile.c: Added support for arguments and local variables.
33669 2002-03-23  Dick Porter  <dick@ximian.com>
33671         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33672         protected by ifdefs, hence breaking the w32 build.
33674 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33676         * object.c: implement is_interned() the right way.
33678 2002-03-21  Martin Baulig  <martin@gnome.org>
33680         * debug-symfile.[ch]: New files to handle debugging information
33681         files. There's also support to dynamically update these symbol
33682         files to include machine dependent information.
33684 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33686         * threads.c (mono_thread_create): new function to create thread
33687         from C
33689 2002-03-20  Martin Baulig  <martin@gnome.org>
33691         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33692         method is a constructor.
33693         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33694         points to ves_icall_InternalInvoke().
33696 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33698         * file-io.c: Flush shouldn't throw exceptions.
33700 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33702         * file-io.c: FileStream flush support; FileSetLength now
33703         restores file pointer.
33705 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33707         * class.c: set image for pointer classes.
33709 2002/03/19  Nick Drochak <ndrochak@gol.com>
33711         * sysmath.c: Forgot one.
33713 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33715         * sysmath.c: Avoid redefining existing names.
33717 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33719         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33720         handled by runtime as icall rather than dllimport from libm.so
33721         * file-io.c, file-io.h: fixed handle argument type.
33723 2002-03-18  Dick Porter  <dick@ximian.com>
33725         * reflection.c (mono_image_get_type_info): rename interface to
33726         iface, because of "#define interface struct" on windows.
33728 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33730         * class.c, class.h: rename and export mono_ptr_class_get().
33731         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33732         * reflection.c, reflection.h, icall.c: better/saner type name
33733         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33734         method signatures.
33736 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33738         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33740         * icall.c (ves_icall_InternalInvoke): impl.
33742 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33744         * reflection.c: output the interface map table, too.
33746 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33748         * class.c (class_compute_field_layout): separate computation of 
33749         static field layout
33751 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33753         * icall.c: added System.Buffer support.
33754         * file-io.c: moved file icalls from PAL to FileStream.
33756 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33758         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33760 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33762         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33764 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33766         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33768 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33770         * debug-helpers.{c,h}: moved here from monograph some useful functions
33771         to locate a method by name/signature in a class or image. Included
33772         also a small and flexible IL disassembler.
33774 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33776         * reflection.c: fixup tokens in methods with small header size, too.
33778 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33780         * object.c (mono_string_to_utf8): remove assert(!error), instead
33781         print a warning. 
33783 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33785         * icall.c: update to the new mono_Array_class_get interface.
33787 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33789         * appdomain.c, object.c: Boehm-GC enable.
33790         * icall.c: make get_data_chunk() support split data requests.
33791         Ensure a class is initialized in more cases. Return only the first
33792         property found in GetProperties() or the compiler gets confused. 
33793         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33794         * reflection.h, reflection.c: add fixup mechanism for field and method
33795         tokens. Initialize assembly->typeref in a single place. Output
33796         properties after events. Support custom attributes for events, too.
33797         Typo fix for paramter custom attrs.
33799 2002-03-07  Martin Baulig  <martin@gnome.org>
33801         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33803 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33805         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33807 2002-03-06  Martin Baulig  <martin@gnome.org>
33809         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33810         non-zero lower bounds. See testcases #F10-#F13.
33812 2002-03-05  Martin Baulig  <martin@gnome.org>
33814         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33816         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33817         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33818         here.
33819         (ves_icall_System_Array_SetValue): Likewise.
33820         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33821         as argument and does the actual work. This function is used when copying a
33822         multi-dimensional array.
33823         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33824         now do all the widening conversions of value types.
33825         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33827 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33829         * class.c: remove some magic numbers and use the smbolic names,
33830         instead. Added init_events() to load event info at class init time.
33831         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33832         and mono_metadata_methods_from_event().
33833         * reflection.h, reflection.c: added support for writing out the evnets
33834         related information.
33836 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33838         * reflection.h, icall.c: use a different method (GetInterfaces)
33839         to gather interface info and add isbyref, isprimitive and
33840         ispointer to the ves_icall_get_type_info() return value.
33842 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33844         * class.h: stared adding support for events.
33845         * icall.c: split find_members implementation. Added debug icall to get
33846         the address of an object.
33847         * reflection.c: handle TypeBuilders in mono_type_get_object().
33849 2002-03-01  Martin Baulig  <martin@gnome.org>
33851         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33852         ArgumentOutOfRangeException(), not an ArgumentException().
33853         (ves_icall_System_Array_GetLowerBound): Likewise.
33854         (ves_icall_System_Array_GetValue): Improved argument checking.
33855         (ves_icall_System_Array_SetValue): Improved argument checking.
33857 2002-03-01  Martin Baulig  <martin@gnome.org>
33859         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33860         called with invalid arguments rather than just dying with g_assert().
33861         (ves_icall_System_Array_SetValue): Likewise.
33862         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33863         raise a NotImplementedException instead.
33864         (ves_icall_System_Array_GetLength): Added argument checking.
33865         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33867 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33869         * object.h (mono_assert): new macros mono_assert and
33870         mono_assert_not_reached
33872 2002-02-28  Martin Baulig  <martin@gnome.org>
33874         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33875         and "System::String::IsInterned" to "System::String::_IsInterned".
33877 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33879         * icall.c: remove hacks for typebuilder. Added icall to create a
33880         modified type from a tybebuilder.
33881         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33882         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33883         to create a backing MonoClass for a TypeBuilder.
33885 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33887         * class.c, class.h: more refactoring of class init.
33888         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33890 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33892         * marshal.c, marshal.h: start of marshaling interface.
33894 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33896         * icall.c: fix order in assembly qualified name icall.
33898 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33900         * class.c: do not free str, since we store it in the hash table.
33901         * reflection.h: add label field to MonoILExceptionInfo.
33902         * reflection.c: handle references to more than one assembly. Handle
33903         case when there isn't a module created in the assembly.
33905 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33907         * class.c: Fix typo. Start refactoring of class init code.
33909 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33911         * appdomain.c: exit with 1 on error.
33912         * class.c: we already have the name in MonoClassField.
33913         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33914         MonoStreamHeader instead of an offset of image->raw_metadata.
33916 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33918         * appdomain.c (mono_init): Be even more descriptive about the error.
33920 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33922         * appdomain.c: give the user an informative message when corlib can't
33923         be loaded.
33925 2002-02-26  Martin Baulig  <martin@gnome.org>
33927         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33928         New icall to get the time zone data.
33930 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33932         * reflection.c: set virtual and raw size of section correctly.
33933         * threads.c: transfer domain information to newly created threads.
33935 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33937         * class.c: when instancing a class in a domain, load the default
33938         vaules for static fields from the constant table. Fix System.Enum to
33939         not be an enum.
33940         * icall.c: implement Object::GetType() internalcall. Implemented
33941         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33942         Fixed checking of binding flags in find_members().
33943         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33944         * reflection.c: handle enumerations when writing to the constant
33945         table. Use a different object cache for types.
33948 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33950         * object.c (mono_object_isinst): fix for arrays
33952         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33954 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33956         * object.c: don't use mprotect ()  and fix intern pool hash table
33957         lookup for big endian systems.
33959 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33961         * icall.c: change type_is_subtype_of () signature.
33963 2002-02-21  Mark Crichton  <crichton@gimp.org>
33965         * rand.c, rand.h: Added random number generator for
33966         System.Security.Cryptography classes.
33968         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33970         * icall.c: Added System.Security.Cryptography calls.
33972 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33974         * class.c, icall.c, metadata.c: better support for pointer types.
33975         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33976         * reflection.c: Add support for getting custom attrs for properties
33977         and simplify some code.
33979 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33981         * icall.c: change getToken () and add custom attribute GetBlob()helper
33982         method.
33983         * reflection.h: add custom attrs array to the reflection builder structures.
33984         * reflection.c: encode and emit custom attributes for all the relevant
33985         reflection objects. Cache fieldref and methodref tokens. Change
33986         mono_image_create_token() interface to take a MonoDynamicAssembly.
33987         More complete custom attributes decoder. Load custom attributes for
33988         Assembly, Field, Method and Constructor objects, too. Make the
33989         returned array an Attribute[] one, not object[]. Added
33990         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33991         custom attribute constructor.
33993 2002-02-20  Dick Porter  <dick@ximian.com>
33995         * icall.c:
33996         * rawbuffer.c:
33997         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33998         problem code out for now).
34000 2002-02-19  Radek Doulik  <rodo@ximian.com>
34002         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34004 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34006         * icall.c: register the GetCustomAttributes method.
34007         * object.c, object.h: add mono_string_new_len ().
34008         * reflection.h, reflection.c: added mono_runtime_invoke(),
34009         mono_install_runtime_invoke(). Added
34010         mono_reflection_get_custom_attrs () to load custom attributes and
34011         create the attribute objects.
34013 2002-02-19  Dick Porter  <dick@ximian.com>
34014         * threads-dummy-types.c:
34015         * threads-dummy-types.h:
34016         * threads-dummy.c:
34017         * threads-dummy.h:
34018         * threads-pthread-types.c:
34019         * threads-pthread-types.h:
34020         * threads-pthread.c:
34021         * threads-pthread.h:  Deleted obsolete files
34023 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34025         * class.c (mono_class_vtable): runtime init the class when we
34026         allocate static class data.
34028         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34030         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34031         and String - but we will need generic marshalling support in the
34032         future. 
34033         (mono_init): set the domain name in a ms compatible way
34035         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34036         String[].
34038 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34040         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34041         for sizes
34043         * appdomain.c (mono_domain_unload): impl.
34045 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34047         * appdomain.c, object.c: fix intern pool implementation.
34048         * class.c: fix alignment code.
34050 2002-02-16  Radek Doulik  <rodo@ximian.com>
34052         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34053         and s2 > s1, just copy lower bytes to be compatible with little
34054         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34055         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34057         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34058         force big_endian to be 1 for big endian machines 
34059         (ves_icall_iconv_new_decoder): ditto
34061 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34063         * socket-io.c (convert_sockopt_level_and_name): If the system
34064         doesn't define SOL_IP or SOL_TCP, get them by hand using
34065         getprotobyname() and caching the values (because this could be a
34066         slow operation).
34067         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34068         Use the appropriate struct when the system does support it. Ie,
34069         not all systems have struct ip_mreqn so use struct ip_mreq when
34070         appropriate.
34072 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34074         * reflection.c: handle finally clauses.
34076 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34078         * socket-io.c: use g_snprintf() instead of snprintf.
34080 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34082         * reflection.c (mono_param_get_objects): Cast second argument to
34083         mono_method_get_param_names to a const char** to silence the
34084         compiler warning.
34086         * appdomain.c (mono_domain_assembly_open): Put parens around the
34087         truth statement in the for-loop.
34089         * unicode.c (iconv_convert): Got rid of a compiler warning about
34090         int i being unused when the system has a new iconv.
34091         (iconv_get_length): Same.
34093         * image.c (load_class_names): Cast the second argument to
34094         g_hash_table_insert() to char* to hush compiler warnings about the
34095         arg being a const.
34096         (mono_image_open): Same here.
34098         * socket-io.c: Don't conditionally include sys/filio.h or
34099         sys/sockio.h here anymore since we now get them from
34100         io-layer/io-layer.h
34101         (inet_pton): If the system doesn't support inet_aton, implement
34102         using inet_addr and also #define INADDR_NONE if it isn't defined
34103         by the system.
34105 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34107         * metadata.c, metadata.h: added function to get packing and size info
34108         of a typedef.
34109         * reflection.h, reflection.c: handle field RVA data. Save info about
34110         the table layout if needed. Assign typedef indexes to all the types
34111         before dumping the info about them to avoid forward reference problems.
34113 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34115         * socket-io.c (convert_sockopt_level_and_name): ifdef
34116         SO_ACCEPTCONN because it is not defined on my system (old debian)
34118 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34120         * opcode.c: use stddef.h to get NULL.
34122 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34124         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34125         for FIONBIO, FIONREAD and SIOCATMARK.
34126         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34127         define INADDR_NONE and besides, inet_addr() is deprecated and
34128         should not be used. Use inet_pton() instead - it also has the
34129         added bonus that it can easily handle IPv6 addresses as well.
34130         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34132 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34134         * decimal.c: remove _MSC_VER conditional.
34136 2002-02-13  Dick Porter  <dick@ximian.com>
34138         * socket-io.c: 
34139         * icall.c: Internal calls for Blocking, Select, Shutdown,
34140         GetSocketOption and SetSocketOption
34142 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34144         * assembly.cs: better resolver: use it instead of some kludgy
34145         code.
34147 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34149         * reflection.c: the best way to speed-up the compiler is to avoid
34150         infinite loops.
34152 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34154         * class.c (mono_class_vtable): changed the object layout
34155         (obj->vtable->class). 
34156         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34158 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34160         * assembly.c: look for assemblies in the assembly dir, too.
34162 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34164         * class.c: fix thinko in mono_class_from_type().
34166 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34168         * exception.h, exception.c: added TypeLoadException.
34169         * object.h, object.c: added mono_array_clone ().
34170         * icall.c: handle throwOnError in AssemblyGetType().
34171         Added Array.Clone().
34172         * opcode.h, opcode.c: use a single value for the opcode val.
34173         Compile fix for non-gcc compilers.
34175 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34177         * opcodes.c, opcodes.h: export interesting info about opcodes.
34179 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34181         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34182         icalls. 
34184         * class.c (class_compute_field_layout): set element_class for enums
34185         (mono_class_create_from_typedef): set element_class for normal classes
34187         * icall.c (ves_icall_System_Enum_get_value): impl.
34189         * class.c (mono_class_create_from_typedef): do not set valuetype
34190         flag for System.ValueType and System.Enum
34192 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34194         * unicode.c (iconv_convert): fix big endian problem.
34196 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34198         * class.c: add asserts if we are ever going to scribble over memory.
34199         * socket-io.c: not all systems have AF_IRDA defined.
34201 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34203         * class.c (class_compute_field_layout): do not consider static
34204         fields to compute alignment
34206 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34208         * appdomain.c (mono_appdomain_get): impl.
34209         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34211 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34213         * icall.c: ignore "file://" prefix when loading an assembly.
34215 2002-01-23  Dick Porter  <dick@ximian.com>
34217         * socket-io.c:
34218         * icall.c:
34219         * Makefile.am: Added socket support
34221 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34223         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34224         code back.  This should return the assemblies that are loaded by
34225         the runtime on behalf of an application domain. 
34227         The current implementation is still broken, it just returns every
34228         assembly loaded, but until we get real applications domain this
34229         will do.
34231 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34233         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34234         AppDomain object.
34236 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34238         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34239         the mono_class_from_name lookup.
34240         (ves_icall_get_parameter_info): ditto.
34241         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34242         method.
34243         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34245 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34247         * class.c: load also nested classes on class init.
34248         System.ValueType instance methods gets passed boxed
34249         values, unless methods in derived classed that get a pointer to the
34250         data.
34251         * icall.c: use better name parsing code in GetType().
34252         * image.c, image.h: add mono_image_loaded ().
34253         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34254         * reflection.c, reflection.h: added mono_reflection_parse_type().
34256 2002-01-22  Veronica De Santis <veron78@interfree.it>
34258         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34259         * threads.c : Added the implementation of internal calls for events
34260         * threads.h : Added prototypes of internal calls for events
34261         
34262 2002-01-21  Radek Doulik  <rodo@ximian.com>
34264         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34266 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34268         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34269         (mono_class_value_size): use min_align
34271 2002-01-20  Dick Porter  <dick@ximian.com>
34273         * threads.h:
34274         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34275         so it compiles on w32.
34277 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34279         * metadata.c (mono_type_stack_size): impl.
34281         * class.c (mono_class_get_field): impl. memberref token
34283 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34285         * icall.h : Added the internal calls mapping for CreateMutex_internal
34286                     and ReleaseMutex_internal.
34287         * threads.h : Added the prototype of mutexes internal calls.
34288         * threads.c : Added the implementations of mutexes internal calls.
34290 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34292         * metaparse.h: removed unused file.
34293         * reflection.c, reflection.h: added stream_data_align () function 
34294         to align data in streams and keep stream aligned. Add support for
34295         exception support in method headers.
34297 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34299         * unicode.c: make iconv_convert () return the number of bytess written
34300         in the output buffer.
34302 2002-01-15  Dick Porter  <dick@ximian.com>
34303         * threads.c: Make the runtime's idea of infinite timeouts coincide
34304         with the class library's
34306         Fix a particularly egregious bug in mono_thread_cleanup(). That
34307         code was so utterly bogus it must have been written on a Monday.
34309 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34311         * reflection.h: add subtypes field to TypeBuilder.
34312         * reflection.c: encode constants for literal fields.
34313         Handle subtypes. Fix user string token (and add a zero byte)
34314         at the end.
34315         
34316 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34318         * class.c (mono_class_init): bug fix: assign slot numbers for
34319         abstract methods.
34321 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34323         * reflection.c: don't try to output a code RVA for abstract methods.
34324         Small fixes for method header format. Output parameter info to the
34325         ParamDef table. Save method overriding info to MethodImpl table.
34326         Fix property support. Allow typedef.extends to be a type in the
34327         building assembly.
34328         * verify.c: fix off-by-one error.
34330 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34332         * class.c: fix mono_class_from_mono_type () for szarray types.
34333         Remove unused cache check in mono_class_from_type_spec().
34334         * icall.c: *type_from_name () functions handle simple arrays and byref.
34335         * reflection.c: handle byref and szarray types. Handle methods without
34336         body (gets P/Invoke compilation working). Handle types and fields in
34337         get_token ().
34338         * reflection.h: add rank to MonoTypeInfo.
34340 2002-01-10  Dick Porter  <dick@ximian.com>
34342         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34343         internal calls
34345 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34347         * icall.c: initialize class in type_from_handle ().
34348         Loop also in parent classes for get_method ().
34349         * reflection.c: properly encode class and valuetype types.
34350         Start on encoding TypeBuilder types. Handle fieldrefs.
34351         Use correct length when registering a user string.
34352         Handle ConstructorBuilder and MonoMethod in get_token ().
34353         Make mono_type_get_object () aware of cached types.
34354         * object.c: back out change to mono_string_new ().
34356 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34357         * object.c: mono_string_new should return a NULL when the string 
34358         passed in is NULL -- not try to deference it.
34359         
34360 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34362         * icall.c: hack to make IsSubType work for TypeBuilders.
34363         * reflection.c: emit constructors before methods.
34364         Retrieve param names in mono_param_get_objects().
34366 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34368         * Makefile.am: fix list of headers and sources so automake 1.5
34369         doesn't complain. Removed \# at end of list.
34371 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34373         * reflection.c: get token for a method ref. Set return type of
34374         constructor to void.
34375         * loader.c: debug message.
34376         * class.c: typo fix.
34378 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34380         * icall.c: fix array init with rank > 1. FindMembers
34381         loops in parent class as well.
34382         * image.c: do not insert nested types in name cache.
34383         * reflection.c: warning fix.
34384         * reflection.h: add override method (for interface impl).
34386 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34388         * metadata.c: fix customattr decoding.
34390 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34392         * rawbuffer.cs: Added native Win32 implementation, avoids using
34393         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34395 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34397         * class.c: make the low-level routines handle the cache.
34399 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34401         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34403 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34405         * class.c: fix mono_array_element_size() for objects.
34406         * class.h, class.c: add properties to MonoClass and load them
34407         at init time.
34408         * icall.c: check with isinst() when assigning a value to an array
34409         instead of requiring the classes to match exactly.
34410         Implemented icall for System.Type::GetType().
34411         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34412         enums. Handle bindingflags when looking for methods and fields.
34413         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34414         and mono_metadata_methods_from_property().
34415         * reflection.h, reflection.c: added structures for propreties,
34416         parameters and enums. Implemented mono_property_get_object() and
34417         mono_param_get_objects().
34419 2001-12-18  Dick Porter  <dick@ximian.com>
34421         * file-io.c: Use mono_string_to_utf16() instead of
34422         mono_string_chars()
34424         * object.c: Added mono_string_to_utf16(), which copies the non
34425         NULL-terminated MonoString into a new double-null-terminated
34426         buffer.
34428 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34430         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34432 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34434         * file-io.c: raise exceptions if handle is invalid.
34436 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34438         * assembly.c: yet another check for mscorlib.
34439         * class.c, class.h: load nesting info for classes.
34440         * icall.c: many new functions to support the Reflection classes.
34441         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34442         * reflection.h, reflection.c: mono_image_create_token(),
34443         mono_assembly_get_object(), mono_type_get_object(),
34444         mono_method_get_object(), mono_field_get_object(): methods to return
34445         objects that parallel the C representation of assemblies, types,
34446         methods, fields.
34448 2001-12-11  Dick Porter  <dick@ximian.com>
34450         * icall.c:
34451         * file-io.c: Internal calls for file IO.
34453 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34455         * tabledefs.h: missing FileAttributes.
34456         * verify.h, verify.c: use is_valid_string () to simplify and check for
34457         valid strings more correctly. Fix warnings and speeling.
34458         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34459         Check code: branches, maxstack, method calls.
34461 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34463         * object.c (mono_object_allocate): removed static, so that the jit
34464         can allocate value types.
34466         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34468 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34470         * class.c: init enum types right away and register the
34471         token->MonoClass map in mono_class_create_from_typedef ().
34472         * verify.h, verify.c: first cut of the verifier.
34473         * pedump.c: add --verify switch to verify metadata tables.
34474         * tabledefs.h: add some missing enums.
34476 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34478         * class.c (mono_install_runtime_class_init): impl.
34479         (mono_class_init): renamed mono_class_metadata_init to
34480         mono_class_init, also removed the metadata_inited flag
34482         * object.c (mono_object_isinst): use faster algorithm
34484 2001-11-30  Radek Doulik  <rodo@ximian.com>
34486         * mono-endian.h: reverted last change
34487         added function prototypes
34489         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34490         add mono-endian.c back
34492         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34493         for unaligned access, I've mistaked it with endianess. I am
34494         sorry.
34495         (mono_read16): fix reverted endianess
34496         (mono_read64): ditto
34497         (mono_read32): ditto
34499 2001-11-30  Dick Porter  <dick@ximian.com>
34501         * exception.c: Implement mono_exception_from_name()
34503 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34505         * metadata.h, metadata.c: remove params_size and locals_size and their
34506         calculation from the metadata code: they are only usefult to the
34507         interp.
34509 2001-11-29  Radek Doulik  <rodo@ximian.com>
34511         * object.c (mono_ldstr): swap bytes here, it's probably not the
34512         best place, but works for me now, I'll redo it once I know mono
34513         better, also note that I add PROT_WRITE and don't reset back, also
34514         note that it's only affects big endians, so x86 should be OK
34516         * mono-endian.h (read16): use just glib macros for both endians
34518         * mono-endian.c: removed as glib macros are used in in
34519         mono-endian.h so we don't need to care about endianess for read
34520         macros as glib does that for us already
34522 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34524         * class.h, class.h: take minimum alignment into consideration so
34525         that the fields of a class remain aligned also when in an array.
34527 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34529         * loader.h, loader.c: add mono_method_get_param_names().
34530         * class.c: 0-init class fields.
34532 2001-11-26  Dick Porter  <dick@ximian.com>
34534         * icall.c:
34535         * threads-types.h:
34536         * threads.c: New file that handles System.Threading on all platforms
34538         * object.c: 
34539         * object.h: Remove the synchronisation struct from MonoObject,
34540         replace it with a pointer that gets initialised on demand
34542         * Makefile.am: Replace all the system-specific threading code with
34543         a single file that uses the new wrapper library
34545 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34547         * class.c, class.h: add mono_install_trampoline() so that the runtime
34548         can register a function to create a trampoline: removes the ugly
34549         requirement that a runtime needed to export arch_create_jit_trampoline.
34550         * object.h, object.c: added mono_install_handler() so that the runtime
34551         can install an handler for exceptions generated in C code (with
34552         mono_raise_exception()). Added C struct for System.Delegate.
34553         * pedump.c: removed arch_create_jit_trampoline.
34554         * reflection.c: some cleanups to allow registering user strings and
34555         later getting a token for methodrefs and fieldrefs before the assembly
34556         is built.
34557         * row-indexes.h: updates and fixes from the new ECMA specs.
34559 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34561         * class.h, class.c: add enum_basetype field to MonoClass.
34562         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34563         to get index in the constant table reated to a field, param or
34564         property.
34565         * reflection.h, reflection.c: handle constructors. Set public-key and
34566         version number of the built assembly to 0.
34567         * row-indexes.h: update from new ECMA spec.
34569 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34571         * class.h, class.c: add a max_interface_id to MonoClass.
34572         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34573         since it's used to do that. Added mono_type_type_from_obj().
34574         Make GetType() return NULL instead of segfaulting if the type was not
34575         found. Handle simple arrays in assQualifiedName.
34576         * object.h: add a struct to represent an Exception.
34577         * reflection.c: output call convention in method signature.
34578         Add code to support P/Invoke methods and fixed offsets for fields.
34580 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34582         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34583         the value.
34584         * icall.c: use mono_array_addr instead of array->vector: fixes the
34585         reflection image writing.
34586         * reflection.c: init call convention byte to 0 in method signature.
34587         Encode the property signature. Don't output property-related methods
34588         twice. Really process the properties for a type (don't cast a field to
34589         a property, my mom always told me that).
34590         Fix 64 bit issues in pointer alignment in a different and more
34591         readable way.
34593 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34595         * loader.h: Removed type class from MonoDefaults, added monotype
34597         * loader.c: Loaded MonoType, removed loading of Type
34599         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34600         and fills in System.Type._impl with a RuntimeTypeHandle rather
34601         than the actual MonoClass *
34603         (ves_icall_type_from_handle): change from type_class to
34604         monotype_class
34606         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34607         implemented
34609         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34610         implemented
34612         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34614         (ves_icall_System_Reflection_Assembly_GetType): implemented
34616         (ves_icall_System_MonoType_assQualifiedName): implemented
34618         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34620 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34622         * assembly.c (mono_assembly_open): Implement a cache for the
34623         assemblies. 
34625         (mono_assembly_close): only destroy the assembly when the last
34626         reference is gone.
34627         
34628 2001-11-09  Dick Porter  <dick@ximian.com>
34630         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34632 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34634         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34636 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34638         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34639         from Martin Weindel.
34640         * object.h: add mono_string_chars ().
34642 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34644         * reflection.c (build_compressed_metadata): Eliminates warnings
34645         and uses 64-bit clean code.
34647         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34648         (mono_type_equal): Change signature to eliminate warnings.
34650 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34652         * icall.c, loader.c: remove the internalcall array constructors.
34653         Changes to match the new MonoArray structure.
34654         * object.h, object.c: an array object doesn't allocate an extra
34655         vector. Add mono_array_new_full () to create jagged arrays easily.
34657 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34659         * metadata.h, metadata.c: add mono_metadata_field_info () to
34660         retreive all the info about a field from vairous tables.
34661         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34662         * class.h, class.c: augment MonoClassField with more info.
34663         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34664         policy and load a field's RVA if needed.
34666 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34668         * class.c (mono_class_metadata_init): create a trampoline for all
34669         virtual functions instead of actually compiling them.
34671 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34673         * class.h, class.c: include name in MonoClassField.
34674         * class.c: fix fundamental type of System.Object and System.String.
34675         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34676         tokens in ldtoken.
34677         * icall.c: remove internalcalls for the Reflection stuff that is now
34678         done in C# code.
34679         * loader.c: mono_field_from_memberref () implementation.
34680         * mono-endian.c: thinko (s/struct/union/g).
34681         * object.c, object.h: make the mono_string_* prototypes actually use
34682         MonoString instead of MonoObject.
34683         * reflection.c, reflection.h: updates for changes in the reflection
34684         code in corlib: we use C structures that map to the actual C# classes.
34685         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34686         fat method header if needed and use the info from the ILGenerator for
34687         methods. Handle fields in types. Misc fixes.
34689 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34691         * class.c (mono_class_metadata_init): bug fix: always allocate
34692         space for static class data
34694 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34696         * class.c (mono_compute_relative_numbering): use relative
34697         numbering to support fast runtime type checks.
34699 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34701         * class.c (mono_class_create_from_typeref): added debugging output
34702         to print class name when MonoDummy is returned instead of real class
34704 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34706         * class.c (mono_class_metadata_init): interface offset table now
34707         contains pointers into the vtable - this is more efficient for the jit
34709 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34711         * class.c (mono_class_metadata_init): use a temporary vtable (the
34712         old algorithm only worked for the interpreter, but not for the jit)
34714 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34716         * loader.c (method_from_memberref): use mono_class_get to get the
34717         class of an array instead of using System.Array directly.
34718         (mono_get_method): also add MEMBERREF methods to the method cache
34719         which usefull for arrays.
34721 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34723         * pedump.c (arch_compile_method): added to compute vtable entry
34725         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34726         number of interfaces.
34727         
34728         * class.h: merged MonoArrayClass into MonoClass
34730         * class.c (mono_class_create_from_typedef): compute the vtable size and
34731         allocate space to include the vtable inside MonoClass
34732         (mono_class_metadata_init): initialize the vtable
34734 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34736         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34737         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34738         * image.c: endian fixes by Laurent Rioux.
34739         * object.h, object.c: rename MonoStringObject to MonoString and
34740         MonoArrayObject to MonoArray. Change some function names to conform to
34741         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34742         guint16* as first argument, so don't use char*.
34743         Provide macros to do the interesting things on arrays in a portable way.
34744         * threads-pthread.c: updates for the API changes and #include <sched.h>
34745         (required for sched_yield()).
34746         * icall.c: updates for the API changes above.
34747         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34748         platforms that need them.
34750 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34752         * class.c: set the correct type for all the fundamental
34753         type when loading the class.
34755 2001-10-05  Dick Porter  <dick@ximian.com>
34757         * threads-pthread.c (pthread_mutex_timedlock): Simple
34758         compatibility version for C libraries that lack this call.
34760 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34762         * class.c: MonoTypes stored in MonoClass are stored as
34763         fundamental MonoTypes when the class represents a
34764         fundamental type (System.Int32, ...).
34765         The TypeHandle return by ldtoken is a MonoType*.
34766         * icall.c: ves_icall_get_data_chunk () write out all the
34767         PE/COFF stuff. Implement ves_icall_define_method (),
34768         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34769         * image.c: properly skip unknown streams.
34770         * loader.h, loader.c: add type_class to mono_defaults.
34771         * metadata.c, metadata.h: export compute_size () as
34772         mono_metadata_compute_size () with a better interface.
34773         Typo and C&P fixes.
34774         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34775         * reflection.c, reflection.h: many cleanups, fixes, output method
34776         signatures and headers, typedef and typeref info, compress the metadata
34777         tables, output all the heap streams, cli header etc.
34778         * row-indexes.h: typo fixes.
34780 2001-10-04  Dick Porter  <dick@ximian.com>
34782         * object.h: Add a synchronisation mutex struct to MonoObject
34784         * object.c (mono_new_object): Initialise the object
34785         synchronisation mutexes
34787         * icall.c: System.Threading.Monitor internal calls
34788         
34789         * threads-pthread.h:
34790         * threads-pthread.c: System.Threading.Monitor internal calls
34792         * threads-types.h: New file, includes the system-specific thread
34793         structures
34794         
34795         * threads-pthread-types.h:
34796         * threads-pthread-types.c: New files, handle pthread-specific
34797         synchronisation types
34799         * threads-dummy-types.h: 
34800         * threads-dummy-types.c: New files of dummy support for
34801         thread-specific types
34803         * metadata.c:
34804         * image.c:
34805         * pedump.c: include mono-endian.h not endian.h
34806         
34807         * Makefile.am: More threads files.
34808         Name mono-endian.h not endian.h
34810 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34812         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34813         stuff and implement a few more bits.
34814         * icall.c: a field needs to be dereferenced twice. Do not use the same
34815         name for two variables in the same scope.
34816         * image.c, image.h: cleanups.
34818 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34820         * class.c (mono_class_metadata_init): bug fix: compute the right size
34822 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34824         * icall.c: implemented some of the Reflection internalcalls.
34825         * image.c, image.h: start writing out the PE/COFF image.
34826         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34827         that does the reverse than decode_blob_size ().
34828         * object.c: use mono_metadata_encode_value (). Move here
34829         temporary implementation of mono_string_to_utf8 ().
34830         * rawbuffer.c: make malloc_map static.
34832 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34834         * metadata.c: fix type comparison for arrays.
34835         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34836         Added a couple of new classes to monodefaults.
34837         * icall.c: added a couple of Reflection-related internalcalls.
34838         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34839         Added a byval_arg MonoType to MonoClass.
34841 2001-09-28  Dick Porter  <dick@ximian.com>
34843         * icall.c:
34844         * threads-pthread.h: 
34845         * threads-pthread.c: Implemented internal calls for
34846         LocalDataStoreSlot operations.  Applied mutexes around all shared
34847         data.  Reworked the thread creation and Start() operations to
34848         avoid a race condition.
34849         
34850         * threads-dummy.h:
34851         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34853 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34855         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34857 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34859         * class.c, loader.c: warn and return NULL instead of erroring out.
34860         * icall.c: added System.AppDomain::getCurDomain().
34861         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34863 2001-09-25  Dick Porter  <dick@ximian.com>
34865         * threads-pthread.h:
34866         * threads-pthread.c: Implemented timed thread joining and added
34867         System.Threading.Thread::Join_internal internal call
34869         * icall.c: Added System.Threading.Thread::Join_internal internal call
34871         * threads-dummy.h:
34872         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34874 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34876         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34877         mono_string_intern () to implement the semantics of the ldstr opcode
34878         and the interning of System.Strings.
34879         * icall.c: provide hooks to make String::IsIntern and String::Intern
34880         internalcalls.
34882 2001-09-23  Dick Porter  <dick@ximian.com>
34884         * threads-dummy.c: 
34885         * threads-dummy.h: New files of dummy threading routines
34887         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34888         support code based on system specifics
34890         Rename PTHREAD_LIBS to THREAD_LIBS
34891         
34892 2001-09-23  Dick Porter  <dick@ximian.com>
34894         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34895         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34896         internal calls.
34897         (mono_thread_init): Set up a Thread object instance to return when
34898         the main thread calls Thread.CurrentThread
34899         (mono_thread_cleanup): Wait for all subthreads to exit
34901         * icall.c: New internal calls for System.Threading.Thread::Sleep
34902         (including Schedule) and CurrentThread
34904         * threads.h: New file, to insulate thread-specific stuff from the
34905         rest of the code
34907 2001-09-21  Dick Porter  <dick@ximian.com>
34909         * threads-pthread.h: 
34910         * threads-pthread.c: New file, for handling pthreads-style
34911         threading support.  Start() now starts a new thread and executes
34912         the ThreadStart delegate instance.
34914         * icall.c: Added the internalcall for
34915         System.Threading.Thread::Start_internal
34917         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34919 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34921         * loader.c: work around the different signatures for delegates
34922         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34924 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34926         * class.h, class.c: add mono_class_get_field_from_name ().
34927         * *: Fix C comments and other ANSI C issues.
34929 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34931         * endian.h, assembly.c: fix some endianness issues.
34933 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34935         * loader.h, load.c: add delegate_class to mono_defaults.
34936         Handle runtime provided methods in mono_get_method ().
34938 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34940         * loader.c (mono_get_method): use pinvoke for internal call
34942         * icall.c: use pinvoke for internal call
34944         * loader.c (method_from_memberref): set the method name
34946 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34948         * metadata.c: help the compiler generate better code for
34949         mono_class_from_mono_type ().
34951 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34953         * class.c (mono_class_metadata_init): delayed computing of the
34954         class size to mono_class_metadata_init ()
34956 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34958         * class.c, class.h: add an interfaces member to MonoClass.
34959         * image.c, image.h: add assembly_name field to MonoImage
34960         from the assembly table.
34961         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34963 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34965         * class.c: Handle Array in mono_class_from_mono_type ().
34966         * metadata.c, pedump.c: some endian fixes.
34968 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34970         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34971         * metadata.c: fix small problem introduced with the latest commit.
34973 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34975         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34976         We don't need a MonoMetadata pointer anymore to compare signatures in
34977         mono_metadata_signature_equal (), update callers.
34978         Reduced memory usage an number of allocations for MonoMethodHeader and
34979         MonoMethodSignature.
34981 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34983         * metadata.c: added compare for szarray.
34985 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34987         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34988         and add a couple more types to it and mono_defaults. Give an hint on
34989         classes that need implementing in our corlib and are referenced
34990         in mscorlib.
34992 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34994         * class.h, class.c: keep track if a class is also an Enum.
34995         * loader.c: Implement a couple more types for use in libffi
34996         marshalling. Gives better diagnostics when failing to dlopen
34997         a library. Set method->klass for P/Invoke methods, too.
34999 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35001         * class.c, class.h: add a MonoType this_arg to MonoClass that
35002         represents a pointer to an object of the class' type that
35003         can be used by the interpreter and later the type cache.
35004         Add best guess alignment info for valuetype objects.
35006 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35008         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35009         into MonoType: one less level of indirection and allocation and
35010         simplifies quite a bit of code. Added cache for MonoTypes that are
35011         used frequently, so that we don't need to allocate them all the time.
35013 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35015         * class.c (mono_class_create_from_typedef): System.Enum is also a
35016         value type, although it does not derive from System.ValueType
35017         (maybe a bug in the ms compiler?)
35019         * metadata.c (mono_type_size): return the right size for value types
35021         * loader.c (mono_get_method): only initialize method header if not abstract
35023         * class.c (mono_class_from_mono_type): use mono_default values. 
35025 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35027         * *: use MonoClass pointers instead of <type_tokens>
35028         
35029         * class.h: new flag: metadata_inited.
35031         * class.c (mono_class_metadata_init): impl.
35032         (mono_class_instance_size): impl.
35033         (mono_class_data_size): impl.
35035 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35037         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35038         MonoClass now has the name and name_space fields. 
35039         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35040         mono_get_method () takes and optional MonoClass as argument.
35041         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35042         instead that takes advantage of a map from class names to typedef
35043         tokens in MonoImage.
35045 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35047         * metadata.c: zero is not a valid alignment boundary.
35048         Merge MONO_TYPE_VOID in default decoding code.
35050 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35052         * image.h: merged MonoMetadata into MonoImage
35054         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35055         identify the type of elements.
35057 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35059         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35060         * cil-coff.h: split MonoMSDOSHeader and add size info.
35061         * image.c: add some consistency checks.
35062         * metadata.c: fix row size computation: one programmer
35063         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35064         add explanation for the locator routine.
35065         Fix decoding of size in method header.
35066         
35067 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35069         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35070         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35071         function from gnome-libs.  This uses the right path separator
35072         based on the OS, and also works around a bug in some systems where
35073         a double slash is not allowed. 
35074         (default_assembly_name_resolver): Use g_concat_dir_and_file
35075         (mono_assembly_open): ditto.
35077 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35079         * metadata.c (mono_metadata_signature_equal): impl.
35081         * *: void is now a realy MonoType (instead of using NULL)
35082         
35083         * metadata.c (do_mono_metadata_parse_type): use
35084         mono_metadata_parse_type to parse void value.
35086 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35088         * metadata.c, metadata.h: in the signature and method header store
35089         only the space required for holding the loca vars and incoming arguments.
35091 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35093         * metadata.c (do_mono_metadata_parse_type): treat void like any
35094         other type (instead of assigning NULL);
35096 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35098         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35100 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35102         * image.c (do_mono_image_open): added a cache for arrays.
35104 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35106         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35107         decode a single column from a row in a metadata table and changes
35108         to take advantage of it in the typedef locator (gives a nice speed up).
35109         Store offset info for function params.
35111 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35113         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35115 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35117         * assembly.c: how could mono_assembly_close () had ever worked?
35118         * metadata.c, metadata.h: provide offset info for local vars.
35119         Implement mono_type_size () to take care of alignment as well
35120         as size (it was mono_field_type_size in cli/class.c before).
35122 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35124         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35126         * assembly.h (CORLIB_NAME): set to corlib.dll
35128         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35130 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35132         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35133         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35134         tokentype.h: massive namespace cleanup.
35136 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35138         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35140 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35142         * metadata.c (mono_metadata_free_type): added check for type !=
35143         NULL (void) before calling mono_metadata_free_type()
35145 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35147         * metadata.h, row_indexes.h: added header with enumerations to use
35148         to index in the columns from tables in metadata and to decode coded
35149         tokens: we should start using this instead of embedding magic numbers
35150         all over the code.
35152 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35154         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35155         Move metadata_t info from cli_image_info_t to MonoImage, where
35156         it's easily accessible. Changed all the uses accordingly.
35157         Added the method and class caches to MonoImage.
35158         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35159         and mono_metadata_decode_value () signature to be more consistent
35160         with the other parse functions (and simplify code). Taken advantage
35161         of zero-length array allocation with GCC. Removed reduntant (and
35162         wrong) MonoFieldType struct and use MonoParam instead. Changed
35163         mono_metadata_parse_field_type () to use common code for parsing.
35164         Added mono_metadata_typedef_from_field () and
35165         mono_metadata_typedef_from_method () to lookup a typedef index from a
35166         field or method token.
35167         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35169 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35171         * metadata.c (mono_metadata_parse_field_type): Implement. 
35172         (do_mono_metadata_parse_type): Split engine from
35173         mono_metadata_parse_type, so that we can create smaller structures
35174         for things that just have one pointer to the MonoType (look at
35175         the MonoFieldType)
35177 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35179         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35180         as Jan Gray found out, it is incorrect. 
35182 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35184         * assembly.c: Implement asssembly loading.  This loads an image
35185         and loads all the referenced assemblies.  Come to think of it, we
35186         could always do lazy loading of the assemblies. 
35188         * image.c (mono_image_open): Keep loaded images in a hashtable.
35190         * image.h (MonoImage): Add reference count.
35192 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35194         * assembly.c (mono_assembly_open): Keep track of the file name in
35195         case the assembly has no ASSEMBLY table.
35197         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35198         from get.c here.
35200 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35202         * metadata.c, metadata.h: decode local vars in method header
35203         parse function. Change callers accordingly.
35205 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35207         * metadata.h, cil-coff.h: protect against multiple inclusion.
35208         Added some new structures to hold information decoded from metadata:
35209         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35210         and relevant decoding/free functions.
35211         * metadata.c: implement decoding functions. Add warning for out of bounds
35212         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35213         all the info about a method signature and invocation. Remove check on
35214         uninitialized local var in parse_mh() and fix memory leak.
35216 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35218         * metadata.h: More macros.
35220         * tokentype.h: New file.
35222 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35224         * assembly.c: added a consistency check and initialize
35225         some structures with g_new0().
35226         * metadata.c: fixed a couple more bugs in table size computation
35227         and add other checks for out-of bound access to metadata.
35229 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35231         * metatada.c: fix bugs computing table sizes. Spew a
35232         warning when index in string heap is out of bounds.
35234 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35236         * metadata.h: Add a couple of macros to manipulate tokens. 
35238 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35240         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35241         cli_section_tables).
35243 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35245         * metadata.c (mono_metadata_user_string): New function, provides
35246         access to the UserString heap. 
35248 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35250         * metadata.c: Add inline documentation.
35252 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35254         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35255         files. 
35257 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35259         * typeattr.h: New file, TypeAttribute flags. 
35261 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35263         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35264         mono_assembly_ensure_section): Section loading code.
35265         (load_section_tables): Load the sections.
35267         * mono/metadata/metadata.c (mono_metadata_locate_token,
35268         mono_metadata_locate): Functions to locate the information
35269         definition given a token or a table and an index.
35270         (mono_metadata_compute_table_bases): New.
35271         (compute_size): New function to compute the sizes of the various
35272         tables.
35274         * mono/metadata/metadata.h: Finish listing the different index
35275         types. 
35277         * mono/metadata/pedump.c: Improve to dump new information.
35279 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35281         * mono/metadata/metadata.c: Entered all the tables matching
35282         Beta2. 
35284         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2