2009-12-15 Mark Probst <mark.probst@gmail.com>
[mono-project/dkf.git] / mono / metadata / ChangeLog
blobf5278531297badc5d966ac6dbb9c868239da2826
1 2009-12-15  Mark Probst  <mark.probst@gmail.com>
3         * class.c (mono_generic_class_get_class): Allocate the generic
4         class via malloc again, so that it can be freed when any one of
5         the images of its constituent types is closed.
7         * metadata.c: When closing an image, don't free generic insts and
8         generic classes right away, but put them into a list for later
9         freeing.
11         * image.c, metadata-internals.h: Store the free list and in the
12         second pass of closing an image, free it.
14 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
16         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
18         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
19         types in type_hash.
21         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
23 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
25         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
26         user type.
28         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
29         is used.
31 2009-12-14  Miguel de Icaza  <miguel@novell.com>
33         * verify.c (mono_method_verify): The Unused opcodes produce an
34         InvalidProgramException on .NET
36 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
38         * loader.c (mono_method_get_header): Move assert after the verifier
39         has been called on the method header.
41 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
43         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
45         * appdomain.c: Bump corlib version.
47 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
49         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
50         types as well since otherwise generic instances would not return UT as arguments but
51         their undelying system type.
53         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
54         to reflect the fact that they can have now multiple different types.
56         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
58         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
60         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
62         * reflection.c (mono_reflection_register_with_runtime): Init super types
63         if the image is not dynamic.
65         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
66         check if the generic type definition is a TypeBuilder.
68         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
69         doesn't belong to a dynamic image, skip initialization.
71         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
72         base definition is not a dynamic type.
74 2009-12-11  Marek Habersack  <mhabersack@novell.com>
76         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
77         mono_profiler_string_allocation
79         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
80         if string profiling is enabled, call
81         mono_profiler_string_allocation
83         * profiler.h: added two MonoProfileFlags -
84         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
85         installation functions for the hooks below.
87         * profiler-private.h, profiler.c: added two hooks:
88         mono_profiler_string_allocation called whenever a string is
89         allocated by InternalAllocateStr and mono_profiler_iomap called
90         whenever IOMAP code performs an adjustement on a file path.
92 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
94         * boehm-gc.c: fixed race condition while getting the target of a
95         disappearing link (bug #522233).
97 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
99         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
100         the error.
102 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
104         * reflection.c: Add mono_reflection_register_with_runtime icall to
105         allow a MonoGenericClass to register itself as the managed mirror of
106         a given generic instance.
107         This is a temporary workaround until all MGC instantiation happens in
108         managed code.
110         * object-internals.h: Ditto.
112         * icall-def.h: Ditto.
114 2009-12-10  Mark Probst  <mark.probst@gmail.com>
116         * sgen-gc.c (find_in_remsets): Also search the generic store
117         remsets.
119 2009-12-10  Mark Probst  <mark.probst@gmail.com>
121         * sgen-gc.c: Don't access class names in debugging code when
122         unloading a domain, because they might not be valid anymore.
124 2009-12-10  Mark Probst  <mark.probst@gmail.com>
126         * domain.c, domain-internals.h: New function mono_domain_unset().
128         * appdomain.c (unload_thread_main): Detach the thread again at the
129         end.
131         * threads.c: When a thread exists or is detached, unset its domain
132         so that it's NULL when, for example, a pthread destructor runs.
134         * sgen-gc.c: Assert that there is no domain set after a thread is
135         done.
137 2009-12-10  Mark Probst  <mark.probst@gmail.com>
139         * class.c (mono_generic_class_get_class),
140         metadata.c (free_generic_class): Allocate generic MonoClass's from
141         the image mempool, not via malloc.  The problem with malloc is
142         that when unloading a domain those classes are freed before
143         clearing the heap and SGen needs the classes.  Rewriting the
144         unloading code to do the free later would be more work and there's
145         no point in using malloc anyway.
147 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
149         * loader.c (mono_method_signature): Always call mono_loader_unlock 
150         before returning.
152 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
154         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
155         user string blobs.
157         * verify-internals.h: Add new function to the internal API.
159         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
160         check if it's a valid string.
162         * object.c (mono_ldstr): Ditto.
164         Fixes #561943.
166 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
168         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
169         from a method before returning it. This is the expected behavior.
171 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
173         * reflection.c (inflate_method): Handle the case of a regular system type.
175 2009-12-08  Mark Probst  <mark.probst@gmail.com>
177         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
178         gathering code.
180         * mempool.c, mempool-internals.h: New function
181         mono_mempool_get_bytes_allocated().
183         * Makefile.am: sgen-pinning-stats.c added.
185 2009-12-08  Mark Probst  <mark.probst@gmail.com>
187         * sgen-gc.c (create_allocator): Only use the fast path if the
188         object size is within the small object size limit.
190 2009-12-07  Mark Probst  <mark.probst@gmail.com>
192         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
193         possibly adding padding to sizeof (GCMemSection).
195 2009-12-07  Mark Probst  <mark.probst@gmail.com>
197         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
198         reference is not in the nursery.
200 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
202         * class.c (mono_class_from_typeref): Bounds check idx against the 
203         assemblyref table.
205 2009-12-07  Mark Probst  <mark.probst@gmail.com>
207         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
208         through the potential roots, then sort the results and find the
209         pinned objects from there.
211         * Makefile.am: sgen-pinning.c added.
213 2009-12-07  Mark Probst  <mark.probst@gmail.com>
215         * sgen-gc.c: Record generic stores in specialized remset buffers.
217 2009-12-06  Mark Probst  <mark.probst@gmail.com>
219         * sgen-gc.c: Make pinned chunks the same size as major heap
220         sections, and align them as well, so that we can check whether an
221         object is in a pinned chunk or a major section in constant time.
223 2009-12-06  Mark Probst  <mark.probst@gmail.com>
225         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
227 2009-12-06  Mark Probst  <mark.probst@gmail.com>
229         * sgen-gc.c: Make all major heap sections the same size (currently
230         128k) and allocate them on aligned addresses.  Small heap sections
231         give us better granularity with pinned objects - we can free up
232         much more memory.
234 2009-12-06  Mark Probst  <mark.probst@gmail.com>
236         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
237         output removed.
239 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
241         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
243         * mono/metadata/assembly.c: When opening an assembly image, pass the real
244         names in addition to the runtime generated one.
246         * mono/metadata/image.h: Add a function to take the real name of the assembly
247         image.
249         * mono/metadata/image.c: If a real name has been passed to load an assembly,
250         use it instead of the runtime generated one.
252         Code is contributed under MIT/X11 license.
254 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
256         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
257         before the other checks to prevent problems if the DateTime class is blittable.
258         Hopefully fixes #559600.
260 2009-12-05  Mark Probst  <mark.probst@gmail.com>
262         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
263         returns the largest string length that will not be put into the
264         LOS.
266         * sgen-gc.c, gc-internal.h: New function that returns the largest
267         object size that will not be put into the LOS.
269         * appdomain.c: Bump corlib version.
271 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
273         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
275         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
277 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
279         * reflection.c (inflate_method): Fix signature.
281         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
282         in managed code.
284 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
286         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
288 2009-12-03  Mark Probst  <mark.probst@gmail.com>
290         * sgen-gc.c: Abstract to-space handling.
292 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
294         * loader.c (find_method_in_class): Ignore methods with broken signatures.
296         Fixes #559906.
298 2009-12-03  Mark Probst  <mark.probst@gmail.com>
300         * sgen-gc.c: Only add references from outside the nursery to
301         within the nursery to the global remset list.
303 2009-12-03  Mark Probst  <mark.probst@gmail.com>
305         * appdomain.c (create_exceptions): Set the domain temporarily if
306         necessary to avoid cross-domain references.
308 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
310         * verify.c (get_stack_type): Return that the type is invalid instead of
311         asserting.
313         * verify.c (mono_method_verify): Verify that all locals and arguments
314         have valid stack types.
316         Fixes #559913.
318 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
320         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
321         bounds checking overflow aware.
323         Fixes #559910.
325 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
327         * verify.c (do_invoke_method): Check for invalid method signatures.
329         Fixes #553450.
331 2009-12-02  Jb Evain  <jbevain@novell.com>
333         * appdomain.c (MONO_CORLIB_VERSION): bump.
334         * icall-def.h (get_base_definition): renamed to get_base_method
335         and add a boolean argument indicating we want the original
336         method definition, or the immediate base method.
337         * icall.c: apply the get_base_definition to get_base_method change.
339 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
341         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
343         Fixes #558042.
345 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
347         * class.c: remove asserts for invalid type token in
348         mono_class_name_from_token(), mono_assembly_name_from_token() and
349         mono_class_create_from_typedef () (fixes bug #553318).
351 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
353         * metadata.c, class.c, loader.c: remove assert after bsearch() for
354         incorrect assemblies (bug #553322).
356 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
358         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
360         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
362         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
364         * class.c (inflate_generic_context): Ditto.
366         * loader.c (method_from_methodspec): Ditto.
368         Fixes #558230.
370 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
372         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
374         * class.c (mono_class_create_from_typespec): Ditto.
376         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
378         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
380         Fixes #558184.
382 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
384         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
386         * verify.c (verify_delegate_compatibility): Ditto.
388         * verify.c (do_newobj): Ditto.
390         Fixes #558046.
392 2009-12-02  Mark Probst  <mark.probst@gmail.com>
394         * sgen-gc.c: Use a gray queue instead of requiring that gray
395         objects are in a contiguous region.
397         * sgen-gray.c: The gray queue implementation.
399         * Makefile.am: sgen-gray.c added.
401 2009-12-02  Mark Probst  <mark.probst@gmail.com>
403         * appdomain.c: When unloading a domain, zero its static data and
404         perform a minor collection when using SGen.  That will get rid of
405         all the remsets pointing into that domain's static data.
407         * sgen-gc.c: Allow remsets into static data.  By doing this we
408         need less checks so we're more efficient.
410 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
412         * verify.c (mono_method_verify): Check for catch clauses with broken
413         types.
415         Fixes #558465.
417 2009-12-01  Jb Evain  <jbevain@novell.com>
419         * class.c (make_generic_param_class): set the namespace of
420         the generic parameter class from its owner, if available.
422 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
424         * verify.c (code_bounds_check): Do proper overflow checking.
426         * verify.c (mono_method_verify): The number of switch entries is
427         an unsigned int. Properly bounds check it.
429         Fixes #558594.
431 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
433         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
434         mono_metadata_method_has_param_attrs which only checks if a given param
435         list has a non zero flags entry.
437         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
438         to inform how many params should we expect to decode.
440         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
441         as it's faster than mono_metadata_get_param_attrs.
443         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
444         add mono_metadata_method_has_param_attrs.
446 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
448         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
449         failures.
451         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
452         is -1 but its class is broken.
454         Fixes #558522.
456 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
458         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
459         for parameter overflow.
461         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
462         of mono_metadata_get_param_attrs.
464         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
465         API.
467         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
469 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
471         * class.c (mono_class_setup_fields): Check for fields with broken types.
473         Fixes #558741.
475 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
477         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
478         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
479         its TypeBuilder::CreateType ().
481         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
482         if not needed.
484         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
485         to make setup_interface_offsets happy.
487         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
488         compilation now works.
490 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
492         * appdomain.c (create_exceptions): New helper function extracted from
493         mono_runtime_init () to precreate objects used during exception handling.
494         (mono_runtime_init): Call it.
495         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
497 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
499         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
500         compilation until the proper one is found.
502 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
504         * class.c (mono_class_setup_vtable_general): Cache the result of
505         get_virtual_methods () since it can be slow because of the metadata
506         optimization.
508         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
509         from a MonoValueHashTable for now, since the later is based on an earlier
510         version of hpj's internal probing code and seems to have serious collision
511         issues.
513         * loader.c (mono_get_method_full): Update after the change above.
515 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
517         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
519 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
521         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
522         the GTD instead of the DGC instead of crashing.
524         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
525         required. Inflate fields if needed.
527         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
528         finished. Renamed.
530 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
532         * class.c (check_interface_method_override): Check for NULL signatures and fail
533         the type.
535         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
537         Fixes #553428.
539 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
541         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
542         the MONO_METHOD_FLAGS column instead of decoding the whole row.
544 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
546         * loader.c (field_from_memberref): Resolve the class first then the field
547         signature. Remove a lot of duplicated code and make sure we don't pass valid
548         values to mono_loader_set_error_field_load.
550         Fixes #553306.
552 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
554         * class.c (inflate_generic_type): Change code to use new signature of
555         mono_error_set_bad_image.
557         Fixes #558124.
559 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
561         * verify.c (mono_method_verify): Don't free ctx.params items if 
562         we aborted while inflating the ctx.locals. Complete previous fix
564 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
566         * verify.c (mono_method_verify): Use the uninflated type name, 
567         when the inflated is null, to report errors. Also take care when
568         freeing, not to free everything since, in case of an error, some
569         stuff would be copies (i.e. not allocated by the function itself)
570         Fix bug #558145
572 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
574         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
575         or overflow. The caller must have done this check explicitly. This guard us
576         from accessing invalid memory.
578         * verify.c (do_push_static_field): Check for stack overflow.
580         Fixes #553333.
582 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
584         * loader.c (find_method_in_class): Don't crash if the signature cannot
585         be resolved.
587         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
588         of asserting for the case of invalid params.
590         Fixes #553304.
592 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
594         * image.c (mono_image_load_module): Fix crash when a bad assembly
595         has no module at all (fix bug #553412) and also replace the 
596         g_assert with a return NULL (documented return value for failure)
598 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
600         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
602 2009-11-23  Miguel de Icaza  <miguel@novell.com>
604         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
605         file attribute to managed code and avoid doing the mask/attribute
606         checks here. 
608 2009-11-22  Miguel de Icaza  <miguel@novell.com>
610         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
611         the managed world.
613         * icall-def.h: New entry points.
614         
615 2009-11-19  Mark Probst  <mark.probst@gmail.com>
617         * process.c: Don't put references to managed objects into a
618         g_ptr_array.
620 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
622         * class.c (can_access_internals): Allow CoreCLR to participate in
623         allowing (or not) [InternalsVisibleTo] between assemblies.
624         * security-core-clr.c|h: Make sure that only trusted code (a 
625         superset of platform code) can access the internals of platform
626         code.
628 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
630         * reflection.c: use the correct base class to get the virtual method
631         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
633 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
635         * security-core-clr.c (get_caller_no_reflection_related): 
636         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
637         it's still reflection and must be filtered correctly.
639 2009-11-16  Mark Probst  <mark.probst@gmail.com>
641         * object.c (compute_class_bitmap): Fix for large bitmaps.
643 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
645         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
647         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
648         koush@koushikdutta.com). Disable GC_no_dls on android.
650 2009-11-12  Mark Probst  <mark.probst@gmail.com>
652         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
653         tlab_next points outside the TLAB because the allocator was
654         interrupted.
656 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
658         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
660 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
662         * object-internals.h: Change signature for mono_string_to_utf8_image.
664         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
665         argument.
667         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
668         exceptions due to mono_string_to_utf8.
670 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
672         * object-internals.h: Change signature for mono_string_to_utf8_mp.
674         * object.c (mono_remote_class): Make sure all resources are released before
675         raising an exception.
677         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
679 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
681         * mono-perfcounters.c (network_get_impl): Change variable initialization
682         ordering to fix potential memory leak in case of exceptions.
684         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
685         encoded strings.
686         
687 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
689         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
690         variable initialization ordering to fix potential memory leak in case
691         of exceptions.
693 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
695         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
696         needed.
698 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
700         * appdomain.c: Fix shadow path code to better deal with exceptions.
702 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
704         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
705         exception in the middle of the runtime code.
707 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
709         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
710         leak memory with broken envvar value.
712 2009-11-06  Mark Probst  <mark.probst@gmail.com>
714         * reflection.c (mono_reflection_setup_internal_class): Because
715         nested classes are not added to the name cache, we must put them
716         in the reflection_info_unregister_classes list.
718 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
720         * class.c: When CoreCLR is enabled don't call mono_init_com_types
721         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
722         platform (trusted) code. Instead we return a TypeLoadException to
723         be thrown later. This is the exception thrown by Silverlight 2 if
724         a type, inside application (user) code is marked with [ComImport]
726 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
728         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
729         mono_is_debugger_attached () too.
731         * mono-debug.c (mono_is_debugger_attached): New helper function.
732         (mono_set_is_debugger_attached): Ditto.
734 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
736         * object-internals.h: Add mono_string_to_utf8_checked.
738         * object.c: Implement mono_string_to_utf8_checked.
740 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
742         * class.c: Add missing check for load errors after every
743         call to mono_class_setup_fields
745         Fixes #552282.
747 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
749         metadata-verify.c (verify_tables_schema): Fix the error message.
751 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
753         * metadata.c: Change event table schema to use TDOR for event type
754         as this is what it's meant to be.
756         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
757         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
758         entry.
760         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
761         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
762         rows in MONO_TABLE_GENERICPARAM.
764         Fixes #552289.
766 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
768         * class.c (mono_image_add_to_name_cache): Assert on duplicate
769         insertion.
771         * reflection.c (mono_reflection_setup_internal_class): Avoid
772         registering a gc root the same MonoClass multiple times.
773         Don't register nested types on the global scope as they should
774         not be available there.
776 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
778         * culture-info-tables.h: regenerated.
780 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
782         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
784 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
786         * string-icalls.c|h: Remove string internal calls that are not 
787         used anymore by the class libraries.
788         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
789         which is not used in the class librairies.
790         * icall-def.h: Update tables.
792 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
794         * class.h: Move mono_class_inflate_generic_type_checked...
796         * class-internals.h: to here and make it internal. We don't want to
797         further expose MonoGenericContext. 
799 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
801         * verify.c (mono_method_verify): Improve error message.
803 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
805         * reflection.c (fieldref_encode_signature): If field_image is NULL then
806         the token is already properly encoded. Fixs 4.0 build.
808 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
810         * locales.c (construct_number_format): Check if the number index is
811         valid before trying to use it, if not, just return.
812         
813 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
815         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
816         since that loses the abort state. Fixes #539394.
818 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
820         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
821         explicit this argument to the call signature.
822         (mono_marshal_get_icall_wrapper): Ditto.
824 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
826         * reflection.c (fieldref_encode_signature): Add new field_image parameter
827         to indicate which assembly to use when resolving a custom-mod.
829         Fixes handling of volatile fields used across assemblies as reported in #551513.
831 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
833         * loader.c: Improve error messages.
835 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
837         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
838         of interfaces. Fixes IKVM.
840         * class.c (mono_class_setup_vtable_general): Improve debug spew.
842 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
844         * verify.c (verifier_inflate_type): Return the inflated type on success.
846 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
848         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
850         * threads.c (mono_thread_attach): Call the profiler thread start callback.
852         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
854         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
855         flag set.
857         * profiler.c: Add new profiler callbacks for runtime invoke.
859         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
861 2009-11-01  Mark Probst  <mark.probst@gmail.com>
863         * sgen-gc.c: Keep track of the reason for a major collection and
864         write it to the heap-dump file.
866 2009-10-31  Miguel de Icaza  <miguel@novell.com>
868         * threads.c: refactor the code that initializes the
869         thread_start_args into a reusable function and use this in the two
870         methods that start up threads.
872 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
874         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
875         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
877 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
879         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
880         Until now, we only had the per-cpu(core) counters.
882 2009-10-28  Mark Probst  <mark.probst@gmail.com>
884         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
885         mono_gc_get_suspend_signal(), which returns the suspend signal
886         number used by the GC.
888 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
890         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
892         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
893         signalling start_notify.
895 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
897         * appdomain.c: do not test the st_mode field for shadow-copies.
898         Fixes bug #545276.
900 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
902         * threadpool.[ch]: added hooks for thread start/finish and item
903         processing begin/end. For monotouch use only.
905 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
907         * threads.c (mono_thread_get_name): New helper function.
909         * reflection.c (resolve_object): Set handle_class for strings too.
910         (mono_reflection_create_custom_attr_data_args): New helper function to decode
911         a cattr blob into a set of arrays and structures without creating the custom
912         attributes themselves.
913         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
915         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
917         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
918         function.
920 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
922         * verify.c: Replace calls to mono_class_inflate_generic_type with
923         mono_class_inflate_generic_type_checked. Fixes #480005.
925 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
927         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
928         object since not all paths lead to callees initing it.
930 2009-10-23  Alp Toker  <alp@nuanti.com>
932         Fix embedding API breakage from r144688. mono-compiler.h is an internal
933         header and should not be shipped:
935         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
936         which is specific to the mono build. Not going to work.
938 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
940         * security-manager.c: Report if core-clr is active from
941         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
942         to allow Moonlight BCL to behave appropriately (both in browser
943         and outside, e.g. smcs)
945 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
947         * mono-config.c: ignore UTF-8 BOM and report parser errors.
948         Fixes bug #549108.
950 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
952         * class.c: fix typo.
954 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
956         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
957         a MonoError parameter.
959         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
960         version that can does proper error handling.
962         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
964         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
966         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
968 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
970         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
971         NO_UNALIGNED_ACCESS is defined.
973 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
975         * marshal.c (mono_string_builder_to_utf16): Applied patch from
976         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
977         Fixes #549173.
979 2009-10-22  Mark Probst  <mark.probst@gmail.com>
981         * sgen-gc.c: Shorten sections whenever possible.
983 2009-10-22  Mark Probst  <mark.probst@gmail.com>
985         * sgen-gc.c: Use our portable semaphore #defines.
987 2009-10-22  Mark Probst  <mark.probst@gmail.com>
989         * sgen-gc.c: A debug option for dumping the heap layout to a file
990         after each collection.
992 2009-10-21  Mark Probst  <mark.probst@gmail.com>
994         * sgen-gc.c: Make managed write barriers atomic via
995         thread-restarts.
997 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
999         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1000         methods. Fixes #543021.
1002 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1004         * socket-io.[ch]: fix VS build.
1006 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1008         * icall-def.h:
1009         * socket-io.[ch]: implemented SendFile.
1011 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1013         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1014         before the interfaces to avoid crashes later if class initialization fails.
1015         Fixes #548417.
1017         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1018         Fixes #548276.
1020 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1022         * domain.c: Bump 4.0 version.
1024 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1026         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1027         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1028         check since 'pubkey' can't be NULL at this stage
1029         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1030         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1031         initialization of 'iter'
1033 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1035         * cominterop.c : Search the interface parts of vtable to find 
1036           method matches.  Fixes 547030.
1038         Code is contributed under MIT/X11 license.
1040 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1042         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1043         multiple targets. Fixes bug #574426.
1045 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1047         * profiler.h: Put here the definition of
1048         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1049         (and fix the build...).
1051 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1053         * profiler.c, profiler.h, profiler-private.h:
1054         Added support for different ways of getting call chains in stat mode.
1056 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1058         * object.c, object-internals.h: New function for computing the
1059         size of an array, factored out of mono_array_new_full().  Use
1060         SGen's functions for allocating arrays and vectors.
1062         * sgen-gc.c, gc-internal.h: Special functions for allocating
1063         arrays and vectors without race conditions.  A managed array
1064         allocator method.
1066         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1068 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1070         * object.c, object.h, icall.c: Write barriers do the copying now,
1071         as well, so no need for an additional memcpy.
1073         * sgen-gc.c: Lock when storing remsets.  Do the memory
1074         copying/moving in the write barriers.
1076         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1078         * reflection.c: Added an assert.
1080 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1082         * threads.c, process.c: A few missing write barriers.
1084 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1086         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1087         network performance counters for bytes sent per second, bytes
1088         received per second, and bytes total per second.
1090         Code is contributed under MIT/X11 license.
1092 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1094         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1095         Fix warning.
1097 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1099         * threads.c, object-internals.h, object.c: Move code for
1100         transferring an object to a different domain (via
1101         serialization/remoting) to object.c.
1103         * object.c (call_unhandled_exception_delegate): If the exception
1104         is in a different domain than the delegate, transfer the exception
1105         to that domain.
1107 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1109         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1110         Fixes #322934.
1112 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1114         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1116 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1118         * object.c (mono_method_return_message_restore): Handle the case
1119         where the argument is an instance of a generic type.  Fixes
1120         #544446.
1122 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1124         * object.c (set_value): Write barrier fix - we must pass the
1125         count, not the size.
1127 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1129         * domain.c (mono_init_internal): Print a useful error message when encountering
1130         an old mscorlib, instead of crashing. Fixes #544307.
1132 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1134         * appdomain.c (copy_app_domain_setup): Fix a warning.
1136         * debug-helpers.c (dis_one): Ditto.
1138 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1140         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1141         into the new domain, instead of referencing the original one.
1143         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1144         non-static.
1146         * appdomain.c: Corlib version bump.
1148 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1150         * threadpool.c: one more...
1152 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1154         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1155         threads to die because we're shutting down. delgate5.exe works again.
1157 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1159         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1160           ccw_interface_hash table when a ccw is finalized.
1162         Code is contributed under MIT/X11 license.
1164 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1166         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1167         domain and image unloading into two steps.  We must do this
1168         because clearing the domain in SGen requires the class metadata to
1169         be intact, but we need to free the mono_g_hash_tables in case a
1170         collection occurs during domain unloading and the roots would trip
1171         up the GC.
1173 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1175         * object-internals.h: Remove serialized culture fields from
1176         MonoInternalThread.
1178         * icall-def.h, thread-types.h, threads.c: Remove serialized
1179         culture icalls.
1181         * appdomain.c: Corlib version bump.
1183 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1185         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1186         Fixes #543133.
1188 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1190         * sgen-gc.c: Try to shorten the new section after a major
1191         allocation to avoid ever-growing sections.
1193 2009-10-13  Martin Baulig  <martin@ximian.com>
1195         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1196         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1197         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1198         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1200         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1202 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1204         * threadpool.c: fixed the order in which 'completed' and the wait
1205         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1206         No need to use the wait_handle field of ASyncCall. Make sure the
1207         threadpool is active when adding a job or queueing an idle thread.
1209 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1211         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1213         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1214         when using --compile-all.
1216 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1218         * metadata.c (free_generic_class): Unregister the field_objects
1219         roots if we're using SGen.
1221 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1223         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1224         for GenericParamTableEntry.gparam.
1226 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1228         * marshal.c: don't create the handle when calling. It is created later
1229         if needed.
1231 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1233         * sgen-gc.c: Warning fixes.
1235 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1237         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1238         whole heap for cross-domain references before each collection.
1240         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1241         object.
1243         * threadpool-internals.h, threadpool.c: New function
1244         mono_thread_pool_is_queue_array() for checking whether a given
1245         array is used as a (cross-domain) queue by the thread pool code.
1247 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1249         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1250         searches the whole heap for objects containing a specific
1251         reference.  Only for debugging.
1253 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1255         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1257         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1258         byte arrays between domains.
1260 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1262         * threadpool.c:
1263         * class-internals.h:
1264         * mono-perfcounters-def.h:
1265         * mono-perfcounters.c:
1266         -There is a list of idle threads
1267         -Each of those idle threads wait on their own WaitHandle instead
1268         of all of them using the same semaphore. When a new work item is
1269         added, the job is assigned directly to an idle thread or a newly
1270         created one if possible and then the handle for that thread is
1271         signaled. Compare that to the current approach where all the
1272         threads in the pool compete to dequeue a job from the same
1273         queue.
1274         -New struct ThreadPool that brings together the bunch of static
1275         variable for each threadpool (IO and regular).
1276         -New performance counters: # of items added and its rate per
1277         threadpool. The rate will be used later, perhaps together with
1278         other perf. counters, to decide when idle threads should exit.
1280 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1282         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1283         Fix typo on Windows build.      
1284         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1285         
1286         Code is contributed under MIT/X11 license.
1288 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1290         * object-internals.h: The Thread class is split up into Thread and
1291         InternalThread now.  We have exactly one InternalThread per
1292         thread, and at most one Thread per appdomain per thread.  Most
1293         data is stored in InternalThread.  All InternalThread objects live
1294         in the root domain.
1296         * class-internals.h: Add internal_thread_class to MonoDefaults.
1298         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1299         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1300         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1301         resulting from the split of the Thread class.
1303         * gc-internal.h: Prototype for new function for checking whether a
1304         thread is the finalizer thread.
1306         * appdomain.c: Corlib version bump.
1308 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1310         * appdomain.c|h: Add a mono_domain_try_unload method which is
1311         equivalent to mono_domain_unload, except that it returns an exception
1312         instead of throwing it. Make mono_domain_unload use the
1313         mono_domain_try_unload method to avoid code-duplication.
1315 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1317         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1318         a problem.
1320 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1322         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1323         aborting when a conversion is not implemented.
1325 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1327         * verify.c: when comparing culture strings, use g_ascii_strcmp
1329         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1330         when comparing public key tokens to use memcmp on 16 bytes.   I do
1331         not believe this ever worked as advertised in the past.
1333         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1334         which would have always failed earlier.
1336 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1338         * gc.c: Raise a NullArgumentException if the object passed is
1339         null.
1341 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1343         * image.c (mono_image_close): Atomically decrement the reference count and
1344         remove the image from the hash tables, to prevent another thread from seeing a
1345         dying MonoImage. Fixes #541194.
1347 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1349         * threadpool.c: actually use the minimum number of 'completion ports'
1350         (for us is just a potential worker thread).
1352 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1354         * threadpool.c: remove ares_htable. It does not make sense any more
1355         since the same objects are now stored in GC-tracked arrays while they are
1356         in the queue.
1358 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1360         * threadpool.c: increase the minimum length of the queues to 128.
1361         Remove warning.
1363 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1365         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1366         return the modified signature used by string ctors.
1368 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1370         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1371         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1372         method, to be used by full-aot.
1374 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1376         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1377         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1378         be known to be good.
1380         * class.c (mono_class_init): Fail array types if their element type fails initialization
1381         as well.
1383         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1384         initialization, additionally we request the element_type vtable to be initialized as well.
1386         This is fine and should not increase the working set in any meaningful way since it's reasonable
1387         to assume       that most code will create an array and eventually populate it, which will require the
1388         type's vtable to be initialized.
1390         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1392 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1394         * normalization-tables.h : regenerated.
1396 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1398         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1399         a leb128 encoding can take up to 5 bytes.
1401 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1403         * class.c (verify_class_overrides): Remove useless argument.
1405         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1406         before interface enumeration as this is no longer required.
1408 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1410         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1411         used under mono_class_init context. This functions avoid any code path that
1412         calls mono_class_init, which leads it to be slow as some things like the interface
1413         bitmap are not available.
1415         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1416         of it's own broken version. Fixes the verifier part of #538588.
1418         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1419         API.
1421 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1423         * class.c (mono_class_init): Always set an exception in a class if
1424         vtable setup fails.  Fixes #538577.
1426         * generic-sharing.c: Raise an exception if mono_class_vtable()
1427         returns NULL.
1429 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1431         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1432         methods of vtypes, as they could be incorrectly shared with static methods
1433         taking an IntPtr argument.
1435 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1437         * domain.c:
1438         * object.c:
1439         * class-internals.h: renamed waithandle_class to
1440         manualresetevent_class.
1441         * marshal.c: propagate the exception if a remoting BeginInvoke call
1442         fails.
1444 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1446         * object.c: Properly handle vtable failures.
1448 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1450         * socket-io.c: Assert on vtable failure.
1452         * mono-mlist.c: Assert on vtable failure.
1454 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1456         * marshal.c: Assert on vtable failure.
1458 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1460         * icall.c: Properly handle vtable failures.
1462 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1464         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1466 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1468         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1470         * console-unix.c (do_console_cancel_event): Same.
1472 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1474         * class-internals.h: Add mono_class_vtable_full function that allows control
1475         if an exception should be raised or not.
1477         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
1478         to do what its documentation say, that is to return NULL and set exception_type on
1479         failure.
1481         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
1482         and change the code to honor it.
1484 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1486         * verify.c: Fix typo in error message.
1488 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
1490         * security-core-clr.c: Fix default_platform_check so it can run
1491         the runtime coreclr tests (without an infinite recursion when
1492         throwing an exception).
1494 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1496         object.c (mono_delegate_ctor_with_method): Guard against null method.
1498 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1500         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
1501         that should be replaced with error handling later.
1503 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1505         * marshal.c (mono_delegate_end_invoke): Fix warning.
1507 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1509         * loader.c (mono_field_from_token): Properly handle invalid
1510         dynamic tokens.
1512 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1514         * pedump.c (verify_image_file): Skip types that can't be
1515         decoded.
1517 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1519         * verify.c: Look for recursive valuetypes only against the
1520         type been initialized as this is a lot simpler and works.
1522 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
1524         * verify.c: Ensure that fields are properly loaded before
1525         checking them.
1527 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
1529         * object.c (mono_object_get_virtual_method) : Call 
1530           mono_cominterop_get_invoke if the object is a COM object.
1532         Code is contributed under MIT/X11 license.
1534 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
1536         * verify.c: Check for recursive valuetype definitions.
1538 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
1540         Use inheritance-aware interface offsets. Inherited types use the same offsets
1541         of their parents. This reduce offset duplication in case more than one type in
1542         the inheritance tree explicitly implements the same interface.
1544         This also removes a source of vtable bubbles found in #532409. An abstract type
1545         isn't required to provide abstract methods to all interfaces it implements, which
1546         resulted in a bubble with the previous scheme as the child would get a non-full
1547         vtable from its parent. We fail all concrete types with vtable bubbles, so this
1548         should be fixed.
1550         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1551         it's expected to not cause any significant increase beyond that.
1553         * class.c (setup_interface_offsets): Compute super class iface offsets
1554         first to force sharing.
1556         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1557         dumping only the relevant ones.
1559         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1560         methods a new slot regardless if they belong to an interface or not. This allows
1561         an inherited type to override the iface method separately from the class one.
1563 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1565         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1566         applications that take less than 2s to execute.
1567         Bug #524984 fixed.
1569 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1571         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1573         * object.c (mono_get_runtime_callbacks): New helper function to return
1574         the runtime callbacks.
1576         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1577         mono_get_runtime_build_info () as the display name.
1578         
1579 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1581         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1582         argument, since NEWARR expects a native int. Fixes #481559.
1584 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1586         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1587         against broken SRE methods.
1589 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1591         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1592         a NULL variable. Abort early on failure.
1594 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1596         * class.c (can_access_type): Fail visibility test for non nested
1597         types with nested visibility.
1599 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1601         * assembly.c (parse_public_key): Avoid allocating (and not 
1602         freeing) the public key array when it's not requested by the 
1603         caller.
1604         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1605         ves_icall_System_Threading_Thread_Thread_internal): Free 
1606         allocated memory on error.
1608 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1610         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1612 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1614         * class.c (mono_class_setup_fields): Remove duplicated local variable
1615         named gklass.
1616         Rename gklass to gtd to reflect the fact that it points to the generic
1617         type definition.
1618         Remove the duplicated call to mono_class_setup_fields on gtd and move
1619         the error check to the beginning.
1621 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1623         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1624         Remove cruft of the previous patch.
1626 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1628         * metadata-verify.c (verify_method_table): Check for abstract + final.
1629         Fixes #534175.
1631 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1633         * verify.c (verify_class_fields): Check for duplicate fields.
1635 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1637         * metadata-verify.c: Verify the typeref table for duplicates.
1639 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1641         This reverts r140936 and properly handles interfaces with static methods. The
1642         right fix is to ensure vtables without bubles which is an easier to verify
1643         constraint. We should avoid such special cases as of the reverted patch as those
1644         only make the runtime more brittle.
1646         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1647         static methods on interfaces.
1649         * class.c (setup_interface_offsets): Use the number of virtual methods when
1650         calculating interface offsets instead of the number of methods. This way we
1651         avoid bubles on the layout.
1653 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1655         * metadata-verify.c (verify_metadata_header): Some very smart
1656         obfuscators like to add extra stream headers. Ignore them.
1658 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1660         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1661         methods correctly.
1663 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1665         * metadata-verify.c: Verify for duplicated types.
1667 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1669         * metadata-verify.c (verify_typedef_table): Verify for nested types
1670         without an entry on the nested class table.
1672 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1674         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1675         <tom_hindle@sil.org>. Add locking around hash table accesses.
1677 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1679         * verify.c (mono_verifier_verify_class): Verify all interface if
1680         really are interfaces. Fixes #534184.
1682 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1684         * pedump.c: Initialize all types during metadata validation so we report
1685         errors only detected as part of class initialization.
1687 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1689         * metadata-verify.c (verify_method_table): PInvoke requires method to
1690         be static. Fixes #534189
1692 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1694         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1695         being NULL.
1697 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1699         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1700         for holes or bad methods. Fixes #525314.
1702 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1704         * class.c (setup_interface_offsets): Don't allocate slot
1705         for the same interface multiple times. This creates bubbles
1706         that waster space and make vtable verification harder.
1708         The same interface get a slot multiple times since we need
1709         to get the closure of all implemented interfaces, which means
1710         the same interface is reported multiple times.
1712 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1714         * verify.c (mono_verifier_verify_class): Don't check the fields
1715         of generic instances since the context on which they got expanded
1716         might lead to false positives.
1718         Such thing happens when a generic type is inflated in the context
1719         of a generic method and the inflated type of a field turns into a
1720         generic method argument, which causes the checking code to think
1721         it's an invalid class when it's not.
1723 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1725         * verify.c (mono_type_is_valid_in_context): Verify if type
1726         is NULL and remove duplicate test.
1728 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1730         * verify.c (mono_verifier_verify_class): Check fields for
1731         invalid generic arguments.
1733 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1735         * class.c (verify_class_overrides): Verify if for static
1736         and non virtual methods.
1738 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1740         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1741         Check for errors after retrieving the vtable.
1743 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1745         * class.c (mono_class_setup_vtable_general): Verify
1746         if method overrides are valid before processing them.
1748 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1750         * marshal.c (mono_array_to_lparray): Fix minimal build with
1751         cominterop disabled.
1753         * marshal.c (mono_free_lparray): Same.
1755 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1757         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1758         the hash function for the ares_htable.
1760 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1762         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1763         bit for assembly flags. MS is ok with it but there is no spec anywhere
1764         on its mean
1766 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1768         * class.c (mono_class_create_from_typedef): Emit profiler events
1769         in all cases.
1771 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1773         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1774         Release memory on failure.
1776 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1778         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1779         to the internal API.
1781         * metadata.c (get_constraints): Use a single-linked table as we don't
1782         traverse it backward. Fail and return FALSE if only of the contraint types
1783         is not found.
1785         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1786         to mono_metadata_load_generic_param_constraints except for having a return value.
1787         This has to be done since the later is part of the public API.
1789         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1790         and fail the type.
1792         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1793         and fail the method.
1795 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1797         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1798         with MS broken behavior of emmitting EH section sizes without the
1799         header size added.
1801 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1803         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1804         memory until we're sure that we'll need it. This avoids leaking for
1805         broken types or duplicated instantiation.
1807 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1809         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1810         mistake.
1812 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1814         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1815         and expected size calculation.
1817 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1819         * class.c (mono_class_get_field_idx): Add fixme for broken
1820         behavior for types with multiple fields with the same name.
1821         I would rather fix it, but have no idea on how to generate
1822         such artifact for testing.
1824 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1826         * verify.c (verifier_load_field): We should allow references to
1827         fields to be made using the generic type definition. It's up to
1828         the loader system to fail invalid ops.
1830         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1831         are invalid.
1833 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1835         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1837         * metadata-internals.h: Fix declaration of 
1838         mono_metadata_interfaces_from_typedef_full.
1840         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1841         heap_alloc_result parameter that controls if the result should be
1842         g_malloc'd.
1844         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1845         array be g_malloc'd and properly document this public API function.
1847 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1849         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1850         remove METHOD_HEADER_TINY_FORMAT1.
1852         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1854         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1856         Both spec and MS uses only 2 bits to enumerate the kind of header.
1857         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1858         is superfluous, only used for tiny headers with odd code lengths.
1860         This change also make sure that mono doesn't wronly interpret bit 2
1861         of fat header flags, which is currently reserved.
1863 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1865         * metadata.c (do_mono_metadata_parse_type): Do error
1866         checking for element types. Don't abort if presented
1867         with a broken type kind.
1869 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1871         * metadata.c (mono_metadata_parse_method_signature_full):
1872         Gracefully fail bad vararg signatures.
1874 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1876         * profiler.c:
1877         * class.c: Fix warnings for uninitialized variables.
1879 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1881         * icall.c: Fix _NSGetEnviron method declaration warning.
1883 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1885         * icall.c:
1886         * reflection.c: Make bitwise checks explicit.
1888 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1890         * debug-helpers.c:
1891         * marshal.c: Fix printf warnings.
1893 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1895         * reflection.c (encode_cattr_value): Fix a warning.
1897 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1899         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1900         of array bounds.
1902 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1904         * loader.c (mono_method_signature): Don't assert on broken
1905         signature. Print a more useful error message.
1907 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1909         * loader.c (mono_method_get_marshal_info): Assert if
1910         signature is invalid. Bounds check stores to the
1911         mspecs array;
1913 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1915         * loader.c (field_from_memberref): Fix warning.
1917 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1919         * loader.c (mono_method_get_param_names): Check if signature
1920         is null. Don't store beyond the size of the name array.
1922 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1924         * loader.c (mono_get_method_constrained): Check if signature
1925         is null.
1927 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1929         * loader.c (mono_loader_set_error_bad_image): Improve
1930         error messages.
1932 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1934         * loader.c (mono_get_method_full): Convert an assertion
1935         into a loader error.
1937 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1939         * class-internals.h, class.c: Better naming and documentation.
1941 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1943         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1944         obj is NULL.
1946 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1948         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1949         parsing fails.
1951 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1953         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1954         errors with no class set.
1956         * loader.c (field_from_memberref): If the field signature is of the wrong
1957         type fail with a MissingFieldException instead of a BadImageException as
1958         this is the behavior observed on MS. 
1960 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1962         * loader.c (field_from_memberref): Don't crash if either the field
1963         signature or the typespec class are invalid.
1965 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1967         * verify.c (verifier_load_field): Don't allow field related
1968         ops to reference fields on generic type definition.
1970 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1972         * metadata-verify.c: Add new warning level for errors specified
1973         by ECMA 335 but that MS ignores.
1975         * metadata-verify.c (verify_method_table): Make compiler controled
1976         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
1977         this check is safe because the end result will only be some visibility
1978         exceptions been thrown.
1980 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1982         * verify.c (get_boxable_mono_type): Don't allow the
1983         use of the generic type definition on boxed type positions.
1985         Fixes #531237.
1987 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1989         * threadpool.c: Make sure no cross-domain references remain in
1990         ares_htable or the arrays that are thrown away when resizing.
1992 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1994         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
1995         list of classes for which we have to unregister reflection_info
1996         with the GC and which are not in the namespace cache.
1998         * reflection.c (mono_reflection_initialize_generic_parameter): Add
1999         the class to the list.
2001 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2003         * domain.c (mono_domain_free): Unregister the GC roots in
2004         MonoDomain.
2006 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2008         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2010 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2012         * class.c: Add mono_class_get_field_from_name_full which does
2013         the same as mono_class_get_field_from_name but does check field
2014         signature as well.
2016         * class-internals.h: Export mono_class_get_field_from_name_full as
2017         part of the internal API.
2019         * loader.c (field_from_memberref): Search fields by name and signature
2020         as it's valid to have two fields with same name but different types.
2022         Fixes #528055.
2024 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2026         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2028         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2030         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2031         System.Type.
2033 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2035         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2037         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2039 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2041         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2042         to sgen-scan-object.h, which can be included and parameterized via
2043         macros.
2045         * Makefile.am: sgen-scan-object.h added.
2047 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2049         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2051 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2053         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2054         before clearing a domain in the GC.
2056 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2058         * exception.c (mono_exception_from_name_domain): Actually create
2059         the exception in the specified domain.
2061         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2062         OutOfMemoryException a bit later so that the domain is inialized
2063         "enough" that it works.
2065 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2067         * threads.c (thread_cleanup): Clean up the cached_culture_info
2068         array to prevent cross-domain references.
2070 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2072         * metadata.c: more documentation for MonoType accessors.
2074 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2076         Fix incorrect size definitions where the tail array isn't a list
2077         of pointers
2078         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2079         define size.
2080         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2081         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2082         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2084 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2086         * reflection.h:
2087         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2089 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2091         * metadata.c:
2092         * loader.c:
2093         * metadata-internals.h:
2094         * method-builder.c:
2095         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2097 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2099         * cominterop.c:
2100         * metadata.c:
2101         * metadata.h:
2102         * loader.c:
2103         * marshal.c:
2104         * reflection.c: #define for sizeof in MonoType and
2105         MonoMethodSignature.
2107 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2109         * domain.c:
2110         * domain-internals.h: add and use #define's instead of sizeof()
2111         for MonoJitInfo and MonoJitInfoTable.
2113 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2115         * object.c:
2116         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2118 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2120         * metadata.c:
2121         * metadata.h:
2122         * object.c:
2123         * class-internals.h:
2124         * generic-sharing.c:
2125         * marshal.c: use a #define instead of sizeof() for a few
2126         structures that use a zero-length array.
2128 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2130         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2131         to handle inflated generic methods.
2133         * appdomain.c: Bump corlib version.
2135         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2136         instances.
2138         * reflection.c (fixup_method): Same
2140         * reflection.c (resolve_object): Same.
2142         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2143         g_error and a decent message.
2145 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2147         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2148         from the object because it could not yet be available globally
2149         (it happens if the profiler tries to create a gchandle on the
2150         MonoThread object of a thread that is still registering itself
2151         with the runtime).
2153 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2155         * reflection.c (mono_generic_class_get_object): Initialized the
2156         managed type arguments array.
2158         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2160         * appdomain.c: Bump corlib version.
2162 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2164         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2165         #527902.
2167 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2169         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2170         Avoid a crash if synch_cs is not set.
2171         
2172         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2173         Handle the case when the handle is 0.
2175         * appdomain.c: Bump corlib version.
2177 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2179         * reflection.c (mono_type_get_object): Fix a warning.
2181 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2183         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2184         descriptor here.  We assume it's already been computed.
2186         * generic-sharing.c (instantiate_other_info): Compute the GC
2187         descriptor for info type MONO_RGCTX_INFO_KLASS.
2189 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2191         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2192         type, so don't use MONO_OBJECT_SETREF to set a field.
2194 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2196         * gc.c: We were missing one case where invoking a finalizer would
2197         not reset the domain.  Also, in the finalizer thread loop, assert
2198         that we're in the root domain.
2200 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2202         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2203         if the type is not an array.
2205 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2207         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2208         method bound to the declaring type of the method. Raise an exception
2209         if the type is not a generic param.
2211 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2213         * class.c (print_unimplemented_interface_method_info): Print the
2214         full type name.
2216         * class.c (mono_class_setup_vtable_general): When dealing with a
2217         generic instance first check if the generic type definition is
2218         not broken.
2220 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2222         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2224         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2226         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2228         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2230         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2232         Code is contributed under MIT/X11 license
2234 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2236         * verify.c: Fix naming of stelem and ldelem.
2238 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2240         * generic-sharing.c: Replace the templates lock with the loader
2241         lock because of very hard to resolve deadlock issues.
2243 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2245         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2246         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2247         directly. Fixes #525338.
2249         * class.c (mono_class_get_vtable_size): New helper function.
2251         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2252         the field belongs to the type. Fixes #525733.
2254 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2256         * sgen-gc.c: When we stop a thread and its stack top is not within
2257         its allocated stack (because it's in an altstack signal handler),
2258         restart it and stop it again, until it is.
2260 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2262         * sgen-gc.c: Take a thread's stack top and registers from the
2263         sigcontext in the suspend signal handler.
2265         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2266         stuff to sgen-archdep.h.
2268         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2269         caller, because have code in sgen-archdep.h to acquire that data.
2271 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2273         * profiler.c, profiler.h, profiler-private.h:
2274         Added support for keeping track of code chunks and buffers.
2276 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2278         * metadata-verify.c: Fix endianness problems on decoding functions.
2279         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2281 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2283         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2284         schema for vectors and one dimension SZARRAY.
2286 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2288         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2289         schema for vectors and one dimension SZARRAY.
2291 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2293         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2294         Interlocked.(Compare)Exchange with object arguments, which invoke
2295         write barriers.
2297 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2299         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2300         passed invalid arguments.   Fixes another crasher in the
2301         Silverlight test suite.
2303         * class.c (mono_class_array_element_size): Return 0 for the size
2304         of the class;  This fixes the crasher exposed by :
2306         typeof (void).MakeArrayType ();
2308         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2309         if there is no method to dereference.    Put all the code that
2310         depends on this inside the if (method) block.
2312         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2313         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2315         With this change, we pass the test.
2316         
2317         * reflection.c (mono_reflection_sighelper_get_signature_local):
2318         Only dereference the assembly if it has been set.    Fixes a
2319         crasher exposed by #525328
2321 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2323         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2324         don't perform the store in mono_gc_wbarrier_generic_nostore().
2325         Remove the second argument (value), which is not needed.
2327 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2329         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2330         the build.
2332         * boehm-gc.c: Ditto.
2333         
2334 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2336         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2337         not perform the store itself.  Introduce
2338         mono_gc_wbarrier_generic_nostore(), which is the same as
2339         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2340         store.
2342 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2344         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2345         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2346         we still need the memcpy().
2348 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2350         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2351         so that big arrays are handled correctly.  Always use
2352         safe_object_get_size() to calculate array object sizes, which
2353         takes bounds into account.
2355 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2357         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2358         GC descriptor is computed before we use it.
2360 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2362         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2363         write barrier if necessary.
2365 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2367         * icall-def.h, icall.c, thread-types.h: New separate icall for
2368         VolatileWrite(object&,object) that uses a write barrier.
2370         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2371         barriers in icalls which write to "ref" or "out" arguments.
2373 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2375         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2376         handler in a separate icall, to reduce the size of the wrappers.
2378 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2380         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2382 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2384         * metadata-verify.c (parse_field): Allow byref field.
2386         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2388         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2390 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2392         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2393         Fixes #522784.
2395 2009-07-20  Robert Jordan  <robertj@gmx.net>
2397         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2398         Fix invalid IL in valuetype handling (STOBJ must push the
2399         corresponding class). Fixes bug #523149.
2401         Code is contributed under MIT/X11 license.
2403 2009-07-20  Geoff Norton  <gnorton@novell.com>
2405         * gc.c: Use proper semaphores where available on posix and darwin.
2407 2009-07-19  Geoff Norton  <gnorton@novell.com>
2409         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2411 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2413         * refletion.c (is_sre_usertype): Change name to is_usertype and
2414         invert it's result so it returns true if the type is an user type
2415         and not the opposite.
2417         * reflection.c (is_*_type): Change all of those to use new macro
2418         check_corlib_type_cached that cached the type lookup so we don't
2419         need to do string comparisons all the type. Changed the signature
2420         to take a MonoClass instead.
2422         * reflection.c: Change mono_image_create_token and resolve_object
2423         to use is_sre_* functions.
2425 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2427         * sgen-gc.c: Check for writes to the stack in the managed
2428         wbarrier as well.
2430 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2432         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2433         but put them on a list which is processed with the other thread's
2434         remsets.
2436 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2438         * sgen-gc.c: Fix and enable the internal allocator instead of
2439         using malloc/free (which causes deadlocks).
2441 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2443         * refletion.c: Fix builds with SRE disabled by adding a minimal
2444         implementation of mono_reflection_type_get_handle.
2446 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2448         * refletion.c: Make mono_reflection_type_get_handle non static.
2450         * object-internals.h: Export mono_reflection_type_get_handle.
2452         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2453         unmanaged handle using mono_reflection_type_get_handle.
2455 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2457         * refletion.c: Replace all reads of MonoReflectionType::type with
2458         calls to mono_reflection_type_get_handle. Only the functions that
2459         deal with constructing TypeBuilder::type have not been changed
2460         because they have to deal with NULL values.
2462         This is a first step into supporting reflection types that don't
2463         map directly into their unmanaged counterpart.
2465 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2467         * metadata-verify.c (parse_locals_signature): Don't complain
2468         on signature with zero locals since MS generates it and doesn't
2469         bother with.
2471 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2473         * reflection.c (mono_image_get_array_token): Resolve return
2474         type using mono_reflection_type_get_handle.
2476         * reflection.c (mono_image_get_array_token): Resolve array method
2477         parent type using mono_reflection_type_get_handle.
2479 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
2481         * reflection.c (mono_image_basic_init): Applied patch from
2482         <Dax@daxxfiles.net>. Set the public key token from the assembly
2483         builder. Fixes #518909.
2485         * appdomain.c: Bump corlib version.
2487 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
2489         * class.c (mono_class_needs_cctor_run): Make this return false if
2490         the class has no cctor.
2492 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2494         * sgen-gc.c: When the minor GC needs to allocate a new section,
2495         invoke the major GC afterwards.
2497 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
2499         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
2500           Applying the window_style field to the SHELLEXECUTEINFO struct.
2502         Code is contributed under MIT/X11 license.
2504 2009-07-13  Mark Probst  <mark.probst@gmail.com>
2506         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
2507         locking earlier.  Fix it in the managed allocator by making sure
2508         that no thread is stopped there before the GC runs.  If we do stop
2509         a thread there, we restart it and let it run a but, until it stops
2510         somewhere else.
2512         * gc-internal.h, gc.c: Function for getting the IP from a signal
2513         context via a function registered by mini.
2515 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
2517         * object-internals.h (MonoIntPtr): New structure describing a boxed
2518         IntPtr.
2520         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
2521         returns. Fixes #519953.
2523         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
2525 2009-07-09  Mark Probst  <mark.probst@gmail.com>
2527         * class-internals.h, generic-sharing.c: New RGCTX info type for
2528         getting a remoting invoke with check wrapper.
2530 2009-07-07  Geoff Norton  <gnorton@novell.com>
2532         * icall-def.h: Fix the enable-minimal build.
2534 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2536         * object-internals.h: Add MonoReflectionDerivedType.
2538         * reflection.c: Implement support for PointerType.
2539         Fixed tons of warnings.
2541 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2543         * object-internals.h: Add MonoReflectionByRefType.
2545         * reflection.c: Implement support for ByRefType.
2547 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2549         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
2551         * object-internals.h: Add MonoReflectionArrayType and
2552         mono_reflection_create_unmanaged_type.
2554         * reflection.c: Implement support for ArrayType.
2556 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2558         * metadata-verify.c (is_valid_method_header): Parse EH block
2559         flags correctly.
2561 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2563         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2564         processing the disappearing links, and process disappearing links
2565         in a loop until no new objects are copied.
2567 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2569         * object.c (handle_enum): Invoke the write barrier when copying
2570         value type instances.
2572         * sgen-gc.c: Register remsets for unmanaged write barriers only
2573         when the address written to is actually on the heap.  This makes
2574         set_value() in object.c work without requiring that the result be
2575         on the heap.
2577 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2579         The runtime wrappers are all bound to a given type that must
2580         exist in the same image. For regular images we use the <Module>
2581         type, which is required to exist for all images.
2583         The <Module> type can't be used for dynamic images because it
2584         might not exist at the time the wrapper is required, so we create
2585         a synthetic type to use instead.
2587         The current code works because of the 2 stage setup of MonoClass,
2588         but once this is gone it will no longer work.
2590         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2592         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2594         * object-internals.h: Export mono_image_set_wrappers_type icall
2595         as part of the internal API.
2597         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2598         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2600         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2601         image wrappers_type to the provided value.
2603 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2605         * appdomain.c (deregister_reflection_info_roots): No need
2606         to use the image lock here.
2608 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2610         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2612 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2614         * threads.c: Store the thread start argument in a hash table instead of
2615         registering it as a root, as libgc doesn't support unregistering roots
2616         under windows, leading to 'too many root sets' errors when many threads
2617         are created.
2619         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2620         shutdown, they can still be referenced by the other dying objects.
2621         Fixes #514506.
2623 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2625         * socket-io.c: DontLinger does not allow LingerOptions.
2627 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2629         * metadata-verify.c: The spec doesn't mention that it's possible to add
2630         custom attribute to a generic parameter. Fixed.
2632 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2634         * class.c (inflate_generic_type): Don't crash while trying to output a message
2635         on why we're aborting.
2637 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2639         * socket-io.c: DontLinger can take an int or a boolean too.
2641 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2643         * gc.c: check for a null argument to SuppressFinalize () and
2644         ReRegisterForFinalize ().
2646 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2648         * loader.c (method_from_methodspec): Call into the verifier to check
2649         the signature.
2651         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2653         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2654         part of the internal API.
2656 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2658         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2659         the signature.
2661         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2663         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2664         part of the internal API.
2666 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2668         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2669         the signature.
2671         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2672         blob verification.
2674         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2675         part of the internal API.
2677 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2679         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2680         when doing basic verification. 
2682         This check must be done since the runtime peeks into signatures in much
2683         more places than it does decoding so it makes sense to ensure that all
2684         pointers to blob objects are well formed.
2686 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2688         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2689         Use proper overflow dectection. Fix usage of it.
2691 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2693         * loader.c (field_from_memberref): Call into the verifier to check
2694         the signature.
2696         * loader.c (mono_method_get_signature_full): Same.
2698         * loader.c (method_from_memberref): Same.
2700         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2702         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2703         part of the internal API.
2705 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2707         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2708         or unloaded, still return an AsyncResult, but don't add it to the
2709         threadpool.
2711 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2713         * threads.c: fix missing colon when DEBUG is defined.
2715 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2717         * threadpool.c: Don't add new calls to a threadpool if the domain
2718         of the call is unloading or unloaded.  When dequeuing a job, null
2719         the reference in the queue.
2721 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2723         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2724         generation if an object was moved.
2726 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2728         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2729           parameters of type SAFEARRAY[VARIANT].
2731         * reflection.c (encode_marshal_blob): Properly generate element type
2732           (SafeArraySubType marshal attribute option).
2734         Code is contributed under MIT/X11 license.
2736 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2738         * reflection.c: in mono_method_clear_object () really ensure all the
2739         objects are removed.
2741 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2743         * loader.c (mono_method_signature): Call into the verifier to check
2744         the method signature.
2746         * metadata-verify.c (verify_method_table): Move signature verification
2747         to verify_method_table_full.
2749         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2751         * verify-internals.h: Export mono_verifier_verify_method_signature as
2752         part of the internal API.
2754 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2756         * loader.c (mono_method_get_header): Call into the verifier to
2757         check the method header.
2759         * metadata-verify.c: Add mono_verifier_verify_method_header.
2761         * verify-internals.h: Export mono_verifier_verify_method_header as
2762         part of the internal API.
2764 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2766         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2767         check the field signature. Replace an assert with an explicit check.
2769         * class.c (mono_class_setup_fields): Call into the verifier to check
2770         the field signature.
2772         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2774         * verify-internals.h: Export mono_verifier_verify_field_signature as
2775         part of the internal API.
2777 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2779         * class.c (mono_class_find_enum_basetype): Simplify this function
2780         by moving code outside of the loop and not decoding static fields.
2782 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2784         * metadata-verify.c (verify_typedef_table): Check the extends
2785         token here. Move to here a flags check from verify_typedef_table_full.
2787 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2789         * metadata-verify.c (is_valid_method_header): Fix a warning.
2791         * metadata-internals.h (MonoImage): Remove the unused 
2792         static_rgctx_invoke_wrapper_cache.
2794         * image.c marshal.c: Ditto.
2796 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2798         * image.c (do_mono_image_load): Enable table data verification.
2800 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2802         * metadata-verify.c (is_valid_constant): Fix nullref check.
2804 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2806         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2808 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2810         * sgen-gc.c: Managed allocation with pthreads TLS.
2812         * threads.c, threads-types.h: Functions for the JIT to tell the
2813         runtime whether it supports the MONO_TLS opcode.
2815 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2817         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2818         without methods.
2820 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2822         * metadata-verify.c (is_valid_constant): Fix the string length check.
2823         Use safe overflow checking. Add decent error messages.
2825 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2827         * metadata-verify.c: Move remaininh blob checks to the offline
2828         verification path.
2830 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2832         * metadata-verify.c: Move more blob checks to the offline verification
2833         path.
2835 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2837         * object-internals.h : Adding interrupt_on_stop field.
2839         * threads.c (mono_thread_request_interruption) : On Windows exit the
2840           thread if interrupt_on_stop is set.
2842         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2843          Removing old interrupt logic and setting the interrupt_on_stop for the
2844          thread when calling accept.
2846         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2847          setting the interrupt_on_stop for the thread when calling accept.
2849         Contributed under MIT/X11 license.
2851 2009-06-20  Martin Baulig  <martin@ximian.com>
2853         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2855 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2857         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2858         running in no-exec mode.
2860 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2862         * metadata-verify.c (verify_method_table): Move header
2863         checking to verify_method_table_full.
2865         * metata-verify.c (mono_verifier_verify_full_table_data):
2866         Call verify_method_table_full.
2868 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2870         * metadata-verify.c (verify_field_table): Move signature
2871         checking to verify_field_table_full.
2873         * metata-verify.c (mono_verifier_verify_full_table_data):
2874         Call verify_field_table_full.
2876 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2878         * metadata-verify.c (verify_typedef_table): Move remaining
2879         stuff to verify_typedef_table_full.
2881 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2883         * metadata-verify.c: Kill is_corlib from VerifyContext.
2884         It is only used by the offline mode.
2885         So we better remove it from the runtime path.
2887 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2889         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2890         function that perform the offline metadata verification steps.
2892         * metadata-verify.c (verify_typedef_table): Move some checks to
2893         verify_typedef_table_full and make it been called by new function
2894         mono_verifier_verify_full_table_data.
2896         * pedump.c: Call mono_verifier_verify_full_table_data.
2898         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2899         part of the internal API.
2901 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2903         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2904         check.
2906         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2907         flags bits. SupportLastError was confused as bit 7 instead of 6.
2909         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2910         to check against the module ref table instead of module.
2912         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2914         * pedump.c: Call mono_image_load_names.
2916 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2918         * image.c: Extract mono_image_load_names from do_mono_image_load.
2920         * metadata-internals.h: Export mono_image_load_names as part of
2921         the internal API.
2922         
2923 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2925         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2926         first, as it could reference data in the other caches.
2928 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2930         * metadata-verify.c: Finished with method header verification.
2932 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2934         * metadata-verify.c: Added more header verification code.
2935         Now only EH clauses are missing.
2937 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2939         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2940         for return values.
2942 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2944         * metadata-verify.c: Initial method header verification.
2946 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2948         * metadata-verify.c (verify_import_table): The IAT contents
2949         might end been patched by the windows DL when running with
2950         coree enabled.
2952 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2954         * class.c (mono_class_from_typeref): If the enclosing type is not
2955         found return null instead of crashing. Fixes #508487.
2957 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
2959         * normalization-tables.h : updated to the latest unicode charcter
2960           data.
2961         * appdomain.c : bump corlib version.
2963 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
2965         * class.c (mono_class_from_name): Fix support for assembly references
2966         in the EXPORTEDTYPE table. Fixes #511704.
2968 2009-06-13  Geoff Norton  <gnorton@novell.com>
2970         * domain.c: Ensure that mono_domain_assembly_open actually opens the
2971         assembly in the target domain.
2973 2009-06-12  Robert Jordan  <robertj@gmx.net>
2975         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
2976         because "this" of the managed signature has become an
2977         ordinary parameter in the unmanaged signature.
2979 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
2981         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
2982         field for owner-less generic containers.
2984         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
2985         image field of the owner-less generic containers created here.
2987         * metadata.c (mono_metadata_load_generic_params): Ditto, the
2988         contain is ownerless until the caller sets its owner.
2990         * metadata.c (type_in_image): Handle owner-less generic containers
2991         correctly.
2992         
2993 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2995         * image.c (mono_image_close): Support debug_assembly_unload for
2996         dynamic images too.
2998 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3000         * class.c: Fix some typos in comments.
3002 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3004         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3006         * threads.c (mono_thread_execute_interruption): Avoid creating the
3007         abort exception object while holding the synch_cs lock.
3009 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3011         * metadata-verify.c: Verify basic cattr content.
3013 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3015         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3016         nested types.
3017         
3018         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3019         support for nested types. Fixes #511704.
3021 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3023         * metadata-verify.c: Verify methodspec signatures.
3025 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3027         * metadata-verify.c: Verify typespec signatures.
3029 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3031         * metadata.c (free_inflated_method): Call 
3032         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3034 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3036         * mono-config.c: Small change to report the PPC64/ILP32 model.
3038 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3040         * metadata-verify.c (parse_type): Check szarray.
3042 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3044         * metadata-verify.c (parse_type): Check fnptr.
3046 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3048         * metadata-verify.c (parse_type): Check generic instances.
3050 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3052         * metadata-verify.c (parse_type): Check array shape.
3054 2009-06-05  Robert Jordan  <robertj@gmx.net>
3056         * class.c (mono_class_create_from_typedef): Check only for
3057         mscorlib's System.Array.
3059 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3061         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3062         and generic params. 
3064         * metadata-verify.c (parse_field): Check the signature.
3066 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3068         * metadata-verify.c: Implement locals signature check.
3070 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3072         * domain.c: Add .NET 4.0 Beta 1 version.
3074 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3076         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3077           For QueryInterface on CCWs consider the base class
3078           interfaces as well.
3080         Code is contributed under MIT/X11 license.
3082 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3084         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3086         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3087         used.
3089         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3090         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3092         * generic-sharing.c (inflate_other_data): Ditto.
3093         
3094 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3096         * metadata-verify.c: Implement property signature check.
3098 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3100         * sgen-gc.h: Register saving support for PPC.
3102 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3104         * sgen-gc.c: Fixed a pthread TLS screwup.
3106 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3108         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3109         supported.
3111 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3113         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3114         keyword is not supported.
3116 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3118         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3119         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3120         the inflated method is freed. Fixes #508389.
3122         The code is contributed under the MIT/X11 license.
3123         
3124 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3126         * marshal.c (get_wrapper_target_class): New helper function.
3127         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3128         the <Module> class of the image. Fixes #509049.
3130 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3132         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3133         Check if the thread was interrupted and proccess it straight away.
3134         Makes abortion much more responsive.
3136 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3138         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3139         MonoThread::interruption_requested to match it's counterpart.
3141         Fixes a hang in abort-stress-1 on a 2 core x86.
3143         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3144         Fix warning.
3146 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3148         Change MonoImage::name_cache to be protected by the image lock
3149         instead of the loader lock.
3151         * appdomain.c (deregister_reflection_info_roots): Protect access
3152         to name_cache.
3154         * class.c (mono_image_init_name_cache): Change from the loader lock
3155         to the image lock. Check if the cache wasn't already created.
3157         * class.c: Change from the loader to the image lock.
3159         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3160         the code to hold the image lock while iterating over name_cache and
3161         not go into mono_array_new holding it.
3163         * metadata-internals.h: Add a comment about this change.
3165 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3167         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3168         Under the 2.0 profile raise the loader error.
3170         Fixes #508532.
3172 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3174         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3175         of ldind opcode for generic instances so we don't fail for direct wrappers.
3176         This only affect direct calls.
3178 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3180         * reflection.c (create_dynamic_mono_image): Fix warnings.
3182         * generic-sharing.c (other_info_equal): Ditto.
3183         
3184 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3186         * metadata-verify.c: Implement field signature check.
3188 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3190         * metadata-verify.c: Implement standalone signature check.
3192 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3194         * metadata-verify.c: Implement methodref signature check.
3196 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3198         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3199         callbacks supplied by the runtime.
3201         * object.c (mono_install_callbacks): New internal function to install
3202         the callbacks.
3204         * object.c (mono_create_ftnptr): Move the implementation of this to
3205         mini/.
3207         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3209 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3211         * metadata-verify.c (parse_return_type): Proper byref check.
3212         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3213         generic signatures and method params.
3215 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3217         * metadata-verify.c (decode_signature_header): Fix bounds check.
3219         * metadata-verify.c (parse_custom_mods): Check custom mods.
3221         * metadata-verify.c (parse_type): Do initial basic verification
3222         of valid values.
3223         
3224         * metadata-verify.c (is_valid_method_signature): Parse the generic
3225         param count.
3227 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3229         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3230         discarded based on their most specific definition so we set the method_slots
3231         array before checking if the method is acceptable or not.
3233         Fixes #506757.
3235 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3237         * icall.c: Free the old array when resizing a mono_ptr_array.
3239 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3241         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3242         for the hashes whose keys are managed objects.
3244 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3246         * object-internals.h, threads.c: Set the execution context on
3247         thread start here, not in corlib.
3249         * appdomain.c: Bump corlib version.
3251 2009-05-27  Martin Baulig  <martin@ximian.com>
3253         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3254         if `_mono_debug_using_mono_debugger' is set to make things work
3255         properly when embedding Mono.
3257 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3259         * class.c (mono_class_setup_fields): Don't mark simd types as having
3260         16 bytes alignment as the whole runtime doesn't support.
3262 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3264         * metadata-verify.c (safe_read): Use endian safe read macros.
3266 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3268         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3269         it is read-only when using full aot.
3271 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3273         * metadata-verify.c (is_valid_method_signature): Verify parts
3274         of the return type. Provide an error message in case of failure.
3276 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3278         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3280 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3282         * metadata-verify.c: Include the size prefix in the bounds check.
3284 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3286         * icall.c: Remove warnings.
3288         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3289         prevent auto-detection based on GCC defines.
3291         Add PS3
3293         * metadata-verify.c: Do not include signal.h
3295         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3296         messages.  Not sure why the g_assert_not_reached is not enough to
3297         quiet the compiler.
3298         
3300         * appdomain.c: Remove code that is not used when
3301         DISABLE_SHADOW_COPY is set.
3303         * image.c: use g_getenv
3305 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3307         * reflection.c: Remove code that it not used with
3308         DISABLE_REFLECTION_EMIT is defined.
3310 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3312         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3313         invoke wrappers.
3315 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3317         * socket-io.c
3318         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3319         the ifdef here and instead put that on io-layer
3321 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3323         * metadata-verify.c: Verify the generic param constraint table.
3325 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3327         * metadata-verify.c (verify_generic_param_table): Fix
3328         thinko on the valid flags bits for generic params.
3330 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3332         * metadata-verify.c: Verify the methodspec table.
3334 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3336         * metadata-verify.c: Verify the generic param table.
3338 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3340         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3342 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3344         * sgen-gc.c: Use generation enum more consistently and use the
3345         correct generation in mono_gc_register_for_finalization().
3347 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3349         * metadata-verify.c: Verify the nested class table.
3351 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3353         * metadata-verify.c: Verify the manifest resource table.
3355 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3357         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3359 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3361         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3362         wrappers, this is now done in the JIT.
3363         
3364         * class.c (mono_set_generic_sharing_supported): New internal function.
3365         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3367 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3369         * metadata-verify.c: Verify the exported type table.
3371 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3373         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3375 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3377         * metadata-verify.c: Verify the file table.
3379 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3381         * metadata-verify.c (verify_assembly_table): Fix an error message.
3383         * metadata-verify.c: Verify the assemblyref table.
3385 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3387         * metadata-verify.c (verify_assembly_table): Fix the valid
3388         bits mask for flags.
3390 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3392         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3393         generic methods as well.
3395 2009-05-15  Geoff Norton  <gnorton@novell.com>
3397         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3398         use-case and is significantly more performant than the wapi layer.
3400 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3402         * metadata-verify.c: Verify the assembly table.
3404 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3406         * metadata-verify.c: Fix rows limit check.
3408 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3410         * metadata-verify.c: Verify the fieldrva table.
3412 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3414         * sgen.c: Speed up weak links and finalizers by grouping them by
3415         generation.
3417 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3419         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3420         free the old GCHandle (only applies to SGen).
3422 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3424         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3425         mono_metadata_load_generic_params () for non-generic methods.
3427 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3429         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3430         New function for returning a monitor's weak link if it has one.
3432         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3433         one) when clearing a domain.  These can still be around because
3434         the object might not have been collected.
3436 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3438         * gc.c: Fix a warning.
3440 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3442         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3443         prevous wait that resulted in a deadlock on Windows when initializing
3444         the runtime form DllMain. Also results in improved startup time.
3445         (finalizer_thread): Get rid of thread_started_event.
3446         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3447         resulting MonoThread.
3449         Contributed under MIT/X11 license.
3451 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3453         * metadata-verify.c: Verify the implmap table.
3454         Don't require that #US and #Strings be present.
3456 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3458         * security-core-clr.c: Delegate checks are done at creation time,
3459         not a invocation time. Fix exception for Telerik Silverlight demo
3461 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3463         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3464         case for the Thread class.
3466         * threads.c: Do clean-up of abort exception/state in
3467         thread_cleanup() instead of Thread.free_internal().  Also clean up
3468         current_appcontext.  The reason we have to do that is because
3469         those references might point into another domain and if that
3470         domain is unloaded before the thread is finalized, they point to
3471         invalid data.
3473 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
3475         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
3476         stub signatures.
3477         
3478         Contributed unter MIT/X11 license.
3480 2009-05-09  Miguel de Icaza  <miguel@novell.com>
3482         * verify.c, metadata-verifier.c: Add support for disabling the
3483         verifier in some builds.
3485         [ Sorry, my previous commit accidentally commited some work in
3486         progress ]
3488 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
3490         * class.c (mono_class_setup_fields): Set class->field.first for
3491         generic instances.
3493 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3495         * metadata-verify.c: Verify the typespec table.
3497 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
3499         * metadata-verify.c: Verify the module table.
3501 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3503         * metadata-verify.c: Verify the methodimpl table.
3505 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
3507         * metadata-verify.c: Verify the property table.
3509 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
3511         * debug-helpers.c (mono_method_desc_match): Add support for generic
3512         glob patterns.
3514 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
3516         * metadata-verify.c: Verify the propertymap table.
3518 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
3520         * metadata-verify.c: Verify the event table.
3522         * metadata-verify.c (search_sorted_table): Fix offset
3523         calculation.
3525 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
3527         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
3529 2009-05-01  Mark Probst  <mark.probst@gmail.com>
3531         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
3532         because mono_delegate_free_ftnptr() needs it.
3534 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3536         * metadata-verify.c: Verify the eventmap table.
3538 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3540         * metadata-verify.c: Verify the standalonesig table.
3542 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3544         * metadata-verify.c: Verify the field layout table.
3546 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3548         * class.c (mono_type_get_name_recurse): Don't crash
3549         for ownerless generic params.
3551         * debug-helpers.c (mono_type_get_desc): Correct the format
3552         for ownerless generic params.
3554 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3556         * metadata-verify.c: Verify the class layout table.
3558 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3560         * metadata-verify.c: Verify the decl security table.
3562 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3564         * domain.c (mono_domain_set_internal_with_options): Don't do
3565         anything if the old domain is the same as the old one.  Fixes
3566         #499326.
3568 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3570         * appdomain.c: Deregister the reflection_info roots when unloading
3571         a domain.
3573         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3574         memory allocated by a domain and frees its disappearing links.
3576         * boehm-gc.c, null-gc.c: Empty implementation of
3577         mono_gc_clear_domain().
3579 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3581         * appdomain.c (clear_cached_vtable): Free the static fields memory
3582         block.
3584 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3586         * gc.c: Set the correct domain when invoking finalizers.
3588         * appdomain.c: Set the correct domain when creating threads.
3590 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3592         * sgen-gc.c: Fix skip size for vectors.
3594 2009-05-03  Martin Baulig  <martin@ximian.com>
3596         * mono-debug-debugger.c
3597         (mono_debugger_check_breakpoints): Check class init handlers even
3598         if we don't have any method load handers.
3600 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3602         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3603         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3605 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3607         * metadata-verify.c: Verify the field marshal table.
3609 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3611         * metadata-verify.c: Verify the custom attribute table.
3613 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3615         * metadata-verify.c: Verify the constant table.
3617 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3619         * metadata-verify.c: Verify the memberef table.
3621 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3623         * metadata-verify.c (get_coded_index_token): Remove
3624         dead argument.
3626 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3628         * metadata-verify.c: Verify the interfaceimpl table.
3630 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3632         * verify.c: Improve error message.
3634         * debug-helpers.c (mono_type_get_desc): Harden the code that
3635         deals with VAR and MVAR.
3637 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3639         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3640         part of #498692.
3642 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3644         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3645         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3647 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3649         * security-core-clr.c: Avoid redundant checks for platform code, 
3650         e.g. check for method and for class (very common) and check
3651         for class and outer class (less common)...
3653 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3655         * reflection.c: Avoid returning random cattrs for synthetic methods.
3656         Fixes #498545.
3658 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3660         * assembly.c: assemblies in the GAC should never be shadow-copied.
3662 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3664         * domain.c, domain-internals.h: Disable
3665         track_resurrection_{objects,handles}_hash in MonoDomain if using
3666         SGen.
3668 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3670         * metadata-verify.c: Verify the param table.
3672 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3674         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3675         MethodList.
3677         * metadata-verify.c (verify_method_table): Proper check the ParamList
3678         field.
3680 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3682         * metadata-verify.c (verify_method_table): Check for runtime
3683         implemented functions such as delegate .ctors. Remove spurious
3684         printf.
3685         
3686 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3688         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3690 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3692         Don't allocate MonoGenericInfo for ownerless generic params.
3693         * class-internals.h (MonoGenericParam::info): Move field to ...
3694         (MonoGenericParamFull): ... this.  New struct.
3695         (MonoGenericContainer::type_params): Change type to
3696         MonoGenericParamFull.
3697         (MonoGenericParam, MonoGenericContainer): Update accessors.
3698         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3699         'info' field for ownerless generic param.
3700         (mono_metadata_load_generic_params): Update to changes.
3701         * reflection.c (mono_reflection_create_generic_class): Likewise.
3702         (reflection_methodbuilder_to_mono_method): Likewise.
3703         (mono_reflection_initialize_generic_parameter): Likewise.
3705 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3707         Don't use MonoGenericParamInfo for ownerless generic params.
3708         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3709         use ParamInfo class at all.
3710         (mono_class_from_generic_parameter): Use them.
3711         (make_generic_param_class): Fix a couple of instances where 'pinfo
3712         == NULL' wasn't handle.
3714 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3716         * class.c (make_generic_param_class): Carve out of ...
3717         (mono_class_from_generic_parameter): ... here.
3719 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3721         Simplify mono_class_from_generic_parameter
3722         * class-internals.h (MonoGenericParamInfo::token): New field.
3723         * metadata.c (mono_metadata_load_generic_params): Initialize it
3724         from metadata.
3725         * class.c (mono_class_from_generic_parameter): Use it instead of
3726         searching through metadata.
3728 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3730         * metadata-verify.c: Add verification of the method table.
3732 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3734         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3735         Delegate::Invoke optimization.
3737 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3739         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3740         string returned by get_shadow_assembly_location_base.
3742         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3743         about caller's ownership.
3745 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3747         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3748         reflection memory on domain unload.
3750         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3751         reflection cleanup code do it.
3753         * domain-internals.h: Add mono_reflection_cleanup_domain.
3755         This fixes a memory leak for managed mirrors of reflection objects
3756         on domain unload. 
3758 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3760         * metadata-verify.c: Implement more verification of the field table.
3762 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3764         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3765         doesn't try to parse the input assembly, which can be broken.
3767 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3769         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3770         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3771         by using the lowest bit in the link to store whether the link is
3772         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3774 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3776         * Makefile.am: Split the console support in platform specific code
3777         and put together a framework for making this easy in the future so
3778         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3780 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3782         * pedump.c: Fix a warning.
3784 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3786         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3787         mono_class_from_mono_type to avoid bad interactions with the dual representation
3788         of the generic type definition.
3790 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3792         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3793         get the MonoClass for the call context type as it might be a generic
3794         instance.
3796         Fixes #491483.
3798 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3800         * object-internals.h: The Thread object has no execution_context
3801         member anymore.
3803         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3804         the execution context.
3806         * appdomain.c: Bump corlib version.
3808 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3810         * verify.c (do_newobj): Improve error message.
3812 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3814         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3815         is nested in the filter block.
3817         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3818         block is not fully nested.
3820         Fixes #495656.
3822 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3824         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3825         not MonoType to check for equality of valuetypes as the generic type
3826         definition allows for two different encodings: the generic type definition
3827         class or a generic instance over the GTD arguments.
3829         Fixes #496175.
3831 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3833         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3835         * verify.c (do_initobj): Improve error message.
3837 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3839         * metadata-verify.c: Enable pe verification as the issue with #496453
3840         is that the authenticode data directory have a different unspecified
3841         format. Ignore it for now.
3843         * pedump.c: Run the metadata verifier together with the IL verifier.
3845         Fixes ##496453.
3847 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3849         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3851 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3853         * class.c (can_access_type): Check visibility against
3854         the element type for pointers and arrays.
3856         Fixes #496150.
3858 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3860         * metadata-verify.c: Fix cli and table verification to use information
3861         from the MonoImage. A lot of duplicated code got killed.
3863 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3866         This patch starts to integrate the metadata verifier with the runtime code.
3868         This patch causes major regression in functionality for the metadata verifier
3869         as cli and table verification are disabled since they require to be ported to
3870         use MonoImage information.
3872         * image.c (do_mono_image_load): Split the code in this function
3873         into mono_image_load_pe_data and mono_image_load_cli_data.
3874         Add     care_about_pecoff parameter to not load pecoff data.
3875         Call into the metadata verifier for pecoff and cli verification.
3877         * image.c (mono_image_open_raw): New function that doesn't perform
3878         any parsing of the image contents.
3879         
3880         The reason for the 3 new functions is to give pedump better control
3881         into the interaction with the verifier.
3883         * metadata-internals.h: Add new functions from image.c as part of the
3884         internal mono API.
3886         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3887         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3888         to make those functions work together with the runtime.
3890         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3891         true if the image needs to be verified.
3893         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3895         * pedump.c: Use new metadata verifier API.
3897 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3899         * object.c (mono_install_vtable_trampoline): Make this receive a
3900         trampoline creation function instead of trampoline, allowing the JIT
3901         to use a different trampoline for each vtable.
3903 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3905         * object.c (mono_raise_exception): Don't reset the thread abort
3906         exception state here.
3908 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3910         * icall-def.h: New icall for getting the thread abort exception
3911         state for a thread.
3913         * object.c, thread.c, object-internals.h: A thread's abort
3914         exception state is now a GC handle.  To get the object it stands
3915         for, we must move it into the current app domain, if it's
3916         different than the one where it originated from.
3918         * appdomain.c: Bump corlib version.
3920         * domain.c, domain-internals.h: New function for setting the
3921         domain and migrate the thread abort exception or not.
3923 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3925         * metadata-verify.c: Add initial verification of the
3926         field table.
3928 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3930         * metadata-verify.c: Add a macro to conditionally enable
3931         dumping of verification information. Add  make_coded_token
3932         and search_sorted_table to enable search sorted tables
3933         by a given coded token.
3935 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3937         * metadata-verify.c: Add array mapping from table index
3938         to description offset. Add get_col_offset and get_col_size
3939         functions.
3941 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3943         * metadata-verify.c: Add remaining table descriptions offsets.
3944         Add remaining coded index descriptions.
3946 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3948         * metadata-verify.c: Fixed constant table description.
3949         Fixed calculation of HasCustomAttribute coded index size.
3950         Fixed calculation of size for many table indexes. 
3952 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3954         * pedump.c (dump_metadata): Dump table offset instead
3955         of useless pointer in memory.
3957 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3959         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
3961 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3963         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
3964         a missing of for interface types.
3966 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3968         * metadata-verify.c (verify_pe_optional_header): Add comment of why
3969         the code is commented.
3971         * metadata-verify.c (verify_resources_table): Remove spurious printf
3972         and don't fail if there are unmanaged resources. Gmcs generates a useless
3973         one     for all assemblies - I bet it's some MS compatibility junk.
3975 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3977         * metadata-verify.c (verify_typedef_table): Verify the extends field.
3979         * metadata-verify.c (mono_image_verify): Add a is_corlib.
3981         * verify-internals.h: Same.
3983         * pedump.c: Fix for mono_image_verify new signature.
3985 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3987         * metadata-verify.c (verify_typedef_table): Verify for some invalid
3988         flags combinations.
3990 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3992         * metadata-verify.c (verify_module_table): Ignore the generation field.
3994 2009-04-15  Martin Baulig  <martin@ximian.com>
3996         * debug-mono-symfile.c
3997         (mono_debug_symfile_lookup_location): Don't print a warning for
3998         unknown extended opcodes if they're within 0x40 and 0x7f.
4000 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4002         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4003         invoke signatures returning an enum. Fixes #494847.
4005 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4007         * metadata-verify.c: Initial code to verify the typedef table.
4009 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4011         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4012         with non empty stack happens before the beginning of a try block.
4014         Fixes #494812.
4016 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4018         * metadata-verify.c: Verify typename and typenamespace fields of
4019         the typeref table.
4021 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4023         * metadata-verify.c: Initial code to verify the typeref table.
4025 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4027         * verify.c (verify_delegate_compatibility): Fix error message.
4029 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4031         * security-core-clr.c: Fix typo
4033 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4035         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4036         a MonoGHashTable to keep its values alive.
4037         (emit_marshal_boolean): Fix a warning.
4039 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4041         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4042         not have any interface configured for IPv4/IPv6.
4044 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4046         * assembly.c: fix typo in error message.
4048 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4050         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4051         allocating the location holding the this argument to prevent
4052         'too many root sets' errors.
4054         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4055         to mark fields as special static.
4056         (mono_field_static_get_value): Handle special static fields.
4057         (mono_field_static_set_value): Ditto.
4059         * class-internals.h (struct _MonoClassField): Document this.
4061 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4063         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4064           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4065           case.  This will handle when managed code returns null to native code.
4067         Code is contributed under MIT/X11 license.
4069 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4071         * object.c (build_imt_slots): Changing a free to a g_free to match
4072           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4074         Code is contributed under MIT/X11 license.
4076 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4078         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4079           the correct TRUE value is passed through the marshaling layer.
4081         Code is contributed under MIT/X11 license.
4083 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4085         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4086         correctly. Fixes #492330.
4087         
4088         * marshal.c: Fix the embedding of object pointers into JITted code in
4089         the native-to-managed wrappers by allocating some GC tracked memory, and
4090         embedding the address of that.
4092 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4094         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4095         pointers into the vtable.
4097 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4099         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4101         * verify.c (verify_ldftn_delegate): Improve error message.
4103 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4105         * reflection.c (my_mono_class_from_mono_type): Remove.
4107 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4109         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4110         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4111         and constraints fields into ...
4112         (MonoGenericParamInfo): ... this.
4113         (mono_generic_param_info, mono_generic_container_get_param_info):
4114         New accessors.
4115         * class.c, debug-helpers.c, icall.c: Update to changes.
4116         * metadata.c, reflection.c, verify.c: Likewise.
4118 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4120         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4122         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4123         
4124         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4125         booleans with sbytes.
4127 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4129         * class.c (can_access_instantiation): Verify accesibility of element types
4130         for arrays and pointers.
4132         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4134         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4136         Fixes #493068.
4138 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4140         * verify.c (do_invoke_method): Improve error messages.
4142 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4144         * verify.c:  Fixing the MSVC build.
4146         Code is contributed under MIT/X11 license.
4148 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4150         * security-core-clr.c: Simplify get_reflection_caller not to call
4151         mono_method_get_last_managed (another stack walk) and adjust the
4152         callers to handle a (should not happen) NULL return value.
4154 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4156         Add accessors to some MonoGenericParam fields
4157         * class-internals.h (mono_generic_param_owner): New accessor.
4158         (mono_generic_param_num): Likewise.
4159         (mono_type_get_generic_param_owner): New helper.
4160         (mono_type_get_generic_param_num): New helper.
4161         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4163 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4165         * class-internals.h (mono_generic_container_get_param): New wrapper.
4166         * class.c, icall.c, metadata.c, verify.c: Use it.
4168 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4170         Fix gtest-252.cs
4171         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4172         the standard case/loop.  In particular, don't complain about
4173         references to generic type definitions.
4175 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4177         * debug-helpers.c (dis_one): Decode string arguments.
4179 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4181         * pedump.c (dump_verify_info): Dump type name correctly.
4183 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4185         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4186         are larger than code size.
4188         This can happen in valid code if the try/catch block is not followed by any instruction
4189         and do a backward branch on the leave instruction.
4191         Fixes #492494.
4193 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4195         * security-core-clr.c: Fix typo while comparing second method names
4196         in can_avoid_corlib_reflection_delegate_optimization
4198 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4200         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4202         Fixes #487738.
4204 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4206         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4207         a MVAR using a class context.
4209         Fixes #490335.
4211 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4213         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4215         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4217         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4218         functions supplied by the JIT for the SGEN GC.
4220         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4221         
4222 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4224         monitor.c (mono_monitor_try_enter_internal):
4225         Added calls to profile monitor contentions.
4226         Also duplicated a small piece of code (the "get the monitor" logic)
4227         from the fast path to the slow path, and changed the relevant goto
4228         statements, so that monitor acquisition events can be emitted from the
4229         slow path (this is by Paolo Molaro).
4231 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4233         * profiler.c, profiler.h, profiler-private.h:
4234         Added support for profiling monitor contentions.
4236 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4238         * metadata-verify.c: Verify the modules table.
4240 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4242         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4243         using the context of the method been verifier and not of the method been called.
4245         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4246         safely inflate generic types. 
4248 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4250         * security-core-clr.c: Change the strategy for checking the 
4251         "reflection using delegates optimization" to avoid unneeded 
4252         attributes in multiple class libraries.
4254 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4256         * sgen-gc.c: Remove object element in the disappearing link struct
4257         by storing the object pointer in the link.
4259 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4261         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4263 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4265         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4267         * verify.c (mono_method_verify): Do proper bounds checking of exception
4268         clause ranges.
4270 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4272         * loader.c (mono_field_from_token): Don't crash if the field parent could
4273         not be decoded.
4275 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4277         * sgen-gc.c: Execute critical finalizers after ordinary
4278         finalizers.
4280         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4281         mono_defaults.
4283 2009-03-31 Jb Evain <jbevain@novell.com>
4285         * verify.c (do_ldstr): don't check if a string is in the user strings
4286         heap if the current image is dynamic.
4288 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4290         * sgen-gc.c: Wait until the last finalizer has executed when
4291         returning from WaitForPendingFinalizers.
4293 2009-03-31  Martin Baulig  <martin@ximian.com>
4295         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4296         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4297         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4298         (mono_debugger_event_create_appdomain): New function.
4299         (mono_debugger_event_unload_appdomain): New function.
4301         * appdomain.c (mono_domain_create_appdomain_internal): Call
4302         mono_debugger_event_create_appdomain().
4304 2009-03-31  Martin Baulig  <martin@ximian.com>
4306         * mono-debug-debugger.c
4307         (mono_debugger_register_class_init_callback): Also register the
4308         class init callback if the class is already initialized to make
4309         things work with shadow copied assemblies.
4311 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4313         * security-core-clr.c
4314         (mono_security_core_clr_ensure_reflection_access_field): Let 
4315         critical code access the field (just like we do for methods). Use
4316         check_field_access helper.
4317         (mono_security_core_clr_ensure_reflection_access_method): Use 
4318         check_field_access helper.
4320 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4322         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4323         call the run-finalize function directly.
4325         * gc.c, gc-internal.h: Make run_finalize() non-static.
4327 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4329         * sgen-gc.c: Use a separate struct for disappearing links.
4331 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4333         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4334         * MaxIOVectorLength enabled, just ignore them.
4335         Fixes bug #349688.
4337 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4339         * metadata-verify.c: Fix eglib build.
4341 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4343         * threads-types.h: Fix the win32 build.
4345 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4347         * class.c: move coreclr inheritance/override checks to 
4348         security-core.clr.c
4349         * security-core.clr.c|h: add code from class.c with additional
4350         documentation. Fix override check when the method is not critical.
4352 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4354         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4355         (match_class): Ditto.
4357 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4359         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4361         * metadata-verify.c: Implement table layout row size calculation. Verify
4362         the total size of the tables.
4364 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4366         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4368 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4370         * appdomain.c:
4371         * console-io.[ch]: added new mono_console_init() to make sure that
4372         file descriptors 0, 1 and 2 are opened.
4373         Bug #489019 fixed.
4375 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4377         * appdomain.h: Export a new callback type and a new function to
4378         set this callback. This allow a mono host to provide it's own
4379         definition for "platform code".
4380         * metadata-internals.h: Add a core_clr_platform_code flag on 
4381         _MonoImage to (cache and) know if it is representing platform 
4382         code.
4383         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4384         on platform code images.
4385         * security-core-clr.c|h 
4386         (mono_security_set_core_clr_platform_callback): Allow the host
4387         to provide it's own platform check definition.
4388         (mono_security_core_clr_determine_platform_image): Detect if an 
4389         image is platform code (using the specified callback).
4390         (mono_security_core_clr_is_platform_image): Return cached value 
4391         for platform code.
4393 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4395         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4396         which has different parameter types for the 'tid' argument in windows and
4397         the io-layer.
4399         * appdomain.c attach.c threads.c: Use the new helper.
4401 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4403         * metadata-verify.c: Verify valid table bits.
4405 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4407         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4409         * metadata-verify.c: Add initial table schema verification.
4411 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4413         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4414         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4415         #488383.
4417         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4419         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4421 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4423         * security-core-clr.c: Add/update documentation
4425 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4427         * marshal.c (emit_marshal_object): Generate code to throw an exception
4428         instead of throwing it. Fixes #488670.
4430 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4432         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4433         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4434         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4435         and add a call to mono_security_core_clr_ensure_delegate_creation
4436         to do the extra checks required by CoreCLR.
4437         * security-core-clr.c|h: Add function to check delegate creation,
4438         both in the binding and accessibility, under CoreCLR.
4440 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4442         * reflection.c (mono_reflection_create_dynamic_method): when 
4443         coreclr is enabled make sure that every resolved object are
4444         checked (e.g. field and method access).
4445         * security-core-clr.c|h: Add function to check objects resolved
4446         when a dynamic method is created.
4448 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4450         * metadata-verify.c: Cache directory rva translations.
4452         * metadata-verify.c: Add cli-header and streams verification.
4454 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4456         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4457         the wrong offset (8 instead of 6).
4459 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4461         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4462         methods, return the native function address itself. Fixes
4463         #487758.
4465 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4467         * console-io.c: some of the values for control characters might not be
4468         present.
4470 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
4472         * exception.c|h: Add helpers to create [Field|Method]AccessException
4473         * icall.c: Add required coreclr check calls for field reflection.
4474         Move the existing (method) check logic into security-core-clr.c
4475         * security-core-clr.c: Add functions to check if the access of a
4476         field or method is allowed when reflecting under coreclr. This is
4477         mostly done using a stack walk to find the "real" caller: i.e. the
4478         code that is calling the reflection
4480 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
4482         * gc-internal.h: Change location of gc_wrapper.h
4484 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
4486         * class.c: Simplification to coreclr checks for overrides that
4487         makes it easier to set breakpoints.
4489 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
4491         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
4492         mono_security_core_clr_method_level): Avoid potential 
4493         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
4494         user/application code) and make it easier to set breakpoints
4496 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4498         * metadata-verify.c: Reject cli header tables that mono don't handle.
4500 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4502         * pedump.c: Fix CLI header dumping.
4504 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
4506         * metadata-verify.c: More CLI header verification.
4508 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
4510         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
4512 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4514         * metadata-verify.c: Initial verification of the CLI header.
4516 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
4518         * metadata-verify.c (verify_resources_table): Fix verification of zero
4519         sized resource section and id entries count.
4521 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
4523         * icall.c: Handle user types in many Type icalls. Fixes #486303.
4525 2009-03-17  Jb Evain  <jbevain@novell.com>
4527         * profiler.c: call mono_gc_base_init from mono_profiler_load.
4529 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
4531         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
4532         (mono_gc_make_descr_for_array): Ditto.
4534 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4536         * verify.c (mono_verifier_is_class_full_trust): Add support for
4537         CoreCLR security mode where trusted assemblies are defined as
4538         "platform code".
4540 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4542         * metadata-verify.c: Add minimal PECOFF resource verification.
4544 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4546         * metadata-verify.c: Be less restrictive with some coff fields.
4548 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
4550         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4551         params as boxed values on stack. Fixes #485706.
4553 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4555         * console-io.c: the termios values may vary in different flavors of unix.
4557 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4559         * console-io.[ch]: return the entire set of control characters when
4560         initializing the terminal.
4561         * appdomain.c: bump corlib version.
4563 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4565         * mono-perfcounters.c: added support for in-process custom
4566         performance counters.
4568 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4570         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4572 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4574         * metadata-verify.c: Verify the data pointed by the import table. 
4576 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4578         * metadata-verify.c (load_data_directories): Store data
4579         directory contents.
4581         * metadata-verify.c: Verify the import table. 
4583 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4585         * metadata-verify.c: Verify data directories.
4587 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4589         * metadata-verify.c: Check section header flags.
4591 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4593         * appdomain.c: if the assembly name is a shadow-copied file, return
4594         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4595         in mono_make_shadow_copy.
4596         * icall.c: if the assembly name is a shadow-copied file, replace it
4597         with the original assembly path.
4599         Bug #484244 fixed. NUnit tests for corlib can be run without
4600         --noshadow now.
4602 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4604         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4605         entries when the table is reallocated.
4607         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4608         mono_gc_alloc_fixed () since it contains GC refs.
4610 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4612         * reflection.c (ensure_complete_type): New helper function to call
4613         type resolve handlers for unfinished dynamic types.
4614         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4616 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4618         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4619         #483247.
4621 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4623         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4625 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4627         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4628         between GCHandles of type WeakTrackResurrection and the objects they
4629         point to.
4631         * gc.c: Partly implement the sematics of GCHandles of type 
4632         WeakTrackResurrection: these handles should only be cleared after the
4633         finalizer of the object they are pointing to has ran.
4635 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4637         * icall.c: Partially revert r126631 because using the jump
4638         trampolines for generic shared methods makes it superfluous.
4640 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4642         * threads.c (handle_store): Create the 'threads' hash table with the proper
4643         MONO_HASH_VALUE_GC type.
4645 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4647         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4648         FIRST_GC_TRACKED.
4650         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4651         and LAST_GC_TRACKED as a GC root.
4653         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4655         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4656         the static data even if it consists of 1 reference.
4658         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4659         if there is a GC descriptor.
4661         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4662         instead of through the GC since they contain no object references.
4664 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4666         * generic-sharing.c (instantiate_other_info): Always return a jump
4667         trampoline for method code.
4669 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4671         * culture-info-tables.h: generated to include the en-tt culture.
4673 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4675         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4676         capture the thread context.
4678         * object.c (mono_async_result_new): Cache the invoke wrappers to
4679         ExecutionContext::Capture.
4681 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4683         * marshal.h: Add a prototype for what mono_compile_method returns
4684         for invoke wrappers.
4686         * gc.c: Use the new prototype declaration.
4688 2009-03-04  Geoff Norton  <gnorton@novell.com>
4690         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4691         * gc-internal.h:
4692         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4694 2009-03-04  Martin Baulig  <martin@ximian.com>
4696         * mono-debug.h
4697         (mono_debugger_runtime_invoke): Removed.
4699         * mono-debug-debugger.c
4700         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4702 2009-03-02  Martin Baulig  <martin@ximian.com>
4704         * mono-debug.h
4705         (mono_debugger_unhandled_exception): Removed.
4706         (mono_debugger_handle_exception): Removed.
4707         (mono_debugger_throw_exception): Removed.
4709         * mono-debug.c
4710         (mono_debug_debugger_version): Bump to 5.
4712         * mono-debug-debugger.c: Moved the exception handling code to
4713         ../mini/debug-mini.c
4715 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4717         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4718         finalize_objects_hash.
4720         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4721         
4722         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4723         field.
4725         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4726         cache.
4728         * image.c (mono_image_close): Free it.
4729         
4730         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4731         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4732         on the this argument.
4734         * gc.c (run_finalize): Optimize the calling of the finalizers.
4736 2009-03-03  Martin Baulig  <martin@ximian.com>
4738         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4739         of the `MonoGenericInst' changes.
4741 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4743         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4744         mono_array_class_get_cached to reduce locking contention. Extract
4745         a domain var.
4747         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4748         intermediary managed arrays. Use caching version of mono_array_new
4749         to allocate the result array.
4751         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4753         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4755         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4756         to reduce locking contention.
4758 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4759                 
4760         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4761         thunk builder code for the non-interface case.
4763 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4765         * object.c (get_generic_virtual_entries): New helper function to collect
4766         the virtual generic method instances which need to be added to an IMT
4767         thunk.
4768         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4769         Instead of creating a new IMT thunk, reset the vtable slot to the
4770         trampoline, the thunk will be created the next time the trampoline is called.
4771         (build_imt_slots): Add support for virtual generic methods in interfaces by
4772         adding to the IMT thunk all the methods registered using 
4773         mono_method_add_generic_virtual_invocation ().
4775         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4776         (struct _MonoIMTCheckItem): Ditto.
4778         * object.c (mono_method_add_generic_virtual_invocation): Take a
4779         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4780         the IMT thunk to include all items.
4781         
4782         * object.c (mono_class_create_runtime_vtable): Add a missing
4783         mono_loader_unlock ().
4785 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4787         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4789         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4791 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4793         * object-internals.h: Rename _MonoReflectionEvent to
4794         MonoReflectionMonoEvent so it reflects the right managed type.
4795         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4797         * icall.c:
4798         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4799         type.
4801 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4803         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4804         intermediary managed arrays. Use caching version of mono_array_new
4805         to allocate the result array.
4807 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4809         * reflection.c: Use cached version of mono_array_new alongside
4810         the mono_reflection_get_custom_attrs_by_type call path.
4812 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4814         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4815         intermediary managed arrays. Use caching version of mono_array_new
4816         to allocate the result array.
4818         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4820 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4822         * icall.c: Add small implementation of a growable stack bound array.
4824         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4826         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4827         intermediary managed arrays. Use caching version of mono_array_new
4828         to allocate the result array.
4830 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4832         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4833         helps Enum::CompareTo to be implemented without reboxing all enums
4834         to their underlying type.
4835 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4837         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4838         since it acquires a global lock leading to scalability problems.
4840         * profiler.c: Make the stat profiler work with multiple appdomains, this
4841         currently only works when no appdomains are unloaded.
4843 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4845         * appdomain.c: make the check to avoid copying when the assembly is
4846         already shadow copied actually work.
4848 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4850         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4852         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4853         changes to the managed side.
4855 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4857         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4858         classes + a separate lock for it, as it is used frequently at runtime, not
4859         just during metadata loading/JIT compilation.
4861         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4862         for szarrays.
4863         
4864         * object-internals.h (mono_class_from_name_cached): New macro to cache
4865         the results of the lookup locally without having to declare a static
4866         variable to hold it.
4867         (mono_class_get_field_from_name_cached): Ditto.
4868         (mono_array_class_get_cached): Ditto.
4870         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4871         the new macros.
4872         
4873         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4874         slower search in metadata.
4876         * pedump.c: Fix a warning.
4878 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4880         * reflection.c (encode_locals): Add checks for user types.
4881         (method_encode_clauses): Ditto.
4882         (method_encode_code): Ditto.
4883         (mono_image_create_token): Ditto.
4885         * object-internals.h: Change the type of more fields from MonoReflectionType*
4886         to MonoObject*.
4888 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4890         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4891         the a thread does not suspend within 100ms.
4893         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4894         in addition to StopRequested as well.
4896         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4898         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4899         search the method_hash before inserting a new entry, to avoid crashes when
4900         the same method is inserted multiple times, causing the old 
4901         MonoDebugMethodInfo structure to be freed by the value dtor function.
4903 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4905         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4906         SO_EXLUSIVEADDRUSE where available.
4908 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4910         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4911         runtime invoke wrappers, this time it is string ctor wrappers, which
4912         pass a dummy string as 'this' instead of their obj argument. Fixes
4913         #478473.
4915 2009-02-21  Jb Evain  <jbevain@novell.com>
4917         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4918         only get create_culture once.
4920 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4922         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4923         check before the locking.
4924         
4925         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4926         (mono_reflection_create_runtime_class): Ditto.
4927         (mono_reflection_sighelper_get_signature_local): Ditto.
4928         (mono_reflection_sighelper_get_signature_field): Ditto.
4930         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4931         is a System.MonoType object or similar.
4932         (monotype_cast): New helper function to cast a MonoObject to a 
4933         MonoReflectionType object.
4935         * object-internals.h: Change MonoReflectionType* members in structures to
4936         MonoObject* members to force the usage of the monotype_cast () function.
4938         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4939         structures/arrays. This causes us to assert instead of crashing when 
4940         instances of user defined subclasses of System.Type are encountered.
4942 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4944         * cil-coff.h:
4945         * icall-def.h:
4946         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4947         win32 resource loaded from a PE file.
4949         * image.c: fix mono_image_lookup_resource.
4951 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4953         * icall-def.h:
4954         * threads-types.h:
4955         * threads.c: added internal call for WaitHandle.SignalAndWait.
4957 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
4959         * cominterop.c : Adding cominterop_type_from_handle and 
4960           registering it as an icall.  Replacing all references
4961           to type_from_handle.
4963         Code is contributed under MIT/X11 license.
4965 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4967         * Makefile.am: Add lock-tracer.h and lock-trace.c.
4969         * appdomain.c: Call the tracer init function.
4971         * domain-internals.h: Enable the tracer for the domain locks.
4973         * image.c: Enable the tracer for image locks.
4975         * loader.c: Enable the trace for the loader lock.
4977         * lock-tracer.h:
4978         * lock-tracer.c: Initial implementation of the lock trace utility.
4979         The tracer requires a compile time define to be enabled and a env var
4980         to be enabled at runtime.
4982 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4984         * domain.c (mono_domain_code_foreach): Improve documentation.
4986 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4988         * appdomain.c:
4989         * generic-sharing.c:
4990         * object.c:
4991         * reflection.c:  Adjust locking order to the new semantics where the loader lock
4992         comes first.
4994 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4996         * domain.c: Add mono_domain_code_* functions that perform locking
4997         around the domain codeman.
4999         * domain-internals.h: Export those functions.
5001         * object.c: Use new functions instead of acquiring the domain lock.
5003 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5005         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5006         delegate. Fixes #477396.
5008 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5010         * reflection.c (create_custom_attr): Get rid of alloca.
5012 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5014         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5015           Adding exception handling for all CCW calls.
5017         Code is contributed under MIT/X11 license.
5019 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5021         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5023         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5024         native->managed marshalling code. Fixes #476247.
5026 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5028         * class.c (mono_class_get_vtable_entry): Move the addition of
5029         static rgctx invoke wrappers for vtable methods here, this simplifies
5030         a lot of code and causes fewer rgctx wrappers to be created.
5032         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5033         name of the statistics to begin with an uppercase.
5035 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5037         * reflection.c: Revert previous change as it breaks the build.
5038         
5039 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5041         * verify.c: Properly handle SZARRAY element type.
5043         Fixes #474271.
5045 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5047         * reflection.c (mono_image_create_method_token): Correctly encode
5048         MethodDef MemberRefParent token.
5050         Fixes #472845.
5052 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5054         * image.c (mono_image_close): Delete the critical section before
5055         freeing the memory holding it.
5057 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5059         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5060         Fixes #476257.
5062 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5064         * pedump.c (main): Call mono_marshal_init so pedump
5065         doesn't crash.
5067 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5069         * loader.c (method_from_memberref): Properly fix #474271 and
5070         don't break the runtime bad.
5072 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5074         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5075         (mono_domain_alloc0): Ditto.
5077 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5079         * loader.c (method_from_memberref): Don't abort if the array
5080         method is not found. A regular loader failure is more informative
5081         and correct.
5083         Fixes #474271.
5085 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5087         *loader.c: Guard MonoImage::method_cache/methodref_cache
5088         using the image lock instead of the loader lock.
5090         * metadata.h: Add comments about which fields are protected by
5091         the image lock.
5093 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5095         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5097         * generic-sharing.c (mono_method_construct_object_context): Remove the
5098         wrapper_type == NONE assert, it is not needed.
5100 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5102         * reflection.c (clear_cached_object): New helper function.
5103         (mono_method_clear_object): New function to clear the cached reflection
5104         objects for a dynamic method.
5106         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5107         Partly fixes # 463323.
5108         
5109 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5111         * class.c:
5112         * loader.c:
5113         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5115 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5117         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5118         take the image lock instead of the loader lock.
5120         * metadata-internals.h: Export new functions.
5122 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5124         * domain.c (app_config_parse): Remove another use of stat that is
5125         not necessary as g_file_get_contents already does the presence
5126         check. 
5128 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5130         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5132         * marshal.c: Move the bstr handling code to cominterop.c.
5134         * marshal.c: Remove some COM interop code missed previously.
5136 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5138         More Paolo patches from the Wii port:
5139         
5140         * security.c: Remove ves_icall_System_Environment_get_UserName
5141         from here.
5143         * icall.c: And put ves_icall_System_Environment_get_UserName
5144         here. 
5146         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5147         redundant call to stat that was only used to test for the file
5148         existence.   Patch from Paolo.
5150         * gc.c (run_finalize): If COM is disabled, do not link in
5151         mono_marshal_free_ccw.
5153         * generic-sharing.c: Use alloca.h here as well.
5155 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5157         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5159 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5161         * cominterop.c cominterop.h: New files.
5163         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5164         function/typedefs which are needed by cominterop.c global.
5166 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5168         * generic-sharing.c: Don't take the loader lock to guard image
5169         mempool allocs.
5171 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5173         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5174         called without the loader lock which is required to guard MonoImage:tokens.
5176 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5178         * class.c:
5179         * metadata.c:
5180         * method-builder.c:
5181         * marshal.c:
5182         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5184 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5186         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5187         Rework the code to use regular mono_image_alloc/0.
5189         * loader.c: Rework the code to use regular mono_image_alloc/0.
5191         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5193 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5195         * object-internals.h : Fixing a typo in the 
5196           MonoReflectionComVisibleAttribute struct.
5198         * marshal.c (cominterop_com_visible): Check the implemented 
5199           interfaces for ComImport.
5201         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5202           assume that bools should be treated as VARIANTBOOLs.
5204         * marshal.c (emit_marshal_boolean): Adding cases for 
5205           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5207         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5208           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5210         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5211           should be treated as VARIANTBOOLs.    
5213         Code is contributed under MIT/X11 license.
5215 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5217         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5218         allocation with the image lock.
5220 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5222         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5223         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5225         * object.c: Add mono_string_to_utf8_image.
5227         * object-internals.h: Export mono_string_to_utf8_image.
5229         * reflection.c: Rework all explicit references to the the image mempool to go thought
5230         the mono_image_alloc set of functions.
5232 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5234         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5235         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5236         and generics-sharing.c.
5238         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5239         as first argument. Note that this function remains broken as it doesn't perform locking around the
5240         mempool allocation.
5242         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5244         * image.c: Add g_slist_append_image.
5246         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5247         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5249         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5250         Fix all related code to do the same.
5252         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5254         * metadata-internals.h: Fix the signatures.
5256 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5258         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5259         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5260         and similar to work using MonoImage.
5262         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5263         MonoMemPool.
5265         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5267         * class.c (mono_metadata_signature_deep_dup): Same.
5269         * class.c (inflate_generic_type): Same.
5271         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5273         * metadata.c (mono_metadata_signature_dup_full): Same.
5275         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5276         mono_metadata_signature_dup_full.
5278         * metadata.c (mono_metadata_type_dup): Same.
5280         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5282         * reflection.c: Same.
5284         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5286         * metadata-internals.h: Fix the signatures.
5288         * class-internals.h: Same.
5290 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5292         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5293         and use mono_image_alloc set of functions instead. 
5295         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5296         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5297         of a MonoMemPool.
5299         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5301         * class.c (g_list_prepend_mempool): Removed.
5303         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5305         * image.c: Add g_list_prepend_image.
5307         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5309         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5312 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5314         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5315         mono_image_unlock.
5317         * image.c (mono_image_init): Init the lock field.
5319         * image.c (mono_image_init): Cleanup the lock field.
5321         * image.c: Add mono_image_(un)lock functions.
5323 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5325         * class.c, class-internals.h: mono_method_get_context_general()
5326         combines the functionality of mono_method_get_context() and
5327         mini_method_get_context().
5329         * generic-sharing.c, domain-internals.h:
5330         mono_method_construct_object_context() and
5331         mono_domain_lookup_shared_generic() moved from mini.
5333         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5334         method doesn't have the correct instantiation because it's shared
5335         generic code.  Fixes #473999.
5337 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5339         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5341         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5342         
5343 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5345         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5347         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5349         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5350         and recheck the cache for dups after it.
5352         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5354         Fixes one of the deadlocks found in #473150.
5356 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5358         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5359           For Win32, add additional break conditions for accept.
5361         Code is contributed under MIT/X11 license.
5363 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5365         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5366         lazily initialize the native wrapper cache.
5367         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5368         cache, since they are different from the normal wrappers.
5370         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5372         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5373         AOT compiled native wrappers.
5375 2009-02-09  Geoff Norton  <gnorton@novell.com>
5377         * appdomain.h:
5378         * security-core-clr.c: Allow enabling core-clr from the embedding
5379         API.
5381 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5383         * socket-io.c: when requesting all the local ips, if there are no
5384         interfaces up and running, MS returns 127.0.0.1.
5386 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5388         * mono-perfcounters-def.h: processor time is an inverse time.
5389         Fixes bug #468625.
5391 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5393         * socket-io.c: an empty host name returns the list of local IPs.
5394         Fixes bug #386637 part 1/2.
5396 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5398         * verify.c (mono_class_interface_implements_interface): Call
5399         mono_class_setup_interfaces ().
5400         (merge_stacks): Ditto.
5402 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5404         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5405         klass->interfaces.
5406         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5407         (mono_generic_class_get_class): Ditto.
5409 2009-02-06  U-QUACK\miguel  <miguel@quack>
5411         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5412         they live in security.c
5414         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5415         another bit from Paolo's code.
5417 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5419         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5420         methods which will be discarded by add_imt_builder_entry ().
5422         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5423         need to be boxed.
5425         * loader.c: Add a statistics for the size of the memberref signature cache.
5426         
5427         * loader.c (find_cached_memberref_sig): New helper function.
5428         (cache_memberref_sig): Ditto.
5430         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5431         they will be parsed again for every generic instantiation, leading to unbounded
5432         memory growth.
5434 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5436         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5437         parameters of generic methods.
5439         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5440         after the original method is copied to the inflated method.
5441         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5443         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5444         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5446         * class.c metadata.c: Update after the changes above.
5448 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5450         * metadata-verify.c: Simplified error handling and added
5451         section table validation.
5453 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5455         * class-internals.h (MonoClassExt): New structure containing rarely used
5456         fields of MonoClass.
5457         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5458         through a new 'ext' field.
5460         * class.c (mono_class_alloc_ext): New helper function to allocate 
5461         class->ext.
5463         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5465 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5467         * object.c (mono_object_get_virtual_method): Properly inflate
5468         generic methods.  Fixes #472692.
5470 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5472         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
5473         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
5474         for the parent type, the created type must be ready to be used on a generic
5475         instantiation.
5476         We fill this_arg/byval_arg if the parent is a generic instance to make sure
5477         we won't have duplicated entries in generic_inst_cache.
5479         Fixes #469553.
5481 2009-02-05  Miguel De Icaza  <miguel@novell.com>
5483         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
5484         replace with plain BSD per the comments on the bug MONO77637.
5486 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5488         * class.c (mono_class_get_generic_class): New accessor function.
5489         (mono_class_get_generic_container): Ditto.
5491         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
5492         fields, similar to the ones in MonoMethod.
5494         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
5495         (mono_class_create_from_typedef): Set klass->is_generic if needed.
5497         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
5498         
5499         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
5500         the same information as element_class->byval_arg.
5502         * class.c reflection.c: Remove references to class->byval_arg.
5504         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
5505         klass->enum_basetype directly.
5507         * verify.c metadata.c object.c icall.c reflection.c: Use 
5508         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
5509         directly.
5511 2009-02-04  Miguel de Icaza  <miguel@novell.com>
5513         * icall-def.h: Remove internal calls for sockets when
5514         DISABLE_SOCKET is defined, file system writing features when the
5515         OS only support reading and not writing data and Policy support if
5516         the Policy is disabled.
5517         
5518         * image.c (do_mono_image_open): Apply Paolo's patches for using
5519         mono_file_map_ APIs here.
5521         * assembly.c: Add support for platforms to avoid prefix
5522         auto-detection. 
5524 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
5526         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
5527         warning.
5529         * class.c (mono_class_inflate_generic_class): New helper function.
5531         * class.c: Use mono_class_inflate_generic_class in a few places. Add
5532         statistics for inflated methods/classes.
5534         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
5536         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
5537         the call is made from Delegate.CreateDelegate () for the invoke method of
5538         a delegate.
5540         * loader.c: Add a statistics for the memory occupied by inflated signatures.
5542         * metadata.c (mono_metadata_signature_size): New helper function.
5544         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
5545         generic instances.
5547         * metadata.c (inflated_method_in_image): Avoid calling 
5548         mono_method_signature () if the method does not already have a signature.
5550 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5552         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5553         valuetype is compatible with target type, check by inheritance as a
5554         VT is not really compatible with System.ValueType, for example.
5556         * verify.c (do_invoke_method): Improve error message.
5558         * verify.c (do_box_value): If boxing a nullable, use the type argument
5559         on stack instead.
5561         * verify.c (do_newobj): Improve error message.  
5563         Fixes #469549.
5565 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5567         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5569 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5571         * generic-sharing.c: Don't hold domain lock when calling
5572         instantiate_other_info().  Fixes #471958.
5574         * domain-internals.h, loader.c: Describe locking policy of domain
5575         lock vs loader lock.
5577 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5579         * verify.c (mono_delegate_signature_equal): Make it possible to check
5580         first-arg-bound delegates to static method.
5582         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5583         static methods with the first arg bound.
5585         Fixes #469529.
5587 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5589         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5590         errors.
5592         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5593         under strict mode. Any type, when boxed can be seen as a reference type.
5595         Fixes #469528.
5597 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5599         * object.h: The lower bound of an array is a signed integer value.
5600         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5601         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5603         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5604         calculate the upper bound.
5605         
5606         Fixes #471252.
5608 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5610         From Paolo's work, refactored, cleared up:
5611         
5612         * threadpool.c, icall.c: ifdef code that requires a working socket
5613         stack.
5615         * metadata.c (mono_metadata_field_info): Do not attempt to return
5616         a value from a function declared as void.
5618         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5619         from the console stack.
5621         * assembly.c: use strrchr instead of rindex.
5623         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5624         alloca.h on systems that have it.
5626         * environment.c: Avoid code that uses stuff from
5627         HAVE_SYS_UTSNAME_H
5628         
5629         * appdomain.c: Include sys/time.h.
5631         * console-io.c: include sys/ioctl.h if it is available.
5633 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5635         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5637         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5638         the method builder.
5640         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5641         after it was created and cached, as the later is not thread safe.
5642         
5643 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5645         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5646         called while the debugging module is not initialized. Fixes #471669.
5648 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5650         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5652         Fixes #471255.
5654 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5656         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5657         loader lock is not taken while the templates lock is held.  Fixes
5658         #471089.
5660 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5662         * metadata.c (type_in_image): Added a check to fix a monodis
5663         crash.
5665 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5667         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5668         nullable arguments.
5670         * object.c (mono_runtime_invoke_array): Ditto.
5671         
5672         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5673         freeing wrappers of dynamic methods.
5675         * loader.c (mono_free_method): Call it. Fixes #463323.
5676         
5677         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5678         methods taking vtype/byref arguments, to fix yet another bug caused by
5679         the sharing of runtime invoke wrappers. Partly fixes #471259.
5681 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5683         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5684         <first file in file table>:1 when the IL offset does not have an associated
5685         line number.
5687 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5689         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5690         variable info for a method.
5692         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5693         
5694 2009-01-30  Jb Evain  <jbevain@novell.com>
5696         * pedump.c: reuse code from monodis to make sure pedump honors
5697         MONO_PATH, which is needed to verify net_2_1 assemblies.
5699 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5701         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5702         there is no line number info.
5704 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5706         Avoid some MonoType allocations
5707         * reflection.c (mono_reflection_initialize_generic_parameter):
5708         Reuse MonoType from param->pklass rather than allocating one.
5709         (mono_dynamic_image_free): Update to changes.
5711 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5713         Rearrange some code to improve consistency
5714         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5715         (mono_reflection_initialize_generic_parameter): ... here.
5717 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5719         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5720         with type constraints as an experiment.
5722         * boehm-gc.c (on_gc_notification): Update mono_stats.
5724 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5726         Avoid some allocations
5727         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5728         pointer to tail array to avoid extra allocation.
5729         * metadata.c (free_generic_inst): Update to changes.
5730         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5731         on-stack struct.
5733 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5735         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5736         return TRUE if the two type objects are the same.
5738 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5740         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5741         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5742         klass->min_align, since klass->min_align contains the managed alignment,
5743         while the native alignment can be different, like for longs on x86.
5744         Fixes #469135.
5746         * class-internals.h (MonoMarshalType): Add a min_align field.
5748 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5750         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5751         the 1.0 format.
5753 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5755         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5756         some comments about the usage of the used_regs field.
5758         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5759         Fixes #469217.
5761 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5763         * appdomain.c: return NULL instead of throwing FileNotFoundException
5764         when LoadAssembly() fails.
5766 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5768         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5769         image if the owner is NULL.  Fixes the AOT failures.
5771 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5773         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5774         MonoGenericParam structure using memset so the image field is initialized
5775         as well.
5777 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5779         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5780         a plain store.
5782 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5784         * class.c (mono_class_setup_vtable_general): In the generic instance
5785         optimization, set method->slot for abstract virtual methods. Fixes part of
5786         #467834.
5788 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5790         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5791         which signals that the unloading has started but all appdomain services must
5792         remain operational.
5794         * appdomain.c (mono_domain_unload): The initial state for unloading now
5795         is unloading_start and we switch to unloading after the managed call to
5796         AppDomain::DomainUnload has finished.
5798         The new unloading state has to be created because managed code in the
5799         DomainUnload event can depend on things like the threadpool still working.
5800         The domain must remain fully functional while the event executes.
5802         This shown as an issue due to Process::WaitForExit, which waits for
5803         async reads of stdout and stderr to complete. Since those are processed
5804         in the threadpool the code deadlocks because the DomainUnload callback 
5805         waits for the async read finished event, which should have been set by a
5806         threadpool job but has been discarded due to the domain been in unload
5807         state.
5809 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5811         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5812         image must match.
5814 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5816         * reflection.c (resolve_object): For fields, inflate the class and
5817         then get the field in the inflated class.
5819 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5821         * object-internals.h (struct _MonoException): Added a comment
5822         explaining the new use of trace_ips.
5824 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5826         * generic-sharing.c (inflate_other_data): Inflate array methods
5827         correctly.
5829         * loader.c, class-internals.h: Rename search_in_array_class() to
5830         mono_method_search_in_array_class() and make it non-static.
5832 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5834         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5835         Hopefully fixes #458168.
5837 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5839         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5840         as it is performed elsewhere.
5842         Code is contributed under MIT/X11 license
5844 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5846         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5847         requests queued.
5848         * object.c (mono_raise_exception): Increment the exceptions total
5849         counter when an exception is thrown.
5850         * class-internals.h: Add a location for storing the total number of
5851         asp.net requests served.
5852         * mono-perfcounters.c: Implement update support for asp.net counters
5853         from the class libraries. Implement read support for asp.net counters
5854         and exceptions total counter.
5856 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5858         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5859         accessing klass->methods. Fixes #467385.
5861 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5863         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5864         for byval arguments without an [Out] attribute. Fixes #467212.
5866         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5867         Fix compilation under android.
5868         
5869         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5870         processed, scan them directly after they are copied, to achieve better locality
5871         and cache usage.
5873         * socket-io.c: Applied patch from Koushik Dutta
5874         (koush@koushikdutta.com). Disable IPV6 when running under android.
5876 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5878         * icall.c (ves_icall_InternalExecute): Add write barriers.
5880         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5881         the GC code.
5883         * sgen-gc.c: Implement write barriers in IL code.
5885 2009-01-17  Geoff Norton  <gnorton@novell.com>
5887         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5889 2009-01-17  Geoff Norton  <gnorton@novell.com>
5891         * image.c: When unloading the image->references table, there can be gaps
5892         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5893         when unloading an appdomain.
5895 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5897         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5898         speed up ptr-in-nursery checks.
5900         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5901         threads_lock () to prevent deadlocks.
5903         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5904         does not need to be scanned during minor collections, since writes to it
5905         must use write barriers.
5907 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5909         * metadata-verify.c: Add pe nt header verification.
5910         
5911 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5913         * gc.c: Fix a few warnings when using SGEN.
5915 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5917         * metadata-verify.c: Add pe optional header verification.
5919 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5921         * sgen-gc.c: Add support for user defined marker functions, used by
5922         MonoGHashTable to avoid registering a GC root for every hash node.
5924 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5926         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5927         non-pinned roots into separate hashes to avoid having to traverse them
5928         in functions which are only interested in one kind.
5930 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5932         * metadata-verify.c: Add pe header machine field verification.
5933         
5934 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5936         * metadata-verify.c: Add pe header size verification.
5938 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5940         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5941         using the GC, they don't contain references.
5943         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5945 2009-01-13  Geoff Norton  <gnorton@novell.com>
5947         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5948         AppDomains created on the native side can be cleaned up on the native side.
5950 2009-01-13  Geoff Norton  <gnorton@novell.com>
5952         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5953         as well as the managed api.
5955 2009-01-13  Geoff Norton  <gnorton@novell.com>
5957         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
5958         with a MonoAppDomain initialized against it.
5960 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5962         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
5963         
5964         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
5966         * marshal.c: Avoid setting the exception clauses after a method has been entered 
5967         into the wrapper caches. Fixes #465700.
5969         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
5970         method builder.
5971         (mono_mb_create_method): Set the clauses from the method builder.
5973 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5975         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
5976         Patch from Makoto Kishimoto.
5978 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5980         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
5981         encoding them as ROOT_DESC_COMPLEX.
5982         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
5984 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5986         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
5987         no longer point to the nursery.
5989         * sgen-gc.c: Add a few comments/FIXMEs.
5990         
5991         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
5993         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
5994         initialization of the various _method variables thread safe. Fixes
5995         #465377.
5997 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5999         * domain.c, domain-internals.h: Remove the shared_generics_hash
6000         and its lookup functions.
6002 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6004         * socket-io.c:  Fixing the MSVC build. 
6006         Code is contributed under MIT/X11 license.
6008 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6010         * metadata-verify.c: Add pe header watermark verification.
6012 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6014         * metadata-verify.c: Add lfanew verification.
6016 2009-01-12  Jb Evain  <jbevain@novell.com>
6018         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6019         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6021 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6023         * socket-io.c: Fix the build.
6025         * environment.c: Fix an #ifdef.
6027 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6029         * threadpool.c (async_invoke_thread): Handle the wait function returning
6030         WAIT_IO_COMPLETION as well.
6031         (async_invoke_io_thread): Ditto.
6033 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6035         * threads.c: Fixing the Windows build.
6037         Code is contributed under MIT/X11 license.
6039 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6041         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6042         interrupt a wait.
6043         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6044         the thread to wait again.
6046 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6048         * metadata-verify.c: Initial skeleton of the metadata verifier.
6050         * pedump.c: Add support for the metadata verifier.
6052         * verify-internal.h: Export the whole assembly metadata verifier function.
6054 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6056         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6058 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6060         * Makefile.am: Upgrade dtrace-prelink.sh location.
6062 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6064         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6065         well. Otherwise the shutdown deadlock that happens on unix will can happen
6066         as well.
6067         If the main thread code finishes too fast it's possible that the finalizer
6068         thread won't have executed yet, won't record itself as the finalizer thread
6069         and the shutdown sequence will wait on it forever.
6071 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6073         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6074         with MSVC.
6076 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6078         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6079         Robert Jordan for pointing this out.
6081 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6083         * icall.c
6084         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6085         ves_icall_System_IO_DriveInfo_GetDriveType.
6087 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6089         * icall.c: Wrap calls to mono_strtod in CriticalSection
6090         invocations when using eglib, to work around #464316.
6092 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6094         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6095         return value of GetCurrentDirectory to never access unitialized memory.
6097 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6099         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6100         return value of GetCurrentDirectory and expand the buffer if needed.
6102         Fixes #459094.
6104 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6106         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6107           Adding a call to mono_init_com_types.
6109         Code is contributed under MIT/X11 license.
6111 2009-01-07  Geoff Norton  <gnorton@novell.com>
6113         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6114         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6115         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6116         be the value of the ip buffer.
6118 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6120         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6121         interfaces_packed here.
6123         Fixes part of #463294.
6125 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6127         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6129         Fixes part of #463294.
6131 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6133         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6134         is a boxed complex as well.
6136         Fixes part of #463294.
6138 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6140         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6141         control if a methodspec should be created for the generic method definition from external assemblies.
6142         Caching of methodspec is done using the handleref hash table.
6144         Fixes #462592.
6146 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6148         * loader.c (find_method): When searching the interfaces of a class
6149         check the transitive closure of implemented interfaces.
6151         Fixes #463303.
6153 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6155         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6156         
6157 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6159         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6160         interfaces calculation to fill_valuetype_array_derived_types.
6162         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6163         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6164         for example.
6166         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6167         interfaces for valuetypes if needed.    
6169         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6170         for their basetype as well. Types are array expanded if rank is > 0.
6172         Fixes #400716.
6174 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6176         * socket-io.h : Changing the signature of
6177           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6178           the blocking state.
6180         * icall-def.h :  Changing the signature of
6181           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6183         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6184           For Windows only.  Avoid blocking when calling accept by
6185           querying for a connection via select.  The loop also queries
6186           the thread state every 1000 micro seconds for the thread
6187           stop state.  This will avoid the process hanging on shutdown
6188           when using a TcpChannel that is never connected to.
6190         Code is contributed under MIT/X11 license.
6192 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6194         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6196 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6198         * class.c (get_implicit_generic_array_interfaces): Extract common
6199         code to a helper function making it a lot easier on the eyes.
6201 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6203         * class.c (get_implicit_generic_array_interfaces): If the internal
6204         enumerator is an interface inflate System.Object instead of itself.
6206         Fixes #461261.
6208 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6210         * object.c (mono_runtime_invoke_array): Don't assert with
6211         byref nullable types.
6213         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6214         byref nullables we unbox the object and store it on the
6215         stack. 
6216         We can't use the boxed object since it is the T of Nullable<T>
6217         and the boxed representation of a nullable it's underlying type
6218         or null.
6219         We could cheat and create a boxed nullable and use the same
6220         machinery of other byref VTs but this feels like a hack and
6221         using the stack has the bonus of reducing heap pressure.
6223         Fixes #461941.
6225 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6227         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6228         return value.
6230         Fixes #461867.
6232 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6234         * icall-def.h : Adding an internal call definition for 
6235           System.Environment.internalBroadcastSettingChange.
6237         * icall.c : Adding a Windows only implementation to broadcast a 
6238           WM_SETTINGCHANGE when an environment variable has changed.
6240         Code is contributed under MIT/X11 license.
6242 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6244         * class.c, class-internals.h: Made
6245         mono_class_has_parent_and_ignore_generics() non-static.
6247 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6249         * image.c: deal with the mmap failing when loading an image.
6251 2008-12-17  Geoff Norton  <gnorton@novell.com>
6253         * threadpool.c: Ensure that the io_queue_lock is initialized
6254         in all circumstances, as we always attempt to cleanup against it.
6256 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6258         * icall.c (ves_icall_System_Environment_get_Platform): For
6259         compatibility reasons for existing client code we will keep
6260         returning 4 for a while.   
6262         For how long will depend on the documentation being updated, and
6263         for us to give client code a chance to be updated.
6265         This reverts the original decison on #433108 since we did not
6266         catch roughly 33 instances of the broken code in our own source
6267         code base, we did not catch failures on the buildbots, and QA did
6268         not bring this as a problem.
6270         Only today I found some customer's code breaking due to our own
6271         class libraries not being fully updated and tracked it down to
6272         this change.  I am reverting it because if we could not even get
6273         our story straight in our own code base, how can we hope that our
6274         end user code be fixed?
6276         As of this morning, our Wiki page that documents how to detect
6277         Unix had not been fixed.    
6279 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6281         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6283         * class.c (mono_class_get_fields): Handle loading errors.
6285 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6287         * 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.
6288         
6289 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6291         * mono-perfcounters.c: avoid warning.
6293 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6295         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6296         make sure all interfaces have MonoClass::interface_id set.
6298         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6299         method table is property set.
6301 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6303         * class.c: New function mono_class_setup_interface_id that setup
6304         MonoClass::interface_id if needed.
6306         * class-internals.h: Export new function.
6308 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6310         * class.c: Add code to sanity check the vtable after setup_vtable_general
6311         has done it's work.
6313 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6315         * icall.c: make Assembly.GetExecutingAssembly work properly when
6316         reflection is used to invoke the method.
6317         Bug #321781 fixed.
6319 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6321         * metadata/generic-sharing.c: Look for constraints in all type
6322         arguments, not just the first one.
6324 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6326         * appdomain.c: return the correct CodeBase for an Assembly instance
6327         that was loaded from the shadow-copy directories.
6328         Bug #458190 fixed.
6330 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6332         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6334         * sgen-gc.c (check_object): New debugging helper function.
6336         * object.c: Fix calls to mono_value_copy_array ().
6338 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6340         * class.c (mono_class_setup_fields): If working on an inflated class
6341         first check if the generic definition did init with success.
6343         Fixes #445361.
6345 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6347         pedump.c (main): Fix a warning.
6349 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6351         * object-internals.h : Adding a definition for 
6352           MonoReflectionComVisibleAttribute.
6354         * marshal.c (cominterop_com_visible) :  Method added to check the 
6355           ComVisible attribute of a class.
6357         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6358           cominterop_raise_hr_exception added to consolidate common code 
6359           to raise hr exceptions.
6361         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6362           if a managed class should support IDispatch.
6364         * marshal.c 
6365           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6366           Added additional checks for managed object when getting 
6367           an IDispatch interface.
6369         Code is contributed under MIT/X11 license.
6371 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6373         pedump.c (main): Handle mono_get_method () returning NULL. 
6375 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6377         * marshal.h: Fix a warning.
6379 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6381         * marshal.c : Adding cominterop_release_all_rcws to release all
6382           runtime callable wrappers held by the runtime.
6384         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6385           
6386         Code is contributed under MIT/X11 license.
6388 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6390         * metadata.c (mono_image_alloc_lock): New helper function.
6391         (mono_image_alloc0_lock): Ditto.
6393         * metadata.c: Use the alloc_lock () helper functions for allocating
6394         memory from the image mempool.
6396 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6398         * class.c (mono_class_from_generic_parameter): Document it's
6399         locking behavior. Fix double checked locking here, we stored in
6400         param->pklass a partially initialized MonoClass and no membar was used.
6402 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6404         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6405         (3) functions are present in the C library use them to do the
6406         job. If they are absent, make sure that the sum of int_part and
6407         dec_part is rounded before returning. This is necessary due to the
6408         division of dec_part by the power of 10 before the final addition
6409         is performed - if the result is not rounded in some cases it will
6410         yield invalid results.
6412 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6414         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6415         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6416         instruction instead of a pointer constant.
6418 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6420         * loader.c (mono_method_get_header): Do most of the work outside the
6421         loader lock, to avoid assembly load hook deadlocks.
6423         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6424         (mono_metadata_parse_type_full): Ditto.
6426 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6428         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6429         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6430         funtions. Finally, use a lock to produce well ordered output.
6432         The lock looks silly, as all calls to the corlib mempool should be guarded
6433         with the loader lock, but for some reason this fact doesn't help. 
6435         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6437 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6439         * socket-io.c: 64 bit big-endian fixes.
6441 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6443         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6444         targets that require strict compatibility between the types.
6446         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6447         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6448         Kill the strict argument and create a new one valuetype_must_be_boxed.
6450         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6451         state that all valuetypes must be boxed.
6453         Fixes #448560.
6455 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6457         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6458         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6460         Contributed under MIT/X11 license.
6462 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6464         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6465         the inflate_generic_type machinery should handle it.
6467         This avoids a crash when the field's flags is zero and it's type is
6468         a primitive.
6469         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6470         is zero and will return one of the cached built-in primitive types. Since
6471         those types live in read-only memory, the code that copies it crashes.  
6473 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6475         * object.c: Don't put function descriptors into generalized IMT
6476         thunks.
6478 2008-11-28  Mark Probst  <mark.probst@gmail.com>
6480         * class.c: Enable generic code sharing on PPC64.
6482 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6484         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
6485         from mini/mini.c.
6487         * generic-sharing.c: Allocate the method template slists from the
6488         image mempool so it doesn't leak.
6490 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
6492         * class.c (generic_array_methods): Release the linked list.
6494 2008-11-27  Mark Probst  <mark.probst@gmail.com>
6496         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
6497         invocation to g_utf16_to_utf8().
6499 2008-11-26  Mark Probst  <mark.probst@gmail.com>
6501         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
6502         arguments on big endian archs.
6504 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6506         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
6507         the type name (test added in corlib).
6509 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
6511         * pedump.c: initialize perf. counters. Fixes a segv.
6513 2008-11-25  Martin Baulig  <martin@ximian.com>
6515         * mono-debug-debugger.c
6516         (mono_debugger_runtime_invoke): Return the exception object if an
6517         exception was thrown.  Visual Studio displays the exception object
6518         in the locals window.
6520 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6522         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
6523         ftnptr.
6525 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6527         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
6528         MONO_TYPE_U are sizeof (gpointer), too.
6530 2008-11-24  Mark Probst  <mark.probst@gmail.com>
6532         * marshal.c (mono_type_native_stack_size): Fixed size and
6533         alignment for reference types.
6535 2008-11-23  Mark Probst  <mark.probst@gmail.com>
6537         * class.c (mono_class_generic_sharing_enabled): Disable generic
6538         code sharing for PPC64.
6540 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
6542         * icall.c (mono_method_get_equivalent_method): Make sure
6543         method->klass->methods is inited before looping over it.
6545 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6547         * object.c: when calling ExecuteAssembly in a newly created domain,
6548         the configuration file and application base are already set up.
6549         Bug #446353 take 2 fixed.
6551 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6553         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6554         Fixes #444715. Fix a warning.
6556 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6558         * appdomain.c: write the full path of the assembly to the .ini file
6559         created when "shadow-copying"
6560         Bug #446353 fixed.
6562 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6564         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6565         if signature==FALSE.
6567 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6569         * marshal.h : Fix the cygwin build.
6570            marshal.c:12442: undefined reference to `_IID_IMarshal'
6571           
6572         Code is contributed under MIT/X11 license.
6574 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6576         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6577           free threaded marshaler when QueryInterface is called on a COM callable
6578           wrapper requesting the IMarshal interface.
6579           
6580         Code is contributed under MIT/X11 license.
6582 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6584         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6586         * reflection.c (mono_type_get_object): Special case the very common
6587         void type.
6589         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6590         hold typeof(void).
6592 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6594         * process.h : Adding method declaration for
6595           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6596           
6597         * process.c : Adding implementation for
6598           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6599           
6600         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6601           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6603         Code is contributed under MIT/X11 license.
6605 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6607         * appdomain.c (unload_thread_main): Clean up threadpool by
6608         calling mono_thread_pool_remove_domain_jobs.
6610         * domain-internals.h (struct _MonoDomain): Add new fields to
6611         help coordinate the cleanup of the threadpool.
6613         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6614         that cleans up the threadpool of all jobs associated with an appdomain.
6615         It does that by cleaning up the queues and making sure all active
6616         threads are accounted.
6618         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6619         unloaded or in the process of. Take this is such way that there is
6620         no race condition between another thread starting the unload and the
6621         current thread acknowledging it.
6623         * threadpool.c (async_invoke_thread): Same.
6625         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6626         firing the new thread.
6628         * threadpool.c (start_tpthread): Same.
6630         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6632         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6634 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6636         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6637         Add support for DuplicateHandle.
6638         
6639         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6640         Add support for DuplicateHandle.
6641         
6642         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6643         Add support for DuplicateHandle.
6645         Code is contributed under MIT/X11 license.
6647 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6649         * class-internals.h: Make min_align into a whole byte.
6651         * class.c: Set min_align for SIMD types to 16.
6653 2008-11-05  Geoff Norton  <gnorton@novell.com>
6655         * attach.c: Default the attacher to enabled for all cases including
6656         embedded.
6658 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6660         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6661         change r117650.
6663 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6665         * monitor.c, monitor.h: New function for querying offsets of
6666         members of MonoThreadsSync.
6668 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6670         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6671         to speed up this function and to avoid the boundless memory growth caused by
6672         the signature_dup () calls.
6674 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6676         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6677         wrapper.
6679         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6680         by 1 bit.
6682         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6684 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6686         * appdomain.c:
6687         * domain-internals.h: made mono_set_private_bin_path_from_config()
6688         "internal".
6689         * object.c: call the above function after setting the configuration
6690         file path for the root domain.
6691         Fixes bug #314478.
6693 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6695         * assembly.c: when the assembly is loaded from an absolute path, end
6696         basedir with a directory separator.
6697         Bug #440781 fixed.
6699 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6701         * monitor.c (mono_monitor_get_fast_enter_method): If
6702         CompareExchange is not available, don't create the fastpath
6703         instead of asserting.  (The method is missing in the 1.1 profile.)
6705 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6707         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6709         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6710         Monitor.Exit IL fastpaths.
6712 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6714         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6716 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6718         * class.c (mono_class_create_from_typedef): Added Vector2l.
6720 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6722         * class.c (mono_class_create_from_typedef): Added Vector2d.
6724 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6726         * appdomain.c: translate \ into / for cache_path.
6727         * domain-internals.h: new mono_is_shadow_copy_enabled().
6728         * icall.c: (fill_reflection_assembly_name) do the same path
6729         manipulations that get_code_base does.
6730         (get_code_base) use mono_is_shadow_copy_enabled.
6732 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6734         * appdomain.c: shadow-copied assemblies go to CachePath +
6735         ApplicationName when both are set. DynamicBase has nothing to do with
6736         shadow copies.
6737         Bug #406877 fixed.
6739 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6741         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6742         STANDALONESIG table.
6744         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6745         standalone signatures.
6747         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6748         comparison code: instead of comparing the signatures using a custom
6749         equals function, transform them to a common signature and compare that. This
6750         works better with AOT.
6752 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6754         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6756         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6757         call for generic instances.
6758         (mono_class_setup_properties): Call setup_properties () before accessing
6759         gklass->properties.
6761         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6762         over the virtual methods of a class using metadata if possible, avoiding the
6763         creation of MonoMethod's for non-virtual methods.
6764         
6765         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6766         get_virtual_methods () to iterate over the virtual methods of classes.
6768 2008-10-25  Martin Baulig  <martin@ximian.com>
6770         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6772 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6774         * class.c (mono_class_create_from_typedef): Added Vector4i.
6776 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6778         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6779         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6780         special-casing applies to eliminate the call completely.
6782 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6784         * class.c (mono_class_create_from_typedef): Added Vector8s.
6786 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6788         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6790 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6792         * icall.c: get rid of annoying warning.
6794 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6796         * threadpool.c: in 1.x, if you change the background status of the
6797         threadpool thread, it's not reset.
6798         Remove unnecessary calls to SetState.
6800 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6802         * threadpool.c: asynchronously create a set of idle threads upon first
6803         use of the threadpool. SetMinThreads will now start the appropriate
6804         number of idle threads if they are not already running. The default is
6805         1 threadpool thread per CPU. Increased the maximum number of threads
6806         per CPU to 10.
6808 2008-10-22  Martin Baulig  <martin@ximian.com>
6810         Revert r116521 from Zoltan, it breaks the debugger:
6812         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6813         over the virtual methods of a class using metadata if possible, avoiding the
6814         creation of MonoMethod's for non-virtual methods.
6815         
6816         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6817         get_virtual_methods () to iterate over the virtual methods of classes.
6819 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6821         * threads.c: when creating a threadpool thread, set its state to
6822         'background'.
6823         * threadpool.c: reset the background state of a threadpool thread
6824         after finishing each work item
6825         Bug #437888 fixed.
6827 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6829         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6830         
6831         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6832         generic instances which works by inflating the methods in the container
6833         class's vtable.
6835         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6836         variant which doesn't make a copy if no inflation was done.
6837         (mono_class_setup_fields): Use it.
6839         * metadata.c (mono_metadata_get_shared_type): New helper function to
6840         return a shared instance of a given MonoType.
6842         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6843         a copy of most non-generic types.
6845 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6847         * threadpool.c: remove one more GetSystemInfo () call.
6849 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6851         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6852         use the code in mono-proclib.h to get processor information.
6854 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6856         * appdomain.c: fixed the logic that determines whether assemblies in a
6857         directory are "shadow-copied" or not. Bug #433483 fixed.
6859 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6861         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6862         warning.
6864 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6866         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6867         returning a vtype.
6869         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6870         reflection.c: Use mono_field_get_name () for accessing a field's name.
6872         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6873         class.c
6875         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6876         field.
6878         * loader.c (find_method_in_class): Reenable the metadata optimization by
6879         not using it for generic instances.
6881         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6882         data/def_type fields from MonoClassField into a separate structure.
6883         (struct MonoClassField): Remove data/def_type fields.
6884         (struct _MonoClass): Add a 'field_def_values' array to store the default
6885         values/RVA for fields.
6887         * class.c reflection.c: Update after the changes.
6888         
6889         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6890         for accessing field->data.
6892         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6894         * loader.c (find_method_in_class): Revert the last change for now as
6895         it breaks Mono.C5 unit tests.
6897         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6898         'field_generic_types' and 'field_objects' which contain the information
6899         previously stored in MonoInflatedField.
6900         (MonoInflatedField): Delete.
6901         (struct _MonoClassField): Delete 'generic_info' field.
6903         * reflection.c: Store the information which was previously in 
6904         field->generic_info in MonoDynamicGenericClass instead.
6906         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6907         MonoClassField changes.
6909 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6911         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6912         store the value inside the data array of the MonoMethodWrapper.
6913         This saves memory, is faster and fixes the lifetime issues (methods
6914         were never removed from the hash previously). May also fix bug#436996.
6916 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6918         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6919         generic instances, compute the type from the generic definition instead of
6920         looking in field->generic_info.
6922         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6923         for inflated fields, the only user was get_fieldref_token () which no
6924         longer needs it.
6926         * class.c (mono_class_init): Revert the last change as it seems to cause
6927         crashes.
6929         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6930         bytes on 64 bit platforms.
6932         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6933         
6934         * object.c (mono_class_create_runtime_vtable): Don't initalize
6935         field->data/field->def_type here, it is done lazily by 
6936         mono_class_get_field_default_value ().
6938         * icall.c (ves_icall_get_enum_info): Call 
6939         mono_class_get_field_default_value () instead of directly accessing
6940         field->data and field->def_type.
6942         * object.c (get_default_field_value): Ditto.
6944         * class.c (mono_field_get_data): Ditto.
6945         
6946         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6947         call for generic instances.
6949         * loader.c (find_method_in_class): If klass != from_class, then inflate
6950         the method with the context of from_class, since the caller assumes this.
6952 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6954         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6955         for accessing method->slot.
6957 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
6959         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
6961 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6963         * class.c (mono_method_get_vtable_index): Use
6964         mono_method_get_vtable_slot () for accessing method->slot.
6966         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
6967         accessing klass->methods.
6969         * class.c (mono_method_get_vtable_slot): New helper function.
6970         (mono_class_get_vtable_entry): Ditto.
6971         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
6972         accessing method->slot.
6974         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
6975         method to get_inflated_method ().
6977         * class.c (mono_class_get_inflated_method): New helper method to obtain
6978         a method of an inflated class without calling setup_methods ().
6979         (mono_class_get_cctor): Use get_inflated_method.
6981         * generic-sharing.c (mono_class_get_method_generic): Ditto.
6982         
6983         * marshal.c image.c: Lazily create all the marshal caches.
6985         * image.c (mono_image_init): Move initialization of runtime_invoke
6986         caches to marshal.c.
6988         * marshal.c (get_cache): New helper function to lazily initialize a 
6989         wrapper cache.
6990         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
6992         * debug-helpers.c (mono_method_full_name): Include generic arguments.
6994 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
6996         * loader.c: fixed check for interface type.
6998 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7000         * appdomain.c: check for NULL setup before it's referenced.
7003 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7005         * class.c: remove the unused old vtable setup code.
7007 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7009         * class.c: don't depend on interface order in
7010         setup_interface_offsets (bug #435777).
7011         * reflection.c: sort the InterfaceImpl table (patch from
7012         Jb Evain  <jbevain@novell.com>).
7014 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7016         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7017         the low level assemblies lock.
7019 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7021         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7022         object.c, reflection.c, socket-io.c, threads.c: introduced
7023         mono_framework_version () to return the major framewrok version,
7024         changed the code that was using more complex patterns to use it.
7025         Return the correct value for PlatformID for OSX.
7027 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7029         * icall-def.h, process.h, process.c: added an icall to get info about
7030         processes using mono-proclib.
7032 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7034         * mono-perfcounters.c: use the mono-proclib functions to
7035         access process information.
7037 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7039         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7040         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7041         reflection.c: remove rawbuffer usage: mmap support is more sanely
7042         provided by utils/mono-mmap.
7044 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7046         * gc.c: use posix semaphores when possible so that
7047         mono_gc_finalize_notify() is signal safe.
7049 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7051         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7052         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7053         be #ifdef-ed out, the linker will remove the rest.
7055         * marshal.c: Implement DISABLE_COM.
7057         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7059 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7061         * locales.c (string_invariant_compare_char): Optimization: do not
7062         call g_unichar_type unless we actually need the information.
7064 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7066         * object.c, class-internals.h: Also create remoting trampolines
7067         for generic methods.  Pass the domain to the remoting trampoline
7068         creation function, too.
7070 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7072         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7074 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7076         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7077         Vector4ui.
7079 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7081         * assembly.c:
7082         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7084 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7086         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7087         for the least possible amount of time (extending the fix in r113458).
7089 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7091         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7093 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7095         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7096         as possible simd intrinsic types.
7097         Optimized the test to check for the common prefix first.
7099 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7101         * class.c: back out part of a broken optimization committed on
7102         May 23th (bug #433908).
7104 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7106         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7107         Win32.  Should fix #432388 for most cases until we have the new
7108         profiler on Win32.
7110 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7112         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7113         instead of using inst->id so the hash is stable for AOT.
7115 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7117         * appdomain.c:
7118         * icall.c: create a .ini file for shadow-copied assemblies that
7119         contains the location of the original assembly. Use this to return the
7120         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7121         Also fix the number of '/' for windows when returning the CodeBase.
7122         Fixes bug #430920.
7124 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7126         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7128         Code is contributed under MIT/X11 license.
7130 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7132         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7133           if if the class vtable needs initialized.
7135         Code is contributed under MIT/X11 license.
7137 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7139         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7140           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7141           STRING->BSTR, and CLASS->INTERFACE.
7143         Code is contributed under MIT/X11 license.
7145 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7147         * sysmath.h: changed the declaration of the
7148         ves_icall_System_Math_Round2 icall by adding an extra
7149         away_from_zero parameter.
7151         * sysmath.c (ves_icall_System_Math_Round2): added support for
7152         away from zero rounding. The icall now takes an extra boolean
7153         parameter to signal that away from zero operation is requested.
7155 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7157         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7158         the delegate klass so it can work with full-aot.
7159         (mono_marshal_get_delegate_end_invoke): Ditto.
7160         (mono_marshal_get_delegate_invoke): Ditto.
7162 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7164         * gc.c, attach.h, attach.c: remove a bad pattern:
7165         add_finalizer_callback () is not implemented correctly, it can't
7166         without adding more overhead to the finalizer loop and it's not
7167         even needed, since we know exactly what we need to call, so there is
7168         no need to do so through an expensive function pointer.
7170 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7172         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7173         for the no-gc case.
7174         * attach.c (mono_attach_init): Remove the #ifdef.
7176 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7178         * attach.c (mono_attach_init): Don't use
7179         mono_gc_add_finalizer_thread_callback when compiling without GC.
7180         Fixes #432306.
7181         
7182         Code is contributed under MIT/X11 license.
7184 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7186         * class.c (mono_class_create_from_typedef): Remove the 
7187         #ifndef DISABLE_SIMD stuff.
7189 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7191         * class-internals.h (MonoClass): Added simd_type bit field.
7193         * class.c (mono_class_create_from_typedef): Check if type is a simd
7194         intrinsic.
7196 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7198         * object.c (mono_method_add_generic_virtual_invocation): Only add
7199         instantiations to the thunk whose count is at least as large as
7200         the threshold.
7202 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7204         * icall.c: changed the Type of the exception thrown when trying to
7205         invoke a constructor on an abstract class. Part of the fix for bug
7206         #324185.
7208 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7210         * class.c, class-internals.h (mono_method_get_vtable_index): New
7211         function which returns the index into the vtable and properly
7212         handles inflated virtual generic methods.
7214 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7216         * object.c, domain.c, object-internals.h, domain-internals.h:
7217         Generalize IMT thunk machinery to also handle thunks for virtual
7218         generic method invokes.  When a virtual generic method is invoked
7219         more than a number of times we insert it into the thunk so that it
7220         can be called without lookup in unmanaged code.
7222         * generic-sharing.c, class-internals.h: Fetching a
7223         MonoGenericInst* for a method from an (M)RGCTX.
7225 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7227         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7228         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7229         marshalling. Fixes #431304.
7231 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7233         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7234           handle when ref is specified without In or Out.
7236         Code is contributed under MIT/X11 license.
7238 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7240         * loader.c (mono_get_method_constrained): Don't expand method with
7241         the class's context, because it's already a method of that class.
7243 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7245         * attach.c : should be correct build fix.
7247 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7249         * attach.c: Fix the previous change.
7251 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7253         * attach.c : quick w32 build fix.
7255 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7257         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7258         crashes MonoDevelop: #430455.
7260 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7262         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7263         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7265         * domain.c: Remove initialization/cleanup of the removed fields.
7267 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7269         * class.c (mono_class_generic_sharing_enabled): Enable generic
7270         code sharing for PPC.
7272 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7274         * attach.c : Fixing the Windows builds.
7276         Code is contributed under MIT/X11 license.
7278 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7280         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7281         the default generic sharing mode to 'all'.
7283 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7285         * generic-sharing.c, class-internals.h: New function for checking
7286         whether a method needs a static RGCTX invoke wrapper.  A few
7287         funtions moved from mini/generic-sharing.c.
7289         * icall.c: New function used.
7291 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7293         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7294         Static RGCTX invoke wrapping applies to value type methods, too.
7296         * class.c (mono_class_setup_vtable_general): In generic-shared
7297         value types, wrap methods with a static RGCTX invoke wrapper.
7299 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7301         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7302         osx build.
7304 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7306         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7307         register a callback which is called when the finalizer thread is woken
7308         up.
7309         (finalizer_thread): Call the callback if it exists.
7311         * attach.h attach.c: New files, implementing the attach mechanism.
7313         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7314         
7315         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7316         by the previous change.
7318 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7320         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7321         loader.c, marshal.c, metadata-internals.h, metadata.c,
7322         method-builder.c, object.c, reflection.c: introduced specific functions
7323         to allocate from the domain and image mempools and cleaned up most of
7324         the code to use them (still missing a few in reflection.c).
7325         Keep the loader bytes counter updated.
7327 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7329         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7330         loader-related counters.
7332 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7334         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7335         added more MS-compatible counters.
7337 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7339         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7340         class->blittable. Fixes #428217.
7342 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7344         * reflection.c (mono_image_get_field_on_inst_token): Call 
7345         field_encode_signature () since that handles custom modifiers too.
7346         Fixes #424663.
7348 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7350         * reflection.c (add_custom_modifiers): New helper function to merge custom
7351         modifiers stored in objects to a MonoType.
7352         (fieldref_encode_signature): Encode custom modifiers.
7353         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7354         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7356 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7358         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7359         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7360         64-bit IL only images because imports are not resolved for IL only images.
7361         Special thanks to Bill Holmes for finding this bug and testing the patch.
7362         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7364         Contributed under MIT/X11 license.
7366 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7368         * mono-config.c (dllmap_start): Add support for the bits keyword
7369         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7371 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7373         * reflection.c (inflate_mono_method): When the class the method is
7374         to be inflated for is itself not inflated, just return the method.
7376 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7378         * mono-perfcounters.c: use more user friendly process instance names.
7380 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7382         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7383           handle "[in] ref" and "[in][out] ref" cases.
7385         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7386           to mono_mb_create_method.  This was causing problems calling native to
7387           managed passing Variants by value.
7389         Code is contributed under MIT/X11 license.
7391 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7393         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7394         before accessing the friend_assembly_names field.
7396         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7397         times.
7398         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7399         called lazily when it is needed.
7401         * metadata-internals.h (struct _MonoAssembly): Add 
7402         'friend_assembly_names_inited' flag.
7404 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7406         * mono-perfcounters-def.h: fix the types of a few counters.
7407         * mono-perfcounters.c: implemented the instance names getter
7408         and a few bugfixes.
7410 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7412         * culture-info-table.h : regenerated.
7414 2008-09-17  Robert Jordan  <robertj@gmx.net>
7416         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7417         context bound objects. Fixes #415577.
7419         Code is contributed under MIT/X11 license.
7421 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7423         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7424         implementation (bug #423582).
7426 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7428         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7429         is not set. Fixes #426309.
7431 2008-09-16  Jb Evain  <jbevain@novell.com>
7433         * class.c (mono_class_from_name): fix the exported type look up
7434         when the type is defined in a referenced assembly.
7436 2008-09-16  Jb Evain  <jbevain@novell.com>
7438         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7439         increment the next index counter on each iteration to make that work
7440         for more than one type forwarder. Unmanaged part to fix #422929.
7442 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7444         * object-internals.h: enum ComInterfaceType in
7445         MonoInterfaceTypeAttribute is guint32, not guint16.
7447 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7449         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7450         writing code.
7452 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7454         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7455         not gboolean.
7457 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7459         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7460         Endianness fixes for MonoSymbolFileOffsetTable.
7462 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7464         * process.c (complete_path) : Removing quotes from the 
7465           input path.  The glib file routines do not handle file paths
7466           that have quotes around them.
7468         Code is contributed under MIT/X11 license.
7470 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7472         * socket-io.h : Adding a comment to provide locations where 
7473           changes to MonoSocketAsyncResult need to be synced.
7475         Code is contributed under MIT/X11 license.
7477 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
7479         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
7480         parameters as well. Fixes #425001.
7482 2008-09-08  Miguel de Icaza  <miguel@novell.com>
7484         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
7485         windows build.
7487 2008-09-07  Miguel de Icaza  <miguel@novell.com>
7489         * console-io.c: Add support for tracking the window size if it
7490         changes.
7492         The setup is very simple: the TtySetup function will now return a
7493         pointer to a location in memory that tracks the current console
7494         size.  The managed code checks its current value every time its
7495         queried against the last value set, and updates accordingly.
7497         With this setup we can work with multiple consoles, and we do not
7498         require to poke into managed code from a signal handler.
7500         Additionally, the environment for COLUMNS and LINES is now handled
7501         in unmanaged code.
7503         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
7505 2008-09-07  Mark Probst  <mark.probst@gmail.com>
7507         * marshal.c (mono_type_native_stack_size): Treat
7508         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
7510 2008-09-04  Jb Evain  <jbevain@novell.com>
7512         * class.c (mono_class_is_assignable_from): fix assignability of nullables
7513         to nullables.
7515 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
7517         * verify.c (verify_type_compatibility_full): Revert change
7518         to allow converting a native int to unmanaged pointer be verifiable
7519         under non-strict mode.
7520         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
7522         * verify.c: Added some TODOs.
7524 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
7526         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
7527           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
7528           Changed to use GlobalAlloc for the memory returned on Windows platforms.
7530         Code is contributed under MIT/X11 license.
7532 2008-09-02  Jb Evain  <jbevain@novell.com>
7534         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
7536 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
7538         reflection.c (typebuilder_setup_fields): Handle classes with
7539         explicit size.
7541 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
7543         class.c (mono_class_setup_events): Add memory barrier due to
7544         double checked locking.
7545         
7546         class.c (mono_class_setup_properties): Same.
7548 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
7550         * class.c (mono_class_is_assignable_from): Fix the build.
7551         
7552         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7553         before accessing klass->interface_bitmap. Fixes #421744.
7555 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7557         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7558         the runtime into no-exec mode, useful when running the AOT compiler.
7560         * appdomain.c gc.c object.c: Avoid executing managed code when running
7561         in no-exec mode.
7562         
7563         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7565         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7566         special case when the mono_assembly_loaded () returns NULL because the 
7567         search hook is not installed.
7569 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7571         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7572         crashes in bstr marshalling on linux.
7574 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7576         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7577         with more than one parameter.
7579 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7581         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7582         start/stop flow control as well when turning off ICANON (allows
7583         C-s and C-q to be read by Console.ReadKey).
7585 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7587         * class.c (mono_class_init): Move the initialization of nested classes
7588         into mono_class_get_nested_types (). Fixes #418433.
7590         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7591         flag.
7593         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7594         iterating tough the nested classes of a class.
7596 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7598         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7599         on arm.
7601 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7603         * console-io.c (sigcont_handler): Support signal chaining for
7604         SIGCONT.
7606         (console_set_signal_handlers): Use best practices with sigaction,
7607         clear the structure before using it. 
7609 2008-08-22  Robert Jordan  <robertj@gmx.net>
7611         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7612         Fix the Windows build.
7614 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7616         * class.c (mono_class_generic_sharing_enabled): Make the default
7617         sharing mode 'corlib'.
7619 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7621         * console-io.c (console_set_signal_handlers): Fix a warning.
7623         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7624         method normally, the JIT will take care of avoiding recursion.
7626 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7628         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7630         Code is contributed under MIT/X11 license.
7632 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7634         * console-io.c (sigcont_handler): We need to restore the entire
7635         termios state, not only the original settings, as things like echo
7636         can be controlled after this (Booish exposes this issue with its
7637         own ReadLine implementation).
7639         Additionally, we need to set the terminal back into keypad_xmit
7640         mode.
7641         
7642         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7643         string as a paramter as well.   Otherwise we get different
7644         keyboard sequences.
7646 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7648         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7649         delegates with byref out parameter passing. Fixes #351520.
7651         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7652         a generic context.
7653         (mono_type_get_desc): Add the type arguments for GENERICINST.
7654         (mono_method_full_name): Stringify the class name using mono_type_full_name
7655         so it picks up generic arguments.
7657 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7659         * console-io.c: Removed debug output.
7661 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7663         reflection.c (mono_reflection_create_runtime_class): Alloc
7664         the nested classes linked list using the dynamic image mempool.
7665         Fixes leak in corlib compilation.
7667 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7669         * console-io.c: Fix incredibly annoying behavior on the console
7670         after resuming execution after control-z.   This affected every
7671         console application.
7673 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7675         * mempool-internals.h: Header for mono private mempool functions. The first
7676         two function are for allocating glib linked lists using pools.
7678         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7680         * Makefile.am: Added mempool-internals.h.
7682 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7684         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7685         (mono_domain_free): Ditto.
7687         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7688         be used by the JIT to store its domain-specific information, instead of putting
7689         it directly into MonoDomain.
7691         * domain.c (mono_install_create_domain_hook): New helper function to install
7692         a hook which initializes domain->runtime_info.
7694         * domain.c (mono_install_free_domain_hook): Ditto.
7695         
7696 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7698         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7699         asserting if the ares parameter is null.
7701         * mono-perfcounters.c: Fix warnings.
7703         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7704         is not needed, don't check for interruptions either.
7705         (mono_marshal_get_delegate_end_invoke): Ditto.
7707 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7709         * mono-perfcounters.c (predef_readonly_counter): added support for
7710         reading the ASP.NET Requests Queued counter from another process.
7712 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7714         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7715         MonoImage to simplify the AOT code.
7717 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7719         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7720         marshalling. Fixes #416078.
7722 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7723         
7724         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7725         it is set, looking up the icall address is deferred to the JIT, since 
7726         in embedded scenarios, the icall might not be registered in the runtime
7727         doing the AOT compilation. Backported from the 2.0 branch.
7729 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7731         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7732         Fixes #415621.
7734 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7736         * Makefile.am: added support for cross-compilation.
7738 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7740         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7742 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7744         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7746 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7748         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7749         mono-perfcounters.c: performance counters implementation.
7751 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7753         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7754         to gpointer, letting the AOT code decide what to store in it.
7756 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7758         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7759           mono_class_setup_methods if the methods are not initialized.
7761         Code is contributed under MIT/X11 license.
7763 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7765         * verify.c: Remove some debug code I commited by accident.
7767         * verify.c (mono_method_is_valid_in_context): Change the return value
7768         to make possible to distinguish between invalid and unverifiable.
7770         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7771         methods.
7773 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7775         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7776         constraints. Fixes regression in gtest-253.
7778 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7780         * verify.c (mono_verifier_verify_class): Don't allow generic types
7781         with explicit layout.
7783         * verify.c (mono_method_verify): Check locals and argument types.
7785 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7787         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7788         wait if the thread is in StopRequested state.
7790         * class.c (mono_class_from_name): Refactor the module searching code into
7791         a separate function so it can be reused in the AOT case too.
7793 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7795         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7796         Check both the type and it's generic type definition for loader errors.
7797         
7798         * verify.c (mono_method_is_valid_in_context): Don't generate another
7799         error when a type errors occur, this leads to the wrong exception been
7800         thrown.
7802 2008-07-28  Dick Porter  <dick@ximian.com>
7804         * icall-def.h
7805         * process.c
7806         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7807         New internal calls to duplicate and close a process handle.
7809 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7811         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7813 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7815         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7817 2008-07-27  Robert Jordan  <robertj@gmx.net>
7819         * class.c (mono_class_init): Don't compute class.has_finalize for
7820         valuetypes. Fixes #412477.
7822 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7824         * verify.c: Implement constraint equivalence checking.
7825         This is required when a generic parameter is used as
7826         argument to a constrained one.
7828         Fixes #410637.
7830 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7832         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7834         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7836         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7837         synch with managed object layout.
7839 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7841         * verify.c (do_branch_op): Handle valuetypes and generic
7842         arguments properly.
7844         * verify.c (do_cmp_op): Same.
7846         Fixes #410383.
7848 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7850         * generic-sharing.c: Fix memory leaks.
7852         * class.c, class-internals.h: Make
7853         mono_class_inflate_generic_type_with_mempool() non-static.
7855 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7857         * pedump.c (dump_verify_info): Dump full class name.
7859 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7861         * generic-sharing.c: Removed some old code that didn't do anything.
7863 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7864         * profiler.c: Added runtime_initialized_event,
7865         mono_profiler_install_runtime_initialized and
7866         mono_profiler_runtime_initialized. This new hook tells the profiler
7867         when the runtime is sufficiently initialized to be able to call
7868         mono_thread_attach on the root appdomain.
7869         * profiler.h, profiler-private.h: Likewise.
7871 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7873         * verify.c (do_cast): Do boxing for generic arguments as well.
7875         * class.c (is_nesting_type): Drop generic instantiations before
7876         checking for nesting.
7878         * class.c (can_access_instantiation): Allow access to generic
7879         arguments.
7881 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7883         * verify.c (verify_class_for_overlapping_reference_fields):
7884         On some cases, the field size might be zero, guard against that.
7885         Fix the explicit layout check to work as expected.
7887 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7889         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7890         mono_thread_resume () during shutdown, since the thread we want to abort
7891         might be suspended.
7893 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7895         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7896         warning.
7898         * debug-mono-symfile.c: Fix a warning.
7900         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7902         * object.c (mono_class_vtable): Check if exception_type is set, and return
7903         NULL as defined by the function comments.
7905 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7907         * mempool.c: Use malloc for every single mempool allocation if the
7908         configure option is set.  This makes it easier to track mempool
7909         allocations with tools like Valgrind.
7911 2008-07-22  Jb Evain  <jbevain@novell.com>
7913         * reflection.c (create_dynamic_mono_image): emit the same
7914         metadata version that SL2 does when creating a SL2 image.
7916 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7918         * icall-def.h:
7919         * icall.c: New icall System.Enum:get_hashcode. This function
7920         avoids the overhead of boxing the enum to the underlying type.
7922 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7924         * reflection.c (mono_method_get_object): Don't let static RGCTX
7925         invoke wrappers get into MonoReflectionMethods.
7927 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7929         * object-internals.h:
7930         * object.c: New mono_runtime_class_init_full function
7931         that makes throwing the exception optinal.
7933         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7934         for the case where the exception object is supplied.
7936 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7938         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7939         old ld versions.
7941         Contributed under MIT/X11 license.
7943 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7945         * string-icalls.c (ves_icall_System_String_InternalSplit):
7946         Optimize array allocation by caching the MonoClass of the
7947         array type.
7949         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7951         * reflection.c (mono_param_get_objects): Same.
7953 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7955         * icall-def.h:
7956         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
7957         It inflates the given type using the class context.
7959 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
7961         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
7962         the vtable if it already exists.
7964         * object-internals.h: Add mono_class_try_get_vtable as part of the
7965         internal API.
7967         * reflection.c (mono_type_get_object): Use the MonoObject from the
7968         vtable when possible. Reduces locking contention on reflection heavy
7969         code.
7971 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
7973         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
7974         g_bit_nth_msf () since that macro is not implemented in eglib.
7976 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
7978         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
7979         on platforms which do not support it.
7981 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7983         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
7985 2008-07-11  Martin Baulig  <martin@ximian.com>
7987         * mono-debug-debugger.h
7988         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
7990         * mono-debug-debugger.c
7991         (_mono_debugger_interruption_request): New global volatile variable.
7992         (mono_debugger_check_interruption): New public function.
7994         * threads.c
7995         (mono_thread_current_check_pending_interrupt): Call
7996         mono_debugger_check_interruption().
7997         (mono_thread_interruption_checkpoint_request): Likewise.
7999 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8001         * verify.c: Add more type checks for loaded types. Verify the result
8002         handle from ldtoken.
8004 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8006         * loader.c (field_from_memberref): Don't crash if the field
8007         wasn't found.
8009 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8011         * verify.c: Verify if type and method instantiations
8012         don't have invalid VAR or MVAR arguments.
8014 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8016         * verify.c: Fix double free of function pointer list.
8018 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8020         * object.c (mono_string_to_utf8): Comment the new code as it
8021         breaks under eglib.
8023 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8025         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8027 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8029         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8030           is not throw too many times.
8032         Code is contributed under MIT/X11 license.
8034 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8036         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8037         debugging is turned off.
8039 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8041         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8043 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8045         * class-internals.h, class.c: Added new generic sharing option:
8046         Share only stuff in System.Collections.Generic, which is now the
8047         default.
8049 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8051         * generic-sharing.c, class-internals.h: New function for getting a
8052         generic method in a generic class given the corresponding method
8053         for a different instantiation of the class.  Partly refactored
8054         from mini-trampolines.c.
8056         * class.c: Make sure generic methods have a class_inst if they are
8057         part of a generic class.
8059         * metadata.c (mono_type_stack_size_internal): Handle type
8060         variables.
8062 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8064         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8065         Signifies whether information on the this/vtable/mrgctx variable
8066         is available.
8068 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8070         * object.c, object-internals.h, icall.c: New function
8071         mono_delegate_ctor_with_method(), which does the same as
8072         mono_delegate_ctor(), but takes an explicit method argument
8073         instead of taking the method from the jit info.
8075         * marshal.c: When creating a delegate with an inflated method take
8076         the "this" argument as the target class for the castclass.
8078 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8080         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8081         mono_jit_info_table_find() to perform very badly in some cases.
8083 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8085         * icall.c (type_from_typename): Handle 'string'.
8087         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8088         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8090 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8092         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8094         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8095         number of available managed allocator types.
8097         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8098         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8100 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8102         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8103         which is a low level lock protecting just the 'jit_code_hash' hash table.
8105         * domain.c: Initialize+cleanup jit_code_hash_lock.
8106         
8107 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8109         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8110         after initialization.
8112         * coree.h: Make MonoFixupExe internal.
8114         Contributed under MIT/X11 license.
8116 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8118         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8119         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8120         as well.
8121         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8122         image being loaded is a CLI image and _CorValidateImage gets called.
8124         * coree.h: Add MonoLoadImage.
8126         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8127         instead of LoadLibrary.
8129         Contributed under MIT/X11 license.
8131 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8133         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8134         for any primitive type.
8136 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8138         * object.c (mono_array_new_specific): Optimize this and the other allocation
8139         functions a bit.
8140         
8141         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8142         domains too if mono_dont_free_domains is set.
8144         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8145         whenever to free appdomain data after it has been unloaded.
8147         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8148         
8149 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8151         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8152         (mono_method_get_equivalent_method): Fix a warning.
8154         * object.c (mono_message_init): Avoid looking up array types for each call.
8156 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8158         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8159         call.
8161         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8162         even more.
8164         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8165         each iteration.
8167         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8168         fields of an enum.
8170 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8172         * object.c (mono_value_box): Fix boxing of nullables.
8174 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8176         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8177         mono_module_handle that is defined by the linker; no initialization required.
8178         * coree.h: Remove mono_module_handle, add __ImageBase, update
8179         mono_image_open_from_module_handle.
8180         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8181         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8182         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8183         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8184         to 4 GB away from image base address. IA64 version is not tested but was very
8185         easy to implement and should work if we ever need it.
8186         * domain.c (mono_init_internal): Avoid system error message boxes.
8187         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8188         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8189         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8190         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8191         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8193         Contributed under MIT/X11 license.
8195 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8197         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8198         as part of the private mono API.
8199         
8200         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8201         Do proper argument checking for methods that belong to generic classes.
8202         Do proper type resolution for GMFH/2.
8203         Fixes #377324.
8204         
8205 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8207         * verify.c (do_switch): Fix a memory corruption bug with
8208         the jump index is out of bound.
8210 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8212         * verify.c: Disable debug code.
8214 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8216         * reflection.c (mono_image_get_methodbuilder_token): Use
8217         mono_image_get_methodspec_token_for_generic_method_definition
8218         instead of mono_image_get_memberref_token. We cache more memberef
8219         entries now.
8221 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8223         * verify.c: Inflate exception clause types.
8224         Fixes #402606.
8225         
8226 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8228         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8229         name.
8231         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8233         * reflection.c (mono_image_create_method_token): Same.
8235 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8237         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8238         It does the same as mono_image_get_methodref_token but works on
8239         MethodBuilder.
8241         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8242         and always generate a methodspec. This follows the old behavior and fixes
8243         the regressions in System.Core. 
8245 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8247         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8248         don't event mono_class_get () succeeds. Fixes #402182.
8250 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8252         * metadata-internals.h: Added MonoDynamicImage::methodspec
8253         hashtable to store methodspec tokens created for MethodBuilders.
8255         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8256         MethodBuilders as open instantiations if a methodspec was requested.
8258         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8260         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8262         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8264         Fixes bug #349190.
8266 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8268         * loader.c (method_from_methodspec): Avoid crashing if the
8269         method lookup fails.
8271 2008-06-20  Dick Porter  <dick@ximian.com>
8273         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8274         classes being in a different assembly.  Fixes bug 399184.
8276 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8278         * loader.c (mono_loader_init): Make this callable multiple times.
8279         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8280         the runtime is initialized. Fixes #401755.
8282 2008-06-19  Dick Porter  <dick@ximian.com>
8284         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8285         Fixes bug 349688.
8287 2008-06-19  Dick Porter  <dick@ximian.com>
8289         * socket-io.c:
8290         * icall-def.h: Implement Socket generic Send() and Receive()
8291         methods.  Fixes bug 395168.
8293 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8295         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8297         Contributed under MIT/X11 license.
8299 2008-06-18  Martin Baulig  <martin@ximian.com>
8301         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8302         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8303         set to 80.0.  The debugger <-> runtime interface is now frozen as
8304         well.   
8306         * mono-debug.c
8307         (mono_debug_debugger_version): Bump to 4.
8309 2008-06-18  Martin Baulig  <martin@ximian.com>
8311         * debug-mono-symfile.c
8312         (load_symfile): Don't check the minor version.
8314         * debug-mono-symfile.h: Bump the version number to 50.0.
8316 2008-06-18  Martin Baulig  <martin@ximian.com>
8318         * debug-mono-symfile.c
8319         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8320         minimum required version.
8322 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8324         * reflection.c (mono_custom_attrs_from_property): Fix support for
8325         retriveving cattrs of dynamic inflated generic types.
8327         * reflection.c (mono_custom_attrs_from_event): Same.
8329         * reflection.c (mono_custom_attrs_from_field): Same;
8331         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8333         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8334         Moved to metadata.c.
8336         * metadata.c: New functions to retrive the equivalent field, event
8337         of property from the generic type definition.
8339         * metadata-internals.h: Added new functions from metadata.c.
8341 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8343         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8344         to cached in a mempool is used.
8346         * metadata.c (free_generic_class): In some situations field generic_info type
8347         is not properly dup'ed and leads to double free'ing.
8349         Fixes #400643.
8351 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8353         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8354         this arguments (will be needed later for generic methods).
8355         Collect stats.
8357 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8359         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8360         Create a static RGCTX invoke wrapper for methods which require it.
8362 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8364         * object.c, class-internals.h: New function for checking whether
8365         an individual field is special static.
8367 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8369         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8370         linear search since the table is sorted.
8372         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8373         Fixes #324180.
8375 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8377         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8378         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8380         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8382         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8383         
8384         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8385         InterlockedCompareExchange to query and modify 
8386         thread->interruption_requested.
8388         * object-internals.h (struct _MonoThread): Change interruption_requested
8389         to a gint32 so it can be modified by atomic operations. Add 
8390         'critical_region_level' from the managed side, change small_id to a guint32,
8391         add new set of 'unused' fields.
8393         * appdomain.c: Bump corlib version.
8395 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8397         * class.c (mono_class_from_name): Search modules as well. Fixes
8398         #322332.
8400 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8402         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8403         templates.  Templates are generalized with an additional type_argc
8404         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8405         have type_argc>0.
8407         * domain-internals.h, domain.c: New hash table for looking up
8408         MRGCTXs.
8410         * metadata.c, metadata-internals.h: Rename hash and equal
8411         functions for MonoGenericInst's and make them public.
8413         * class-internals.h: New data structures for the MRGCTX.  Macros
8414         for distinguishing slots in the RGCTX and the MRGCTX.
8416 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8418         * object.c (mono_method_get_imt_slot): Put the same methods of
8419         different instantiations of the same generic interface in the same
8420         IMT slots, to make generic sharing simpler.
8422 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8424         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8426         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8427         This function works just like mono_metadata_field_info, but
8428         accept a mempool as argument to be used allocating memory.
8430         * marshal.c (mono_marshal_load_type_info): Use new function
8431         to load marshal data into image mempool.
8433 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8435         * class.c (mono_class_inflate_generic_type_with_mempool):
8436         This function allows to inflate a generic type using
8437         a mempool.
8439         * class.c (inflate_generic_type): Take a mempool as argument
8440         and use it to do type dup'ing.
8442         * class.c (mono_class_setup_fields): Field type for generic
8443         generic classes are allocated from the image mempool.
8445         * metadata.c (free_generic_class): Inflated field type is
8446         now allocated in the image mempool.
8448 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8450         * threads.c (thread_cleanup): Free MonoThread::name.
8452 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8454         * appdomain.c (ensure_directory_exists): avoid unnecessary
8455         mkdir(2) calls when the shadow directory already exists.
8456         (mono_make_shadow_copy): copy also satellite assemblies from the
8457         private bin directories.
8459 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8461         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8462         
8463         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8464         a page boundary. Fixes #396219.
8466 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8468         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8469         due to double-checked locking.
8471 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8473         * assembly.c (build_assembly_name): Release memory on failure.
8475         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
8477 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8479         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
8480         memory on failure.
8482 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8484         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
8485         memory on failure.
8487 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8489         * loader.c (field_from_memberref): Check if field signature type is equal
8490         to the non-inflated type of the field. Fixes #398980.
8492 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8494         * assembly.c (mono_assembly_load_from_full): Call 
8495         mono_assembly_load_friends () outside the assemblies lock, since it can
8496         acquire the loader lock. Fixes #323696.
8498         * reflection.c (resolve_object): Inflate the inst with the context for
8499         FieldOnTypeBuilderInst. Fixes #399010.
8501 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8503         * reflection.c (mono_image_get_field_on_inst_token): Don't
8504         inflate the field to encode it's signature. If it's a
8505         VAR or MVAR it should stay that way in the signature.
8506         Fixes #399047.
8508 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8510         * reflection.c (resolve_object): Release memory of inflated types.
8512 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8514         * loader.c (mono_method_get_signature_full): Remove assert about
8515         loading a methodspec to a generic method. We have such methods, such as
8516         System.Threading.Interlocked::CompareExchange<T>.
8517         This assert was removed since it crashes the verifier when it checks
8518         methods calling CompareExchange<T>.
8520 2008-06-10  Marek Safar  <marek.safar@gmail.com>
8522         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
8523         of Type array and not MonoType.
8525 2008-06-10  Marek Habersack  <mhabersack@novell.com>
8527         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
8528         <lupus@ximian.com>
8530 2008-06-10  Martin Baulig  <martin@ximian.com>
8532         * debug-mono-symfile.h
8533         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
8534         changes to the file format, but we were generating incorrect
8535         source file indices in the line number table due to a bug, which
8536         made backtraces report an incorrect source file.
8538 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8540         * mono-debug.c: Moved mono_debug_free_method_jit_info from
8541         mini/debug-mini.c to here.
8543         * mono-debug.c (il_offset_from_address): Free memory from find_method.
8545         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
8546         use it to release structs returned by mono_debug_find_method.
8548 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
8550         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8551         since it needs to set method->slot for all interface methods.
8553 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8555         * class-internals.h: Forgot to add.
8557 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8559         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8561         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8562         Lookup the custom attributes from property_hash.
8564         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8565         in property_hash. Allocate all data using the image mempool.
8567         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8568         for dynamic_custom_attrs to checks if the image is dynamic.
8570 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8572         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8573         assemblies array.
8574         
8575         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8576         runtime functions while holding the domain assemblies lock.
8578 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8580         * verify.c: Reapplied the last bit of the reverted changes.
8582 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8584         * verify.c: Reapplied more of the reverted changes.
8586 2008-06-09  Martin Baulig  <martin@ximian.com>
8588         * debug-mono-symfile.c (load_symfile): Check the major version
8589         first; if it's wrong, don't print the minor version in the error message.
8591 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8593         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8594         lock instead of the domain lock to avoid deadlocks, since the thread might
8595         already hold the loader lock.
8597         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8598         (mono_thread_attach): Ditto.
8600         * monitor.c: Use a TLS variable for holding the current thread id instead
8601         of calling pthread_self ().
8602         (mono_monitor_init_tls): New internal function to initialize the TLS
8603         variable.
8604         (mono_monitor_try_enter_internal): Put the owner == id check after the
8605         owner == 0 check.
8607         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8608         missed optimizations when using gcc-4.3.
8610 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8612         * reflection.c (mono_dynamic_image_free): Free the memory
8613         used by MonoGenericParam in MonoDynamicImage::gen_param.
8615         * reflection.c (mono_reflection_setup_generic_class): Allocate
8616         container from mempool.
8618         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8619         container from mempool.
8621 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8623         * threads.c (mono_set_pending_exception): New internal function to set the
8624         pending exception of the current thread.
8625         (mono_thread_get_and_clear_pending_exception): Check for 
8626         thread->pending_exception as well.
8628         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8630         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8631         it can trigger a collection.
8633 2008-06-06  Martin Baulig  <martin@ximian.com>
8635         Merged the `debugger-kahalo' branch.
8637         * mono-debug.h
8638         (MONO_DEBUGGER_VERSION): Bumped to 72.
8640         * debug-mono-symfile.h
8641         (MonoSymbolFileMethodIndexEntry): Removed.
8642         (MonoSymbolFileMethodEntry): New public typedef.
8643         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8644         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8645         `data_offset'.
8646         (MonoSymbolFileMethodEntry): Removed.
8647         (MonoSymbolFileLexicalBlockEntry): Removed.
8648         (MonoSymbolFileLineNumberEntry): Removed.
8649         (MonoDebugLexicalBlockEntry): Removed.
8650         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8651         removed `num_il_offsets' and `il_offsets'.
8652         (MonoSymbolFile): Replace `version' with `major_version' and
8653         `minor_version'.
8654         (MONO_SYMBOL_FILE_VERSION): Replace with
8655         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8656         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8658         * debug-mono-symfile.c
8659         (mono_debug_symfile_lookup_location): Add support for the new line
8660         number table format.
8662 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8664         * metadata.c (free_generic_class): Release the inflated
8665         MonoClass of dynamic generic classes if it's not a generic
8666         type definition.
8668 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8670         * verify.c: Reapplied more of the reverted changes.
8672 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8674         * reflection.c (lookup_custom_attr): Clean the cached flag or
8675         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8676         for SRE types.
8678 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8680         * verify.c: Reapplied a small part of the reverted changes.
8682 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8684         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8686         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8687         previously in managed code.
8688         (mono_monitor_exit): Ditto.
8689         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8691         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8692         the managed definition.
8694 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8696         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8698 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8700         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8701         
8702         * monitor.c: Add some micro optimizations.
8704         * icall.c (type_from_typename): Handle 'bool'.
8706 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8708         * verify.c: Implement constructor verification per P III 1.8.1.4.
8709         Fixes #396716.
8711 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8713         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8714         holding the assemblies lock here too.
8716 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8718         * verify.c: Kill stack_top function.
8720 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8722         * verify.c: Kill stack_get function.
8724 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8726         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8728 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8730         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8731         more reliable.
8733         * verify.c (mono_method_verify): Inflate params and locals to avoid
8734         mismatch when checking for compatibility.
8736 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8738         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8739         Length prefix should be size in bytes. Fix bug #339530.
8740         
8741         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8742         Length prefix should be size in bytes. Fix bug #339530.
8744         Code is contributed under MIT/X11 license.
8746 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8748         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8750         Contributed under MIT/X11 license.
8752 2008-06-05  Martin Baulig  <martin@ximian.com>
8754         * mono-debug-debugger.c
8755         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8757 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8759         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8760         while holding the assemblies lock to prevent deadlocks. Handle the case
8761         where the search hook returns NULL but the assembly was still loaded.
8762         Fixes #323696.
8764         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8765         modify domain state.
8767 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8769         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8770         * Makefile.am (pedump_LDADD): Post-process object files and
8771         add dtrace-generated object file, if necessary.
8773         Code is contributed under MIT/X11 license.
8775 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8777         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8779 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8781         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8783 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8785         * threads.c: Try to free everything from the delayed free table
8786         when shutting down threads, and set the variable to NULL after the
8787         table is freed so that calling
8788         mono_thread_hazardous_try_free_all() when shutting down the root
8789         domain doesn't crash.
8791 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8793         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8794         the caller if resulting type was inflated.
8796         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8797         was inflated.
8799         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8802 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8804         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8805         class library tests.
8807         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8808         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8809         #396989.
8811 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8813         * domain.c, domain-internals.h: The JIT infos are now freed by the
8814         JIT info table code.  They are freed immediately if there only a
8815         single JIT info table in circulation.  If there is more, the free
8816         is delayed via a queue.
8818         * threads.c, threads-types.h: New hazard pointer function for
8819         freeing all freeable delayed items in one sitting.
8821 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8823         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8825         * reflection.c (typebuilder_setup_properties): Same.
8827         * reflection.c (typebuilder_setup_events): Same.
8829 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8831         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8832         and use it for allocating memory.
8834         * reflection.c (mono_marshal_spec_from_builder): Same.
8836         * reflection.c: Change code to use new signatures.
8838         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8840 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8842         * decimal.c (rescale128): Put back one line which was accidently commented
8843         out.
8844         
8845         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8846         to cause crashes.
8848 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8850         * reflection.c (mono_reflection_generic_class_initialize): Name must
8851         be always malloc'ed so we can free it later on. Do this for field, property
8852         and event.
8854         * metadata.c (free_generic_class): Free field, property and event names.
8856 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8858         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8859         instead of g_memdup.
8861         * reflection.c (typebuilder_setup_fields): Same.
8863 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8865         * decimal.c (rescale128): Optimize this function a bit more.
8867 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8869         * metadata.c (free_generic_class): Release some memory from
8870         SRE generic classes.
8872 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8874         * reflection.c (mono_image_get_generic_field_token): No reference
8875         to name is kept, free it.
8877         * reflection.c (mono_reflection_generic_class_initialize): Free
8878         more memory of the inflated field.
8880 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8882         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8883         code.
8885 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8887         * reflection.c (mono_dynamic_image_free): Release memory used by
8888         MonoDynamicImage::array_methods elements.
8890         * reflection.c (assembly_add_win32_resources): Release memory after
8891         encoding.
8893 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8895         * decimal.c (log2_32): Use an optimized version for this function too.
8896         
8897         * decimal.c (log2_64): Fix this on 32 bit machines.
8899 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8901         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8903         * class.c (mono_metadata_signature_deep_dup): Same.
8905         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8906         a mempool.
8908         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8910         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8912         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8914         * class-internals.h: Update signatures to take a MonoMemPool.
8916 2008-06-02  Dick Porter  <dick@ximian.com>
8918         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8919         * icall-def.h: Add
8920         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8921         FormatMessage API to get the error text.  Fixes bug 321827.
8923 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8925         * decimal.c: Add some micro optimizations to make decimal operations faster.
8927 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8929         * reflection.c (method_encode_clauses): Take a mempool
8930         as parameter and use it to allocate the clause array.
8932         * reflection.c (mono_image_get_field_on_inst_token): Free
8933         the inflated type after encoding it.
8935         * reflection.c (mono_dynamic_image_free): Free each element
8936         of MonoDynamicImage::gen_params.
8938         * reflection.c (reflection_methodbuilder_to_mono_method):
8939         Allocate the generic param array from the mempool.
8940         Allocate signature params from the mempool.
8942         * reflection.c (mono_reflection_generic_class_initialize):
8943         Free inflated fields after been used.
8945 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8947         * icall.c: Reapply the memory leak fixes as they no
8948         longer make mono crash.
8950 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8952         * reflection.c (mono_type_get_object): Don't store the suplied
8953         MonoType with type_hash. A caller which pass a type that
8954         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8955         might end with a pointer to freed memory.
8956         The solution is to use byval_arg or this_arg from the associated
8957         MonoClass of the supplied type.
8959 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
8961         * icall.c: Revert the rest of the last change as it breaks the build too.
8963 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8965         * icall.c: Revert a leak fix as it's breaking the build.
8967 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8969         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
8971 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8973         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
8975 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8977         * icall.c: Fix some memory leaks.
8979 2008-05-29  Dick Porter  <dick@ximian.com>
8981         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
8982         async socket operations from the pending list when a socket
8983         closes.  Leaving it until the threadpool services the event
8984         exposes a race condition when a socket descriptor is reused.
8985         Fixes bug 377589.
8987 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8989         * object.c: Fix negative index check for array alocation.
8991 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8993         * icall.c, marshal.c: Delegate wrappers should skip visibility.
8994         This check is performed by the verifier for IL created delegates
8995         and by Delegate::CreateDelegate for programatically created ones.
8996         Fixes #372406.
8998 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9000         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9001         Fix code to use mono_array_size_t instead of int.
9003         Based on patch by Luis F. Ortiz.
9004         Contributed under X11 license.
9005         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9007 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9009         * icall.c: Added ves_icall_System_Array_GetLongLength and
9010         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9011         arrays.
9013         * icall.h: Export both new functions.
9015         Based on patch by Luis F. Ortiz.
9016         Contributed under X11 license.
9017         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9019 2008-05-28  Martin Baulig  <martin@ximian.com>
9021         The debugger now requires exactly r103463.
9023         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9024         This version is not supported by the debugger, wait for 72.
9026 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9028         * object.h: Changed array related functions to use
9029         mono_array_size_t instead of guint32. Forgot to commit this file.
9031         Patch by Luis F. Ortiz.
9032         Contributed under X11 license.
9033         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9036 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9038         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9039         don't define it. Use the number literal instead.
9041 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9043         * icall.c: Changed array related functions to use
9044         mono_array_size_t instead of guint32.
9046         * icall.c (ves_icall_System_Array_GetLength): Check for length
9047         overflow under MONO_BIG_ARRAYS.
9049         Based on patch by Luis F. Ortiz.
9050         Contributed under X11 license.
9051         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9053 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9055         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9057         Based on patch by Luis F. Ortiz.
9058         Contributed under X11 license.
9059         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9061 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9063         * object.c, object.h: Changed array related functions to use
9064         mono_array_size_t instead of guint32.
9066         Patch by Luis F. Ortiz.
9067         Contributed under X11 license.
9068         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9070 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9072         * object.h: Introduced mono_array_size_t typedef. This must be used
9073         in all places an array length is expected. This is 64bits wide if
9074         MONO_BIG_ARRAYS is enabled.
9076         Patch by Luis F. Ortiz.
9077         Contributed under X11 license.
9078         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9080 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9082         * security-manager.c class.c: Set the class exception info by calling
9083         mono_class_set_failure ().
9085         * class.c (mono_class_get_exception_data): New accessor function.
9086         (mono_class_set_failure): Store exception_data in the property hash.
9088         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9089         the struct as a property.
9091         * loader.c (mono_get_method_full): Store the lookup result for method
9092         tokens in method_cache, the others in methodref_cache to decrease the memory
9093         usage of hash tables.
9095         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9096         (mono_image_init): method_cache is lazy inited now.
9098         * metadata-internals.h (struct _MonoImage): Change method_cache to
9099         a MonoValueHashTable, add a separate methodref_cache.
9101 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9103         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9104           Double.ToString as exposed by Bug #383531.
9106 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9108         * number-formatter.h: Make some tables static.
9110         * class.c (mono_method_set_generic_container): New accessor function.
9111         (mono_method_get_generic_container): Ditto.
9113         * class-internals.h (struct _MonoMethod): Remove rarely used 
9114         'generic_container' field, store it in the property hash instead. Add 
9115         'is_generic' boolean field instead.
9117         * image.c (mono_image_init): Initialize property_hash.
9118         (mono_image_close): Destroy property_hash.
9120         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9121         hold rarely used fields of runtime structures belonging to this image.
9123         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9124         to get/set method->generic_container.
9126         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9127         generic methods.
9129 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9131         * class.c (mono_class_inflate_generic_method_full): Don't increase
9132         mono_stats.inflated_method_count for methods found in the cache.
9134         * threads.c (mono_thread_request_interruption): Add a comment about 
9135         QueueUserAPC ().
9137 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9139         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9140         interface_offsets_packed table.
9141         
9142         * class.c (mono_class_init): Remove some dead code.
9144         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9145         mono_class_setup_vtable () when CAS is active to detect security problems.
9147 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9149         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9151         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9152         parameters as it's irrelevant for delegate checking.
9154 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9156         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9158         * class.c (mono_class_init): Control the creation of a generic vtable using
9159         a global which is true by default, but set to false by the runtime startup code.
9160         
9161         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9162         Disabled for now since it breaks the embedding API.
9163         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9164         (mono_class_setup_methods): Add a memory barrier.
9166         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9167         when mono_class_init () doesn't compute the generic vtable.
9168         
9169 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9170         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9171         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9172         to support call chains (backtrace) in the stat profiler.
9173         * profiler.c, profiler-private.h: Likewise.
9175 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9177         * generic-sharing.c: Init generic class when a method of it is
9178         requested via a runtime generic context.
9180 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9182         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9184         * reflection.c (mono_type_get_object): Add a FIXME.
9186         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9188         * class.c (mono_class_get_method_by_index): New helper function, returning an
9189         entry in the class->methods array.
9191 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9193         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9194         Avoid creating a generic vtable for generic instances as well.
9195         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9196         generic instances.
9198 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9200         * loader.c (mono_get_method_constrained): Inflate the signature
9201         with class context. Fix #325283.
9203 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9205         * object.c (mono_class_create_runtime_vtable): Add a comment.
9207         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9208         where needed.
9209         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9210         (mono_class_setup_vtable_general): Add an assert.
9211         (mono_class_init): Avoid creating a generic vtable for arrays.
9213         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9214         here, let mono_class_init () do that.
9216         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9217         interfaces in mscorlib.
9219         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9220         interfaces. Add some comments.
9221         (mono_class_init): Call mono_class_setup_methods () here since it is no
9222         longer called by mono_class_setup_vtable ().
9224         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9225         not set in class->vtable.
9226         (mono_class_create_runtime_vtable): Reenable the disabled code.
9228         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9229         now as it causes some test failures.
9231         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9232         if using the vtable trampoline. Also remove some strange code which put the
9233         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9234         stuff as it is no longer needed.
9236 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9238         * pedump.c: Give make --verify all option check code as well.
9239         Using --verify code won't check for metadata now.
9241 2008-05-19  Martin Baulig  <martin@ximian.com>
9243         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9245         * mono-debug.c
9246         (_mono_debug_using_mono_debugger): New global variable; it's set
9247         directly by the debugger, so mono_debug_using_mono_debugger() also
9248         works after attaching.
9250 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9252         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9253         as we do double checked locking on MonoClass::runtime_info and
9254         MonoClassRuntimeInfo::domain_vtables.
9256 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9258         * debug-helpers.c (print_field_value): Fix a warning.
9260 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9262         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9263         set in the AOT case.
9265 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9267         * class.c (mono_class_setup_vtable_general): Use memory barriers
9268         as we do double checked locking on MonoClass::vtable.
9270 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9272         * reflection.c (resolve_object): Inflate only if the generic context
9273         is not null. Fixes #389886.
9275 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9277         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9278         instead of g_free.
9280         Code is contributed under MIT/X11 license.
9282 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9284         * class.c: Revert unrelated change.
9286 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9288         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9289         a generic instantiation, use mono_class_from_mono_type instead of playing
9290         with MonoType directly.
9292 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9294         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9295         checks must ignore generic instantiations, so mono_class_has_parent is not
9296         suitable. Fixes #390128.
9298 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9300         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9301         it to avoid registering tokens during metadata generation. Fixes #390023.
9303 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9305         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9306         consistent.
9308         Contributed under MIT/X11 license.
9310 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9312         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9313         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9314         to fixup the EXE image.
9315         (mono_cleanup): Use mono_close_exe_image.
9316         (mono_close_exe_image): New function.
9317         * image.c: Include "marshal.h".
9318         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9319         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9320         counting when the image is loaded outside of mono_image_open_full. Set status
9321         based on GetLastError.
9322         * coree.c: Include required headers. Add init_from_coree.
9323         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9324         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9325         (_CorExeMain): Set init_from_coree.
9326         (CorExitProcess): Only call ExitProcess for now.
9327         (CorBindToRuntimeEx): New stub implementation.
9328         (CorBindToRuntime): New function.
9329         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9330         (MonoFixupExe): ILONLY executables require no fixups.
9331         (mono_set_act_ctx): New function to set activation context.
9332         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9333         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9334         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9335         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9336         as MONO_INTERNAL.
9337         * domain-internals.h: Add mono_close_exe_image.
9339         Contributed under MIT/X11 license.
9341 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9343         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9344         size for generic param and event tables. Fixes #388977.
9346 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9348         * loader.c (mono_method_signature): Use memory barriers because of the double
9349         checked locking pattern.
9351         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9352         aborting or aborted as well. Fixes #376391.
9353         
9354         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9355         existing runtime state in the Suspend handler during shutdown.
9357 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9359         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9361         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9362         which are starting up or shutting down.
9364         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9365         this function never returns if the runtime is already shutting down.
9367         * icall.c (ves_icall_System_Environment_Exit): Update after 
9368         mono_threads_set_shutting_down () signature change.
9369         
9370 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9372         * class.c: Added can_access_instantiation to verify if the instantiation
9373         is visible. Fix access check for nested types as they returned TRUE
9374         before doing type and generic instantiation visibility checks.
9376 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9378         * reflection.c (mono_reflection_create_generic_class): The created type
9379         must have a different container from its TypeBuilder. Otherwise they
9380         will end sharing generic arguments, which is wrong.
9382         Due to the sharing, making a generic instance of the created type using
9383         the TypeBuider generic arguments resulted in the generic type definition
9384         been returned, which is wrong as well.
9386         As a bonus the code was leaking the type_params array. This memory should
9387         be allocated from the image mempool.
9389         This fixes bug #354047.
9391 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9393         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9394         to here         as they are now used in assembly.c new code.
9395         Added a skipverification flag to MonoAssembly.
9396         New internal function mono_assembly_has_skip_verification.
9398         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9399         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9400         part of #387274.
9402 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9404         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9405         needed. Fixes #387034.
9407         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9409 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9411         * assembly.c (mono_assembly_load_reference): Prevent crash while
9412         disassembling Silverlight 2.0 executables while we still do not
9413         have GACed libraries.
9415 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9417         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9419 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9421         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9422         of the dynamic case. Fixes #387404.
9424 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9426         *verify.c (mono_verifier_is_class_full_trust): If under
9427         verify_all and the verifier mode was not set, only
9428         gac and corlib types are fulltrust. This makes --verify-all
9429         usable to detect unverifiable code, which is the expected
9430         use case.
9432 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9434         * verify.h: Ops, commited the header with debug
9435         enabled.
9437 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9439         * verify.c (merge_stack): Use the new value on unverifiable
9440         stack merges.
9442         * verify.c (verify_type_compatibility_full): Comparison
9443         of nullable types can't use mono_class_is_assignable_from.
9445         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9446         that makes all verification errors be reported.
9448         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9449         mono_method_verify.
9451 2008-05-05  Robert Jordan  <robertj@gmx.net>
9453         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9454         support for value types. See #386415.
9456         * object.c: comments.
9458         Code is contributed under MIT/X11 license.
9460 2008-05-05  Martin Baulig  <martin@ximian.com>
9462         * debug-mono-symfile.h
9463         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9464         for old pre-terrania symbol files.
9466 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9468         * mono-config.c: Add ppc64 architecture.
9470         Code is contributed under MIT/X11 license.
9472 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9474         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
9475           PPC64 uses function descriptors as well.
9477         Code is contributed under MIT/X11 license.
9479 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
9481         * object.c (compute_class_bitmap): Ignore literal static fields.
9483         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
9484         var has an invalid format.
9485         (describe_ptr): Add some sanity checks for the vtable.
9486         (add_nursery_frag): Clear unused nursery fragments.
9487         (major_collection): Clear all remaining nursery fragments.
9489 2008-05-03  Robert Jordan  <robertj@gmx.net>
9491         * image.c, metadata-internals.h: add thunk_invoke_cache.
9493         * marshal.c, marshal.h: implement
9494         mono_marshal_get_thunk_invoke_wrapper ().
9496         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
9498         Code is contributed under MIT/X11 license.
9500 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9502         * verify.c (do_leave): Empty the stack.
9504 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
9506         * class.c (mono_class_is_assignable_from): Variance
9507         doesn't work between reference and value types. For example,
9508         given type C<T+>, C<int32> is not assignable to C<object>.
9509         Break the argument checking loop on first error. 
9511 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
9513         * icall.c : base64_to_byte_array() needs some more strict
9514           check for sequence of '=' characters. Patch by Santa
9515           Marta (http://deee.g.hatena.ne.jp/santamarta).
9517           Contributed under MIT/X11 license.
9518           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
9520 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
9522         * domain.c: Disable LoadLibrary support to fix Win32 build.
9524         Code is contributed under MIT/X11 license.
9526 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
9528         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
9529         to help with cache behaviour.
9531 2008-05-01  Miguel de Icaza  <miguel@novell.com>
9533         * appdomain.c (mono_domain_from_appdomain): Add new accessor
9534         method. 
9536 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
9538         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
9540 2008-05-01  Dick Porter  <dick@ximian.com>
9542         * process.c (process_get_fileversion): Only pass 16 bits of
9543         language ID to VerLanguageName.  Fixes bug 381204.
9545 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9547         * verify.c (mono_method_verify): Fix the comparison
9548         operator for code bounds check.
9550 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9552         * verify.c (mono_method_verify): Check the bounds of
9553         all access of the code array.
9555 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9557         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9559 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9561         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9562         not valid.
9564 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9566         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9567         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9568         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9569         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9570         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9571         mono_runtime_load.
9572         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9573         runtime initialization from metadata.
9574         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9575         (mono_set_rootdir): Use mono_get_module_file_name.
9576         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9577         handles.
9578         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9579         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9580         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9581         MonoCLIImageInfo. Add support for module handles.
9582         (load_cli_header): Update mono_cli_rva_image_map signature.
9583         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9584         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9585         (mono_image_rva_map): Add support for module handles.
9586         (mono_image_ensure_section_idx): Add support for module handles.
9587         (mono_image_close): Add support for module handles.
9588         (do_load_header): Add support for module handles.
9589         (mono_image_open_from_module_handle): New function for internal use.
9590         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9591         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9592         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9593         handles.
9594         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9595         * image.h: Add mono_image_fixup_vtable.
9596         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9597         support.
9598         * coree.h: New file.
9599         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9600         unsupported native code.
9601         (mono_marshal_set_callconv_from_modopt): New function splitted from
9602         mono_marshal_get_managed_wrapper.
9603         (mono_marshal_get_managed_wrapper): Use
9604         mono_marshal_set_callconv_from_modopt.
9605         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9606         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9607         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9608         that results in a deadlock when the runtime is loaded in _CorDllMain.
9609         * Makefile.am: Add coree.c and coree.h.
9611         Contributed under MIT/X11 license.
9613 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9615         * generic-sharing.c: Search for type arguments in array element
9616         types as well.
9618 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9620         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9622         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9624         * object.c: Don't setup the RGCTX when the vtable is created,
9625         because we're setting it up lazily now.
9627 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9629         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9630         64 bit support.
9632 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9634         * verify.c (verify_class_for_overlapping_reference_fields): 
9635         If class is under fulltrust allow reference types to overllap
9636         if they have the same RVA.
9638 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9640         * pedump.c: Added new flag valid-only, that makes the verifier
9641         behaves just like --security=validil. It won't fail type load
9642         due to unverifiable restrictions.
9644 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9646         * class-internals.h (struct MonoMethod): Added a verification_success
9647         field to cache verifier executions. Reduced MonoMethod:slot size by
9648         one bit.
9650 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9652         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9653         instead of a 'vt' argument to save an indirection and to allow these to be used
9654         for valuetypes.
9655         (scan_vtype): New helper function to scan an area using a gc descriptor.
9656         (mono_gc_wbarrier_value_copy): Implement this.
9657         (handle_remset): Add support for REMSET_VTYPE.
9658         (find_in_remset_loc): Ditto.
9659         (mono_gc_base_init): Allow some debugging options to be controlled through the
9660         use of the MONO_GC_DEBUG env variable.
9661         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9662         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9664 2008-04-23  Martin Baulig  <martin@ximian.com>
9666         * domain.c (mono_domain_create): Move the call to
9667         mono_debug_domain_create() down, after allocating the domain id.
9669 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9671         verify.c (verify_class_for_overlapping_reference_fields): Skip
9672         static fields while verifying for overlapping fields as they
9673         don't matter at all.
9675 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9677         * domain-internals.h: added a declaration of
9678         mono_make_shadow_copy.
9680         * assembly.c (mono_assembly_open_full): shadow copying of
9681         assemblies moved to here, so that all the assemblies within the
9682         application domain's private binary directories can be
9683         processed. Fixes bug #380546
9685         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9686         mono_make_shadow_copy and made non-static. The decision whether
9687         to shadow-copy an assembly is made based on its location - it's
9688         copied if it's in one of the private application domain binary
9689         directories and its different to the target file in the shadow
9690         directory. Fixes bug #380546
9692 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9694         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9696         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9697         types.
9699         * reflection.c (mono_image_create_token): Handle 
9700         Method/ConstructorOnTypeBuilderInst.
9701         (resolve_object): Ditto.
9702         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9703         so it can be called from resolve_object. Also handle the case when the inflated
9704         class already has its methods setup.
9706 2008-04-21  Martin Baulig  <martin@ximian.com>
9708         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9710 2008-04-20  Geoff Norton  <gnorton@novell.com>
9712         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9713         pointer dereference.
9715 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9717         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9718         portability API to look up the assembly file. Fixes behavior in
9719         situations when the application has a bin/ directory, but the
9720         assembly search patch refers to Bin/ (and thus the requested file
9721         name is Bin/SomeLibrary.dll). Fixes bug #379888
9723 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9725         verify.c (mono_type_is_generic_argument): Extracted this check
9726         from a dozen places to here.
9728         verify.c: Fixed all issues related to boxing generic arguments
9729         and their constraints.
9731 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9733         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9735 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9737         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9738         isn't finished yet. Fixes #363447.
9740 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9742         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9743         Fixes #346419.
9745 2008-04-13  Jb Evain  <jbevain@novell.com>
9747         * domain.c: update the 2.1 profile versions.
9748         Merged from the Moonlight 2 branch.
9750 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9752         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9753         mscorlibs for the non-refonly case as well.
9755         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9756         in mono_assembly_load_from_full (). Fixes #378924.
9758 2008-04-11  Geoff Norton  <gnorton@novell.com>
9760         * icall.c: The global extern environ doesn't exist on Mac.  We
9761         need to call NSGetEnviron instead.
9763 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9765         verify.c: Add generic method constraint verification.
9767 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9769         class.c (mono_class_inflate_generic_method_full): Add a long
9770         explanation to the is_mb_open hack. Remove the FIXME.
9772 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9774         * verify.c (mono_method_verify): Mark all unknown opcodes
9775         as invalid. Mark jmp as unverifiable.
9777 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9779         * verify.c: Add code to do type constraint verification on class instances.
9781         * verify.c (mono_verifier_verify_class): Use the type constraint 
9782         verification code.
9784 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9786         * class.c (mono_class_get_field_default_value): Don't pass cindex
9787         as hint to mono_metadata_get_constant_index. The local is not initialized
9788         and should contain garbage most of the time. This could only work
9789         with a lot of luck.
9791 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9793         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9795 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9797         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9799         * class.c (mono_class_from_generic_parameter): Save the token of the
9800         generic param in MonoClass::sizes.generic_param_token.
9802         * reflection.c (mono_custom_attrs_from_class): If the class type is
9803         VAR or MVAR retrieve the attributes of the generic param.
9805 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9807         * class.c (mono_class_init): Do class verification if the verifier
9808         is enabled.
9810 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9812         * verify-internal.h: Added mono_verifier_verify_class.
9814         * verify.c: Added mono_verifier_verify_class. It checks for
9815         classes with explicit layout that have overlapping reference fields.
9817         * pedump.c: Init the verifier state prior to verification. Fixed
9818         command line arguments.
9820 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9822         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9824 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9826         * verify-internals.h: Fix a warning.
9828 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9830         * verify-internals.h: New header with the verifier configuration
9831         extracted from mini.c.
9833         * verify.c: Implemented the new functions exported by verify-internals.h.
9835 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9837         * verify.c: Add proper verification of ckfinite.
9839 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9841         * verify.c (do_conversion): Improved error message to something
9842         more meanfull.
9844         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9845         with primitive types.
9847 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9849         * verify.c: Added tail prefix checking. Marked icall
9850         as unverifible.
9852 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9854         * verify.c: Fix the detection of branches to the middle
9855         of an instruction.
9857 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9859         * verify.c: Implemented verification of volatile. and
9860         unaligned. prefix. Check if a type is valid after retrieving it.
9862 2008-04-01  Dick Porter  <dick@ximian.com>
9864         * process.c (process_get_fileversion): If there's no string block,
9865         set the file language to en_US.  Fixes the other new part of bug
9866         374600.
9868 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9870         * class.c: New functions mono_method_can_access_field_full and
9871         mono_method_can_access_method_full. They perform type visibility
9872         and type site check.
9874         * class-internal.h: Added exported functions.
9876         * verify.c: Use new functions to implement proper visibility checks.
9878 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9880         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9882 2008-03-28  Dick Porter  <dick@ximian.com>
9884         * process.c (process_get_fileversion): Use the first language ID
9885         we see, rather than insisting on an invariant language.  Fixes bug
9886         374600.
9888 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9890         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9891         the streams to fix reading of invalid memory later.
9893         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9894         to ease debugging.
9896 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9898         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9899         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9901 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9902         * threads.h: Added MonoThreadManageCallback type and
9903         mono_thread_set_manage_callback prototype
9904         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9905         (used to store the mono_thread_manage callback).
9906         * threads.c: Added mono_thread_set_manage_callback, and handle
9907         "MonoThread->manage_callback" in build_wait_tids.
9909 2008-03-26  Dick Porter  <dick@ximian.com>
9911         * process.c (process_get_fileversion): Set FileVersionInfo strings
9912         to Empty when the resource doesn't have the particular info.
9913         Fixes bug 355717.
9915 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9917         * verify.c (mono_method_verify): Proper prefix validation.
9919 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9921         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9922         itself in a separate argument instead of throwing them. Fixes #373448.
9924         * appdomain.c: Bump corlib version.
9926 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9928         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9930 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9932         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9933         version macros.
9935 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9937         * generic-sharing.c, class-internals.h: Code for putting
9938         reflection types into the runtime generic context.
9940 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9942         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9943         Fixes #340662. 
9946 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9948         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9950         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9952         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9954         * verify.c (do_cast): Let the result value keep the boxed status.
9956         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
9958 2008-03-17  Jb Evain  <jbevain@novell.com>
9960         * reflection.c: when running on a 2.0 runtime, emit
9961         unconditionally the #~ header version as 2.0, and the
9962         CLI header version as 2.5, for symmetry's sake with csc.
9964 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9966         * class.c: Remove the unused cache_interface_offsets stuff.
9968         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
9969         profiler.c: Fix warnings.
9971 2008-03-16  Mark Probst  <mark.probst@gmail.com>
9973         * generic-sharing.c, class-internals.h: Support for putting
9974         methods into the runtime generic context.
9976 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9978         * class.c (mono_class_setup_fields): Ignore calls made to this function for
9979         classes which are generic instances of not-yet finished typebuilders. Fixes
9980         #351172.
9982         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
9984 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
9986         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
9988         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
9989         field, replace it with a hash table in MonoDynamicImage.
9991         * reflection.c (inflate_mono_method): Access the generic definition object from
9992         image->generic_def_objects instead of imethod->reflection_info.
9994         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
9996         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
9997         
9998         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
9999         function in reflection.c so it is easier to keep in sync with the dynamic image
10000         creation code.
10002         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10003         mono_image_close ().
10005 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10007         * class.c (mono_class_generic_sharing_enabled): Disable generic
10008         sharing for all architectures except AMD64 and x86 to fix build.
10010 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10012         * verify.c: Use the generic definition MonoGenericContext when available.
10013         Remove code for checking generics instance compatibility in favor of
10014         mono_class_is_assignable_from.
10016 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10018         * marshal.c, marshal.h, metadata-internals.h, image.c,
10019         wrapper-types.h: New wrapper for invoking a shared static method
10020         without having to pass the runtime generic context argument.
10022 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10024         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10026 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10028         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10029         
10030         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10031         create a token from a FieldOnTypeBuilderInst.
10032         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10033         (resolve_object): Ditto.
10035         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10036         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10038 2008-03-14  Martin Baulig  <martin@ximian.com>
10040         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10042         * debug-mono-symfile.h
10043         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10044         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10046 2008-03-10  Martin Baulig  <martin@ximian.com>
10048         * debug-mono-symfile.h
10049         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10050         `lexical_block_table_offset'.
10051         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10052         `lexical_blocks'.
10053         (MonoSymbolFile): Added `version'.
10055         * mono-debug.h
10056         (MonoDebugLexicalBlockEntry): Removed.
10057         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10058         `lexical_blocks'.
10060         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10061         blocks here; the debugger now does this internally.
10063 2008-02-27  Martin Baulig  <martin@ximian.com>
10065         * object.c (mono_runtime_exec_main): Call
10066         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10067         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10069 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10071         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10072         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10074 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10076         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10077         ldftn with a virtual method.
10079 2008-03-13  Geoff Norton  <gnorton@novell.com>
10081         * decimal.c:  Only include memory.h if the platform has it.
10083 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10085         * assembly.c, class.c, metadata-internals.h: make sure public key
10086         tokesns are compared in a case-insensitive way. Also, all
10087         the lookups in the GAC use a lowercase public key token
10088         (gaacutil already does the lowercasing on install). Fixes
10089         bug #369541.
10091 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10093         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10094         and return value.
10096 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10098         * image.c: when someone loads a mscorlib from a file, return the
10099         currently loaded mscorlib (fixes bug #369253).
10101 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10103         * class.c: handle types with no parents by forcing them to have
10104         System.Object as a parent and marking them as broken (this currently
10105         allows the first part of bug #369173 to work as well, likely because
10106         we don't check for typeload exceptions everywhere yet).
10108 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10110         * class.c: more complete check that types belong to corlib
10111         (fixes second part of bug #369173).
10113 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10115         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10116           "inline" to "__inline" before including mono-membar.h.
10117           
10118         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10119           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10120           MSVC builds.
10122         Contributed under MIT/X11 license.
10124 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10126         * verify.c (do_invoke_method): Remove return type validation.
10128         * verify.c (do_ret): Do return type validation at return site instead of
10129         call site.
10131 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10133         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10135         * verify.c: Some todos cleaned and improved a few error messages.
10137 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10139         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10141 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10143         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10144         system types correctly.
10146         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10147         function.
10149 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10151         * assembly.c (build_assembly_name): Fix a warning.
10153 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10155         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10156         the called function takes an object type argument. Fixes storing or
10157         valuetypes across remoting as well as reducing memory usage.
10158         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10159         stfld_remote wrapper caches.
10161 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10163         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10164         is not found.
10166         * reflection.c (mono_image_register_token): New helper function to save
10167         a token->object mapping.        
10169         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10170         managed code.
10172         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10173         one dimension arrays. Fixes #367670.
10174         (mono_reflection_get_type_internal): Ditto.
10176 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10178         * marshal.c: mono_load_remote_field_new() always returns object.
10179         so use the proper signature (fixes bug #366445).
10181 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10182         
10183         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10184         add an 'inline_failure' flag instead.
10186 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10188         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10189         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10190         contains the location of "this", used for exception handling.
10192 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10194         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10195         their size on all platforms for perf reasons.
10197 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10199         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10200         object-internal.h
10202         * object-internal.h: Same.
10204 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10206         * reflection.h: Fix the build I just broke.
10208 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10210         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10211         Test if a token is valid, this remove explicit usage of 
10212         MonoDynamicImage::tokens from the verifier code.
10214         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10216         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10217         instead of direct access to MonoDynamicImage::tokens.
10219 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10221         * verify.c (token_bounds_check): Fix the build I just broke.
10223 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10225         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10227         * verify.c (verifier_load_method): Fixed the errors message.
10229         * verify.c (mono_method_verify): Fixed a debug message.
10231 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10233         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10234         mono-perfcounters.h, class-internals.h: support for predefined
10235         writable counters, query of categories and counters, bugfixes.
10237 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10239         * verify.c (do_refanytype): Verify the refanytype opcode.
10241         * verify.c (mono_method_verify): Use do_refanytype.
10243 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10245         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10247         * verify.c (mono_method_verify): Use do_mkrefany.
10249 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10251         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10252         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10253         implementation.
10255 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10257         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10258         the type load exception.
10260 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10262         * verify.c: Added a few FIXME for method signatures
10264         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10265         of mono_method_get_signature and get vararg call working. Removed unused
10266         checks for return value.
10268         * verify.c (do_refanyval): Verify the refanyval opcode.
10270         * verify.c (mono_method_verify): Implemented verification of arglist and
10271         use do_refanyval.
10273 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10275         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10276         vtypes to marshal.c.
10278         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10279         it works for AOT as well.
10281 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10283         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10284         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10285         the system time is adjusted.
10287 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10289         * icall.c, icall-def.h: use the new time functions (fixes the
10290         non-monotonic behaviour of TickCount).
10292 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10294         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10295         it breaks the build.
10296         
10297         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10298         cattr is not finished yet.
10300 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10302         * verify.c: Proper token validation for field, method and type.
10304 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10306         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10308         * loader.c (method_from_memberref): Generate type load error instead of method missing
10309         if the type is not found.
10311 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10313         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10314         some of the conversions caused the generation of a marshal directive exception.
10316 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10318         verify.c: Report which exception should be thrown by the JIT.
10319         Added a lot of FIXME notes.
10321 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10323         * generic-sharing.c: Runtime generic context slots are not
10324         instantiated on init anymore.  Instead, provide function to do the
10325         instantiating on demand.
10327         * class-internals.h: Added vtable to runtime generic context.
10328         Macros for encoding direct and indirect slot offsets in one
10329         guint32.
10331 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10333         * object.c, generic-sharing.c: Moved some generic sharing code
10334         from object.c to generic-sharing.c.
10336         * generic-sharing.c: Added support for extensible runtime generic
10337         context.
10339         * metadata-internals.h: Two new hash tables in MonoImage for
10340         extensible runtime generic context support.
10342         * domain.c: Unregister generic vtables upon domain unloading.
10344         * image.c: Destroy new hash tables upon image unloading.
10346         * metadata.c: Unregister generic subclasses upon image unloading.
10348         * class-internals.h: New data structure for runtime generic
10349         context template.  New fields in the runtime generic context for
10350         extensible part.
10352         * Makefile.am: Added generic-sharing.c.
10354 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10356         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10357         there is a pending loader exception, raise it.
10359         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10360         same.
10362         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10363         same.
10365         Fixes #363450.
10367 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10369         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10371         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10372         
10373         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10374         ref-only requests for compatibility with MS.
10376 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10378         * reflection.c (mono_custom_attrs_from_method): Don't silently
10379         return an empty list for generic method instances.
10380         (mono_custom_attrs_from_param): Likewise.
10382 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10383             Raja R Harinath  <harinath@hurrynot.org>
10385         Fix #354757
10386         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10387         * class.c (mono_class_inflate_generic_method_full): Initialize it
10388         when a fully-open method is instantiated.
10389         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10390         to new field.
10391         * reflection.c (inflate_mono_method): Don't create a temporary context.
10393 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10395         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10396         Compute correct value, to prepare for imethod->reflection_info going away.
10398 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10400         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10402 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10404         * verify.c: Implement skip visibility flag.
10406 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10408         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10409         which contains an extra field to tell the kind of exception that should be thrown.
10411         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10413 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10415         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10416         'method' is updated.
10418 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10420         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10421         explicit layout as well. Fixes #360375.
10423 2008-02-11  Geoff Norton  <gnorton@novell.com>
10425         * loader.c: Guard and dereference against inflated generic methods
10427 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10429         * class.c: Include Retargetable spec in assembly name.
10430         * assembly.c: Always include PublicKeyToken spec in assembly name
10431         (with value "null" if assembly is not signed), and include
10432         Retargetable spec.
10433         * icall-def.h: Added icall for Assembly.get_fullname.
10434         * icall.c: Added icall returning the fullname of an assembly.
10436 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10438         * class.c (mono_class_setup_vtable_general): Add a missing call to
10439         mono_class_setup_methods () which is needed in the AOT case.
10441 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10443         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10444         stack type of the given MonoType.
10446         * verify.c (verify_type_compatibility_full): Handle the void type.
10448         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10449         way stack merging works.
10451         * verify.c (store_local): Improved verification message.
10453         * verify.c (do_branch_op): If the merging is invalid, the method
10454         is unverifiable and not invalid. Improved error message.
10456         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10457         a reference type diferent than System.Object. Improved error
10458         message.
10460 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10462         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10464         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10465         type of an enum even if the argument is byref.
10467         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10468         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10470         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
10472         *verify.c (verify_type_compatibility_full): Make enum types
10473         compatible with their base types.
10475         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
10476         types are compatible for the special case of a boxed valuetype and
10477         System.Object.
10479         * verify.c (verify_stack_type_compatibility): The function
10480         is_compatible_boxed_valuetype was extracted from here.
10482         * verify.c (push_arg): Only set ctx->has_this_store if the method
10483         is not static.
10485         * verify.c (do_ldelem): Fixed a typo in an error message and added
10486         strict check for mixing int32 and native int as the array type
10487         and ldelem type.
10489         * verify.c (merge_stacks): Consider boxed valuetypes in the
10490         compatibility checks.
10492 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
10493         * profiler.h: (MonoGCEvent): Added start-stop the world events.
10495 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10496         *class.c: use_new_interface_vtable_code: renamed the env var to have
10497         a "MONO_" prefix, and fix the logic to enable it by default.
10499 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
10500         *class.c:
10501         mono_class_setup_vtable_general: rewrote the way in which interface
10502         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
10503         makes the code more maintainable.
10504         For now the old code is still there, and can be activated setting
10505         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
10507 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
10509         * verify.c: guarded some debug functions around and #ifdef.
10511         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
10513 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
10515         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
10516         changes for now since they seem to break too many things.
10518 2008-02-05  Mark Probst  <mark.probst@gmail.com>
10520         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
10521         mono_marshal_find_nonzero_bit_offset): Added macro and function
10522         for finding the byte- and bit-offset of a bitfield within a
10523         struct.
10525 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
10527         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
10528         (mono_marshal_get_struct_to_ptr): Ditto.
10530         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
10531         cctor_signature.
10533 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
10535         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
10536         between methods for non-corlib types.
10538 2008-02-02  Geoff Norton  <gnorton@novell.com>
10540         * loader.c (mono_method_get_param_names): Populate the parameter name for 
10541         generic parameters as well. (Fixes #342536)
10543 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
10545         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
10547         * verify.c (do_invoke_method): Fix for calling with byref structs.
10549         * verify.c (do_cast): push a boxed value type based on the type token and not
10550         the type of stack.
10552 2008-01-31  William Holmes  <billholmes54@gmail.com>
10554         * process.c (process_module_string_read): Check the size returned form 
10555           VerQueryValue to avoid out of memory exception. 
10557 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10559         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10560         Handle properly modules which are not in the moduleref table. Fixes
10561         #356938.
10563 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10565         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10566         the dynamic case which is now in managed code.
10567         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10569         * marshal.c (mono_string_to_bstr): Fix a warning.
10570         (init_com_provider_ms): Ditto.
10572         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10574         * exception.c (mono_get_exception_out_of_memory): New helper function.
10576 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10578         * marshal.c: Add support for BSTR marshalling
10579         using other COM systems.
10581         Code is contributed under MIT/X11 license.
10583 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10585         * object.c (mono_runtime_invoke_array): reverted previous
10586         commit as it breaks the build.
10588 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10590         * object.c (mono_runtime_invoke_array): Verify arguments for
10591         invalid types. Fixes #348522.
10593 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10595         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10596         non-final virtual calls using call. 
10598         * verify.c (do_invoke): fixed some TODOs.
10600         * verify.c (push_arg): set has_this_store for "ldarga 0".
10602 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10604         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10605         which belong to an inflated class. Fixes #356531.
10607 2008-01-26  Robert Jordan  <robertj@gmx.net>
10609         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10610         which resort to FindFirstFile when a certain error condition
10611         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10612         Code is contributed under MIT/X11 license.
10614 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10616         * marshal.c (emit_marshal_string): Fix out string marshalling
10617         to use specified encoding. Fixes #323900.
10619         Code is contributed under MIT/X11 license.
10621 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10623         * class.c (mono_class_inflate_generic_method_full): Don't modify
10624         iresult->context after cache check.
10626 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10628         * class.c (mono_class_inflate_generic_method_full): Change the
10629         struct assignments to memcpy for better visibility and add some comments.
10631 2008-01-23  Dick Porter  <dick@ximian.com>
10633         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10634         procedure, and make it work on windows.
10636 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10638         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10639         a MonoReflectionTypeBuilder since it is always of that type.
10641         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10643         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10645         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10646         
10647         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10649         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10651         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10652         instantiations from the type cache.
10654 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10656         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10658         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10660 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10662         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10664         * verify.c (mono_method_verify): removed old TODO
10666 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10668         * verify.c (do_newobj): add visibility check.
10670 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10672         * verify.c (do_load_function_ptr): add visibility check.
10674 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10675         *class.c:
10676         mono_generic_class_get_class: hook profiler events.
10677         mono_field_get_offset: added to support heap-shot in the new profiler.
10678         *class.h: exported mono_field_get_offset.
10679         * reflection.c:
10680         mono_reflection_setup_internal_class: hook profiler events.
10682 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10684         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10685         argument here too and use it to avoid checking for pending exceptions if 
10686         possible.
10688 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10690         * assembly.c (build_assembly_name): add arg for passing the assembly
10691         flags. Do not consider a PublicKey with value "null" valid.
10692         (mono_assembly_name_parse_full): added boolean argument that will be
10693         set if the assembly name contains a PublicKeyToken spec. Added support
10694         for the Retargetable spec for which only Yes or No are allowed as valid
10695         value. Consider assembly name invalid if Retargetable spec is set, but
10696         either version, culture or public key (token) are not specified.
10697         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10698         with implementation in assembly.c.
10699         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10700         from MonoAssemblyName.
10701         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10702         introduced argument for mono_assembly_name_parse_full to know if the
10703         assembly name has a PublicKeyToken spec, and if it has instruct
10704         fill_reflection_assembly_name to use default value for keyToken (if
10705         PublicKeyToken is null).
10707 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10709         * verify.c (mono_method_verify): fixed ovf ops with
10710         float values. They are unverifiable now.
10712 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10714         * class.c (set_failure_from_loader_error): add BadImageException to the
10715         list of exceptions that can cause a type to fail to load.
10717         * class.c (mono_class_get_exception_for_failure): same.
10719 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10721         * verify.c (in_any_exception_block): added, check if offset
10722         is part of any exception handling clause.
10724         * verify.c (get_stack_type): added VAR and MVAR types.
10726         * verify.c (do_stobj): better error messages.
10728         * verify.c (do_cpobj): added, check cpobj.
10730         * verify.c (do_initobj): added, check initobj.
10732         * verify.c (do_sizeof): added, check sizeof.
10734         * verify.c (do_localloc): added, check localloc.
10736         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10738 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10740         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10741         save_lmf/restore_lmf opcodes.
10743         * threads.c (mono_threads_install_notify_pending_exc): New function to
10744         install a callback notifying the JIT there is a pending exception on a thread.
10745         (mono_thread_request_interruption): Call the new callback.
10746         (mono_thread_get_and_clear_pending_exception): New function to return the
10747         exception pending on a thread.
10749         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10750         to turn off checking for pending exceptions.
10751         (mono_marshal_get_native_wrapper): Ditto.
10753 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10755         * threads-types.h: Get rid of the unnecessary extern declarations.
10757 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10759         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10760         return field from parent class if not private.
10761         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10762         returns fields from parent class if they are not private.
10763         (method_nonpublic): added function to determine if a given method
10764         should be considered non-public. Returns false for private methods
10765         on parent class, and internal methods from parent on the 1.0 profile.
10766         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10767         use method_nonpublic function to determine whether method should be
10768         returned.
10769         (property_accessor_public): use newly introduced method_nonpublic
10770         function to determine whether accessor is non-public. 
10771         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10772         event from parent class if not private. Only return static event if
10773         Static flag is set, and only return static event from parent class if
10774         FlattenHierarchy flag is set.
10775         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10776         include non-private events from parent class.
10778 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10780         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10781         warning.
10783 2008-01-16  Wade Berrier <wberrier@novell.com>
10785         * security.c: Add assembly.h header to appease some warnings
10787 2008-01-16  Dick Porter  <dick@ximian.com>
10789         * process.c (process_module_string_read): Remove trailing null
10790         when saving string.
10792 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10794         * class-internals.h: A new data structure describing the layout of
10795         a runtime generic context (MonoRuntimeGenericContextTemplate).
10797         * metadata-internals.h: Added a hash table to MonoDomain that maps
10798         from open generic classes to their runtime generic context
10799         templates.
10801         * object.c: Building of the runtime generic context, including
10802         proper handling of generic type arguments of superclasses.
10803         Building of the runtime generic context according to the template.
10805 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10807         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10808         Fixes #350856.
10810         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10811         mono_portability_find_file (). Fixes #325466.
10812         (mono_image_get_public_key): Fix a warning.
10814 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10816         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10817         Fixes #353550.
10818         (mono_class_from_name_case): Ditto.
10820 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10822         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10823           common storage for the tables used in the System/NumberFormatter class.
10825 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10827         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10829 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10831         * verify.c (get_boxable_mono_type): check if the token is valid.
10833         * verify.c (set_stack_value): changed to add an error if an
10834         invalid type is set on stack. Changed all callers due to signature change.
10836         * verify.c (do_stobj): implement stobj validation.
10838 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10840         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10841         set container->is_method, it was set earlier.
10843         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10844         generic methods.
10846         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10847         is_method of the generic container to TRUE for methods.
10849 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10851         * metadata.c (type_in_image): Handle type parameters properly.
10853         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10854         memory ownership of this structure.
10856 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10858         * verify.c (get_boxable_mono_type): make typedref types been just
10859         unverifiable. check for void type.
10861         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10863         * verify.c (do_load_function_ptr): accept method spec tokens.
10865 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10867         * marshal.c (mono_class_native_size): Always set *align even if this is called
10868         recursively.
10870 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10872         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10873         out-of-date.
10875 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10877         * verify.c: removed some old unused tables. A huge bunch of small fixes
10878         to things found while testing the verifier with mono basic.
10880         * verify.c (dump_stack_value): dump null literal flag to.
10882         * verify.c (verify_type_compatibility_full): fix comparison
10883         for types that have a generic super type.
10885         * verify.c (verify_stack_type_compatibility): fix compatibility
10886         between null literals and reference types. fix compatibility between
10887         boxed valuetypes and object. fix corner case test for enums.
10889         * verify.c (do_cmp_op): proper verification of cgt.un in case
10890         of reference types.
10892         * verify.c (do_invoke_method): fix error message.
10894         * verify.c (do_store_indirect
10896         * verify.c (check_is_valid_type_for_field_ops): proper verification
10897         of managed pointers to valuetypes and boxed valuetypes. proper verification
10898         of null literals.
10900         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10901         allow token to be a reference type.
10903         * verify.c (do_cast): proper handling of boxes valuetypes.
10905         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10906         in object[].
10908         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10909         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10910         fixed the decoding of unbox_any
10912 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10914         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10916 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10918         * verify.c (do_newobj): do delegate verification.
10920         * verify.c (verify_delegate_compatibility): perform delegate
10921         verification.
10923         * verify.c (verify_ldftn_delegate): perform tests related to
10924         ldftn delegates.
10926         * verify.c (mono_delegate_signature_equal): perform the
10927         slightly diferent signature comparison required by delegates.
10929         * metadata.c (mono_metadata_type_equal_full): added and exported
10930         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10931         allows signature only comparison.
10933         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10934         as MONO_INTERNAL.
10936 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10938         * verify.c: added a bunch of stack_slot_* functions to
10939         make access to stack slot type easier. This is required to
10940         allow optional flags, like null literal, boxed value and
10941         this pointer.
10942         All access paths to IlStackDesc::stype have been changed 
10943         to use these new funcions.
10944         Removed a bunch of unused functions and cleared all warnings.
10945         This patch introduces the usage of the this pointer and 
10946         boxed value flags.
10948 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10950         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10952 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10954         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10955         match managed version.
10957         * appdomain.c: Bump corlib version.
10958         
10959         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
10960         argument.
10962 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
10964         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
10965         Set public key token to zero-length byte array if assembly is not
10966         strongnamed.
10968 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10970         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
10971         writing a vtype array elem.
10973 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
10975         * assembly.c (build_assembly_name): return FALSE if length of token is
10976         not 16 (if not "null").
10977         (mono_assembly_name_parse_full): return FALSE if value of version,
10978         culture, token or key is 0.
10979         * icall.c (fill_reflection_assembly_name): add boolean arguments to
10980         specify whether public key and public key token must be set to default
10981         value (zero-length byte array) if not available. Set versioncompat to
10982         SameMachine. If public key is available or the default is set, then
10983         set PublicKey flag.
10984         (ves_icall_System_Reflection_Assembly_FillName): if no public key
10985         is available, use empty byte array as default value. On the 2.0
10986         profile, use default value for public key token if not set.
10987         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
10988         profile, use default value for public key if not set. On the 2.0
10989         profile, use default value for public key token if not set.
10990         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
10991         default values for public key and public key token.
10993 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10995         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
10996         field to keep it in synch with the managed object.
10998         * marshal.c (emit_marshal_object): Add support for byref marshalling of
10999         delegates. Fixes #351520.
11001         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11002         contains defined memory.
11003         
11004         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11006         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11007         
11008         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11009         of the GC data structures.
11011         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11013         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11014         
11015         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11016         barrier.
11017         (mono_array_clone_in_domain): Ditto.
11018         (mono_array_clone_in_domain): Ditto.
11020         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11021         (cache_culture): Use a write barrier.
11023         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11024         (ves_icall_get_property_info): Ditto.
11026         * object.h (MONO_STRUCT_SETREF): New macro.
11028         * class-internals.h (MonoStats): Add some GC statistics.
11030         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11032 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11034         * exception.c (mono_exception_from_name_two_strings):
11035         Break from loop after method is found.
11037 2008-01-04  Dick Porter  <dick@ximian.com>
11039         * process.c (process_module_string_read): Rename variable to
11040         reflect correct usage, after fixing bug 345972.
11042 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11044         * verify.c (mono_type_create_fnptr_from_mono_method): 
11045         created a MonoType function pointer instance to be used during
11046         verification. The verifier releases this memory at end.
11048         * verify.c (mono_method_is_constructor): extracted repeated
11049         checks for constructor into a single class.
11051         * verify.c (do_push_field): use new extracted method
11052         for constructor check.
11054         * verify.c (do_newobj): same.
11056         * verify.c (do_ldftn): renamed to do_load_function_ptr
11057         and make it verify ldvirtftn too.
11059         * verify.c (mono_method_verify: proper verification
11060         of ldvirtftn. release created MonoMethod instances.
11062 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11064         * verify.c (token_bounds_check): added.
11066         * verify.c (do_ldftn): added.
11068         * verify.c (mono_method_verify): proper verificartion of ldftn.
11070 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11072         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11073         than the table row count. It's the resposibility of the caller to
11074         make the bounds check and raise the correct error.
11076         * metadata.c (mono_metadata_decode_row_col): Same.
11078         * loader.c (mono_get_method_from_token): perform bounds check
11079         on token for methoddef table.
11081 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11083         * icall.c
11084         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11085         assert into a negative result, the managed code already coped with
11086         that.
11088         Some folks on Windows reported this error. 
11090 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11092         * appdomain.c: Bump corlib version.
11093         * icall.c:
11094         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11095         CultureInfo.CreateCulture to create CultureInfo for name.
11096         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11097         create CultureInfo for name. Fixes bug #347174.
11099 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11101         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11102         flags.
11104         * verify.c (is_valid_branch_instruction): allow branching to the
11105         first instruction of the protected block.
11107         * verify.c (is_valid_cmp_branch_instruction): same.
11109         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11110         avoid double initialization.
11112         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11113         detect which cases the eval stack should just be copied.
11115         * verify.c (mono_method_verify): check if the eval stack
11116         is empty when entering a protected block.
11118 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11120         * verify.c: added is_clause_in_range, is_clause_inside_range,
11121         is_clause_nested and verify_clause_relationship. They perform
11122         the verifications stated in P1 12.4.2.7.
11124         * verify.c (mono_method_verify): remove some unused variables,
11125         add the new exception clause checks, add instruction border
11126         checks for protected block start/end, improved some error 
11127         messages and fixed a bug in the way invalid instruction access
11128         is detected.
11130 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11132         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11133         from GC 7.0 if available.
11135         * object.c: Remove an unused define.
11136         
11137         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11139         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11141         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11143         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11145         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11146         to take the same arguments as the other make_descr functions.
11148         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11150         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11151         directly.
11153         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11154         mini.c.
11156         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11157         call to boehm-gc.c.
11159         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11161         * null-gc.c (mono_gc_register_root): Fix a warning.
11163         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11165         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11166         (mono_gc_base_init): Call GC_init ().
11168         * null-gc.c: Define mono_gc_register_root () as a no-op.
11170         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11172 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11174         * verify.c: add prototype for merge_stacks at top
11176         * verify.c (do_switch): added.
11178         * verify.c (merge_stacks): on some cases the stack merging
11179         was not happening properly. Unequal stack sizes at merge
11180         points should be invalid.
11182         * verify.c (mono_method_verify): added more debug info on stack state.
11183         verify switch properly.
11185 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11187         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11188         marshal.h.
11190         * boehm-gc.c marshal.c: Include method-builder.h.
11192         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11194         * marshal.c: Remove some code which is now in method-builder.c.
11196 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11198         * method-builder.c: New file, extraction of the method builder functionality 
11199         from marshal.c.
11201         * marshal.c: Move the mb functions into method-builder.c.
11203         * marshal.h marshal.c: Export some mono_mb_... functions.
11205         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11207         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11208         the caller.
11210         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11212         * loader.c (mono_field_from_token): Ditto.      
11214         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11215         type as well.
11216         
11217         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11218         Fixes #342565.
11220         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11221         a helper function for setting it.
11223         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11225         
11226         * assembly.c: Significally simplify code now that referenced assemblies are 
11227         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11229         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11230         #349952.
11232 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11234         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11235         instructions that were target of branches or are at protected block boundaries.
11237         * verify.c (in_same_block): handle filter clauses.
11239         * verify.c (is_valid_branch_instruction): added. checks the target of
11240         instructions br or brtrue/false.
11242         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11243         binary branch instructions such as beq and bge.
11245         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11246         and made it pin the instruction as been part of the exception block.
11248         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11249         of in_same_block.
11251         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11252         of in_same_block.
11254         * verify.c (do_ret): ret from a protected block is unverifiable and
11255         not invalid.
11257         * verify.c (do_static_branch): verify br and br.s instructions.
11259         * verify.c (merge_stacks): add extra param to support detection
11260         of branches in the middle of instructions.
11261         
11262         * verify.c (mono_method_verify): verify branches and exception blocks
11263         that target the middle of instructions. Proper verification of br and br.s.
11265 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11267         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11268         skip_visibility field.
11269         (reflection_methodbuilder_from_dynamic_method): Ditto.
11271         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11272         registrations. Fixes #348193.
11274         * threads.h: Move the internal mono_thread_get_pending_exception () to
11275         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11277 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11279         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11280         icall registration. Fixes #348193.
11282         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11283         for corlib classes into object. Fixes #349621.
11285 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11287         * icall.c (property_accessor_nonpublic): new function to determine
11288         whether an accessor allows a property to be considered non-public.
11289         Returns false for private accessor(s) from parent class, and internal
11290         accessor(s) from parent on 2.0 profile (and higher).
11291         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11292         to determine whether property should be included if NonPublic flag
11293         is set. Fixes bug #349078.
11295 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11297         * verify.c (init_stack_with_value): added.
11299         * verify.c (mono_method_verify): extracted common
11300         code for exception initialization into init_stack_with_value.
11302         * verify.c (mono_method_verify): initialize the exception
11303         for handler clauses as well.
11305         * verify.c (mono_method_verify): fix the exception clause
11306         ordering rules, it should use handler end offset and not
11307         start offset.
11309 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11311         * rawbuffer.c: remove useless warning.
11313 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11315         * threads.h, threads-types.h: move functions to the correct header
11316         (fixes bug#349952).
11318 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11320         * verify.c (mono_method_verify): proper verification
11321         of exception handling clauses ranges and fallthru in
11322         and out of protected blocks.
11324 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11326         * verify.c (mono_method_verify): fixed compilation issue.
11328 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11330         * verify.c (mono_method_verify): a printf slipped in, changed
11331         to use verifier debug macro.
11333 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11335         * verify.c (is_correct_leave): check for filter clauses.
11337         * verify.c (do_filter): added.
11339         * verify.c (mono_method_verify): property verification of leave.
11342 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11344         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11345         Win32 build, until we figure out how to do the proper thing on
11346         Win32.
11348 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11350         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11351         by the previous patch.
11352         
11353         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11354         the assembly resolve handler for refonly assemblies.
11356 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11358         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11359         Make sure only one thread is allowed to commence shutdown, and
11360         don't allow new threads to be started once shutdown is in
11361         progress.
11363 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11365         * verify.c (is_correct_endfilter): added.
11367         * verify.c (is_unverifiable_endfilter): added.
11369         * verify.c (do_endfilter): added.
11371         * verify.c (mono_method_verify): property verification of endfilter
11372         and fixed a corner case or endfinally.
11374 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11376         * verify.h: new flags to support fail fast of unverifiable code and
11377         do non-strict verification. Non-strict verification is required to
11378         have MS runtime compatibility. There are a huge amount of unverifiable
11379         code that it accepts as verifiable. The strict mode verifies the code
11380         as the specs says.
11381         Non-strict mode will be required in cases where code needs to be
11382         accepted as verifiable but fails under strict mode.
11384         * pedump.c: added support to fail fast and non-strict verification.
11386         * verify.c: added support for both fail fast and non-strict verification.
11388 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11390         * verify.c (is_correct_endfinally): added.
11392         * verify.c (mono_method_verify): property verification of endfinally.
11394 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11396         * verify.c (in_any_block): check for filter clauses.
11398         * verify.c (is_correct_rethrow): added.
11400         * verify.c (mono_method_verify): property verification of rethrow.
11402         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11404 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11406         * verify.c (do_throw): added.
11408         * verify.c (mono_method_verify): property verification of throw
11410 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11412         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11413         assemblies. Fixes #346425.
11415 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11417         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11418         FieldBuilders.
11420         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11422         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11423         prevent asserts when this is called with a token which might not be valid.
11425         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11426         lookup_dynamic_token_class with valid_token == FALSE.
11428         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11430         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11432         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11433         
11434 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11436         * gc.c: Don't delay threadpool thread finalization unless Mono is
11437         shutting down.
11439 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11441         * threads.c: turn an assert into a non-fatal warning.
11443 2007-12-09  Robert Jordan  <robertj@gmx.net>
11445         * icall.c (GetVirtualMethod): Add missing argument validation.
11447 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11449         * verify.c (do_cast): added.
11451         * verify.c (mono_method_verify): property verification of castclass and isinst.
11454 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11456         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11458         * verify.c (do_stelem): added.
11460         * verify.c (mono_method_verify): property verification of stelem.X.
11462 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11464         * class.c, class-internals.h: Introduce an environment variable
11465         (MONO_GENERIC_SHARING) through which the extent of generic code
11466         sharing can be controlled (share all classes, share only corlib
11467         classes, or share nothing).
11469         * object.c: Only create runtime generic context for classes for
11470         which sharing is enabled.
11472 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11474         * verify.c (do_ldelem): refactor it to work with ldelem.any.
11476         * verify.c (mono_method_verify): property verification of ldelem.any.
11478 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11480         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
11481         added ldelem.X opcodes.
11483         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
11485         * verify.c: proper verification of ldelem.X 
11487 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
11489         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
11491 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11493         * verify.c (mono_method_verify): null literal requires special handling,
11494         the value pushed on stack need to be flagged as so.
11496         * verify.c (do_ldelema): Verify ldelema properly.
11498 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
11500         * verify.c: Verify ldlen properly.
11502 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
11504         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
11505         to the target object's type. Fixes #346160.
11507 2007-12-05  Dick Porter  <dick@ximian.com>
11509         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
11510         Solaris needs the same workaround as BSD-derived systems.  Fixes
11511         bug 323524, patch by Burkhard Linke
11512         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
11514 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
11516         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
11517         handle to use when error dialog is shown; otherwise, update mask
11518         to show no error dialog when an error occurs.
11520 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
11522         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
11524         * class.c (mono_class_get_field_default_value): New helper function to initialize
11525         field->def_type and field->data.
11527 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
11529         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
11530         the general one.
11532         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
11534         * marshal.c: Avoid depending on delegate->method_info being set.
11536         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
11537         
11538         * object.c (mono_delegate_ctor): Set delegate->method.
11540         * object-internals.h (struct _MonoDelegate): Add 'method' field.
11542         * appdomain.c: Bump corlib version.
11544 2007-11-27  Raja R Harinath  <harinath@gmail.com>
11546         * metadata.c (mono_generic_inst_equal_full): Short-circuit
11547         equality check if we're comparing canonicalized MonoGenericInsts.
11549 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
11551         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11552         accessing class->methods.
11554 2007-11-22  Dick Porter  <dick@ximian.com>
11556         * threads.c: Ensure that the synch_cs is set before trying to use
11557         it.
11559 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11561         * profiler.c: r89126 broke the statistial profiler, unbreak.
11563 2007-11-22  Martin Baulig  <martin@ximian.com>
11565         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11567         * mono-debug.c
11568         (mono_debug_debugger_version): Bump to 3.
11569         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11570         -> mono_debugger_class_initialized().
11572         * mono-debug-debugger.c
11573         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11575         * class.c
11576         (mono_debugger_start_class_init_func): Removed.
11577         (mono_debugger_class_loaded_methods_func): Added.
11578         (mono_class_setup_methods): Call it here.
11580 2007-11-22  Martin Baulig  <martin@ximian.com>
11582         * mono-debug.c
11583         (mono_debug_add_delegate_trampoline): New public method.
11584         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11586         * mono-debug.h
11587         (MonoSymbolTable): Added `global_data_table'.
11588         (MonoDebuggerTypeKind): Removed.
11590 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11592         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11593         these methods.
11595         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11596         
11597 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11599         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11601 2007-11-20  Martin Baulig  <martin@ximian.com>
11603         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11605         * mono-debug-debugger.c
11606         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11607         (mono_debugger_remove_breakpoint): Likewise.
11608         (mono_debugger_check_breakpoints): Likewise.
11609         (mono_debugger_register_class_init_callback): New public method.
11610         (mono_debugger_remove_class_init_callback): Likewise.
11611         (mono_debugger_add_type): Likewise.
11613         * mono-debug-debugger.h
11614         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11616 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11618         * class.c: more interface implementations needed for the
11619         array enumerator (fixes bug #341112).
11621 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11623         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11624         fix ParamName of ArgumentNullExceptions.
11626 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11628         * reflection.c (mono_reflection_encode_sighelper): Generate the
11629         modopts and modreqs.   I have a useless test that crashes monodis,
11630         but that shows the code working.
11632 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11634         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11635         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11637 2007-11-15  Dick Porter  <dick@ximian.com>
11639         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11640         When joining a thread, it's the thread that's calling Join that
11641         gets WaitSleepJoin state not the target.  Fixes the standalone
11642         test case in bug 334740, and hopefully the whole bug too.
11644 2007-11-15  Dick Porter  <dick@ximian.com>
11646         * process.c: Read file version info from the files pointed at by
11647         process modules, not the current process.  Fixes bug 315969.
11649         Use windows typedef names in some places to fix warnings on the
11650         windows build.
11652 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11654         * image.c, metadata-internals.h: Added a generic_class_cache hash
11655         to MonoImage for looking up generic classes when sharing generics.
11657 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11659         * sgen-gc.c: warning cleanups.
11661 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11663         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11664         inherited properties.
11666 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11668         * object.c, class-internals.h: Added more information to the
11669         runtime generic context.
11671 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11673         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11674         instead of just the target method. Generalize the abstract method handling to
11675         handle any non-static method.
11677         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11678         mono_marshal_get_delegate_invoke () signature change.
11680 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11682         * class.c, class-internals.h: Made
11683         mono_type_get_basic_type_from_generic () public.  Fixed member
11684         access check for shared generics.
11686         * loader.c: Don't insert field into field cache if it's part of a
11687         non-inflated generic class.
11689         * domain.c, domain-internals.h: The generic sharing context is now
11690         part of the jit info data structure.  Added two accessor
11691         functions.
11693 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11695         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11696         the array Get/Set/Address methods, since the JIT inlines them.
11698         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11700         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11701         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11703         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11704         mono_marshal_get_delegate_invoke signature change.
11706         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11707         an additional argument. Add support for invoking abstract methods.
11709         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11711         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11713 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11715         * class.c: Do field layout for open generic classes as well.
11717 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11719         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11720         other objects, because the threadpool is still around.  Put them
11721         in a list instead and after finalizing all other objects in the
11722         root domain shut down the thread pool and then finalize the
11723         threads.  Fixes bug #337383.
11725         * threads.c, thread-types.h: New mono_thread_create_internal()
11726         function for marking a thread with the threadpool flag before it
11727         started.  Set synch_cs to NULL after freeing it.
11729         * threadpool.c: Mark threadpool threads before they start.
11731 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11733         * reflection.h, reflection.c: don't export random functions
11734         and lazy load dbnull and missing objects.
11736 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11738         * class.c: Initialize COM types if COM interfaces
11739         are present (not just COM classes).
11740         
11741         Code is contributed under MIT/X11 license.
11743 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11744         * reflection.c:
11745         create_dynamic_mono_image: hook module profiler events (dynamic case).
11746         mono_image_basic_init: hook assembly profiler events (dynamic case).
11748 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11749         * profiler.c:
11750         simple_appdomain_unload: completely terminate the profiler
11751         instead of only processing the statistical samples.
11752         simple_shutdown: make sure this is really called exactly once,
11753         even in multithreaded applications, and always listen to
11754         appdomain events.
11755         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11756         here, the "[un]load" functions will do it.
11757         Fixes bugs #333791 and #325261.
11759 2007-11-07  Geoff Norton  <gnorton@novell.com>
11761         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11762         rather than depend on __APPLE__.
11764 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11766         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11768 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11770         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11771         UTF16 MonoString. Fix the crash from bug #335488
11773 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11775         * marshal.c: Correct (for non-Win32 OS) length != size in 
11776         mono_string_from_bstr. Fix #339530.
11778 2007-11-06  Geoff Norton  <gnorton@novell.com>
11780         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11781         to succeed
11783 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11785         * process.c: Added run-time GetProcessId API detection for Windows.
11787 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11789         * reflection.c  (mono_param_get_objects): If a parameter has the
11790         attribute [System.Runtime.InteropServices.Optional] we should
11791         set the DefaultValue of the ParameterInfo to be
11792         System.Reflection.Missing instead of DBNull.
11794         See bug #339013.
11796         (mono_get_reflection_missing_object): New method,
11797         returns the System.Reflection.Missing.Value singleton instance.
11799 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11801         * culture-info-table.h : regenerated.
11803 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11805         * icall.c: Use GetEnvironmentStrings on windows
11806         so we are using the same environment block as 
11807         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11808         #333740.
11809         
11810         Code is contributed under MIT/X11 license.
11812 2007-10-31  Martin Baulig  <martin@ximian.com>
11814         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11816         * mono-debug-debugger.h
11817         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11819 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11821         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11822         classes.
11824 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11826         * culture-info-table.h : regenerated.
11828 2007-10-30  Robert Jordan  <robertj@gmx.net>
11830         * icall-def.h, icall.c:
11831         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11833         Code is contributed under MIT/X11 license.
11835 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11837         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11838         inflated class instead of inflating them again.
11839         
11840         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11841         dynamic case.
11843         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11844         Call setup_supertypes () after klass->parent is set.
11845         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11847         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11848         for inflated instances of not yet created dynamic generic classes.
11849         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11850         times from inflated_method.
11851         (methodbuilder_to_mono_method): Ditto.
11853 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11855         * gc.c: code cleanup and removed old untested option of not creating the
11856         finalizer thread.
11858 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11860         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11861         creating a jump trampoline for dynamic methods.
11863 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11865         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11866         generic TypeBuilders when called from another method of the same type (bug #335131).
11869 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11871         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11872         doesn't seem to work perfectly.
11873         
11874         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11875         called multiple times.
11876         (methodbuilder_to_mono_method): Ditto.
11877         (resolve_object): Inflate FieldBuilder's.
11879 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11881         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11882         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11883         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11885 2007-10-26  Dick Porter  <dick@ximian.com>
11887         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11888         Thread initialisation changes
11890 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11892         * verify.c: fix compatibility check between arrays and System.Array
11894 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11896         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11897         too. Fixes #336999.
11899 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11901         * object.c (mono_value_box): Use typed allocation here.
11903 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11905         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11906         trampoline instead of compiling the method right away.
11908         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11910 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11912         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11913         related fields for dynamic classes. Fixes #334493.
11915 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11917         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11918         
11919         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11921         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11922         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11924         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11926         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11927         if needed.
11928         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11930 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11932         * marshal.c: Use correct key when removing item
11933         from ccw_hash.
11934         
11935         Code is contributed under MIT/X11 license.
11937 2007-10-17  William Holmes  <billholmes54@gmail.com>
11939         *marshal.c: Adding a case to marshal booleans to U1
11941         Code is contributed under MIT/X11 license.
11943 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11945         * class.c (mono_class_from_name): Search the modules compromising dynamic
11946         assemblies. Fixes #331601.
11948 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11950         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11951         exception if the type name contains an assembly component. Fixes #334203.
11953         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11954         modules inside dynamic assemblies. Fixes #334200.
11955         
11956         * reflection.c: Set image->public_key and image->public_key_length;
11958         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
11959         fields.
11961         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
11962         
11963 2007-10-16  Mark Probst  <mark.probst@gmail.com>
11965         * metadata.c: Implemented correct comparing of generic classes.
11966         An inflated generic class can be equal to a non-inflated one if it
11967         is inflated with generic type variables as type arguments.  Fixes
11968         bug #333798.
11970 2007-10-15  Dick Porter  <dick@ximian.com>
11972         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
11973         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
11974         81646.
11976         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
11977         instead of a monitor lock.  This means that monitor_try_enter and
11978         co can set the thread state safely.
11979         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11980         thread_interrupt_requested, so interrupt actually works.
11982         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
11983         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
11984         state accessor function
11986 2007-10-15  Martin Baulig  <martin@ximian.com>
11988         * mono-debug.h
11989         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
11990         the debugger with the current runtime.
11992 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
11994         * object.c, object-internals.h: added the ability to set a single
11995         trampoline for all the slots in a vtable.
11997 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11999         * marshal.c: deal with a possible race condition during multicast
12000         delegate invocation.
12002 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12004         * class.c: ensure value type methods don't have the synchronized
12005         flag set.
12007 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12009         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12010         breaks the build.
12012 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12014         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12015         to take an options parameter so that empty entries can be removed during
12016         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12018 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12020         * marshal.c: make sure we don't store the signature from a dynamic
12021         method into the runtime invoke cache (bug #327189).
12023 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12025         * marshal.c: make sure the wrapper methods are properly initialized.
12027 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12029         * metadata.c, metadata-internals.h: Generalized
12030         mono_type_stack_size() to mono_type_stack_size_internal() which
12031         takes an additional argument specifying whether it allows open
12032         types.
12034 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12036         * verify.c (do_invoke_method): handle typedbyref params
12037         correctly and check for unverifiable return values.
12039         * verify.c (do_newobj): fix a warning.
12041 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12043         * verify.c: don't tread typedbyref as allways unverifable,
12044         so uses, like (ld/st)loc.0 are valid. verify for the cases
12045         that it matters, like boxing related operations.
12047 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12049         * verify.c: add verification of the newobj opcode. verification
12050         of delegate instantation still missing due ldftn and virldftn not
12051         pushing the function type on stack
12053 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12055         * class-internals.h: Runtime generic context data structure
12056         definition.
12058         * object.c: Initialization of runtime generic context at runtime
12059         vtable creation time.
12061 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12062         * class.c (mono_class_create_from_typedef,
12063         mono_class_from_generic_parameter, mono_ptr_class_get,
12064         mono_fnptr_class_get, mono_bounded_array_class_get)
12065         * domain.c (mono_domain_create, mono_domain_free)
12066         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12067         * image.c (do_mono_image_load, mono_image_close):
12068         Hooked up load-unload profiler events.
12070 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12072         * domain.c: track statistics about the actual amount of native code
12073         allocated.
12075 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12077         * class.c: the valuetype enumerators don't have the additional
12078         supertypes interfaces.
12080 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12082         * class.c: need more interfaces setup for the IEnumerator<T>
12083         object created for arrays (tests/ienumerator-interfaces.2.cs).
12085 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12087         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12089 2007-10-05  Alp Toker  <alp@atoker.com>
12091         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12092         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12093         #315863.
12095 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12097         * verify.c (verify_type_compatibility_full): verification of
12098         compatibility improved, validates correctly non-strict checks between
12099         native int and I4 types different than (unsigned)int32.
12101         * verify.c (do_store_indirect): added, do all verification of
12102         ldind.X opcodes. 
12104         * verify.c (get_load_indirect_mono_type): renamed to
12105         get_indirect_op_mono_type, as it now returns the MonoType for 
12106         ldind.X and stind.X opcodes.
12108 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12110         * reflection.c: Fix the encoding of generic type definition for
12111         TypeBuilders.
12113         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12114         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12115         be made. Typespec check is done prior to typeref cache lookup.
12117         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12118         mono_image_typedef_or_ref_full.
12120         * reflection.c (encode_generic_class): encode the generic class
12121         directly instead of calling encode_type.
12123         * reflection.c (encode_type): encode the generic type definition
12124         MonoClass as a generic instantiation.
12126         * reflection.c (create_typespec): cache typespec tokens in
12127         the assembly->typespec cache. Don't create typespec for a generic
12128         instance MonoClass. Create typespec for the generic type defintion.
12130         * reflection.c (create_generic_typespec): encode the generic
12131         class directly instead of calling encode_type.
12133         * reflection.c (mono_image_create_token): encode the generic
12134         type definition not using a typespec for MonoType instances.
12137 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12139         Fix #328812
12140         * class.c (mono_image_init_name_cache): Don't return nested
12141         'protected internal' classes.
12142         (mono_class_from_name_case): Likewise.
12144 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12146         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12147           common function used by both DefaultConfig in System.dll and
12148           InternalConfigurationHost in System.Configuration.dll.
12150 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12152         * class.c: automatically add to vectors only a few essential explicit
12153         generic interfaces. The rest of the interfaces that arrays should
12154         provide are currently implicitly added (but still not lazily, see the
12155         design in the discussion of bug#325495 for the details of what is
12156         needed for that). Additionally, implicit interfaces are assigned the
12157         same vtable slot as the explicit interfaces (as they are compatible):
12158         this enables huge memory savings since we don't need to instantiate
12159         as many memthods and as large vtables anymore. Also, Since
12160         GetEnumerator<T> returns an instance of a type that is required to
12161         support a similarly large set of interfaces as arrays, we add
12162         implicit interfaces and interface offset sharing support to those
12163         types, too. This change adds all the required interfaces so that
12164         the anonarray.cs test case in the bug report works (we don't add
12165         all the interfaces to arrays of arrays 3-level deep and more because
12166         of the memory requirements explained in the bug and since they are much
12167         less common: the lazy-loading support will enabled them to work, too).
12169 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12171         * verify.c (merge_stacks): major clean up, all type compatibility
12172         checks are done by verify_type_compatibility. This fix my earlier lack
12173         of understanding of the CLR type system and merge_stacks no longer looks
12174         scary.
12176         * verify.c: fixed some bad spelling.
12178 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12180         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12181         a given stack slock.
12182         
12183         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12184         verify_type_compatibility_full. This removed a near indentical function and fixed
12185         handling of Int32 and IntPtr across all opcodes.
12187 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12189         * class.c: only vectors have the additional generic interfaces.
12191 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12193         * mono-config.c: Use g_strcasecmp instead of
12194         strcasecmp like everywhere else to fix
12195         compilation with MSVC.
12196         
12197         Code is contributed under MIT/X11 license.
12199 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12201         * object.c, object-internals.h: refactored the IMT code to enable
12202         building a single slot at a time and lazily creating the IMT trampolines
12203         and thunks.
12205 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12207         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12209         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12210         Fixes #328501.
12211         
12212 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12214         * loader.c (method_from_methodspec): Rearrange to avoid
12215         un-necessary exposition.  Don't assert out if the method's
12216         declaring type is a generic type definition.
12218 2007-09-28  Martin Baulig  <martin@ximian.com>
12220         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12222 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12224         * class-internals.h: optimize field layout of MonoClass to
12225         requires less cachelines at runtime and save a few bytes on 64 bit
12226         systems.
12228 2007-09-28  Jb Evain  <jbevain@novell.com>
12230         * reflection.c: when encoding type names in custom attributes,
12231         if the type is a closed generic type, its generic arguments
12232         have to be serialized as AssemblyQualifiedName, so that when
12233         they are deserialized, it's possible to re-create them properly.
12234         Fixes #329450.
12237 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12239         * object.c, class-internals.h: added delegate-creation counter.
12241 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12243         * class.c: cleanup of the code that synthetizes interfaces for
12244         arrays in 2.0: saves quit a bit of corlib mempool memory.
12245         Code to fix bug #325495 ifdeffed out for now until the issues
12246         with memory usage and O(n^2) behaviour are fixed.
12248 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12250         * marshal.c: when possible, do not duplicate the name of the methods
12251         in the method builder and in the generated MonoMethod.
12253 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12254         * verify.c: added support for type checking ldind_* opcodes.
12256 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12258         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12259         which is used to distinguish the fully open instantiation of a TypeBuilder
12260         with the rest. This temporary hack is required to restore the property that
12261         the fully open instantiation is the same type of the generic type definition.
12263         * class-internals.h (mono_generic_class_is_generic_type_definition):
12264         new function as part of the internal API.
12266         * class.c (inflate_generic_type): return NULL when the generic inst is
12267         fully open. The fully open generic type is now the same as the generic type
12268         definition for non TypeBuilder types.
12270         * class.c (mono_generic_class_get_class): removed assert since it is
12271         no longer valid, gklass->cached_class can point to the generic type definition.
12273         * class.c (mono_generic_class_is_generic_type_definition): new.
12275         * metadata.c (mono_generic_class_hash): added is_tb_open field
12276         to the hash calculation.
12278         * metadata.c (free_generic_class): if the generic class is associated
12279         with the generic type definition, its field will come from the mempool and
12280         must not be freed.
12282         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12283         new, this function identifies the corner case of a TypeBuilder fully open
12284         instantiation.
12286         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12287         for lookup. Set gclass->cached_class to be the container class in case of
12288         the fully open instantiation of non TypeBuilder types.
12290         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12291         to compare generic classes.
12293         * reflection.c (method_encode_methodspec): remove assert that
12294         no longer is valid.
12296         * reflection.c (mono_reflection_generic_class_initialize): add
12297         an aditional assert to ensure the proper type is used.
12299 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12301         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12302         to enjoy it.
12304 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12306         * verify.c (push_arg): Fixed support for ldarga
12307         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12308         MonoType used as first arg in case of instance calls.
12310 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12312         * verify.c: Support for verifying VAR and MVAR types, 
12314 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12316         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12317         accessors correctly.
12319 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12321         * threads.c: support OSX and other systems in
12322         mono_thread_get_stack_bounds (bug #328026).
12324 2007-09-25  Martin Baulig  <martin@ximian.com>
12326         * mono-debug.h
12327         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12329 2007-09-24  Martin Baulig  <martin@ximian.com>
12331         * mono-debug.h
12332         (MonoDebugClassEntry): Moved the definition of this struct into
12333         mono-debug.c to make it private.
12335         * mono-debug.c
12336         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12337         type table per symbol file, we don't need to store the symfile id
12338         any longer.
12340 2007-09-24  Martin Baulig  <martin@ximian.com>
12342         Create one type table per symbol file, since a `MonoClass *' gets
12343         invalid when its image is unloaded.
12345         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12346         (MonoDebugHandle): Added `type_table'.
12348 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12350         * mempool.c, mempool.h: added mono_mempool_new_size () API
12351         to be able to specify a smaller initial size for the pool.
12352         Adjusted the code to slowly increase pool size before using
12353         the previous default size.
12354         * image.c: use a small initial size for image mempools.
12356 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12358         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12359         Fixes ##320990.
12361         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12362         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12364 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12366         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12367         free. Fixes #327438.
12369 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12371         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12372         generic instantiations, etc.
12373         <MONO_TYPE_ARRAY>: Likewise.
12375 2007-09-21  Martin Baulig  <martin@ximian.com>
12377         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12378         these structs were never defined.
12379         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12381 2007-09-21  Martin Baulig  <martin@ximian.com>
12383         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12385 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12387         * image.c: removed the guid hash tables: we can get the same info
12388         without the additional memory usage hit (partially fixes also bug #327052).
12390 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12392         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12393         event to handle unloading methods. After the event is called, the
12394         corresponding MonoMethod* must be considered invalid.
12395         * loader.c (mono_free_method): call the new mono_profiler_method_free
12396         event.
12398 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12400         * domain-internals.h: New flag in MonoJitInfo which marks shared
12401         generic methods.  New hash table (shared_generics_hash) in
12402         MonoDomain to keep track of shared generic methods.  Prototypes
12403         for functions to register and lookup shared generic methods.
12405         * domain.c: Support for registering and looking up shared generic
12406         methods via a hash table (shared_generics_hash) in MonoDomain.
12408         * class-internals.h: New exception to signal failure of shared
12409         compilation of a generic method.  New counters for generics
12410         sharing in MonoStats.
12412 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12414         * image.c, metadata-internals.h: don't keep a file descriptor open
12415         for loaded assemblies (bug#325988).
12417 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12419         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12420         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12421         use the corresponding datatypes.
12422         (type_in_image): Update to changes.
12423         (CleanForImageUserData): Simplify.
12424         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12425         Avoid quadratic behaviour in handling the "stolen" list by
12426         separating the filter predicate out, and by prepending the stolen
12427         items rather than appending them.
12428         (steal_ginst_in_image): Likewise.
12429         (mono_metadata_clean_for_image): Update to changes.
12431 2007-09-19  Martin Baulig  <martin@ximian.com>
12433         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12435 2007-09-19  Martin Baulig  <martin@ximian.com>
12437         * mono-debug.c (mono_debug_cleanup): Don't call
12438         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12440 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12442         Fix crash on 'make run-test' in mcs/errors
12443         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12444         Avoid more potential allocations in mono_class_from_mono_type.
12445         (ginst_in_image): Update to changes.
12446         (gclass_in_image): Rearrange slightly.
12448 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12450         * class.c (mono_class_init): Move the code that sets up class->methods to 
12451         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12453         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12454         canonical instance of an inflated generic signature.
12455         (mono_type_create_from_typespec): Remove an invalid free.
12457         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12459 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12461         * domain-internals.h: added a declaration of the
12462         mono_assembly_load_full_nosearch internal function.
12464         * assembly.c (mono_assembly_load_with_partial_name): use
12465         mono_try_assembly_resolve return value properly.
12466         (mono_assembly_load_full_nosearch): copied the function body from
12467         mono_assembly_load_full, without the code to invoke assembly
12468         search hooks.
12469         (mono_assembly_load_full): calls the above new function and if the
12470         assembly is not resolved, invokes the search hooks.
12472         * appdomain.c (mono_runtime_init): restore the global postload
12473         assembly search handlers.
12475 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12477         * class.c (mono_class_init): Make sure class->methods and class->properties
12478         are never NULL in the generics case.
12480         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
12482 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
12484         * metadata.c (free_generic_class): Disable some code to fix the build.
12486         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
12488         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
12489         from the image mempool.
12491         * metadata.c (free_generic_class): Free more data from the inflated class.
12493         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
12495         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
12496         mempool.
12497         (mono_type_create_from_typespec): Ditto.
12499         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
12500         MonoImage to the caller.
12501         (mono_init_internal): Save the opened image in a global variable.
12502         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
12504         * reflection.c (resolve_object): Fix a leak.
12506         * metadata.c: Fix the freeing of data in the generics caches.
12507         
12508         * metadata.c (free_generic_inst): Comment this out to fix the build.
12509         (free_generic_class): Ditto.
12511         * metadata.c: Free cached generic methods, instantinations and classes when
12512         they are removed from the caches.
12513         (mono_metadata_free_type): Free the type itself.
12515         * class.c: Free the result of mono_class_inflate_generic_type () in a few
12516         places.
12518 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12520         * boehm-gc.c: restrict managed allocs to __thread supporting
12521         architectures.
12523 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
12525         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
12526         (mono_generic_class_get_class): Fix a leak.
12528         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
12529         mono_metadata_free_type ().
12530         (mono_metadata_inflate_generic_inst): Fix a leak.
12532 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12534         * mono-debug.c (free_header_data): Fix a leak missed earlier.
12536         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
12537         mempool.
12539         * mono-debug.c (mono_debug_close_image): Fix call to 
12540         g_hash_table_remove ().
12542 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12544         * icall-def.h: redirect all the string ctor to the managed
12545         CreateString () methods.
12546         * string-icalls.c, string-icalls.h: removed dead code for string
12547         ctors and icalls.
12549 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12551         * mono-debug.c: Fix memory leaks.
12553 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12555         * threads-types.h: Implement mono_hazard_pointer_set and 
12556         mono_hazard_pointer_clear macros using do/while(0) to fix
12557         compilation with MSVC.
12558         
12559         Code is contributed under MIT/X11 license.
12561 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12563         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12564         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12566 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12568         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12569         icalls.
12571 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12573         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12574         managed-code allocated as well.
12576 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12578         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12580 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12582         * boehm-gc.c: fixed the build after the AOT changes.
12584 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12586         * wrapper-types.h: Add an ALLOC wrapper type.
12588         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12589         reference managed allocator methods.
12591 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12593         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12594         of Type array and not MonoType, a fix suggested by Hari.
12595         
12596 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12598         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12599         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12600         
12601         Code is contributed under MIT/X11 license.
12603 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12605         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12607 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12609         * image.c (do_mono_image_open): if assembly file fails to open and
12610         MONO_IOMAP is in effect, try to find the path in a
12611         case-insensitive way.
12613         * appdomain.c (mono_runtime_init): do not install postload hooks -
12614         tests show that MS.NET doesn't use anything of that sort to
12615         trigger the AppDomain.AssemblyResolve event.
12616         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12617         made non-static.
12618         (mono_runtime_init): init portability helpers here.
12620         * assembly.c (mono_assembly_load_with_partial_name): if other   
12621         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12622         to resolve the assembly.
12624         * domain-internals.h: added mono_try_assembly_resolve and marked
12625         it as internal.
12627 2007-09-11  Jb Evain  <jbevain@novell.com>
12629         * object-internals.h (MonoReflectionDynamicMethod): add
12630         a `MonoReflectionType *owner` field. The owner is used
12631         * reflection.c:
12632         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12633         method as the class declaring the dynamic method.
12634         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12635         dynamic method to the declaring type of the methodbuilder.
12637 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12639         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12640         rules for calling methods via reflection.
12642 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12644         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12645         Inflate MonoType's.
12647 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12649         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12650         provide a managed method that does fast allocations without needing
12651         a managed->unmanaged transition. Boehm GC implementation currently
12652         enabled for ptrfree objects on sane architectures.
12654 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12656         * marshal.c, marshal.h: exported a couple of useful functions and
12657         added mono_mb_get_label () to easily handle backward branches.
12659 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12661         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12663 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12665         * loader.c (find_method): Fixed the regression introduced while
12666         fixing bug #81466.
12668 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12670         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12671         well.
12672         
12673         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12674         icall.c reflection.c: Pass a MonoGenericContext argument to 
12675         mono_lookup_dynamic_token ().
12677         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12678         #82744.
12679         
12680 2007-09-09  Robert Jordan  <robertj@gmx.net>
12682         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12683         for generic methods.
12685         * object.c (mono_object_get_virtual_method): Handle generic methods.
12686         Fixes bug #78882.
12688         Code is contributed under MIT/X11 license.
12690 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12692         * image.c: fix locking in mono_image_load_file_for_image ().
12694 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12696         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12697         used only as a cache: added an icall to fill it.
12699 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12701         * reflection.h: exposed mono_reflection_free_type_info
12702         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12703         since mono_reflection_bind_generic_parameters makes a copy of it.
12704         * reflection.c (free_type_info): subinfos should be freed.
12705         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12706         made non static.
12707         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12708         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12709         this fixes #82695 and #81726.
12710    
12712 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12714         * process.h, process.c:  added support for user profile/info in
12715           ProcessStartInfo. For now only Windows works.
12717 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12719         * metadata.c: consider the generic arguments when comparing
12720         signatures (bug #82614).
12722 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12724         * cil-coff.h, image.c: updated assembly loader to cope with the
12725         PE32+ 64 bit file format.
12727 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12729         * assembly.c, class.c, domain.c, loader.c: remove useless
12730         inclusion of cil-coff.h.
12732 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12734         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12735         if interface is marked with CoClassAttribute. 
12736    
12737         Code is contributed under MIT/X11 license.
12739 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12741         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12742         if it's seen twice in major collections.
12744 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12746         * sgen-gc.c: big objects are not copied to the gray area, but they
12747         need to be considered for scanning, too, if they are brought alive
12748         by an object ready for finalizations or a survived one.
12750 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12752         * sgen-gc.c: properly account the number of disappearing links when
12753         they are nullified.
12755 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12757         * sgen-gc.c: share the code to scan the registered roots between the
12758         different types of collections.
12760 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12762         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12764 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12766         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12767         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12769 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12771         * security-manager.c (mono_security_manager_get_methods):
12772         LinkDemandSecurityException now has 2 arguments instead of 3.
12774 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12776         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12777         platforms which need it.
12779 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12781         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12782         dtor.
12784 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12786         * threads.c: free the thread static data on thread exit.
12788 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12790         * class.c: walk the hierarchy to find the generic definition for
12791         a class (fixes runtime part of bug #82498).
12793 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12795         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12796         ...
12798         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12800 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12802         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12804 2007-08-24  Robert Jordan  <robertj@gmx.net>
12806         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12808 2007-08-24  Jb Evain  <jbevain@novell.com>
12810         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12811         for byref types.
12813 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12815         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12816         #82286.
12818 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12820         * assembly.c: Fix a warning.
12821         
12822 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12824         * appdomain.c: parse the <runtime> section looking for the probing
12825         element with the 'privatePath' attribute, which sets additional
12826         directories in which the runtime should look for assemblies.
12828 2007-08-23  Robert Jordan  <robertj@gmx.net>
12830         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12831         Fixes #82499.
12833 2007-08-23  Martin Baulig  <martin@ximian.com>
12835         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12836         _mono_debug_init_corlib() and remove it from the header file.
12838 2007-08-23  Martin Baulig  <martin@ximian.com>
12840         * mono-debug-debugger.c
12841         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12842         don't notify the debugger about it.
12844         * mono-debug-debugger.h
12845         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12847 2007-08-23  Robert Jordan  <robertj@gmx.net>
12849         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12850         Code is contributed under MIT/X11 license.
12852 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12854         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12856 2007-08-22  Martin Baulig  <martin@ximian.com>
12858         * mono-debug.c: Store debugging info on a per-domain basis and
12859         free it on domain unload.  Add support for unloading symbol files.
12861         * mono-debug.h
12862         (MonoDebugList): New typedef.
12863         (MonoSymbolTable):
12864         - add `data_tables and `type_table'.
12865         - replace 'symbol_files' and `num_symbol_files' with a
12866           `MonoDebugList *'.
12867         (mono_debug_data_table): Removed.
12868         (mono_debug_list_add): New public function.
12869         (mono_debug_list_remove): New public function.
12870         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12871         (mono_debug_init_2_memory): Renamed into
12872         mono_debug_open_image_from_memory().
12873         (mono_debug_close_image): New public function.
12874         (mono_debug_domain_create): Likewise.
12875         (mono_debug_domain_unload): Likewise.
12876         (MONO_DEBUGGER_VERSION): Bump to 60.
12878         * mono-debug-debugger.h
12879         (MonoDebuggerEvent):
12880         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12881         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12882         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12883         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12884           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12885         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12886           meaning.
12887         (mono_debugger_add_symbol_file): Removed.
12888         (mono_debugger_add_type): Removed.
12889         (mono_debugger_lookup_type): Removed.
12890         (mono_debugger_lookup_assembly): Removed.
12892         * domain.c
12893         (mono_domain_create): Call mono_debug_domain_create().
12894         (mono_init_internal): Call mono_debug_init_corlib().
12896         * assembly.c
12897         (mono_assembly_close): Call mono_debug_close_image().
12899 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12901         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12902         mmap call.
12904 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12906         * sgen-gc.c: ensure section->pin_queue_end is initialized
12907         correctly when non pinning objects in the section have been found.
12909 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12911         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12912         containing a list of directories separated by ':'. MSDN docs say
12913         the directories should be separated with ';'. Part of a bugfix for
12914         bug #81446
12916 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12918         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12919         it should MonoType and not MonoClass.
12921 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12923         * culture-info-table.h : regenerated.
12925 2007-08-20  William Holmes  <billholmes54@gmail.com>
12927         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12928          to call ReplaceFile Kernel32 on windows or in io-layer.
12929         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12930         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12931          as an internal call.
12933         Code is contributed under MIT/X11 license.
12935 2007-08-20  Jb Evain  <jbevain@novell.com>
12937         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12938         and MONO_EXCEPTION_FIELD_ACCESS.
12940         * debug-helpers.[c|h]: new mono_field_full_name function.
12942 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12944         * class.c: Removed class_security_level() and moved it to
12945         security-core-clr.c.
12947         * security-core-clr.c, security-core-clr.h: class_security_level()
12948         is now public and renamed to mono_security_core_clr_class_level().
12949         It also looks for security attributes in the classes a class is
12950         nested in.
12952 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12954         * security-core-clr.c, security-core-clr.h: CoreCLR security
12955         utility functions.
12957         * Makefile.am: Added security-core-clr.[ch].
12959         * security-manager.c, security-manager.h: Functions and enum for
12960         setting and getting the security mode.
12962         * class.c: CoreCLR security checks.
12964 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12966         * icall-def.h, process.c, process.h: implemented icall to get
12967         user/system processor times.
12969 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12971         * domain.c, threads.c, class-internals.h, domain-internals.h: New
12972         reader-lock-free jit_info_table.
12974 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
12976         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
12978         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
12980         * object-internals.h (MonoException): Add missing _data member.
12982 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12984         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
12985         checking that only methods with matching qname or fqname are picked
12986         from implemented interfaces.
12988 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12990         * verify.c (do_newarr):added, do type verification of
12991         newarr ops, push the right value on the eval stack.
12992         * verify.c (mono_method_verify): use do_newarr
12995 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12997         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
12998         factored the common code into get_boxable_mono_type, which
12999         is now using mono_type_get_full, this fixed byref related tests.
13001 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13003         * class.c: added mono_type_get_full, this function has the same
13004         behavior of mono_class_get_full but the returned MonoType has
13005         all metadata of the associated token in case of a typespec token.
13006         * class.c: added mono_type_retrieve_from_typespec, used by 
13007         mono_type_get_full to retrieve the token type.
13008         * class.c (mono_class_create_from_typespec): changed to use
13009         mono_type_retrieve_from_typespec.
13010         * class.c (mono_ldtoken): changed to use mono_type_get_full
13011         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13012         * class-internals.h: exported mono_type_get_full for internal use.
13014 2007-08-16  Jb Evain  <jbevain@novell.com>
13016         * domain.c (supported_runtimes): add entry for
13017         the 'moonlight' runtime version.
13019 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13021         * verify.c (mono_method_verify): small typo sliped in.  
13023 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13025         * verify.c (do_unbox_value): added, do type verification of
13026         unboxing ops
13027         * verify.c (mono_method_verify): use do_unbox_value
13030 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13032         * verify.c (dump_stack_value): fixed typo, was printing string
13033         instead of object on stack.
13034         * verify.c (do_box_value): moved the byref check up as it leads
13035         to invalid code and should be done earlier.
13036         * verify.c: improved error messages for and ldobj
13038 2007-08-15  William Holmes  <billholmes54@gmail.com>
13040         * marshal.c (emit_marshal_custom): Omit the call to 
13041           marshal_native_to_managed when calling native to managed 
13042           and the argument is specified as an out argument.
13044         Code is contributed under MIT/X11 license.
13046 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13048         * verify.c: fixed the type checks for generics, function pointers and vectors.
13049         Added type verification for ldobj and ldtoken. The verifier
13050         would segfault if header or signature of a method contained references
13051         to non-existant types.
13053 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13055         * marshal.c (cominterop_get_ccw): Patch from
13056         Bill Holmes to no walk up interface hierarchy. 
13057         All parent methods should be present in the interface for COM.
13058    
13059         Code is contributed under MIT/X11 license.
13061 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13063         * marshal.c (emit_marshal_com_interface): Patch from
13064         Bill Holmes to handle COM Interfaces as return values
13065         for native->managed calls.
13066    
13067         Code is contributed under MIT/X11 license.
13069 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13071         * marshal.c (cominterop_get_idispatch_for_object): Implement
13072         for runtime callable wrappers.
13073    
13074         Code is contributed under MIT/X11 license.
13076 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13078         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13079         so 2.0 types are accessible
13082 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13084         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13085         once we load mscorlib.   Due to the order in which we initialize,
13086         the mono_assembly_load_full routine that loads mscorlib did not
13087         load friends.   We now load it once we load the
13088         mono_defaults.internals_visible_class class. 
13090         * assembly.c: Expose the mono_load_friend_assemblies method.
13092 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13094         * verify.c: improved the handling of boxing, better
13095         type checking for unary ops and conversion. Fix bug
13096         regarding managed pointer compatibility checking
13098 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13100         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13102         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13104 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13106         * reflection.c (dup_type): Remove.
13107         * class.c (dup_type): Remove.
13108         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13109         instead of the dodgy 'dup_type'.
13110         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13111         handle the case where 'dup_type' needed the second argument.
13113 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13115         * domain.c: Fix a warning.
13117 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13119         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13120         checking that methods with the same fqname are not overridden
13121         with a method from an ancestor.
13123 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13125         * threads.c (free_thread_static_data_helper): Avoid a crash if
13126         thread->static_data is not yet set.
13128 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13130         * marshal.c: Use correct image when emitting
13131         native wrapper for COM calls.
13132    
13133         Code is contributed under MIT/X11 license.
13135 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13137         * icall-def.h, security.c, security.h :
13138           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13140 2007-08-07  Martin Baulig  <martin@ximian.com>
13142         * mono-debug-debugger.h
13143         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13145         * domain.c (mono_domain_free): Call
13146         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13148 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13150         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13151         * verify.c (in_same_block): code should test if either offset is inside the clauses
13152         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13153         and filter blocks
13155 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13157         * image.c (mono_image_close): Fix a leak.
13159         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13161         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13163 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13165         * domain.c, threads.c, threads-types.h: fix memory retention issue
13166         with thread static variables not being cleared on domain unload.
13167         Reuse thread static slots after domain unload.
13169 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13171         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13172         nullable type.
13174         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13175         now done in mono_runtime_invoke_array.
13177         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13178         receiver is a nullable type.
13180         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13181         generic parameter.
13183 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13185         * marshal.c: Implement COM Objects as return type for 
13186         managed->unmanaged calls. Added Release calls for COM Object
13187         out/return values in managed->unmanaged calls.
13189         Code is contributed under MIT/X11 license.
13191 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13193         * threads.h, threads-type.h: move the hazard pointer declarations
13194         to the private header.
13196 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13198         * file-io.c, appdomain.c: memory leak fixes.
13200 2007-08-02  Dick Porter  <dick@ximian.com>
13202         * socket-io.c
13203         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13204         SO_REUSEADDR setting into io-layer/sockets.c.
13206 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13208         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13209         from Object when called on a generic parameter. Fixes #82211.
13211 2007-08-01  Dick Porter  <dick@ximian.com>
13213         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13214         Fixes bug 79250 yet again.
13216 2007-07-30  Martin Baulig  <martin@ximian.com>
13218         Merged the `debugger-dublin' branch.
13220         * mono-debug.h
13221         (MonoDebugDataTable): New typedef.
13222         (MonoDebugMethodAddressList): New typedef.
13223         (MonoDebugWrapperData): Removed.
13224         (MonoDebugSymbolTable): Removed `current_data_table',
13225         `current_data_table_size', `current_data_table_offset'.
13226         (MonoDebugDataItemType): Moved into mono-debug.c.
13227         (MonoDebugMethodJitInfo): Remove `address'.
13228         (mono_debug_data_table): New global variable.
13229         (mono_debug_lookup_method_addresses): New public function.
13230         (mono_debug_find_method): Take a `MonoMethod *', not a
13231         `MonoDebugMethodInfo *'.
13233         * mono-debug.c: Drop support for the old symbol tables.
13235 2007-06-28  Martin Baulig  <martin@ximian.com>
13237         * mono-debug.c (mono_debug_debugger_version): New public variable.
13239 2007-07-31  William Holmes  <billholmes54@gmail.com>
13241         * metadata.c Changed mono_type_create_from_typespec to not insert
13242           the type into the hash map until after
13243           do_mono_metadata_parse_type has completed.
13244         Fixes Bug #82194
13245         Code is contributed under MIT/X11 license.
13247 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13249         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13250         generic parameter. Fixes #82211.
13252 2007-07-27  Jb Evain  <jbevain@novell.com>
13254         * pedump.c (dump_metadata, dump_metadata_header): dump
13255         versions contained in the metadata header.
13257 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13259         * threads.c: register small_id_table with the GC.
13261 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13263         * threads.c, threads.h, class-internals.h, object-internals.h:
13264         Hazard pointers, to be used by lock-free parallel algorithms.
13266 2007-07-26  Dick Porter  <dick@ximian.com>
13268         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13269         routine on non-windows platforms, as I've not managed to think of
13270         a non-kludgy way of doing this.  Finishes off bug 78739.
13272 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13274         * object.c: properly setup interface_bitmap in proxy vtables.
13276 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13278         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13279         to create unique shadow copy target directories, use the domain's
13280         serial number instead. Each domain gets a unique target directory
13281         that way.
13283         * domain.c (mono_domain_create): added code to increment domain
13284         shadow copy serial number and cache the value in the current
13285         domain structure.
13287         * domain-internals.h (struct _MonoDomain): added a new field -
13288         shadow_serial to hold the serial number used in generation of
13289         shadow-copy directories. This is to make sure that the directory
13290         name is unique for each and every domain created. We avoid a race
13291         condition with overriding assemblies already in use by other app
13292         domains.
13294 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13296         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13297         binding generic parameters.
13299 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13301         * metadata.c (do_mono_metadata_parse_generic_class): Use
13302         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13303         error.
13305 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13307         * loader.c, class-internals.h, reflection.c: removed the per-method
13308         generics hashtable: we use the global one through the call of
13309         mono_class_inflate_generic_method ().
13311 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13313         * class.c, metadata.c, class-internals.h: introduce yet another
13314         generics global cache for inflated methods (fixes 98% of the perf
13315         issue in bug #81806).
13317 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13319         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13320         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13321         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13322         return a MonoGenericInst containing (a copy) of those types.
13323         (mono_metadata_inflate_generic_inst): Update to changes.
13324         (mono_metadata_parse_generic_inst): Likewise.
13325         (mono_get_shared_generic_inst): Likewise.
13326         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13327         (mono_reflection_bind_generic_method_parameters): Likewise.
13328         * metadata-internals.h: Likewise.
13329         * icall.c (free_generic_context): Kill.
13330         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13332         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13333         mono_metadata_type_dup.
13334         * marshal.c (mono_mb_create_method): Likewise.
13336         * metadata.c (mono_metadata_type_dup): Rename from
13337         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13338         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13339         * marshal.c, metadata-internals.h: Update to changes.
13341 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13343         * class.c: fixed a small leak for array classes and removed warning.
13345 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13347         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13348         Return 0x8000000 for return parameters. Fixes #82161.
13350 2007-07-21  Marek Habersack  <grendello@gmail.com>
13352         * appdomain.c (get_shadow_assembly_location): append the current
13353         ticks value to the path. Avoids overwriting the same assemblies by
13354         several threads at the same time.
13356 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13357         and Raja R Harinath  <rharinath@novell.com>
13359         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13360         Simplify slightly.
13361         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13362         property for testing if a method is a generic method definition.
13364 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13366         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13368 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13370         * verify.c: used function from private branch, reverted to the one in class.h 
13372 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13374         * verify.c: a typo slipped in and the code wont compile
13376 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13378         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13379         disabled box instruction as it is doing the wrong thing
13380         improved stack dump messages, now it is easier to debug type related issues
13383 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13385         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13387 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13389         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13390         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13391         grouped with class and valuetype. This change will simply 
13392         the code as it should be handled just like unmanaged pointers.
13394 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13396         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13398 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13400         * verify.c: several stack merge issues fixed, reference comparisons now
13401         check the type size. strict type check now works correctly.
13402         added more uses of IS_MANAGED_POINTER macro.
13403         fixed issues pointed by running the test suite against .net.
13404         
13406 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13408         * class.c, loader.c, class-internals.h: Removed the
13409         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13410         defines.
13412         * icall.c: Better error checking in some internal reflection
13413         methods.
13415 2007-07-18  William Holmes  <billholmes54@gmail.com>
13417         * filewatcher.c : removed unused variable 'filename' in 
13418           ves_icall_System_IO_FSW_SupportsFSW
13420 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13422         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13423         obsolete, removed.
13425 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13427         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13428         
13429         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13431 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13433         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13434         Implement generics support.
13435         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13437         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13438         type_args and method_args arguments.
13439         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13440         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13441         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13443 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13445         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13446           It adds a rootimage parameter to mono_reflection_get_type_internal,
13447           adds new function mono_reflection_get_type_with_rootimage and use
13448           the rootimage to resolve the types instead of the current image
13450 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13452         * culture-info-table.h: Forgot to update after r78304.
13454 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13456         * class.c (mono_class_is_open_constructed_type)
13457         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13459 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13461         * class.c (mono_bounded_array_class_get):  method fails if used with
13462         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13463         avoiding calculating the size for such array as it cannot be instantiated.
13464         Fix bug #82015
13466 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13468         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13469         field.
13470         * metadata.c, reflection.c: Update to changes.
13472 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
13474         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
13475         mono_class_is_valid_enum, they are used to valide a enum when loading.
13476         * reflection.c: used new functions to throw TypeLoadException when and
13477         invalid enum is build with TypeBuilder. Fixes #82018
13478   
13479 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13481         * object.c: forgot commit of mono_class_setup_methods () to access
13482         iface->methods.
13483         * object-internals.h: added a few more handy fields to
13484         MonoIMTCheckItem.
13486 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
13488         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
13489         iface->methods.
13491 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13493         * class-internals.h, object-internals.h, object.c: IMT-based
13494         interface invocation core from Massimiliano Mantione
13495         (massi@ximian.com) with a reworked arch-specific interface,
13496         bsearch implementation and a few bugfixes and memory savings by me.
13498 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
13500         * class.c (mono_class_create_from_typedef): mono would segfault if 
13501         an enum did not have a __value field. It now throws a TypeLoadException
13502         for such cases. Fix bug #82022
13504 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13506         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
13508 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13510         * class.c (mono_class_init): If a class is already inited but has
13511         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
13513 2007-07-09  Mark Probst  <mark.probst@gmail.com>
13515         * class.c: Properly handle the case of an unimplemented interface
13516         method.  Fixes: 81673.
13518 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13520         * class-internals.h, object.c: cleanup patch from massi: use
13521         MonoVTable->interface_bitmap since the vtable interfaces offset array
13522         is going away.
13524 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
13526         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
13527         GetMDStreamVersion icall instead.
13529 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
13531         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
13532         not use mono_dl_build_path() with a full library name: makes
13533         fallbacks to libgaim and libfam work.
13535 2007-07-06  William Holmes  <billholmes54@gmail.com>
13537         * assembly.c: Added a continue statement in probe_for_partial_name when
13538          parse_assembly_directory_name fails.  Fixes : 82002
13540 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
13542         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
13543         and added a verification  for TYPEDBYREF.
13544         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
13545         make native int interchangeable with int32 and some small cleanup and formating.
13546         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
13547         handle byref of byref.
13548         * verify.c (push_local): handle byref of byref.
13549         * verify.c (do_binop): invalid mix of values is unverifiable
13550         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13551         added visibility checks
13552         * verify.c (field related method): added visibility checks
13553         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13555 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13557         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13558         string.
13560 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13562         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13564         * marshal.c (emit_marshal_string): When returning a string from managed code,
13565         allways make a copy even for unicode strings. Fixes #81990.
13567 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13569         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13570         of byref generic inst types (bug #81997).
13572 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13574         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13575         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13577 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13579         * marshal.c (emit_marshal_string): Add support for unicode strings in
13580         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13582 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13584         * verify.c: field load/store are now verified, missing only access checks now
13586 2007-06-28  Martin Baulig  <martin@ximian.com>
13588         * mono-debug.c (mono_debug_debugger_version): New public variable.
13590 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13592         * locales.c: When constructing DateTimeFormat or NumberFormat for
13593         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13594         MonoCultureInfo contructed from the current locale is always
13595         read-only and has UseUserOverride set to true. All MonoCultureInfo
13596         instances returned for GetCultures have both IsReadOnly and
13597         UseUserOverride set to true. Fixes part of bug #81930.
13599 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13601        * icall-def.h: Update System.__ComObject icalls
13602        * marshal.c: Avoid managed transition (and object creation)
13603        when looking up COM interface in RCW.
13604        * marshal.h: Ditto.
13605        
13606        Code is contributed under MIT/X11 license.
13608 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13610         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13611         to avoid crashes during assembly unloading.
13613 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13615         Fix MethodInfo.IsGenericMethodDefinition
13616         * reflection.c (mono_reflection_bind_generic_method_parameters):
13617         Rearrange code to ensure we always uses a generic method definition.
13618         * class.c (mono_class_inflate_generic_method_full): Set
13619         'generic_container' field only for generic method definitions.
13620         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13621         Use presense of 'generic_container' field as indication of being a
13622         generic method definition.
13624 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13626         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13628         * object-internals.h: Reflect changes in the layout of the managed Delegate
13629         class.
13630         
13631         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13632         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13633         runtime memory used by the dynamic method. Fixes #77146.
13635 2007-06-21  Dick Porter  <dick@ximian.com>
13637         * file-io.h: 
13638         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13639         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13640         81767.
13642 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13644         * reflection.c (method_encode_methodspec): Add a tripwire.
13645         * class.c (inflate_generic_type): The fully open generic type is
13646         not the same as the generic type definition.
13648 2007-06-21  Martin Baulig  <martin@ximian.com>
13650         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13652         * mono-debug-debugger.h
13653         (MonoDebuggerBreakpointInfo): Removed.
13654         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13655         (mono_debugger_remove_breakpoint): Likewise.
13656         (mono_debugger_breakpoint_callback): Likewise.
13657         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13659 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13661         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13662         generic type is not the same as the generic type definition.
13663         * class.c (mono_generic_class_get_class): Likewise.
13665 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13667         * icall.c: The second argument to 
13668         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13669         is a MonoType not a MonoClass.
13671 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13673         * verify.c: support for function pointers in the verifier
13675 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13677         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13679 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13681         * assembly.c: removed Mono.Data.SqliteClient from the list of
13682         forward-compatible assemblies as it breaks the ABI (bug #81899).
13684 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13686         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13687         lookup/update with the loader lock.
13688         * reflection.c (mono_class_bind_generic_parameters): No need to
13689         protect mono_metadata_lookup_* with the loader lock.
13690         * class.c (inflate_generic_type): Likewise.
13691         
13692         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13693         on a generic instantiated type.
13695 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13697         *verify.c: produce meanfull error messages on verification error
13698         *verify.c: fixed some cases of verification errors reported as validation errors
13699         *pedump.c: fixed the error name array, now it shows validation errors properly
13700         *verify.h: fixed the contant that should be used for verification errors
13702 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13704         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13705         for bug #77596, 81858 and 80743 (generics data structures on domain
13706         unload).
13708 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13710         Avoid allocating 'MonoGenericContext' on the heap.
13711         * class-internals (_MonoMethodInflated::context): Make field
13712         inline, not a pointer.
13713         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13714         stack.  Use the context embedded within the inflated method as the
13715         hash key, rather than 'new_context'.
13716         * class.c (inflate_generic_context): Simplify.  Return a struct
13717         rather than allocating on the heap.
13718         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13719         doesn't salt away a copy of the context -- simplifying the
13720         lifetime rules of a 'MonoGenericContext *'.
13721         (mono_method_get_context): Return pointer to embedded context.
13722         (setup_generic_array_ifaces): Allocate temporary context on stack.
13723         * reflection.c (inflate_mono_method): Likewise.
13724         (mono_reflection_bind_generic_method_parameters): Likewise.
13725         Use the context embedded within the inflated method as the hash key.
13727         Avoid a source of allocation of 'MonoGenericContext'.
13728         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13729         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13730         * class.c: Update to changes.
13731         (mono_generic_class_get_context): Simplify drastically.  Now just
13732         returns a pointer to the field.
13733         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13734         argument as a const pointer.
13735         (mono_metadata_generic_context_equal): Likewise.
13736         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13737         Update to changes.
13739 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13741         * verify.c improved the handling of brtrue/brfalse, factored out common code
13743 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13745         Kill MonoGenericMethod.
13746         * class-internals.h (MonoGenericContext::method_inst): Rename from
13747         'gmethod' and convert to a MonoGenericInst.
13748         (MonoGenericMethod): Remove.
13749         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13750         * loader.c (method_from_methodspec): Update to changes.  Use a
13751         MonoGenericContext as the key to the hashtable.
13752         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13753         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13754         (mono_metadata_generic_context_hash): Likewise from
13755         'mono_metadata_generic_method_hash'.  Change hash function.
13756         (mono_metadata_load_generic_params): Update to changes.
13757         (mono_get_shared_generic_method): Remove.
13758         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13759         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13760         (inflate_generic_context): Likewise.
13761         (mono_class_inflate_generic_method_full): Likewise.
13762         (setup_generic_array_ifaces): Likewise.
13763         (mono_class_create_from_typespec): Likewise.
13764         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13765         (method_encode_methodspec): Update callsite.
13766         (reflection_methodbuilder_to_mono_method): Update to changes.
13767         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13768         MonoGenericContext as the key to the hashtable.
13769         (inflate_mono_method): Update to changes.
13771         * class-internals.h (MonoGenericMethod::container): Remove.
13772         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13774 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13776         * profiler-private.h, profiler.c, profiler.h: added API to profile
13777         exception events.
13779 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13781         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13783 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13785         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13786         Fixed overflow and underflow not aborting the verification process.
13788 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13790         * class-internals.h (MonoStats): Added stats entries for dynamic
13791         code allocations.
13793 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13795         * loader.c (mono_free_method): Free header->locals and header->clauses.
13797         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13798         dynamic case.
13800         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13802         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13804 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13806         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13807         the tables.
13809 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13811         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13813 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13815         MonoGenericMethod on a diet
13816         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13817         here ...
13818         (_MonoGenericMethod::reflection_info): ... from here.
13819         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13820         Update to changes.
13821         * reflection.c (inflate_mono_method): Likewise.
13822         (mono_reflection_bind_generic_method_parameters): Likewise.
13824 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13826         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13827         *verify.c: factored long ldarg forms to share code with short forms
13829 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13831         *verify.c: fixed code formating factored some duplicate code
13832         into a new function
13834         *verify.h: fixed binary incompatibility introduced earlier
13836         *pedump.c: fixed formating
13838 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13840         Fix assertion when disassembling Mono.C5.dll
13841         * loader.c (method_from_methodspec): Avoid inflating a method
13842         twice with the same context.  If the methodref is inflated, use
13843         the declaring method instead.
13845         * class.c (mono_class_from_generic_parameter): Fix case similar to
13846         bug #81830 handled below, but for method containers.
13848 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13850         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13851         get_shared_generic_class.  Directly inflate the instance.
13852         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13853         (inflate_generic_class): Delete.
13854         (get_shared_generic_class): Delete.  Move setting of
13855         'cached_class' and 'cached_context' ...
13856         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13858         * metadata.c (mono_metadata_lookup_generic_class): Change
13859         signature to take the components of a MonoGenericClass rather than
13860         an allocated MonoGenericClass.  Change semantics to be intern-like.
13861         * reflection.c (mono_class_bind_generic_parameters): Update to
13862         changes.  Make locking region tighter.
13863         * class.c (inflate_generic_class): Update to changes.
13864         (get_shared_generic_class): Likewise.
13865         * metadata-internals.h: Likewise.
13867         * reflection.c (mono_class_bind_generic_parameters): Take and
13868         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13869         (mono_reflection_bind_generic_parameters): Use
13870         'mono_class_bind_generic_parameters' rather than duplicate the code.
13871         * class.c (mono_bounded_array_class_get): Update to changes.
13872         * object-internals.h: Likewise.
13874         * reflection.c (mono_class_bind_generic_parameters): Only support
13875         parameterizing generic type definitions.  Remove support for other
13876         open types.
13878 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13880         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13882         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13883         in the dynamic case.
13885 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13887         * threads.c: When cleaning up thread, reset the Background bit.
13888         Fixes bug #81720.
13890 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13892        * metadata.c: Move variable declarations to top of scope.
13893        * verify.c: Move variable declarations to top of scope.
13895        Code is contributed under MIT/X11 license.
13897 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13899         * reflection.c (mono_class_bind_generic_parameters): Replace
13900         open-coded loop with mono_metadata_inflate_generic_inst.
13902         * class.c (get_shared_generic_class): Don't call
13903         mono_get_shared_generic_inst.  Use the container's own
13904         'class_inst'.
13906         * metadata.c (mono_metadata_load_generic_params): Move
13907         initialization of 'context' field here from ...
13908         * class.c (mono_class_create_from_typedef): ... here, and ...
13909         * loader.c (mono_get_method_from_token): ... here.
13911         * class.c (get_shared_generic_class): Rename from
13912         mono_get_shared_generic_class and make static.
13913         (mono_get_shared_generic_inst): Move to metadata.c.
13914         * loader.c (mono_get_shared_generic_method): Likewise.
13915         * class-internals.h, metadata-internals.h: Update to changes.
13917         Fix #81830
13918         * class.c (mono_class_from_generic_parameter): Don't assume a
13919         generic container owner exists.  Generic containers from monodis
13920         don't have any.
13922 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13924         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13925         * verify.h: new typedefs to returns the non-verifiable status
13926         * verify.c: initial implementation of generics, stack merging and object compatibility check
13928 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13930         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13931         a MonoInternalHashTable again (fixed bug in internal hash table
13932         code).
13934 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13936         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13937         MonoInternalHashTable again (fixed bug in internal hash table
13938         code).
13940 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13942         * class.c, image.c, class-internals.h, domain.c,
13943         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13944         changes.  Have to figure out what makes them break the SWF
13945         regression.
13947 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13949         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13950         a MonoInternalHashTable now.
13952 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13954         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13955         MonoInternalHashTable now.
13957 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13959         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
13960         invoke_impl code.
13962         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
13964         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
13965         dependent trampoline.
13967         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13969         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
13971 2007-05-29  Robert Jordan  <robertj@gmx.net>
13973         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
13975 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
13977         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
13979 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
13981        * marshal.c: Fix interface lookup loops for
13982        cominterop_get_com_slot_for_method and 
13983        cominterop_get_method_interface. Only need to lookup
13984        if type is a class, else use interface type method is on.
13986        Code is contributed under MIT/X11 license.
13988 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
13990         * reflection.c: HasSecurity can be present even if no specially 
13991         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
13992         SecurityAttribute). Fix CAS regression tests on buildbot.
13994 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13996        * appdomain.c: Add configure checks for header files.
13997        * image.c: Add configure checks for header files.
13998        * file-io.c: Add configure checks for header files.
13999        * debug-mono-symfile.c: Add configure checks for header files.
14000        * threadpool.c: Add configure checks for header files.
14001        * console-io.c: Add configure checks for header files.
14002        * profiler.c: Add configure checks for header files.
14003        * rawbuffer.c: Add configure checks for header files.
14004        * icall.c: Add configure checks for header files.
14005        * rand.c: Add configure checks for header files.
14006        * socket-io.c: Add configure checks for header files.
14008        Code is contributed under MIT/X11 license.
14010 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14012         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14013         assertion as it breaks the build.
14014         
14015         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14017         * reflection.c (lookup_custom_attr): Make a copy here too.
14019         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14020         dynamic images.
14022         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14023         images.
14025         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14026         info.
14028 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14030         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14031         (load_cattr_value): Ditto.
14033 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14035         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14037 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14039         * threads.c: In "start_wrapper", set apartment_state to MTA if
14040         apartment_state is Unknown and we're running on 2.0 profile or
14041         higher.
14042         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14043         to main method, then set apartment_state to Unknown on 1.0 profile,
14044         and MTA on 2.0 profile.
14046 2007-05-16  Jb Evain  <jb@nurv.fr>
14048         * class-internals.h (MonoDefaults): Add an attribute_class and
14049           customattribute_data_class.
14050         * domain.c (mono_init_internal): Populate them.
14051         * reflection.c: Use them to remove duplicates. Make a vew
14052         MonoClass variables `static'.
14054 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14056         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14057         step in implementing IMT, so that all isinst checks now can go
14058         through the bitmap.
14059         This was needed because vtables for TransparentProxy need to look
14060         like the vtable of the "target" class, so they need to point to
14061         its interface bitmap directly.
14063         * object.c: inside "mono_class_create_runtime_vtable" and
14064         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14066 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14068         * object-internals.h
14069           culture-info.h : added territory field in MonoCulture and
14070           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14071         * locales.c : fill territory field above too.
14072         * culture-info-table.h : regenerated.
14074 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14076         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14077         Fixes #81599.
14079 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14081         * object.c: Always initialize apartment, even if 
14082         there is no custom attributes on entry point.
14083         
14084         Code is contributed under MIT/X11 license.
14086 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14088         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14089         * metadata.c: If no encoding is set, check for unicode
14090         on class.
14091         
14092         Code is contributed under MIT/X11 license.
14094 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14096         * threads.c: Handle if mono_thread_current returns NULL 
14097         
14098         Code is contributed under MIT/X11 license.
14100 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14102         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14103         in start_wrapper. Added mono_thread_init_apartment_state and
14104         mono_thread_cleanup_apartment_state.
14105         * object.c: Initialize thread apartment state on main thread
14106         by checking for STAThreadAttribute on entry point.
14107         * object-internals.h: Add apartment_state field to MonoThread.
14108         * threads-types.h: Add unmanaged definition of 
14109         System.Threading.ApartmentState, MonoThreadApartmentState.
14110         
14111         Code is contributed under MIT/X11 license.
14112         
14113 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14115         * class.c: Fix windows build.
14116         * class-internals.h: Fix windows build.
14117         
14118         Code is contributed under MIT/X11 license.
14120 2007-05-08  Robert Jordan  <robertj@gmx.net>
14122         * process.c (CreateProcess_internal):
14123         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14124         .CreateNoWindow was specified. Fixes #81496.
14126 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14128         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14129         step in implementing IMT, replaced it with two compact arrays
14130         (interfaces_packed and interface_offsets_packed) and a bitmap that
14131         is used for isinst checks (interface_bitmap).
14133         * class.c: (compare_interface_ids): compare function to pass to
14134         bsearch when looking for an interface with a given id.
14135         (mono_class_interface_offset): reimplemented using bsearch on
14136         interfaces_packed, getting the offset from interface_offsets_packed.
14137         (print_implemented_interfaces): utility debugging function.
14138         (setup_interface_offsets): reworked to initialize interfaces_packed,
14139         interface_offsets_packed and interface_bitmap.
14141         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14142         with uses of interfaces_packed and interface_offsets_packed.
14144 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14146         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14147         mono_class_interface_offset prototype to wrap all accesses to
14148         "MonoClass.interface_offsets".
14150         * class.c: Implemented mono_class_interface_offset, and wrapped all
14151         accesses to "MonoClass.interface_offsets".
14153         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14154         "MonoClass.interface_offsets".
14156 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14158         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14159         GetMethodFromHandle overloads (bug #78637).
14161 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14163         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14164         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14166 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14168         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14169         #81498.
14171         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14172         gracefully.
14173         (mono_custom_attrs_from_index): Ditto.
14175         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14176         Fixes #81501.
14178 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14180         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14181         is now allocated from a mempool.
14183 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14185         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14186         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14188 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14190         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14191         mono_loader_clear_error () too late. Fixes #81463.
14193 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14195         * culture-info-table.h : regenerated.
14197 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14199         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14200         is missing.
14202 2007-04-25  Dick Porter  <dick@ximian.com>
14204         * Makefile.am: Put the mingw enforced-optimisation back into the
14205         PLATFORM_WIN32 section.
14207 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14209         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14210         patch.
14212         * image.c (mono_image_load_module): New API function to load a module reference.
14214         * image.c (load_modules): Load modules lazily. Fixes #80812.
14216         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14217         
14218         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14220         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14221         to mono_image_load_module_dynamic.
14223 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14225         * marshal.c: Fix calling convention for CCW on non-windows
14226         platforms. STDCALL on windows, CDECL everywhere else to work 
14227         with XPCOM and MainWin COM.
14228         
14229         Code is contributed under MIT/X11 license.
14231 2007-04-23  Martin Baulig  <martin@ximian.com>
14233         Fix #80969.
14235         * loader.c
14236         (method_from_memberref): Added `gboolean *used_context' argument.
14237         (mono_get_method_from_token): Likewise.
14238         (mono_get_method_full): Don't insert the method in the cache when
14239         `used_context' is true.
14241 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14243         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14245         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14246         create new MonoTypes for returned types.
14247         * class.c (mono_generic_class_get_class): Export mono-internal.
14248         * class-internals.h: Update to changes.
14250 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14252         * threadpool.c, threadpool.h, icall-def.h: patch from
14253         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14255 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14257         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14258         
14259         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14261         * threads.c (mono_thread_get_stack_bounds): New helper function.
14263         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14264         Correctly compute stack bounds when attaching. Fixes #81394.
14266 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14268         * reflection.c: fix handling of doubles in custom attributes
14269         for the arm-fpa format (bug #81368).
14271 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14273         * reflection.c (assembly_add_win32_resources): Mildly relax an
14274         bounds check to let the end pointer point just past the end of the
14275         allocated buffer.  (may fix #81384)
14277 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14279         * culture-info-table.h : regenerated.
14281 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14283         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14284         the thread is aborted early.
14286 2007-04-05  Dick Porter  <dick@ximian.com>
14288         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14289         FindFirstFile()/FindNextFile() to find entries.  This lets the
14290         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14291         81038.
14293         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14294         the parameters of
14295         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14297 2007-04-04  Martin Baulig  <martin@ximian.com>
14299         * debug-helpers.c
14300         (mono_method_desc_full_match): Add support for nested classes.
14302 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14304         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14306 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14308         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14309         waiting for too many threads.
14311 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14313         * environment.c: Fix return value check on uname so we can get the 
14314         executing version on Solaris operating systems.
14316 2007-03-28  Jb Evain  <jbevain@gmail.com>
14318         * class.c (mono_type_get_name_recurse): Complete the
14319         fix for the creation of assembly qualified names for
14320         pointer types. Fixes #81208.
14322 2007-03-27  Dick Porter  <dick@ximian.com>
14324         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14325         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14326         changed.
14328         * threads.c
14329         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14330         the value of ReleaseMutex().
14332 2007-03-27  Dick Porter  <dick@ximian.com>
14334         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14335         in little-endian order, not network endian, so must be converted
14336         to host endian here.  Fixes bug 80593.
14338 2007-03-22  Jb Evain  <jbevain@gmail.com>
14340         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14341         qualified names for pointer types. Fixes #81208.
14343 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14345         * marshal.c: Add support for PreserveSigAttribute. 
14346         
14347         Code is contributed under MIT/X11 license.
14349 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14351         * process.c: Fix endianness issues. Fixes #81126.
14353         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14354         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14356         * image.c (mono_image_lookup_resource): Make this work on big-endian
14357         machines.Change API contract so the caller needs to free the return value.
14358         
14359         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14360         API change.
14361         
14362 2007-03-14  Martin Baulig  <martin@ximian.com>
14364         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14365         mono_type_get_desc() as well.
14367 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14369         * icall.c:  Fix environ access in VS.  
14370         
14371 2007-03-13  Alp Toker  <alp@atoker.com>
14373         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14374         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14375         #63841.
14377 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14379         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14380         circular references among dynamic methods. Fixes #81091.
14382         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14384 2007-03-09  Martin Baulig  <martin@ximian.com>
14386         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14388 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14390         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14391         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14392         
14393         Code is contributed under MIT/X11 license.
14394         
14395 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14397         * loader.c: Reapply patch for bug #79424.
14399 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14401         * metadata.c (mono_type_to_unmanaged): Only convert object to
14402         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14404 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14406         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14407         (and incorrectly set) is_reference field from MonoGenericInst.
14409 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14411         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14412         a little earlier.
14414         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14416         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14418 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14420         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14421         FileOptions.1 value to mean "temporary", map that to
14422         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14424         Fixes 80688
14426 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14428         * appdomain.c: implement MS .Net style shadow copying. Copies of
14429         the assemblies are made in a subdirectory of the dynamic base
14430         directory, the assembly names are preserved.
14431         Copy .mdb and .config files along with the assemblies being shadowed.
14433 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14435         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14436         (emit_marshal_handleref): Ditto.
14438         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14439         on Visual C++. Fixes #80671.
14441 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14443         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14444         for clone operations.
14446 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14448         * marshal.c: Fix warnings.
14450 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14452         * loader.c: allow case-insensitive matching of the dll name
14453         in dllmap handling when prefixed with "i:".
14455 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14457         * threads.c: Fix #ifdef for dummy_apc function for VS.
14459 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14461         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14463 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14464         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14465         giving precedence to the methods with a fully qualified name
14466         (InterfaceName.MethodName) when building the interface sections
14467         of the vtable.
14469 2007-02-16  Dick Porter  <dick@ximian.com>
14471         * threadpool.c (append_job): Fix fast-path array handling, so it's
14472         less likely the array will grow exponentially when the load is
14473         heavy.
14475 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14477         * metadata-internals.h, loader.c: fix dllmap lookup order
14478         for non-function maps, too, and prepare for fallback code.
14480 2007-02-12  Robert Jordan  <robertj@gmx.net>
14482         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
14483         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
14484         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
14485         GlobalFree. Fixes a part of bug #77075.
14487 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
14489         * loader.c: implemented typedef parent in field memberref.
14491 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
14493         * marshal.c: Fix warnings and remember to call Release on
14494         IUnknown of RCW.
14495         
14496         Code is contributed under MIT/X11 license.
14498 2007-02-10  Miguel de Icaza  <miguel@novell.com>
14500         * class-internals.h: Add MonoHandleRef definition, and
14501         handleref_class to mono_defaults. 
14503         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
14504         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
14506         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
14507         (do nothing on this stage)
14508         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
14509         (emit_marshal_handleref): New method, used for argument handling
14510         of HandleRefs. 
14512 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
14514         * class.c (mono_class_setup_parent): Lazily init com types.
14515         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
14516         init com types.
14517         * object.c (mono_remote_class_vtable): Lazily init com types.
14518         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
14519         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
14520         * domain-internals.h: Expose mono_init_com_types.
14521         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
14522         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
14523         Add support for COM Callable Wrapper marshalling.
14524         * marshal.h: Add icall definitions.
14525         * gc.c: Handle freeing of CCWs in finalizer code.
14526         
14527         Code is contributed under MIT/X11 license.
14529 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
14531         * reflection.c: changed all the signature encoding code to use
14532         a variable-sized buffer.
14534 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14536         * marshal.c: locking fixes: never take the loader lock
14537         or other runtime locks when holding the marshal lock
14538         (fixes bug#80664).
14540 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
14542         * marshal.c: make the delegate function pointer mapping
14543         work for the moving GC.
14545 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
14547         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
14548         for bug #80618.
14550 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14552         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14553         gmodule.
14555 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14557         * threadpool.c: made the code moving-GC safe.
14559 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14561         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14562         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14563         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14564         warning cleanup.
14565         * reflection.c: warning cleanup, some threading and moving GC fixes.
14567 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14569         * class.c, loader.c: create the needed Set/Get/Address array methods
14570         as well as the .ctors in mono_class_init (), fixes bug #80567.
14572 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14574         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14575         we doesn't decrease its alignment. Should fix the sparc build.
14577 2007-01-24  Dick Porter  <dick@ximian.com>
14579         * socket-io.c
14580         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14581         Create the returned object if we need to ignore an unsupported
14582         socket option.  Fixes a segfault reported by Atsushi.
14584 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14586         * class.c, object.c: restrict GC-tracked fields to
14587         UIntPtr fields used inside corlib, so we provide better
14588         type info to the GC and also allow broken packing as in
14589         bug #80580.
14591 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14593         * sgen-gc.c: removed duplicated function.
14595 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14597         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14598         value that means that the value is not supported, but that we
14599         should not return a failure, but instead report this as a
14600         successful operation.
14602 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14604         Fix tests/bug79956.2.il
14605         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14606         (mono_generic_class_get_class): If the generic definition in an
14607         enum, copy over other fields related to it.
14609 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14611         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14612         genericinst enums (bug #79215).
14614 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14615         * class.c: Fix bug 80307.
14617 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14619         * image.c: if the file table is not present, try to load
14620         all the modules, since we don't have info about them
14621         having or not metadata (bug #80517).
14622         * assembly.c: allow mono_assembly_load_references () to
14623         work for netmodules.
14625 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14627         * image.c, metadata-internals.h, object.c: execute module
14628         cctors when running on the 2 runtime if present (bug #80487).
14630 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14632         * icall.c: optimized InitializeArray() on bigendian.
14634 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14636         * icall.c: fix for the broken ARM FPA double format.
14638 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14640         * icall.c: handle endian issues for r4 and r8 types, too, in
14641         the InitializeArray() icall.
14643 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14645         * loader.c (mono_loader_error_prepare_exception): Clear the error
14646         once we have extracted the information from it, do this before we
14647         call into the JIT's class loading mechanisms.
14649         * object.c (mono_class_create_runtime_vtable): Do not clear the
14650         loader error before calling mono_class_get_exception_for_failure
14651         as the loader error is needed inside
14652         mono_class_get_exception_for_failure to throw the error (thinko).
14654         Fixes #80521
14655         
14656 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14658         * reflection.c: align fields rva data so it's faster to load at
14659         runtime.
14661 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14663         Prepare to simplify GenericMethod handling.
14664         * class-internals.h (mono_method_get_context): New accessor function.
14665         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14666         rather than directly accessing '->context' field.
14668         * class-internals.h (_MonoGenericParam.method): Move ...
14669         (_MonoGenericContainer): ... here.  Add into union with klass field.
14670         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14671         Update to changes.
14673 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14675         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14676         the wrapper type enum and reduce relocations.
14678 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14680         * reflection.c (inflate_mono_method): Reuse method instantiation
14681         from the generic method, if available.
14683 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14685         * marshal.c (emit_marshal_variant): Fix conv_arg
14686         type in last commit, based on whether parameter is byref.
14687         
14688 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14690         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14691         marshalling.
14692         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14693         MONO_TYPE_OBJECT back for VARIANT support.
14695 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14697         * marshal.c, marshal.h, icall-def.h: Implement 
14698         Marshal.ReAllocCoTaskMem.
14700 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14702         * marshal.c: memory retention fixes: use the proper
14703         image cache for runtime_invoke method lookups.
14705 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14707         * mempool.c: added code to help debug mempool allocations.
14709 2007-01-11  Dick Porter  <dick@ximian.com>
14711         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14712         support (experimenting with faking it with IP_MTU_DISCOVER for
14713         systems that don't have IP_DONTFRAGMENT.)
14714         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14715         icall.
14717         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14719         * socket-io.h: Add new fields to MonoSocketAsyncResult
14720         corresponding to the new ones in Socket.cs.
14722 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14724         Fix IronPython regression mentioned in #80249
14725         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14726         'cached_context' field, since it may have been initialized as a
14727         side-effect of metadata parsing.
14729         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14730         (_MonoGenericClass.cached_class): Move here and rename from lone
14731         remaining field of ...
14732         (_MonoInflatedGenericClass): ... this.  Remove.
14733         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14734         to changes.
14736         Fix mcs/tests/test-128.cs regression.
14737         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14738         2007-01-10 change below.
14739         [MONO_TYPE_OBJECT]: Recurse into array case.
14741 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14743         * class-internals.h (mono_get_inflated_generic_class): Remove.
14744         * class.c (mono_get_inflated_generic_class): Remove.
14745         (mono_generic_class_get_class): Rename from
14746         mono_class_create_generic.
14747         (mono_class_from_mono_type) [GENERICINST]: Use it.
14748         * reflection.c, metadata.c: Update to changes.  Use
14749         'mono_class_from_mono_type'.
14751 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14753         * reflection.c: use passed type when encoding an array element
14754         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14756 2007-01-09  Robert Jordan  <robertj@gmx.net>
14758         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14759         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14760         Fixes bug #80392.
14762 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14764         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14766         * object.c (set_value): Avoid aliasing between type->data.klass
14767         and type->data.generic_class.
14769         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14771 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14773         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14774         between type->data.klass and type->data.generic_class.
14776 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14778         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14779         value in out parameters.
14781 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14783         Simplify invariant for MonoGenericClass::klass field.
14784         * class.c (mono_class_create_generic): Verify 'klass' is null.
14785         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14786         initialize 'klass' field.
14788 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14790         Ongoing work to avoid redundant data and simplify invariants.
14791         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14792         'generic_class', and change type to a GenericInst.
14793         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14794         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14796 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14798         * class.c : skip io-layer under PLATFORM_WIN32.
14800 2007-01-03  Tor Lillqvist  <tml@novell.com>
14802         Fix #80305: In a bundled executable, look in the bundled exe
14803         assembly to determine the runtime version. Add the possibility to
14804         bundle also the machine.config file.
14805         
14806         * assembly.c (mono_assembly_open_from_bundle): Make
14807         non-static. Allow being called even if we have no bundled
14808         assemblies, and return NULL right away in that case.
14810         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14811         here.
14813         * domain.c (app_config_parse): Take an assembly exe file name as
14814         parameter instead of a config file name. Check for a bundled
14815         config file for that assembly by calling
14816         mono_config_string_for_assembly_file() (see below) before looking
14817         for one in the file system.
14818         (get_runtimes_from_exe): Corrsponding change to call of
14819         app_config_parse().
14820         (get_runtimes_from_exe): Check for bundled assembly exe file first
14821         by calling mono_assembly_open_from_bundle(). If no bundled
14822         assembly exe file is found, call mono_image_open() as before to
14823         look it up in the file system.
14825         * mono-config.c: Add variable bundled_machinec_onfig.
14826         (mono_config_string_for_assembly_file): New function.
14827         (mono_config_for_assembly): Move code snippet that looks for a
14828         bundled assembly .config file into the above new function. Call
14829         it.
14830         (mono_register_machine_config, mono_get_machine_config): New
14831         functions to set and retrieve
14833         * assembly.h: Declare mono_register_machine_config().
14835         * mono-config.h: Declare mono_get_machine_config() and
14836         mono_config_string_for_assembly_file().
14838         * icall.c: No declaration of environ necessary on Win32. It is
14839         declared (as a macro expanding to a function call) in stdlib.h.
14840         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14841         New internal mono function. Returns the value of
14842         mono_get_machine_config() as a Mono string.
14844         * icall-def.h: Add get_bundled_machine_config().
14846 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14848         Remove redundant field
14849         * class-internals.h (_MonoGenericContext.container): Remove field.
14850         * loader.c (mono_method_get_signature_full): Don't parse a
14851         "container" for a signature parse when the signature is inflated
14852         immediately.
14853         (method_from_methodspec): Likewise, for a generic_inst.
14854         * class.c, metadata.c, reflection.c: Update to changes.
14856 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14858         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14859         'cached_context', and change semantics -- it starts off NULL, and
14860         is initialized on demand.
14861         * class.c (mono_generic_class_get_context): New accessor to
14862         replace 'context' field accesses.
14863         (mono_class_get_context): New helper.
14864         (*): Update to changes.
14865         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14867 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14869         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14870         before the memcpy.   Fixes Marshal2 regression.
14872 2007-01-02  Jb Evain  <jbevain@gmail.com>
14874         * blob.h: add a MONO_TYPE_ENUM definition
14875         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14876         fix the encoding of arrays of enums in custom attributes.
14878         Fixes #79666.
14880 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14882         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14883         string is null terminated, but only cut the string short if it
14884         overflows the buffer.   
14885         
14886         (mono_string_to_byvalstr): Also fix this routine.   The code here
14887         was not properly terminating a string (it was only terminated
14888         because of the previous catch-all memset). 
14890         I left the memset, because I do not know if applications expect
14891         the runtime to clear this region. 
14893         Fixes #79944.
14895         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14896         Clear the error before returning to unmanaged code to prevent the
14897         runtime from being confused later on (fixes  80420).
14898         (ves_icall_type_from_name): Always call mono_loader_clear_error
14899         after parsing a type that could have failed.
14900         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14902         * loader.c (mono_loader_clear_error): Fix indentation.
14904 2006-12-28  Martin Baulig  <martin@ximian.com>
14906         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14908 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14910         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14911         getting a token for an EnumBuilder.
14913 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14915         * reflection.c: be more careful in case resource generation
14916         fails to create the data array.
14918 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14920         * sgen-gc.c: write barrier for clone and fix unregister handles.
14922 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14924         * reflection.c: some fixes needed in the generics code for the moving GC.
14926 2006-12-22  Robert Jordan  <robertj@gmx.net>
14928         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14929         account. Fixes bug #80299.
14931 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14933         Fix WaitHandle usage in delegates.
14934         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14935         * object.c (mono_wait_handle_new): Use the property set method to
14936         initialize the handle.
14937         (mono_wait_handle_get_handle): New.
14938         * threadpool.c (mono_async_invoke): Use it.
14939         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14940         Likewise.
14941         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14943 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14945         * marshal.c (emit_marshal): Call emit_marshal_variant and
14946         emit_marshal_com_interface when applicable.
14947         (emit_marshal_variant, emit_marshal_com_interface): Add
14948         methods for this case and remove if's from emit_marshal_object.
14949         
14950 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14952         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14954 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
14956         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
14957         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
14958         and GlobalFree on Windows. Remove FIXME.
14960 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14962         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
14963         implementation for managed objects.
14965 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14967         * object.c: implemented code to be used for checking
14968         that no reference field overlaps with non-references.
14970 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14972         * threadpool.c: fix queue code to be compatible with the
14973         moving GC.
14975 2006-12-18  Miguel de Icaza  <miguel@novell.com>
14977         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
14978         in structures by throwing ArgumentNullException.
14980         (emit_marshal_safehandle): Also when they are null parameters.
14982         (emit_marshal_safehandle): Add support for ref
14983         SafeHandles parameters
14985 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14987         * profiler.c: updated to use the mono-dl API instead of
14988         gmodule.
14990 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14992         * profiler.c: updated to use the mono-dl dynamic loading
14993         API instead of gmodule.
14995 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
14997         * profiler.c: use readlink, older versions of glib don't have
14998         g_file_read_link ().
15000 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15002         * profiler.c: try to detect the path to mono if libc fails to provide
15003         a useful name (bug #80286).
15005 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15007         Fix #80242
15008         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15009         instance, use the generic type definition instead.
15010         (ves_icall_Type_GetNestedTypes): Likewise.
15011         * class.c (mono_class_create_generic): Always set the
15012         nested_classes of a generic instance to NULL, even if the generic
15013         type definition has nested types.
15015 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15017         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15018         and fix on Linux.
15019         
15020 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15022         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15023         my arguments were in the wrong order.   I also fixed the Windows
15024         version which seems to have had the same issue.
15026         (mono_free_bstr): On Unix, this is g_free.
15027         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15028         conversions (for the tests in corlib to pass).
15030 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15032         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15033         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15034         exception if a ref SafeHandle in a struct has changed).
15035         
15036         (emit_struct_conv): Do not perform layout checks for classes
15037         derived from SafeHandle, as those are specially handled. 
15039         (emit_object_to_ptr_conv): Add support for
15040         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15042         (emit_marshal_safehandle): Implement conversion of return values
15043         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15044         
15045         * threads.c: WaitHandle now is compiled with two different handles
15046         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15047         for 2.0.
15048         
15049         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15050         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15051         these routines to cope with both kinds of fields.
15053 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15055         * metadata.c (mono_type_to_unmanaged): Handle the case where
15056         type->data.klass is a SafeHandle, and in that case, return the
15057         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15058         MONO_MARSHAL_CONV_SAFEHANDLE. 
15060 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15062         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15063         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15064         calling emit_marshal_object.
15066         (emit_marshal_safehandle): Implement marshalling of
15067         SafeHandle parameters (no ref support yet).
15069         (MarshalAction): Document the defines as I implement
15070         them for SafeHandle.
15072         (emit_marshal_object): indentation police.
15074         * class-internals.h: Define MonoSafeHandle.
15075         Add safehandle_class to MonoDefaults type.
15077         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15078         list of classes to check for fields. 
15080         * domain.c (mono_init_internal): Add SafeHandle to the list of
15081         mono_defaults loaded.
15083 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15085         Fix #80253
15086         * reflection.c (mono_reflection_bind_generic_parameters): If the
15087         generic type definition is a type builder, ensure that it is fully
15088         initialized before instantiating it.  Kill some dead code.
15090 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15092         * object.c: clear the loader_error () before loading
15093         more metadata stuff (bug #80258).
15095 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15097         * icall.c, icall-defs.h: type modifiers icalls for
15098         parameters and properties.
15100 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15102         * object.c, icall.c: fixed warnings.
15104 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15106         * marshal.c: fixed a couple of leaks and coding style in a few places.
15108 2006-12-08  Dick Porter  <dick@ximian.com>
15110         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15111         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15112         80173.
15114 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15116         * process.c: ProcessStartInfo may have only filename set and
15117         arguments can be NULL.
15119 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15121         * icall.c: fix leak found by Robert Jordan.
15123 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15125         * marshal.c, marshal.h: generate managed method to access an element
15126         of a multi-dimensional array.
15128 2006-11-30  Paolo Molaro (lupus@ximian.com)
15130         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15132 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15134         * icall.c: back out GetFields () fix until the serialization code is
15135         fixed to not depend on the incorrect behaviour.
15137 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15139         * profiler.c: provide defaults if none are set.
15141 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15143         * Makefile.am, attrdefs.h: new public header file with
15144         constants for attributes for use by embedders.
15146 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15148         * icall.c: GetFields () fix for bug #80064.
15150 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15152         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15153         removed long unused icalls.
15155 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15156   
15157         * marshal.c: 
15158                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15159                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15160                 can be generated without a delegate class.
15161                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15162         
15163         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15165 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15167         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15168         #80069.
15170 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15172         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15173         icall-def.h: added icalls needed by System.GC.
15175 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15177         * loader.c: ensure the class in catch clauses is handled
15178         correctly for generics methods (fixes bug#79980).
15180 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15182         * monitor.h, monitor.c: added mono_locks_dump () function
15183         to help debug deadlocks involving managed locks.
15185 2006-11-13  Dick Porter  <dick@ximian.com>
15187         * file-io.c (get_file_attributes): If the file is a symlink try
15188         and get the stat data for the target, but also add the
15189         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15190         the specs for the windows symlink support, but will probably have
15191         to be reworked when I have test data from a vista machine.  Fixes
15192         bug 79887.
15194 2006-11-13  Dick Porter  <dick@ximian.com>
15196         * gc.c (mono_domain_finalize): 
15197         * marshal.c (mono_delegate_begin_invoke): 
15198         * threadpool.c (socket_io_init, mono_thread_pool_init)
15199         (mono_thread_pool_finish): 
15200         * monitor.c (mono_monitor_try_enter_internal): 
15201         * threads.c (mono_thread_resume, mono_thread_init)
15202         (mono_thread_suspend_all_other_threads)
15203         (mono_thread_execute_interruption): 
15204         * appdomain.c (mono_domain_unload): Check for NULL error returns
15205         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15206         75733.
15208 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15210         * process.c
15211         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15212         Only close the handle if the value of the handle is not
15213         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15214         robust.
15216         Improvement for #75733, so that we do not run into this problem. 
15218         
15219         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15220         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15221         internal variables.  Fixes #79462 
15222         
15224 2006-11-09  Dick Porter  <dick@ximian.com>
15226         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15227         Use poll() not select().  Fixes bug 79397.
15229 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15231         Fix #79872
15232         * assembly.c (mono_assembly_load_from_full): Check that the given
15233         image has an assembly manifest.
15235 2006-11-09  Ankit Jain  <jankit@novell.com>
15237         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15238         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15239         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15241 2006-11-07  Dick Porter  <dick@ximian.com>
15243         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15244         Put the old resolver behaviour back for pre-2.0 profiles.
15246 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15248         * threadpool.c: precise GC and locking fixes.
15250 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15252         * class.c: don't load types that have an explicit unaligned
15253         managed reference. Provide better info in the TypeLoad exception.
15254         Part of the fix for bug #79744.
15255         * object.c: use the correct check for class type load issues.
15257 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15259         * class.c: enforce alignment of fields with managed references
15260         even when Pack=1 is forced by the user (bug #77788).
15262 2006-11-03  Dick Porter  <dick@ximian.com>
15264         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15265         If the address reverse lookup fails, return it as the hostname
15266         anyway.  Fixes bug 79721.
15268 2006-11-03  Dick Porter  <dick@ximian.com>
15270         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15271         Fix build on Windows.
15273 2006-11-02  Dick Porter  <dick@ximian.com>
15275         * icall-def.h: 
15276         * object-internals.h: 
15277         * exception.c (mono_get_exception_thread_interrupted): 
15278         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15279         Fixes bug 74525.
15281         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15282         Check for pending Thread.Interrupt.
15284 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15285         * loader.c: Fixed bug 79684.
15287 2006-10-27  Dick Porter  <dick@ximian.com>
15289         * file-io.c (get_file_attributes): Force symlinks to directories
15290         to be returned as a regular file.  Fixes bug 79733.
15291 2006-10-26  Dick Porter  <dick@ximian.com>
15293         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15294         CreateFile to open a directory then we need to set the
15295         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15297 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15299         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15300         friends.
15302 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15304         * sgengc.c: small cleanup of timer code.
15306 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15308         * sgen-gc.c: fix some warnings and start adding support for
15309         complete object removal on domain unload.
15311 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15313         * assembly.c: build_assembly_name should not consider a version
15314         number without build or revision number invalid. Fixes bug #79715.
15316 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15318         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15319         call kernel32 function OutputDebugString directly.
15320         
15321         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15322         
15323 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15325         * reflection.c: small cleanup, using a function to insert a MonoString
15326         in the string heap.
15328 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15330         * reflection.c: moving GC fixes.
15332 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15334         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15335         all the objects with finalizers belonging to an unloading appdomain.
15337 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15339         * sgen-gc.c: added ability to allocate even when the nursery is fully
15340         pinned and fixed a couple of bugs.
15342 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15344         * threads.h: Revert the last change for now.
15346         * threads.h (mono_thread_get_pending_exception): Rename this to
15347         mono_thread_get_undeniable_exception ().
15349 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15351         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15352         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15353         when fname does not refer to valid assembly. This result in a more
15354         meaningful error message.
15355         * exception.c: added mono_get_exception_bad_image_format2 which 
15356         constructs a BadImageFormatException using the ctor taking a custom
15357         message and the file name. Passing in a NULL msg results in a default
15358         message.
15359         * exception.h: define mono_get_exception_bad_image_format2 function.
15360         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15361         when file name pointed to an invalid IL image. Use 
15362         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15363         as this results in a more meaningful error message.
15365 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15367         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15368         #79465.
15370 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15372         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15373         consistency with the other _size functions.
15374         (mono_type_stack_size): Ditto.
15376         * class.c object.c icall.c: Fix warnings caused by the above change.
15378         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15380         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15382         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15384 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15386         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15387         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15388         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15389         threadpool.h, threads-types.h: mark more internal functions.
15391 2006-10-11  Dick Porter  <dick@ximian.com>
15393         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15394         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15395         reproduce the bug even before applying the fix.)
15397 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15399         * reflection.c: allow retrieving attributes for arguments in generic
15400         methods (bug #79241).
15402 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15404         * debug-mono-symfile.c: properly check fopen () result (found by
15405         coverity).
15407 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15409         * reflection.c: make error message clearer and fixed two
15410         issuelets found by Coverity.
15412 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15414         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15416 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15418         * object-internals.h, gc-internal.h, profiler-private.h:
15419         mark internal functions.
15421 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15423         * reflection.c: put data in the text section.
15424         * icall.c: recognize more types in type_from_typename ().
15425         * process.c, marshal.c: added some GC FIXMEs.
15427 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15429         * loader.c: check for NULL before initializing.
15431 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15433         * gc.c (finalizer_thread): Use a non-alertable wait here.
15435         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15436         until the correct solution is found.
15438 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15440         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15441         modules with no metadata. Fixes #79596.
15443         * image.c (load_metadata_ptrs): Put back the error message when
15444         the #- heap is encountered since the support is not complete yet.
15446 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15448         * gc.c: do not allow the user to SuppressFinalize () a
15449         delegate because it would leak the trampoline if present.
15451 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15453         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15454         PropertyPtr table.
15456 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15458         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15460         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15462         * row-indexes.h: Add definitions for *Ptr tables.
15464         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15466         * metadata.c (mono_metadata_translate_token_index): New helper function to
15467         translate table indexes used in uncompressed metadata.
15468         (mono_metadata_decode_table_row): Ditto.
15469         (mono_metadata_decode_table_row_col): Ditto.
15471         * metadata.c: Add table schema for *Ptr tables.
15473         * class.c loader.c: Use the new helper function to access the affected metadata
15474         tables.
15475         
15476         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
15477         #38532.
15478         
15479 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
15481         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
15482         sequences which can be unbounded in size. Fixes #79583.
15484 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
15486         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
15487         static initialization.
15489         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
15491         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
15493         * domain.c (mono_domain_free): Free up type_init_exception_hash.
15495         * object.c (mono_runtime_class_init): Implement correct semantics when a static
15496         ctor fails, i.e. throw the same exception on subsequent accesses.
15497         
15498 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
15500         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
15501         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
15502         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
15503         Handle marshalling of interfaces and VARIANTs contained in structs.
15504         
15505         Code is contributed under MIT/X11 license.
15506         
15507 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
15509         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
15510         
15511         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
15512         mempool.
15514 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15516         * console-io.c: ignore previous SIGINT handler.
15518 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
15520         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
15521         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
15522         #79460, #79461, #79485.
15524         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
15526         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
15527         #79217.
15529 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
15531         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
15532         could be generated from it.
15534 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
15536         * rand.c: fix read loop to correctly handle EINTR.
15538 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15540         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
15541         internal calls are defined to keep methods closer to the declaring
15542         type and allow a significant reduction in runtime relocations and
15543         memory usage.
15545 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
15547         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
15548         exception message to have FileNotFoundException use the default
15549         assembly load error message. Fixes bug #79426.
15550         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15552 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15554         * threadpool.c: (start_thread_or_queue) use the root domain when
15555         creating the thread instead of the async object one.
15557 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15559         * class.c, object.c, class-internals.h, reflection.c:
15560         for arrays, store element_size inside MonoClass (speedup
15561         for array object creation).
15563 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15565         * icall.c: fixed CodeBase to use the file name and not the module
15566         name (bug #79365).
15568 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15570         * mono-debug.c, mono-debug.h: export find_method as
15571         mono_debug_find_method ().
15573 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15575         * debug-helpers.c, class-internals.h: added a few functions useful
15576         when debugging under gdb.
15578 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15580         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15581         characters that need special handling.
15583 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15585         * mono-config.c: make the os/cpu specification more flexible,
15586         allowing lists and negation.
15588 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15590         * marshal.c: COM Interop fixes. Handle case where method->klass.
15591         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15592         calling convention on non-windows platforms. This is for
15593         compatibility with XPCOM and MainWin COM.
15594         
15595         Code is contributed under MIT/X11 license.
15596         
15598 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15600         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15601         correctly. Fixes #79217.
15603         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15605 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15607         * mono-config.c: allow both an os and cpu attribute for dllmap
15608         and dllentry elemnets to enable a single config file to be used
15609         for multiple architectures.
15611 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15613         * loader.c: MonoLoaderError was cleared too soon on load failure.
15614         Fixes bug #79424.
15616 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15618         * icall.c: use the defining class vtable when accessing a
15619         static field, not a pobblibly derived class.
15621 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15623         * icall.c string-icalls.c: Remove references to unicode.h.
15625         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15627         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15629         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15630         indicating the image where custom marshaller types should be looked up.
15631         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15632         custom marshallers, instead of corlib. Fixes #79425.
15634 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15636         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15638 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15640         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15641         Implement Environment.ProcessorCount.
15642         
15643         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15644         Implement Environment.ProcessorCount.
15645         
15646         * icall.c: 
15647         Add Environment.ProcessorCount icall.
15648         
15649         Patch by Jason McFall.
15651 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15653         * assembly.c: don't append .exe/.dll when the filename already contains
15654         one of those extensions.
15656 2006-09-12  Martin Baulig  <martin@ximian.com>
15658         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15659         to array interfaces.
15661 2006-09-11  Martin Baulig  <martin@ximian.com>
15663         * reflection.c (mono_image_build_metadata): Create the
15664         MethodImpl's after emitting all types and methods, so we don't
15665         need another fixup pass for them.
15667 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15669         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15670         change.
15672 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15674         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15675         unload.
15677 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15679         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15680         args is not set. Fixes #78926.
15682 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15684         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15686         * image.c (load_class_names): Move this to class.c, and rename it to 
15687         'mono_image_init_name_cache'.
15688         (load_modules): Fix a warning.
15690         * class.c icall.c image.c: Initialize image->name_cache lazily.
15692         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15693         on its name using information in the AOT file.
15695         * class.c (mono_class_from_name): Use the new hook function.
15697 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15699         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15700         correctly.
15702         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15703         Fixes #79289.
15704         
15705 2006-09-06  Martin Baulig  <martin@ximian.com>
15707         * icall.c (mono_lookup_internal_call): Small fix.
15709 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15711         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15712         double g_free.
15714 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15716         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15717         when --debug is specified.
15719 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15721         * class.c (setup_generic_array_ifaces): Fix a warning.
15723 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15725         * Temporarily remove the patch to assemly.c that checks the
15726         assembly versions as it breaks our gacutil.
15728 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15730         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15732         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15733         a net 1.0 runtime.
15735         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15736         created using the default ctor. Fixes #79152.
15737         (mono_string_builder_to_utf16): Ditto.
15739 2006-09-01  Martin Baulig  <martin@ximian.com>
15741         Fix handling of the generic array interfaces.
15743         * class-internals.h
15744         (MonoDefaults): Removed `generic_array_class' and added
15745         `generic_ilist' class.
15747         * class.c
15748         (mono_bounded_array_class_get): Add the new generic array interfaces.
15749         (setup_generic_array_ifaces): New static method; create vtable
15750         entries for each method in the generic array interfaces.
15752         * metadata.c
15753         (select_container): Allow "parent-less" generic methods.
15755         * marshal.c
15756         (mono_marshal_get_generic_array_helper): New public method.
15758         * icall.c
15759         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15760         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15761         moved the interncall into System.Array.
15763 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15765         A few more cases of avoiding work on types with ->byref set.
15766         Has the real fix for #79238
15767         * icall.c (is_generic_parameter): New helper.
15768         (ves_icall_Type_GetGenericParameterPosition): Use it.
15769         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15770         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15771         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15772         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15773         reference types.
15774         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15775         reference types.
15776         (ves_icall_Type_get_IsGenericInstance): Likewise.
15777         (ves_icall_Type_get_IsGenericType): Likewise.
15779 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15781         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15782         class if possible.
15784         * mempool.h (mono_mempool_get_allocated): New helper function.
15786         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15787         change.
15789         * mempool.c: Fix warnings and the calculation of stats.
15791         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15793         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15795         * loader.c (mono_get_method_from_token): Update method_count stat.
15797         * class-internals.h (MonoStats): Add some stats.
15799 2006-08-31 Robert Jordan  <robertj@gmx.net>
15801         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15802         with managed variants.
15803         All code is contributed under the MIT/X11 license.
15804         
15805 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15807         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15808         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15810         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15812         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15813         with cycles in classes.
15815         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15817         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15818         missing a [MarshalAs] directive. Fixes #79203.
15820         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15821         klass->marshal_info. Fixes #79217.
15823 2006-08-30  Martin Baulig  <martin@ximian.com>
15825         Committing a patch from Joachim Ante <joe@otee.dk>:
15826         Add support for binary data symbol stores.
15828         * debug-mono-symfile.c
15829         (mono_debug_open_mono_symbol_file): Renamed into
15830         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15831         arguments.
15833         * mono-debug.c
15834         (mono_debug_open_image): Added `raw_contents' and `size' args.
15835         (mono_debug_init_2_memory): New public function.
15837 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15839         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15841 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15843         * appdomain.c: implement support for ShadowCopyFiles.
15845 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15847         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15848         when value is NULL (and should remove CID #51).
15850 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15852         * image.c: moved 2 functions to ../utils.
15854 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15856         * gc.c: cope with the target object of a GC handle being NULL
15857         (bug #78877).
15859 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15861         * class.c: recursively check parent's explicit implementations
15862         of interface methods (fixes bug #79125).
15864 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15866         * filewatcher.c: Avoid warnings when building, do not redefine
15867         constants that are defined.
15869         Remove warnings.
15871 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15873         * image.c: don't fail when the link points to an absolute path.
15875 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15877         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15878         Fix CID #3.
15880 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15882         * image.c (full_path): A new method used to obtain the actual path
15883         of an assembly even in the presence of symbolic links.  
15885         This is necessary for the case where we are running a binary that
15886         has been GACed, but we are using the "published" path name
15887         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15888         file in the GAC.
15890         This was the source of the failure for the `xsp' command with the
15891         recent AppDomain changes, as far as the runtime was concerned,
15892         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15893         $prefix/mono/gac/blah/version/blah.exe.
15895         (do_mono_image_open): use full path
15897 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15899         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15901 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15903         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15904         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15906 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15908         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15909         small structures. Fixes #78990.
15911 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15913         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15915         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15917 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15919         * appdomain.c:
15920         * marshal.c: don't load all the assemblies from a domain into newly
15921         created ones. The new domains might have different rules and load
15922         assemblies from different locations. Fixes bug #76757.
15924         Patch by Lluis. Conflicts resolved by Brian Crowell.
15926 2006-08-16  Alp Toker  <alp@atoker.com>
15928         * socket-io.c: First half of the fix for #79084.
15929         Set sa_size to the length of the content, not that of the struct.
15930         Don't add NULL suffix to the content, this should be done in
15931         managed code if needed.
15933 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15935         Fix part of #79012
15936         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15937         mono_metadata_parse_type returns NULL.
15939 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15941         * normalization-tables.h : new file for string normalization data.
15942         * locales.c, locales.h, icall.c :
15943           added load_normalization_resource() for string normalization,
15944           and icall as well.
15945         * Makefile.am : added normalization-tables.h to the sources.
15947 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15949         * marshal.c: Add more helper functions to reduce code duplication and use them
15950         everywhere.
15952 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15954         * marshal.c: Fix non-x86 stdcall warnings.
15955         
15956         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
15957         them everywhere.
15959 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
15961         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
15962         type check on multi-dimensional arrays. Fixes #79000.
15964 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
15966         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
15967         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
15968         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
15969         * class-internals.h: add is_com_object to class structure.
15970         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
15971         null checks to COM object marshalling. Fix .ctor call on RCW.
15972         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
15973         
15974         All code is contributed under the MIT/X11 license.
15976 2006-08-09  Dick Porter  <dick@ximian.com>
15978         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
15979         racing mono_monitor_allocator_lock() somewhere, so don't delete
15980         the critical section for now.  Found by running and exiting
15981         monodevelop.
15983 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
15985         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
15986         (ves_icall_System_ComObject_FindInterface): Ditto.
15987         (ves_icall_System_ComObject_CacheInterface): Ditto.
15989         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
15990         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
15992 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15994         * threadpool.c: treat pipes from process asynchronous reads as sockets
15995         when reading from them, so we get select/poll or epoll to wait for
15996         data.
15998 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16000         * loader.c: Fix a typo (CID #233) in the null check.
16002 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16004         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16005         Hopefully fixes #78949.
16006         
16007         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16008         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16009         bytes. Fixes #78972.
16011 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16013         * filewatcher.c: we need to set errno here.
16015 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16017         * filewatcher.c: let Win32Exception get the error value.
16019 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16021         * filewatcher.c: translate errno into win32 errors for Win32Exception
16022         to know what happened.
16024 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16026         * threadpool.c: Fix more warnings.
16028         * assembly.c (search_loaded): Fix warnings.
16030         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16031         (mono_async_invoke): Ditto.
16033 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16035         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16036         entries for __ComObject type in addition to ComImport types.
16037         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16038         about hash table.
16039         
16040         All code is contributed under the MIT/X11 license.
16042 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16044         * image.c: avoid tentative loading of modulerefs that contain
16045         no metadata (P/Invoke library names).
16047 2006-07-28  Dick Porter  <dick@ximian.com>
16049         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16050         mono_loader_lock() somewhere, so don't delete the critical section
16051         for now.  Found by running and exiting monodevelop.
16053 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16055         * filewatcher.c: define the inotify syscalls when we're building on
16056         linux and have sys/syscall.h. The build system might not have support
16057         for inotify but the target system might have it.
16059 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16061         * domain.c: Documentation updates.
16063         * loader.c (mono_free_method): Do not release the method
16064         information if we are being profiled, as profilers will use this
16065         information at shut down to present some data to the user.
16067         This is needed so that the profiler does not crash, as the
16068         profiler tends to keep MonoMethods around, and they might become
16069         invalid if we free these.
16071         (mono_get_method_constrained): Return the original CIL stream
16072         method as well, so verification can be performed against it.
16074 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16076         * filewatcher.[ch]: support for inotify file system watcher.
16077         * icall.c: add new internal calls for the inotify file system watcher.
16079 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16081         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16082         #78888.
16084 2006-07-20  Dick Porter  <dick@ximian.com>
16086         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16087         warning.
16089 2006-07-20  Dick Porter  <dick@ximian.com>
16091         * threads.c (start_wrapper): Do the thread cleanup while we still
16092         hold a reference to its object.  Fixes bug 78123.
16094 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16096         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16097         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16098           "managed-to-managed".
16099         * icall.c: Redirect string constructors that take sbyte* to
16100           ves_icall_System_String_ctor_RedirectToCreateString.
16101         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16102           to CreateString () methods with matching signature.
16103         * reflection.c: Use original security informations for
16104           MONO_WRAPPER_MANAGED_TO_MANAGED.
16105         * security-manager.c: Use original security informations for
16106           MONO_WRAPPER_MANAGED_TO_MANAGED.
16107         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16108           that is a placeholder and only its address should be used.
16109         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16110           that is a placeholder and only its address should be used.
16112 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16114         Begin implementing COM Interop.
16115         * appdomain.c: Increment corlib version.
16116         * class.c: Set ComImport classes' parent to __ComObject.
16117         * loader.c: Mark cominterop methods as such.
16118         * domain.c: Add __ComObject class to MonoDefaults structure.
16119         * image.c: Add 2 hashtables to the image for COM Interop related methods
16120         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16121         using the mempool allocator
16122         
16123         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16124         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16125         declaration for mono_metadata_type_dup_mp.
16126         
16127         * debug-helpers.c: Added strings for two additional wrapper types
16128         * object.c: Create proxy objects for ComImport classes
16129         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16130         and added __ComObject class to MonoDefaults structure.
16131         
16132         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16133         MonoComInteropProxy and MonoComObject.
16134         
16135         * marshal.c: Added support for COM Interop
16136         (signature_cominterop): Converts managed signature to corresponding
16137         unmanaged COM signature.
16138         (cominterop_get_function_pointer): gets unmanaged function pointer via
16139         COM object vtable
16140         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16141         (cominterop_get_method_interface): returns interface type that method is defined on
16142         (mono_mb_emit_cominterop_call): emits native call to function pointer
16143         gotten from vtable
16144         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16145         that matches signature of unmanaged function.
16146         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16147         (cominterop_get_invoke): forwards call from proxy to __ComObject
16148         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16149         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16150         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16151         
16152         * marshal.h: Added Marshal icall declarations.
16153         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16154         so we can access them in finalizer
16155         
16156 2006-07-14  Dick Porter  <dick@ximian.com>
16158         * object.c (mono_type_initialization_cleanup): Fix a race
16159         condition by temporarily commenting out the critical section
16160         deletion.
16162 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16164         * reflection.c (create_custom_attr): Fix some warnings.
16165         (create_custom_attr_data): Ditto.
16166         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16167         types. Fixes #78855.
16169 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16171         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16173         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16175 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16177         * reflection.c (resolve_object): Add support for DynamicMethod.
16179         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16180         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16182 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16184         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16185         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16187 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16189         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16190         Fixes #77888.
16192 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16194         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16195         slightly: remove a shadow local variable.
16197 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16199         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16200         definition that introduces the virtual function slot.
16201         Also fix Coverity #105.
16203 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16205         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16206         for dynamic assemblies. Fixes #78724.
16208 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16210         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16211         Fixes #78722.
16213 2006-06-21  Martin Baulig  <martin@ximian.com>
16215         * reflection.c
16216         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16217         fixes #76484.
16219 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16221         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16223 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16225         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16226         nor TYPEREFs.
16227         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16228         Inflate result if necessary.
16229         (mono_class_get_full): Remove old version.  Rename from
16230         'mono_class_get' and add 'context' argument.  Pass it to
16231         ..._create_from_typespec.
16232         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16233         (mono_ldtoken): Revert change below.
16235 2006-06-20  Martin Baulig  <martin@ximian.com>
16237         * class.c (mono_ldtoken): Don't pass the generic context to
16238         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16240 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16242         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16243         and later freeing it. Fixes #78638.
16245 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16247         * icall.c (mono_class_get_throw): Revert over-zealous error
16248         throwing, the caller for mono_class_get_throw will cope with
16249         errors when classes are not properly initialized already.
16251         The code still copes with loader exceptions though.
16253         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16254         
16255 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16257         Fixes the `make run1' version of RuntimeAbort (to be commited,
16258         source is in Bugzilla).
16259         
16260         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16261         FALSE on class loading failure instead of returning true.
16263         * class.c (mono_class_create_from_typedef): It is possible for
16264         mono_metadata_interfaces_from_typedef_full to fail if a class is
16265         not found, cope with this.
16266         
16268 2006-06-14  Dick Porter  <dick@ximian.com>
16270         * socket-io.c: 
16271         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16272         4.1.1
16274 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16276         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16278 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16280         * icall.c: Another fix for building mono in Visual Studio.
16282 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16284         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16285         
16286 2006-06-09  Martin Baulig  <martin@ximian.com>
16288         * debug-mono-symfile.c: Put this back and really fix it this
16289         time. Sorry for all the trouble.
16291 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16293         * icall.c (mono_class_get_throw): Fix a warning.
16294         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16295         ReflectionTypeLoadException if needed. Fixes #78606.
16297         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16298         (mono_class_init): Ditto.
16300         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16301         ref_only exceptions.
16302         (mono_loader_clear_error): Make this work even if there is no error.
16304 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16306         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16307         Marshal.GetComSlotForMethodInfo using internal call.
16309 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16311         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16312         a function for signalling it.
16314         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16315         a referenced assembly is not found.
16317         * loader.c (mono_loader_error_prepare_exception): Add support for 
16318         LOADER_ERROR_ASSEMBLY. Fix formatting.
16320 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16322         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16323         for VARIANT marshalling on windows and increment corlib version
16324         since Variant struct was added.
16326 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16328         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16329         stack trace line information:
16331         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16332         (Martin) when looking up B which is between A and C, return A not C.
16334         Bug is #78573.
16336         Thanks to Alexander Olk for tracking this down.
16338 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16340         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16341         
16342         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16343         avoid clobbering its value.
16344         (mono_string_to_lpstr): Fix a warning on windows.
16346 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16348         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16350         * reflection.c loader.c: Removed references to 'dummy' flag.
16352         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16354         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16355         it gets GC tracking.
16357         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16358         GC tracking.
16359         
16360         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16362         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16364         * appdomain.c: Bump corlib version.
16366 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16368         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16369         CEE_STIND_REF when working with object references.
16371 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16373         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16374         Fixes #78539.
16376 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16378         * loader.c (method_from_memberref): Fix argument value for
16379         mono_loader_set_error_method_load (I was passing the MonoClass
16380         instead of the class name char *).
16382 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16384         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16385         CEE_STIND_REF when working with object references.
16387 2006-05-30  Martin Baulig  <martin@ximian.com>
16389         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16390         mono_method_full_name() change and replace the ':' with a '.'
16391         here.
16393 2006-05-30  Martin Baulig  <martin@ximian.com>
16395         * debug-mono-symfile.c
16396         (mono_debug_symfile_lookup_location): Fix the algorithm:
16397         when looking up B which is between A and C, return A not C.
16399 2006-05-29  Martin Baulig  <martin@ximian.com>
16401         * mono-debug.h
16402         (MonoDebugMethodInfo): Make the typedef public.
16403         (MonoDebugSourceLocation): New public struct.
16405         * mono-debug.c
16406         (mono_debug_source_location_from_address): Removed.
16407         (mono_debug_source_location_from_il_offset): Removed.
16408         (mono_debug_il_offset_from_address): Removed.
16409         (mono_debug_address_from_il_offset): Removed.
16410         (mono_debug_lookup_method): New public function.
16411         (mono_debug_lookup_source_location): New public function; replaces
16412         the old mono_debug_source_location_from_*() functions; see the
16413         inline documentation.
16414         (mono_debug_free_source_location): New public function.
16415         (mono_debug_print_stack_frame): New public function; see the
16416         inline documentation.
16418         * debug-mono-symfile.c
16419         (mono_debug_find_source_location): Renamed into
16420         mono_debug_symfile_lookup_location(); only take a
16421         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16422         documentation.
16423         (mono_debug_find_method): Renamed into
16424         mono_debug_symfile_lookup_method().
16426 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16428         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16429         returned by mono_image_open_full ().
16431         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16432         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16433         #78517.
16435         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16436         #78518.
16438 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16440         * class.c (mono_class_from_typeref): handle missing images
16441         earlier, deals with bug #78418.   Refactor code; 
16443         Fix a warning introduced in my previous commit (some stale code
16444         from before I revisited my patch).
16446         * class.c (mono_class_create_from_typedef): On failure, remove the
16447         class from the MonoImage->class_cache as the class is not
16448         initialized;   Fixes the leak pointed out by Paolo.
16450 2006-05-25  Dick Porter  <dick@ximian.com>
16452         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16453         DeleteCriticalSections until I figure out which one may still be
16454         sometimes locked when mono_thread_cleanup is called.
16456 2006-05-24  Dick Porter  <dick@ximian.com>
16458         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16459         of mono_thread_manage and back into its own function, so it can be
16460         called after the finalizer thread has finished.
16462         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16464 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16466         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16467         Fixes #78495.
16469         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16470         with non-blittable elements.
16471         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
16473 2006-05-24  Martin Baulig  <martin@ximian.com>
16475         * mono-debug-debugger.h (MonoDebuggerEvent): Added
16476         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
16478         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
16479         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
16480         `mono_debugger_event_handler' to NULL.
16482 2006-05-24  Martin Baulig  <martin@ximian.com>
16484         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
16486 2006-05-24  Martin Baulig  <martin@ximian.com>
16488         * mono-debug-debugger.h
16489         (mono_debugger_create_notification_function): Added
16490         `MonoCodeManager *' argument.
16492 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
16494         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
16496 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
16498         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
16499         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
16500         implementation.
16502 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
16504         * icall.c: precise GC support: objects can't be stored in unmanaged
16505         memory anymore, even if they are kept alive by other references: since
16506         they can move the GC needs to be able to always find them.
16508 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16510         * object.c: precise GC support for static fields. Support
16511         for moving GCs: write barriers and pinned allocation for interned
16512         strings.
16514 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16516         * domain.c, domain-internals.h: precise GC support for the MonoDomain
16517         structure.
16519 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16521         * class.c, gc.c: sgen and precise GC updates.
16523 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
16525         * marshal.h, marshal.c: added write barrier wrapper and precise type
16526         fixes.
16528 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
16530         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
16531         support.
16533 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
16535         * reflection.c: precise and sgen GC updates.
16537 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
16539         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
16541 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
16543         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
16545 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
16547         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
16548         MONO_TYPE_OBJECT. Fixes #78462.
16550 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16552         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16553         and blittable types.
16555 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16557         * class.c (mono_class_get_exception_for_failure): Implement parts
16558         of a TODO: if the loader error is set (instead of the class
16559         error), we return a Loader exception that can be properly thrown
16560         elsewhere.
16562         This was exposed by some Winforms 2.0 code that I tried to run
16563         (Atsushi pointed me to it).
16565 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16567         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16568         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16569         
16570         * marshal.c (emit_marshal_vtype): Add limited support for 
16571         UnmanagedType.LPStruct. Fixes #78427.
16573         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16574         Applied a patch from kangaroo to fix #77523.
16576 2006-05-17  Martin Baulig  <martin@ximian.com>
16578         * threads.c
16579         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16580         (debugger_thread_created): Removed.
16581         (debugger_thread_exited): Removed.
16583 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16585         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16587         * object-internals.h (MonoReflectionResource): Sync with managed version.
16589 2006-05-12  Wade Berrier <wberrier@novell.com>
16591         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16593 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16595         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16596         functions try to allocate from the image mempool.
16598 2006-05-12  Dick Porter  <dick@ximian.com>
16600         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16602 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16604         * object.c: The FieldGetter and FieldSetter methods require the full
16605         name of the class, not only the name. Fixes bug #78277.
16607 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16609         * loader.c (method_from_memberref): Do not pass the NULL klass to
16610         mono_loader_set_error_() methods.  Pass the non-NULL value
16611         (class). 
16613 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16615         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16616         (mono_assembly_close): Null out assembly->image->references after freeing it.
16618         * image.c (mono_image_close): Free image->references.
16619         
16620         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16622 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16624         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16625         before checking if it's NULL (g_assert).
16627 2006-05-10  Martin Baulig  <martin@ximian.com>
16629         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16630         I thought I already killed that two months ago, but now it somehow reappeared.
16632 2006-05-10  Martin Baulig  <martin@ximian.com>
16634         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16636 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16638         * reflection.c: Allocate memory for dynamically created methods in the image
16639         mempools.
16641 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16643         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16644         don't use the ad pointer before checking if it's NULL (g_assert).
16646 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16648         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16649         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16651         * marshal.c: Allocate all signatures from mempools.
16653         * marshal.c: Allocate some more signatures from mempools.
16655 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16657         * object.c (mono_load_remote_field): The code used to provide a
16658         temporary variable for returning results if the user did not
16659         provide a result pointer.  But our temporary variable was allocted
16660         on the satck.
16662         Fix calling code to always pass a result area.   Coverity ID 103.
16664 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16666         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16667         value, not the old. Fixes #78312.
16668         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16670         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16671         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16672         per-image cache.
16674         * assembly.c (mono_assembly_close): Free image->references.
16676         * assembly.c (mono_assembly_names_equal): Fix a warning.
16677         (mono_assemblies_cleanup): Cleanup more global data.
16679         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16681         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16682         ptr_cache and image->modules.
16684         * image.c (mono_image_init): Allocate array_cache lazily.
16685         
16686 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16688         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16689         behavior was changed recently and has bad side effects.
16691 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16693         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16694         
16695         * assembly.c (mono_assembly_close): Remove a debug printf.
16697         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16699         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16700         to also allow for temporary references between mono_image_open ()/close ().
16702         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16704 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16706         * marshal.c: Fix support for dynamic methods.
16708         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16710         * marshal.c (mono_marshal_cleanup): New cleanup function.
16712         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16713         image mempools.
16715         * class.c (mono_class_init): Fix leaking class->nested_classes.
16717         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16719         * image.c (mono_image_init): Initialize the new cashes.
16721         * image.c (mono_image_close): Destroy the new cashes.
16723         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16725         * mempool.c (mono_mempool_strdup): New helper function.
16727         * class-internals.h: Add prototype for mono_loader_unlock ().
16729         * domain.c (mono_jit_info_table_find): Fix a warning.
16730         (mono_debugger_check_runtime_version): Ditto.
16732         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16733         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16734         functions to these modules.
16736         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16737         metadata modules.
16738         
16739         * marshal.c (mono_free_bstr): Fix a warning.
16741         * assembly.c (mono_assembly_open_full): Fix another small leak.
16743         * object.c: Fix some unload leaks in the remoting code.
16745         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16746         function.
16748         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16750         * reflection.c: Fix some unload leaks in dynamic assemblies.
16752 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16754         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16755         * marshal.h: Add BSTR support on Win32
16756         * icall.c: Add BSTR icalls
16757         * metadata.h: Add BSTR enums
16759 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16761         Work to catch the crash from #76795 and turn it into an
16762         exception.   As I stubbed out pieces of the VisualBasic support,
16763         I found a number of places where the code was failing and I added
16764         checks to those places. 
16765         
16766         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16767         function return a status code.  If we fail to parse the signature
16768         from mono_metadata_parse_generic_inst, return FALSE.
16770         * loader.c (mono_get_method_from_token): If we fail to load the
16771         method (mono_class_get) return NULL.   
16773         * (method_from_memberref): Return NULL if we are unable to parse
16774         the method signature
16776         (mono_loader_error_prepare_exception): Since we now use the
16777         loader_error flag internally to stop processing, and obtaining
16778         exceptions that might be thrown will walk this code path the
16779         proper way of going from a MonoLoaderError into a
16780         MonoException was convoluted.   This new routine encapsulates the
16781         process of turning the error into an exception and *clearing* the
16782         error afterwards.
16783         
16784 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16786         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16787         with missing assemblies), and to cope with:
16789                 * Missing fieldref from a non-existing assembly.
16790                 * Missing methodref from a non-existing assembly.
16792         The first batch of work to address *some* of the issues from 76661.
16793         
16794         * object.c (mono_class_create_runtime_vtable): If we fail to
16795         initialize the class raise the exception here. 
16797         * metadata.c (mono_class_get_overrides_full): If any methods fail
16798         to load return the failure to the caller.
16800         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16801         flagging assemblies that failed to load.   
16803         Do not crash if we are unable to load the assembly.
16805         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16806         assemblies. 
16808         * loader.c (mono_loader_set_error_type_load): Change the
16809         convention to always pass unallocated strings, so we make our own
16810         copies (I know our own code had duplicated strings before, but
16811         this keeps the normal conventions).
16812         (method_from_memberref): Call mono_loader_set_error_method_load
16813         for all possible failures of loading the class. 
16814         Remove assert, turn into a loader error.
16816         (mono_loader_error_to_exception): Move this routine from mini
16817         (mini_loader_error_to_exception) there was no need to have that in
16818         mini. 
16820         * class.c (mono_class_from_typeref): If we were not able to load
16821         the assembly with mono_assembly_load_reference, call the
16822         mono_loader_set_error_type_load to register the problem.
16824         (mono_class_setup_fields): If we fail to load the type from
16825         mono_metadata_parse_type_full, call mono_class_set_failure and
16826         break from the loop.
16828         If class->exception_type is set, we do not layout the fields as
16829         that might crash the runtime, and instead return (from breaking
16830         from the previous loop).
16832         (mono_class_setup_vtable): This now returns a boolean indicating
16833         whether the table was properly setup.   The decision is driven by
16834         mono_class_get_overrides_full which might run into non-existing
16835         methods. 
16836         
16837         (mono_class_init): Returns TRUE on success or FALSE if there was a
16838         problem in loading the type (incorrect assemblies, missing
16839         assemblies, methods, etc).
16841         When we call mono_class_setup_fields we also check for a potential
16842         error inside this call (either a class exception or a general
16843         loader exception).
16845         (mono_class_create_from_typedef): If the parent fails to load
16846         (calling mono_class_get_full) return NULL.
16847         
16848         ** Important **
16850         calls to mono_metadata_parse_type_full should be checked
16851         everywhere and set the mono_class_set_failure
16852         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16854         The current patch checks the places where my manually constructed
16855         tests show the errors are showing up, but we should do it
16856         everywhere. 
16858         ** Important2 **
16860         mono_class_init return values should be tested everywhere, like
16861         the previous case this is something that we should audit
16862         everywhere and not only on the cases exposed by the tests I
16863         created. 
16865 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16867         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16868         boolean parameter and instead pass the information on `options'
16869         parameter (FileOptions).
16871         * icall.c: Register the new signature for MonoIO.Open.
16873         * debug-helpers.c (dis_one): Trying to understand how coverity
16874         works.  Fix Run 5, item 78.
16876 2006-04-26  Dick Porter  <dick@ximian.com>
16878         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16879         dereference.
16881 2006-04-25  Martin Baulig  <martin@ximian.com>
16883         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16885         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16886         debugger_thread_created().
16887         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16888         special way.
16889         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16890         (mono_debugger_finalize_threads): New function; undo the effects
16891         of mono_debugger_init_threads().
16892         (mono_debugger_create_all_threads): Removed.
16894 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16896         * image.c (mono_image_close): Tidy up trace messages.
16898         * assembly.c (mono_assembly_close): Ditto.
16900         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16901         no longer references an already freed assembly. Fixes #78168.
16903 2006-04-21  Dick Porter  <dick@ximian.com>
16905         * threads.c (mono_thread_detach): Fix reference counting when
16906         detaching threads.
16908 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16910         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16911         #78155.
16913 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16915         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16916         (mono_type_to_stind): Ditto.
16918         * marshal.c: Use the new helper functions to simplify code.
16920         * image.c (mono_image_close): Add some code for help debug assembly unloading
16921         problems.
16923         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16924         image mempool.
16926         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16927         assembly was already loaded in another appdomain. Fixes #78083.
16929 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16931         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16932         referenced assemblies.
16933         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16935         * domain.c (mono_domain_free): Add a trace message.
16937         * appdomain.c (add_assemblies_to_domain): Ditto.        
16939         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16940         field.  
16942 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16944         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16946 2006-04-12  Martin Baulig  <martin@ximian.com>
16948         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16949         `USE_INCLUDED_LIBGC'.   
16951 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16953         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16954         the patch contains ../ and a small directory name later. Hopefully fixes
16955         #78035.
16957 2006-04-10  Martin Baulig  <martin@ximian.com>
16959         Clean up the debugger's thread-handling code.
16961         The debugger's thread-handling code has been moved from
16962         ../mini/debug-debugger.c to threads.c.  We now iterate directly
16963         over the `threads' hash, keep track of exiting threads and also
16964         use proper locking.
16966         We can now debug XSP and XSP based applications with the debugger.
16968         * object-internals.h (MonoThread): Added `gpointer end_stack'.
16970         * threads.h
16971         (MonoThreadCallbacks): Removed; this was only used by the debugger.
16972         (mono_install_thread_callbacks): Likewise.      
16974         * threads.c (mono_thread_callbacks): Removed.
16975         (debugger_thread_created, debugger_thread_exited): New static functions.
16976         (start_wrapper): Call debugger_thread_created().
16977         (thread_cleanup): Call debugger_thread_exited().
16978         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
16979         (mono_debugger_init_threads): New public function.
16980         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
16981         iterate directly over the `threads' hash and also use proper locking.
16983         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
16985         * mono-debug-debugger.h
16986         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
16988 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16990         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
16991         argument type=array. Fixes #78057.
16993 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
16995         * culture-info-table.h : regenerated. Fixed bug #69652.
16997 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16999         * loader.c metadata.c: Reapply a variant r59116.
17000         
17001         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17003         * class.c (mono_class_setup_interface_offsets): New internal function.
17005         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17006         interfaces too. Fixes #77398.
17008         * reflection.c (encode_cattr_value): Add support for 
17009         parameter type=object, argument type=array.
17010         (load_cattr_value): Ditto. Fixes #77916.
17012         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17013         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17015         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17016         a byval char array and CharSet is Ansi.
17018         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17020 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17022         * metadata.c: Add some locking comments.
17023         
17024         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17025         mempool.
17026         (mono_metadata_free_method_signature): Don't free the signature itself.
17028         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17030         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17031         reference the same MonoImage.
17032         (mono_assembly_load_from_full): Add an assert.
17034 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17036         * image.c (mono_image_close): Don't put the image we are about to free into the
17037         loaded_images_guid_hash.
17039         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17040         to reduce code duplication.
17042         * marshal.c: Register the native functions called by this module as icalls, to
17043         somewhat centralize the creation of MonoMethodSignature's.
17045         * loader.c (mono_method_signature): Add a cache for method signatures.
17047         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17048         the parameter attributes of a method.
17049         (mono_metadata_parse_method_signature_full): Refactored the computation of
17050         parameter attributes into a separate function. Also avoid one allocation in
17051         most cases.
17053         * assembly.c (mono_assembly_close): Ditto.
17055         * image.c (mono_image_close): Log trace messages with INFO level.
17057         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17059         * image.c reflection.c: Correct reference counting of image modules.
17060         
17061         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17062         of this function from the image mempool.
17063         
17064         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17065         to allow more cached types to be used.
17067         * mono-debug.c (mono_debug_add_method): Appled patch from
17068         David S. Miller  <davem@sunset.davemloft.net>: Access 
17069         minfo->lexical_blocks[] entry elements using read32().
17071 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17073         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17074         methods as it is allocated from the mempool.
17076         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17077         image mempool.
17079         * metadata-internals.h: Add comments describing the reference counting scheme
17080         used for MonoImage and MonoAssembly.
17082         * image.c assembly.c reflection.c: Rework reference counting of images and 
17083         assemblies so they are freed when the runtime is shut down. Free some 
17084         additional memory structures when an image is unloaded.
17085         
17086 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17088         * class.c loader.c reflection.c: Allocate more data structures in
17089         the image mempool.
17091 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17093         * icall.c
17094         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17095         build on pre glib 2.4 systems.
17097 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17099         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17101         * icall.c: Fix some warnings.
17103 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17105         * culture-info-table.h : regenerated.
17107 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17109         * threads.c, object-internals.h, verify.c: changed the culture caching
17110         code to use a normal MonoArray for storage so the GC can keep track of
17111         them easily. Fixed bits of the cache logic, too and simplified the
17112         code.
17114 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17116         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17117         thread for non-Boehm GCs.
17119 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17121         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17122         needed to keep track of the data for static fields.
17124 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17126         Fix #75172
17127         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17128         for interface classes.  Use 'num_methods' instead.
17129         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17130         before using '->vtable_size' field.
17132 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17134         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17135         doesn't contain managed pointers, so use a normal hashtable.
17137 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17139         * reflection.c, class-internals.h, domain.c: fixed handling of types
17140         used as values for objects in custom attributes (bug #77915):
17142 2006-03-24  Martin Baulig  <martin@ximian.com>
17144         * class.c (mono_class_setup_fields): Added support for generic
17145         instances; fixes #77580.
17147 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17149         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17151 2006-03-24  Dick Porter  <dick@ximian.com>
17153         * file-io.c (get_file_attributes): More stat macro breakage.
17154         Fixes bug 77759.
17156 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17158         * profiler.c: added the file=filename option in the default profiler
17159         to output the profile data to filename.
17161 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17163         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17164         bug #77877.
17166 2006-03-22  Martin Baulig  <martin@ximian.com>
17168         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17169         allocated `MonoClassField *' in `fb->handle'.
17171 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17173         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17174         allocate interface ID to save memory and allow better ID reuse on
17175         appdomain unload. setup_generic_vtable () removal from Martin.
17177 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17179         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17180         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17181         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17182         write barriers for reference stores with managed objects accessed with
17183         C structures in the runtime and in embedding programs.
17185 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17187         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17188         'interface_id' and 'max_interface_id' fields of MonoClasses
17189         representing open generic types.
17191 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17193         * object.h, object.c, icall.c: added functions to deal with
17194         storing valuetypes that contain references in managed objects.
17195         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17196         fixes and comments around uses of mono_array_addr ().
17198 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17200         * object.h, icall.c, monitor.c: object.GetHashCode ()
17201         implementation that supports the moving garbage collector.
17203 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17205         * icall.c, threads-types.h, threads.c: implemented finalizer for
17206         LocalDataStoreSlot.
17208 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17210         * metadata.c (mono_type_size): Add a fixme.
17211         (mono_type_stack_size): Ditto.
17213         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17214         'type_forwarders' field.
17216         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17217         attribute from net 2.0.
17219         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17220         from class.c.
17222         * class.c (mono_class_setup_fields): Fix a warning.
17223         
17224         * class.c (mono_class_from_name): Add support for assemblyref entries
17225         in the EXPORTEDTYPE table.
17227         * reflection.c: Add support for handling type forwarders under net 2.0.
17229         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17230         
17231 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17233         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17234         overwriting entries in ModuleBuild->types, also clean up the code
17235         a little. Fixes #77774.
17237 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17239         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17240         load friend assembly info when present.
17242 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17244         Fix crasher on gtest-158.cs.
17245         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17246         the return value if the MonoClass we want is yet in an
17247         inconsistent state.
17248         * class.c (mono_class_create_from_typedef): Add an comment
17249         explaining an order dependency between mono_class_setup_parent and
17250         mono_class_setup_mono_type.
17252 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17254         * class.c: documentation updates and events bug fix.
17256 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17258         * class.c: some cleanup, locking fixes.
17260 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17262         * class.c: fix the generics code to setup nested
17263         type info to the instantiated type (bug #77770).
17265 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17267         * marshal.c: fixed a few type correctness issues.
17269 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17271         * loader.c: the Set/Get/Addrtess array methods should be public.
17273 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17275         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17276         
17277         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17278         info->wrapper.
17280 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17282         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17284         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17286         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17287         (mono_mempool_alloc0): Ditto.
17289 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17291         * socket-io.c:
17292         (create_object_from_sockaddr): it was allocating 4 extra bytes
17293         for the AF_UNIX data. Fixes bug #77747.
17295 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17297         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17299 2006-03-09  Dick Porter  <dick@ximian.com>
17301         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17302         Fixes bug 76966 again.
17304 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17306         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17307         names from r57532
17308         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17310 2006-03-07  Martin Baulig  <martin@ximian.com>
17312         * object.c
17313         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17315 2006-03-07  Martin Baulig  <martin@ximian.com>
17317         * class.c
17318         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17319         regression introduced in r56970; see gtest-252.cs.
17321         * loader.c (mono_get_method_constrained): Correctly handle generic
17322         methods; see gtest-253.cs.
17324 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17326         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17328 2006-03-04  Martin Baulig  <martin@ximian.com>
17330         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17331         compute the parent type at runtime, just like we're already doing
17332         it for interfaces.
17334         * reflection.c
17335         (mono_reflection_bind_generic_parameters): Don't compute the
17336         parent type anymore.
17338         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17340 2006-03-04  Martin Baulig  <martin@ximian.com>
17342         * mono-debug-debugger.h
17343         (mono_debugger_create_notification_function): Allocate memory at
17344         runtime and return a pointer to it.
17346 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17348         * assembly.c: Fix windows build.
17349         
17350         * assembly.c: Fix build.
17352         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17354         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17355         
17356 2006-03-03  Dick Porter  <dick@ximian.com>
17358         * process.c
17359         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17360         Check parameters before dereferencing them.  Fixes Aaron's part of
17361         bug 77393.
17363 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17365         Fix performance regression.
17366         * loader.c (find_method_in_class): Add 'from_class' argument.
17367         Rename 'klass' argument to 'in_class'.  The signature is compared
17368         against the method in 'in_class', and the corresponding method is
17369         returned from 'from_class'.
17370         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17371         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17372         type definition and generic instantiation in parallel.
17373         (mono_get_method_constrained): Update to changes.
17375 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17377         * threads.c: make sure the domain is correct, too when doing
17378         mono_thread_attach ().
17380 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17382         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17383         windows. Fixes #77683.
17385 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17387         * object.h, *: introduced specific way to set elements of an array
17388         of references to be used as write barrier. Still need to audit the
17389         uses of mono_array_addr.
17391 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17393         * object-internals.h: New field to cache the assmebly name, patch
17394         from Tambet Ingo (tambet@ximian.com)
17396 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17398         * decimal.h, class-internals.h, metadata-internals.h,
17399         file-io.h: mark a few function declarations as internal, to
17400         reduce the number of PLT entries.
17402 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17404         * file-io.c: fix typo in warning message.
17406 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17408         * loader.c: on unix, lookup the "*A" version of a function
17409         if charset is auto as a second option before failing.
17411 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17413         * class.h (mono_class_inflate_generic_method): Revert to two
17414         argument version.
17415         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17416         (mono_class_inflate_generic_method_full): Add.
17417         * class.c (mono_class_inflate_generic_method_full): Rename from
17418         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17419         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17420         * loader.c, reflection.c: Update to changes.
17422 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17424         * icall.c: const fixes and small improvements.
17426 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17428         * threadpool.c: for asynchronous connect(), enable the same workaround
17429         for BSD 6 as for the Mac. Fixes bug #77637.
17431 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17433         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17434         formatted classes. Fixes #77524.
17436 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17438         * class.c (inflate_generic_type): Add a couple more
17439         micro-optimizations.
17440         (inflate_generic_context): Don't use the 'gmethod' from
17441         'inflate_with'.
17442         (mono_class_inflate_generic_method): If the method has generic
17443         parameters, but the passed-in context doesn't have a 'gmethod',
17444         create one.  Use the possibly simplified generic instantiation
17445         from the declaring class instead of the one passed in.
17447 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17449         Make generic method signature and method header handling lazy.
17450         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17451         (inflate_generic_header): Likewise.
17452         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17453         parameter to avoid inflating types.
17454         (mono_get_inflated_method): Empty out.
17455         * class.h (mono_class_inflate_generic_method): Update to changes.
17456         * loader.c (mono_get_method_from_token): Don't parse signature for
17457         generic methods, nor methods of generic classes.
17458         (mono_method_signature): Rename from 'mono_method_signature'.
17459         Inflate signature on demand.
17460         (mono_method_get_header): Inflate method header on demand.
17461         * reflection.c: Update to changes.
17463 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17465         * metadata.c (mono_metadata_inflate_generic_inst): If the
17466         instantiation is closed, don't bother expanding it in the new
17467         context.
17468         * class.c (inflate_generic_class): If the generic instantiation
17469         doesn't change after inflation, return the argument itself.
17470         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
17471         Add bounds checks.
17472         (inflate_generic_context): If neither the generic class nor the
17473         generic method instantiations change, return the original context.
17474         * reflection.c (mono_method_get_object): Do
17475         'mono_get_inflated_method' before accessing the ->klass field.
17476         (inflate_mono_method): Don't create a MonoGenericMethod unless
17477         necessary.
17478         (inflate_method): Don't pass a constructed type as the declaring
17479         type of a methodbuilder.
17481 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
17483         * object.c: fix memory overwrite.
17485 2006-02-22  Dick Porter  <dick@ximian.com>
17487         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
17488         it doesn't work any more.
17489         (mono_threads_request_thread_dump): Fix unused variable warnings.
17491 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17493         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
17494         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
17495         the public header file.
17497 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
17499         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
17501 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
17503         * class-internals.h, object.c: reduce the size of MonoVTable
17504         and store the interface_offsets array at negative offsets.
17506 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
17508         * metadata.c: tweak table descriptors data structures to reduce
17509         size and runtime relocations.
17511 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17513         * marshal.c: fix some types and opcodes to be type-safe
17514         in marshaling wrappers.
17516 2006-02-21  Ankit Jain  <jankit@novell.com>
17518         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
17520 2006-02-21  Raja R Harinath  <rharinath@novell.com>
17522         * metadata.c (get_constraints): Relax debugging checks for monodis.
17524 2006-02-21  Ankit Jain  <jankit@novell.com>
17526         * metadata.c (mono_metadata_load_generic_params): Move the code
17527         checking for ambiguous generic params from here to mono/dis/get.c
17528         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
17530 2006-02-21  Raja R Harinath  <harinath@gmail.com>
17532         Fix assertion triggered when compiling nemerle.
17533         * class.c (mono_get_shared_generic_inst): Rename from
17534         get_shared_inst and make non-static.
17535         * loader.c (mono_get_shared_generic_method): New.  Used to create
17536         the MonoGenericContext-equivalent of a MonoGenericContainer.
17537         (mono_get_method_from_token): Initialize the 'context' field of
17538         the created MonoGenericContainer.
17539         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
17540         * metadata.c (get_constraints): Add sanity check.
17541         * class-internals.h: Add new internal methods.
17543         * reflection.c (verify_safe_for_managed_space): New sanity check.
17544         Currently checks that owner-less generic parameters aren't allowed
17545         in managed space.
17546         (mono_type_get_object): Use it.
17547         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
17548         that are now in mono_type_get_object.
17549         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
17551 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17553         * metadata.c (mono_type_create_from_typespec): Rename from
17554         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17555         argument and caching of types in the generic container.
17556         (unwrap_arrays, find_generic_param): Remove.
17557         * metadata-internals.h: Update.
17558         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17560 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17562         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17564         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17565         return values. Fixes #77581.
17567         * class.c (mono_fnptr_class_get): Switch name and name_space.
17569         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17570         classes and add support for [In, Out] attributes.
17571         (mono_marshal_free_asany): Ditto. Fixes #77524.
17573 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17575         * class.c (mono_class_from_generic_parameter): Make more robust to
17576         incomplete MonoGenericContainers from monodis.
17578 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17580         * class-internals.h: added some more exception types.
17581         * class.c, metadata.c: added a few checks to handle missing
17582         types.
17584 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17586         Use owner-less generic-params some more.
17587         * class.c (my_mono_class_from_generic_parameter): Remove.
17588         (mono_class_from_generic_parameter): Handle null image,
17589         param->name and param->owner.
17590         (mono_class_from_mono_type): Update.
17591         (mono_class_create_from_typespec): Remove 'container' parameter.
17592         If that parameter is non-null, the result is always inflated by
17593         'mono_class_get_full' anyway.
17594         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17595         parameter.
17596         (mono_class_get_full): Update.
17598         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17599         instance is not open, don't bother inflating.
17600         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17601         parse metadata for inflated classes.
17602         (_mono_class_get): Change GenericContext* parameter to
17603         GenericContainer*.
17604         (mono_class_create_from_typespec): Likewise.  Simplify, and
17605         implement trivially.  All the cases are handled in
17606         mono_class_from_mono_type.  Don't inflate returned class.
17607         (mono_class_get_full): Delegate GENERICINST optimization to
17608         inflate_generic_type.
17609         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17611 2006-02-16  Dick Porter  <dick@ximian.com>
17613         * socket-io.c (create_object_from_sockaddr): Fix typo.
17614         (create_sockaddr_from_object): Check array lengths before
17615         potentially accessing items off the end.
17616         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17617         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17618         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17619         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17620         length checks to avoid wraparound overflows.
17621         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17622         contents of the array of sockets
17623         (hostent_to_IPHostEntry2)
17624         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17625         Check return value of inet_ntop ().
17626         (addrinfo_to_IPHostEntry): Fix typo
17628 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17630         Type metadata parsing doesn't use generic-instantiation information.
17631         * metadata.c (mono_metadata_parse_array_full): Change
17632         MonoGenericContext* parameter to MonoGenericContainer*.
17633         (mono_metadata_parse_type_full): Likewise.
17634         (mono_type_create_from_typespec_full): Likewise.
17635         (mono_metadata_parse_mh_full): Likewise.
17636         (mono_metadata_parse_generic_inst): Likewise.
17637         (do_mono_metadata_parse_generic_class): Likewise.
17638         (do_mono_metadata_parse_type): Likewise.
17639         * metadata-internals.h: Update to changes.
17640         * class.c (mono_class_find_enum_basetype): Likewise.
17641         (mono_class_setup_fields): Likewise.
17642         (mono_class_create_from_typespec): Likewise.
17643         * loader.c (method_from_methodspec): Likewise.
17644         (mono_get_method_from_token): Likewise.
17645         (mono_method_get_header): Likewise.
17647 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17649         * marshal.c: handle additional GENERICINST case (patch from
17650         Thong Nguyen <tum@veridicus.com>).
17651         Fix a few cases where LDIND_I/STIND_I was used for references.
17653 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17655         * reflection.c (mono_reflection_get_token): Remove unused variable.
17657 2006-02-16  Martin Baulig  <martin@ximian.com>
17659         * reflection.c (mono_reflection_get_token): Add support for fields
17660         in instantiated generic types.
17662         * icall.c
17663         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17665 2006-02-15  Martin Baulig  <martin@ximian.com>
17667         * icall.c
17668         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17669         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17670         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17671         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17673 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17675         * class.c, metadata.c, metadata.h, object.c, icall.c,
17676         marshal.c: changed mono_type_get_underlying_type () to do
17677         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17678         Fixed handling of instantiated generic valuetypes (bug #75479).
17680 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17682         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17683         Delegate to mono_metadata_decode_value, and work on the returned value.
17685         * icall.c (ves_icall_MonoType_GetGenericArguments):
17686         Add consistency check here too.
17687         
17688 2006-02-15  Ankit Jain  <jankit@novell.com>
17690         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17691         char/short etc.
17693 2006-02-15  Ankit Jain  <jankit@novell.com>
17695         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17696         signed values, used only for representing lower bounds of arrays.
17697         (mono_metadata_parse_array_full): Use new
17698         mono_metadata_decode_signed_value to decode lower bounds.
17700 2006-02-14  Martin Baulig  <martin@ximian.com>
17702         * reflection.c
17703         (mono_reflection_get_token): Support "MonoGenericMethod" and
17704         "MonoGenericCMethod" and allow generic instances / methods.
17706 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17708         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17709         to obtain the terminal size using an ioctl.
17711         * object.c (mono_nullable_init): Revert this as nullable reference
17712         types are not valid.
17713         (mono_nullable_box): Ditto.
17715 2006-02-09  Dick Porter  <dick@ximian.com>
17717         * threads.c (mono_thread_detach): Drop a reference to the thread
17718         we're detaching.
17720 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17722         * object.c (mono_nullable_init): Handle nullable reference types.
17723         (mono_nullable_box): Ditto. Fixes #77446.
17725 2006-02-07  Martin Baulig  <martin@ximian.com>
17727         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17729 2006-02-07  Ankit Jain  <jankit@novell.com>
17731         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17732         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17733         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17734         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17735         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17736         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17738 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17740         * class.c (mono_class_create_generic): Set type_token as well.
17742         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17743         compatible with MS.
17745 2006-02-02  Martin Baulig  <martin@ximian.com>
17747         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17748         has never been used so far.
17750 2006-02-02  Martin Baulig  <martin@ximian.com>
17752         * mono-debug-debugger.h: Changed comment at the top of this file;
17753         the header is not installed, but it's safe to #include it from
17754         within the JIT.
17756         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17757         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17759 2006-02-02  Martin Baulig  <martin@ximian.com>
17761         * mono-debug.h
17762         (MonoSymbolTable): Removed the `metadata_info' field.
17764         * mono-debug.c
17765         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17767         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17768         (mono_debugger_add_builtin_types): Removed.
17769         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17770         (mono_debugger_create_notification_function): We now operate on a
17771         pre-allocated area; take a `gpointer' and return `void'.
17773         * mono-debug-debugger.c
17774         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17775         (mono_debugger_add_builtin_types): Removed.
17777 2006-02-02  Martin Baulig  <martin@ximian.com>
17779         * threads.c (mono_debugger_create_all_threads): New public method.
17781 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17783         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17784         breaks on several platforms.
17786 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17788         * assembly.c: the VS.NET build doesn't supply default values for
17789         MONO_ASSEMBLIES and MONO_CFG_DIR.
17791 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17793         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17794         helper function.
17796         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17798         * loader.c (method_from_memberref): Fix a warning.
17800         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17802         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17803         with explicit layout. Fixes #77433.
17805 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17807         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17808         max_interface_id is initialized before using it. Fixes #77398.
17809         (ves_icall_Type_GetInterfaces): Ditto.
17811 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17813         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17814         allocate memory for parameter attributes when parsing memberref
17815         signatures.
17816         * loader.c (mono_loader_set_error_method_load): Don't warn.
17817         (method_from_memberref): Ensure MissingMethodException gets thrown
17818         if method is not found.  Make warning more informative.
17820 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17822         Fix #77397
17823         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17824         return true if is byref.
17825         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17826         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17827         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17829 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17831         Fix tests/find-method.2.il
17832         * loader.c (find_method, find_method_in_class): Remove is_inflated
17833         argument.  Revert 2006-01-18 change.
17834         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17835         is generic, search for method in its generic definition.
17836         * class.c (mono_class_setup_vtable_general): Print generic
17837         arguments of generic types in debugging printf.
17839 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17841         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17843         * threads.c (mono_threads_request_thread_dump): New helper function.
17845 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17847         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17849 2006-01-25  Ankit Jain  <jankit@novell.com>
17851         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17852         move definition to ..
17853         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17854         
17855 2006-01-25  Ankit Jain  <jankit@novell.com>
17856             Raja R Harinath  <rharinath@novell.com>
17858         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17859         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17860         as necessary.
17862 2006-01-25  Martin Baulig  <martin@ximian.com>
17864         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17865         `MonoDebuggerThread' into debug-debugger.c.
17867 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17869         * profiler.c: fix printing of data.
17871 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17873         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17874           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17876 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17878         * object.c: fix deadlock related to string interning.
17880 2006-01-23  Martin Baulig  <martin@ximian.com>
17882         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17884         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17886 2006-01-23  Martin Baulig  <martin@ximian.com>
17888         * mono-debug.h: Moved the prototypes of some functions which are
17889         used by the JIT here from mono-debug-debugger.h.
17891 2006-01-21  Martin Baulig  <martin@ximian.com>
17893         * Makefile.am: Don't install mono-debug-debugger.h.
17895 2006-01-21  Martin Baulig  <martin@ximian.com>
17897         * mono-debug-debugger.h: Enforce the private status of this header
17898         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17899         Moved some stuff from mono-debugger-jit-wrapper.h here.
17901 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17903         * class.c (mono_class_from_typeref): Add a sanity test to help
17904         catch lack of assembly load/search hooks.
17906 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17908         * marshal.c (emit_struct_conv): Relax the fields with same offset
17909         check even more. Fixes #77230.
17911 2006-01-18  Martin Baulig  <martin@ximian.com>
17913         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17914         argument; if false, we compare the uninstantiated signatures.
17915         (method_from_memberref): Compare the uninstantiated signatures;
17916         fixes #76417.
17918 2006-01-18  Robert Jordan  <robertj@gmx.net>
17920         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17921         Clear the weak link. Fixes bug #77170.
17923         * gc.c (mono_gchandle_free):
17924         Reflect *-gc.c changes (tiny optimization).
17926 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17928         * metadata.c (mono_metadata_signature_dup): Applied patch from
17929         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17930         Fixes #77288.
17932 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17934         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17935         marshalling from native to managed code. Fixes #77230.
17937 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17939         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17940         connect. Fixes bug #77020.
17942 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17944         * class.c: fixed id assignement for nested interfaces (bug #77275).
17945         Added also better info for --print-vtable debugging.
17947 2006-01-12  Martin Baulig  <martin@ximian.com>
17949         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17950         interfaces on-the-fly; fixes #76625.
17952         * class-internals.h
17953         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17954         don't need that anymore.
17956 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17958         * socket-io.c
17959         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17960         To avoid initing the nested_classes when not needed I turned the
17961         PeerCredData as a toplevel internal class, as it has to be shared
17962         anyways. 
17964         Fixes the CASA issue.
17966 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17968         * domain.c: Accessors for MonoJitInfo
17970         * profiler-private.h: Add jitinfo to the end jit hook
17972         * profiler.[ch]: Define new hooks, called after jitting which give
17973         the MonoJitInfo that was compiled
17975 2006-01-10  Martin Baulig  <martin@ximian.com>
17977         * class.c (mono_class_setup_events): Add support for generic
17978         classes; fixes #76440.
17980 2006-01-06  Raja R Harinath  <rharinath@novell.com>
17982         Fix #77160.
17983         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
17984         on passed-in method.
17986 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17988         * object.c (mono_runtime_invoke_array): Add Nullable support.
17990         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
17992 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
17994         * file-io.c: Don't consider sockets as directory and avoid an endless
17995         loop. Fix bug #76966.
17997 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17999         * object.c (mono_nullable_init): New helper function.
18000         (mono_nullable_box): Ditto.
18002         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18004         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18006         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18007         
18008 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18010         * class.c (mono_class_is_assignable_from): Make T assignable to 
18011         Nullable<T>.
18013 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18015         * appdomain.c: Bump corlib version to 46.
18016         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18017         serialization purpose) and changed ves_icall_System_Reflection_
18018         Assembly_get_code_base signature to accept a boolean (to escape, or 
18019         not, the assembly code base).
18021 2005-12-23  Dick Porter  <dick@ximian.com>
18023         * icall.c: 
18024         * threads-types.h: 
18025         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18026         CreateEvent icall now returns "created" boolean parameter.
18028 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18030         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18031         #76967.
18033         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18034         when attr_klass is an interface. Fixes #77045.
18036 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18038         * marshal.c (emit_struct_conv): Fix previous patch.
18039         
18040         * marshal.c (emit_struct_conv): Add a check for fields with the same
18041         offset.
18043 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18045         Fix regression in Mono.C5.
18046         * class.c (mono_class_create_generic): If 'klass' is an interface
18047         set up the interface offsets.
18048         (mono_class_is_assignable_from): Don't throw away generic arguments.
18050 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18052         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18053         type parameters.
18055 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18057         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18058         dead store.
18059         (do_mono_metadata_parse_generic_class): Don't pass the current
18060         generic context when parsing the type being instantiated: it
18061         cannot use it, anyway.
18063         * loader.c (method_from_memberref): Don't inflate a signature if
18064         it doesn't contain any type parameters.
18066 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18068         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18070 2005-12-14  Martin Baulig  <martin@ximian.com>
18072         * class.c
18073         (mono_type_get_name_recurse): Don't return null for type
18074         parameters and open generic classes.
18075         (mono_class_setup_methods): Don't exclude generic instances.
18076         (mono_get_unique_iid): Use different IDs for different
18077         instantiations of the same generic type.
18078         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18079         open generic instances; create a normal vtable for closed generic
18080         instances.
18081         (mono_class_setup_vtable_general): We're now also called for
18082         closed generic instances.
18084         * reflection.c
18085         (mono_reflection_bind_generic_parameters): Correctly use
18086         mono_metadata_lookup_generic_inst() everywhere.
18088 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18090         * object.c (mono_class_create_runtime_vtable): Call 
18091         mono_class_setup_vtable ().
18093         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18094         function.
18095         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18096         #76959.
18098         * loader.c (mono_loader_set_error_type_load): Print the type load
18099         warnings to the console so they are more visible to the user.
18100         (mono_loader_set_error_method_load): Ditto.
18102         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18103         is still broken.
18104         
18105         * reflection.c (ensure_runtime_vtable): Fix build.
18107         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18108         doesn't work in all cases.
18110 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18112         * object.c (mono_array_new_full): Treat a single dimensional array
18113         with 0 lower bounds as an szarray. Fixes #76973.
18115         * reflection.c (custom_attr_visible): Really fix this.
18117 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18119         * reflection.c (custom_attr_visible): Allow nested public attributes
18120         as well.
18122         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18123         interface check.
18125 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18127         * class.c (set_generic_param_owner): Delete.
18128         (mono_class_create_from_typedef): Don't set ->owner field of
18129         generic parameters to "param containers" of enclosing classes.
18130         * reflection.c (mono_reflection_initialize_generic_parameter):
18131         Likewise.
18133 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18135         * reflection.c (custom_attr_visible): Fix build.
18137 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18139         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18140         private attributes.
18141         
18142         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18143         handling of null parameter defaults.
18145 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18147         * class.c (mono_class_from_generic_parameter): Don't set
18148         klass->generic_container.
18149         (my_mono_class_from_generic_parameter): Likewise.
18151 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18153         * reflection.c (load_public_key): Fix a warning.
18154         (method_encode_code): Fix unaligned accesses.
18156 2005-12-07  Martin Baulig  <martin@ximian.com>
18158         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18160         * reflection.c
18161         (write_generic_param_entry): Encode our custom attrs.
18163         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18165 2005-12-07  Martin Baulig  <martin@ximian.com>
18167         * reflection.c (encode_new_constraint): Removed; we don't use the
18168         `NewConstraintAttribute' anymore.
18170 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18172         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18173         not fire a TypeResolve event when Assembly.GetType () is called.
18175 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18177         Beginning of support for nullable types in the runtime. Parts of
18178         this patch are from Martin.
18180         * appdomain.c (MONO_CORLIB_VERSION): Bump
18182         * domain.c (mono_init_internal): get the nullable type
18184         * class.c (mono_class_is_nullable): New method
18185         (mono_class_get_nullable_param): New mehod
18186         (mono_class_create_generic): In types T? set cast_class to T
18188         * class-internals.h (MonoDefaults): new nullable default class
18189         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18190         new methods.
18192 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18194         * metadata.c (select_container): New.  Refactor code to select the
18195         appropriate GenericContainer given the type of generic parameter
18196         we are looking for.
18197         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18198         not a MonoGenericContext.  Use select_container.  Update parameters.
18199         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18200         and MONO_TYPE_MVAR.
18201         (unwrap_arrays): Remove duplicate tests.
18202         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18203         generic instantiated class to find any arguments that are generic
18204         parameters.
18205         (mono_type_create_from_typespec_full): Use find_generic_param to
18206         avoid evicting some generic instantiations from the typespec
18207         cache.
18209 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18211         * reflection.c: fixed writing of doubles on ARM FPA.
18213 2005-12-02  Robert Jordan  <robertj@gmx.net>
18215         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18217 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18219         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18220         least on SUSE 10 they are not the same (on debian, they are just the
18221         same thing).
18223 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18225         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18226         DeclaringType for VARs and MVARs.
18227         * class.c (set_generic_param_owner): Fix initialization of owner
18228         fields.
18230 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18232         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18234 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18236         * threadpool.c: workaround for a bug that shows up on the Mac:
18237         select()+connect() on a blocking socket is not like it should
18238         be, so we proceed to connect() in that case, wasting the I/O
18239         threadpool thread until connect succeedes. Fixes bug #75436.
18241 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18243         * threadpool.c: fix typo when setting file descriptor states.
18245 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18247         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18248         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18249         create a temporary signature container.
18250         (mono_metadata_parse_generic_param): Update to changes.
18251         (mono_type_create_from_typespec_full): Update to changes.
18252         * loader.c (method_from_memberref): Don't use a
18253         MonoGenericContainer while parsing a memberref signature.
18254         (method_from_methodspec): Remove dead-store of the 'container'
18255         variable.  It's overwritten before use.
18257         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18258         checks tighter.
18259         (mono_metadata_parse_generic_param): Likewise.
18260         * loader.c (find_method_in_class): Does not need a
18261         MonoGenericContainer.  Use 'mono_method_signature' rather than
18262         'mono_method_signature_full'.
18263         (find_method, mono_get_method_constrained, method_from_memberref):
18264         Update to changes.
18266         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18267         owner-less generic-parameters are never evicted from the typespec
18268         cache.
18270         * loader.c (method_from_memberref): Don't use the current context
18271         when parsing signatures.
18272         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18274         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18275         side-effects in g_assert.
18276         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18277         that we don't potentially lose information.
18279 2005-11-26  Dick Porter  <dick@ximian.com>
18281         * icall.c:
18282         * threads.c: icalls to implement basic (ie, not named)
18283         System.Threading.Semaphore.
18285 2005-11-24  Dick Porter  <dick@ximian.com>
18287         * process.c
18288         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18289         Use GetProcessId() if it's available.
18291 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18293         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18295 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18296             Ankit Jain  <jankit@novell.com>
18298         * loader.c (mono_get_method_from_token): Initialize 'method' field
18299         of all generic parameters before parsing the signature.  Remove
18300         code that "fixed"-up MVAR references.
18302 2005-11-23  Ankit Jain  <jankit@novell.com>
18304         * metadata.c (mono_metadata_has_generic_params):
18305         (mono_metadata_load_generic_param_constraints):
18306         (mono_metadata_load_generic_params): Move duplicate code ...
18307         (mono_metadata_get_generic_param_row): ... here. Returns the
18308         first row-id in GenericParam table for a given owner (token).
18309         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18310         prototype.
18312 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18313             Ankit Jain  <jankit@novell.com>
18315         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18316         comparing VARs too.
18317         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18318         type->data.generic_param only if the type is an MVAR.
18319         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18320         leak owner-less VARs and MVARs into managed space.
18322 2005-11-21  Martin Baulig  <martin@ximian.com>
18324         * class-internals.h
18325         (MonoMethod): Moved the `generic_container' here from
18326         `MonoMethodNormal' since we now also need it for
18327         `MonoMethodPInvoke';
18328         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18329         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18330         an union containing both `MonoMethodNormal' and
18331         `MonoMethodPInvoke'.
18333         * loader.c
18334         (mono_get_method_from_token): Allow implementing generic methods
18335         as interncalls.
18337         * threads.c
18338         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18339         icall.
18341 2005-11-17  Dick Porter  <dick@ximian.com>
18343         * icall.c: 
18344         * process.h: 
18345         * process.c: Split the Process Start_internal icall into
18346         ShellExecuteEx_internal and CreateProcess_internal, which are
18347         called depending on whether UseShellExecute is true.  Fixes bug
18348         76670.
18350         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18352 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18354         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18355         'msize' parameters, use the information in 'mspec' instead.
18356         (emit_object_to_ptr_conv): Ditto.
18358         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18359         fields out of order. Fixes #76733.
18361 2005-11-17  Ankit Jain  <jankit@novell.com>
18363         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18365 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18367         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18368           bug #76575.
18370 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18372         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18373         for types with non-auto layout. Fixes #76717.
18375 2005-11-16  Ankit Jain  <jankit@novell.com>
18377         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18378         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18379         if generic_context is null.
18380           (mono_metadata_generic_param_equal): param->owner can be null.
18381           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18382         null.
18384 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18386         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18387         the correct value.
18389 2005-11-15  Martin Baulig  <martin@ximian.com>
18391         * object.c (set_value): Use mono_class_from_mono_type() instead of
18392         the hack for generic instances; fixes #76136.
18394 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18396         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18397         fields.
18399         * image.c (load_metadata_ptrs): Initialize the new fields.
18401         * reflection.c (create_dynamic_mono_image): Ditto.
18403         * reflection.c (build_compressed_metadata): Use the new fields.
18405         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18406         icall.
18408         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18409         icall.
18410         
18411 2005-11-15  Ankit Jain  <jankit@novell.com>
18412             Raja R Harinath  <harinath@gmail.com>
18414         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18415         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18416         new per-generic_container cache if the cached MonoType's context matches
18417         the current context.
18418           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18419         to the expected context.
18420           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18422 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18424         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18425         we changed the signature of an icall.
18426         * icall.c: Modify to mono_double_ParseImpl return true/false 
18427         depending on the success, instead of throwing the exception. This will
18428         help us in Double.TryParse methods.
18429         
18430 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18432         * marshal.c (emit_marshal_object): Throw an exception when
18433         marshalling 'object' instead of crashing. Fixes #76696.
18435 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18437         * class-internals.h: Add prototype for mono_type_get_full_name ().
18439 2005-11-11  Dick Porter  <dick@ximian.com>
18441         * threads.c (mono_thread_manage): Make sure the main thread has
18442         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18444 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18446         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18447         console about the missing type.
18448         (mono_loader_set_error_method_load): Ditto.
18450 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18452         * mono-config.c (mono_get_config_dir): Set the system defaults if
18453         none is specified.
18455         * assembly.c (mono_set_dirs): New API entry point to set the
18456         assembly and the config directory in one call
18458 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18460         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18461         the ftnptr was created from a delegate in a domain other than the
18462         current domain. Fixes #75377.
18464         * exception.h exception.c: Add mono_get_exception_not_supported ().
18466 2005-11-08  Martin Baulig  <martin@ximian.com>
18468         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18470 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
18472         * security-manager.h: Added definitions to deal with strongname key 
18473         pairs bigger (and smaller) than 1024 bits.
18474         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
18475         adjust wrt the public key length being used.
18477 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
18479         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
18480           Windows build (r51396-51397).
18482 2005-11-03  Martin Baulig  <martin@ximian.com>
18484         * class.c (mono_class_setup_vtable_general): Also add generic
18485         methods to the vtable; fixes #76581.
18487 2005-11-01  Miguel de Icaza  <miguel@novell.com>
18489         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
18490         sure that we lookup GetString method from the System.Text.Encoding
18491         class, not the derived class or we get an empty method.
18493         Fixed class #76612.
18495 2005-10-25  Miguel de Icaza  <miguel@novell.com>
18497         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
18498         if it has been previously set (embedders). 
18500         Make mono_set_rootdir available also on Unix.
18502 005-10-24  Robert Jordan  <robertj@gmx.net>
18504         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
18506 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
18508         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
18509         only calls which are made to native code use this flag.
18511         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
18513 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
18515         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18516         Add support for FieldBuilders.
18518 2005-10-29  Martin Baulig  <martin@ximian.com>
18520         * mono-debug.c
18521         (mono_debug_using_mono_debugger): New public method; returns
18522         whether we're running inside the debugger.
18524 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
18526         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
18527         for Method/Constructor/FieldBuilders.
18529 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
18531         * reflection.c (module_add_cattrs): Save custom attributes for global methods
18532         and fields as well.
18534 2005-10-26  Martin Baulig  <martin@ximian.com>
18536         * mono-debug-debugger.c
18537         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
18539 2005-10-24  Raja R Harinath  <harinath@gmail.com>
18541         * icall.c (base64_to_byte_array): Don't pass an out-of-range
18542         integer to isspace.
18544 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
18546         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
18547         when passing valuetypes byref. Fixes #76502.
18549 2005-10-19  Jackson Harper  <jackson@ximian.com>
18551         * profiler.c: Don't put a . in front of types that are not in a
18552         namespace.
18554 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18556         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18558 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18560         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18561         #76436.
18562         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18564 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18566         * assembly.c metadata-internals.h icall.c: Define an additional
18567         parameter for mono_assembly_name_parse_full, so we can avoid creating
18568         S.R.AssemblyName.Version when no version info wasn't passed.
18569         
18570 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18572         * class.c (mono_type_get_full_name): Reimplement method that was
18573         removed. 
18575         * image.c: Some docs
18577 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18579         * profiler.c (output_newobj_profile): Fix printing of Total memory
18580         on x86.
18582 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18584         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18586 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18588         * threads.c: remove debug output.
18590 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18592         * threads.c (mono_thread_manage): Fix crashes if more than 64
18593         threads need to be aborted. Hopefully fixes #75899.
18595         * assembly.c (mono_stringify_assembly_name): New helper function.
18597         * class.c: Use mono_stringify_assembly_name instead of the similar
18598         static function.
18600         * assembly.h assembly.c: Add support for calling a postload search 
18601         hook if an assembly cannot be loaded.
18603         * appdomain.c: Register new search hooks which call the AssemblyResolve
18604         events in AppDomain. Fixes #75231
18606 2005-10-07  Martin Baulig  <martin@ximian.com>
18608         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18609         methods without debug info.
18611 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18613         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18614         wrappers.
18616 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18618         * file-io.c: now that we return symlinks, use lstat and, when the file
18619         is a symbolic link, stat, to get the file attributes. Also avoid the
18620         conversion to/from utf16/external.
18622 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18624         * class.c (mono_class_layout_fields): Compute klass->has_references
18625         correctly if an embedded valuetype is not yet initialized. Fixes
18626         #76331.
18628 2005-10-04  Martin Baulig  <martin@ximian.com>
18630         * metadata.c
18631         (mono_metadata_load_generic_param_constraints): New public
18632         function; splitted the constraints loading out from
18633         mono_metadata_load_generic_params().
18635         * class.c (mono_class_create_from_typedef): Call
18636         mono_metadata_load_generic_param_constraints() after setting up
18637         the type and creating our parent; fixes #75329.
18639 2005-10-04  Martin Baulig  <martin@ximian.com>
18641         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18642         non-dynamic parent classes.
18644 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18646         * file-io.c : win32 build fix (ETXTBSY seems not found).
18648 2005-10-04  Martin Baulig  <martin@ximian.com>
18650         * reflection.c
18651         (mono_image_get_methodspec_token): Make the cache actually work;
18652         fixes #75974.
18654 2005-10-04  Martin Baulig  <martin@ximian.com>
18656         * class.c (mono_class_name_from_token): Removed the unneccessary
18657         `MonoGenericContext *' argument.
18659 2005-10-04  Martin Baulig  <martin@ximian.com>
18661         * loader.c
18662         (method_from_methodspec): Make the caching work again; fixes the
18663         performance regression from #76262.
18665 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18667         * file-io.c:
18668         * file-io.h:
18669         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18670         GetFileSystemEntries that performs the same work but without going
18671         into io-layer, locking, etc.
18673 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18675         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18676         ThreadState_Stopped as well. Fixes #76047.
18678 2005-09-29  Martin Baulig  <martin@ximian.com>
18680         * class.c
18681         (inflate_generic_context): If the new context has a `gmethod', set
18682         its `container' that that gmethod's `container'.
18684         * metadata.c
18685         (mono_metadata_parse_generic_param): Simplify things;
18686         `generic_container = generic_context->container;' is just fine.
18688         * loader.c (method_from_methodspec): Code cleanups.
18690 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18692         * decimal.c: fix warning (and let gcc generate correct
18693         code on ARM with optimizations).
18695 2005-09-28  Martin Baulig  <martin@ximian.com>
18697         * loader.c
18698         (method_from_memberref): Added `MonoGenericContext *class_context'
18699         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18700         (method_from_methodspec): If we're a memberref, use the enclosing
18701         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18703 2005-09-28  Martin Baulig  <martin@ximian.com>
18705         * object.c (mono_runtime_invoke_array): Added support for
18706         MONO_TYPE_GENERICINST; fixes #75917.
18708 2005-09-27  Martin Baulig  <martin@ximian.com>
18710         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18711         `k->byval_arg.type' to determine the actual type.
18713         * loader.c (method_from_methodspec): Removed some hacks.
18715 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18717         * class-internals.h (mono_field_is_deleted): Do the test for
18718         rtspecialname before we check the actual name of the field. This
18719         prevents us from dereferencing a pointer into the string table,
18720         saving us from accessing a few pages
18722         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18723         macros. This will allow a deadlock debugger to easily be plugged
18724         in.
18726 2005-09-27  Martin Baulig  <martin@ximian.com>
18728         * loader.c (method_from_methodspec): Create a "signature"
18729         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18731 2005-09-27  Martin Baulig  <martin@ximian.com>
18733         * class.c
18734         (inflate_generic_class): Correctly set the new context's
18735         container.
18737         * loader.c
18738         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18739         instead of a `MonoGenericContext *'.
18740         (mono_method_signature_full): Take a `MonoGenericContainer *'
18741         instead of a `MonoGenericContext *'.
18743         * metadata.c
18744         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18745         instead of a `MonoGenericContext *'.
18746         (mono_metadata_parse_method_signature_full): Likewise.
18748 2005-09-26  Martin Baulig  <martin@ximian.com>
18750         * class.c
18751         (mono_class_from_generic_parameter): Set `klass->generic_container'
18752         (mono_class_from_generic_parameter): Likewise.
18753         (mono_bounded_array_class_get): We inherit the generic container
18754         from the element class.
18756         * loader.c
18757         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18758         argument rather than computing it here.
18759         (method_from_memberref): Correctly set the generic context before
18760         parsing the signature.  Fixes #75681.
18762 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18764         * object.c (mono_class_has_special_static_fields): Fix warnings.
18766 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18768         * assembly.c: Add parse_public_key function, to
18769         par the public keys. Also added mono_assembly_name_parse_full,
18770         to define it the parsed key should be freed or not.
18771         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18772         to parse a long format assembly name.
18773         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18774         private, since calling it to preserve the key requires
18775         freeing it manually.
18776         
18777 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18779         * locales.c : removed HAVE_ICU part.
18781 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18783         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18784         field_is_special_static if the klass has no special static fields.
18786         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18787         (MonoCachedClassInfo): Likewise.
18789         * object.c (mono_class_has_special_static_fields): New helper function.
18791 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18793         * class.c (mono_class_create_from_typedef): Don't call 
18794         interfaces_from_typedef_full for enums.
18795         (mono_class_create_from_typedef): Compute the base types of enums directly
18796         without calling mono_class_setup_fields ().
18797         (mono_class_find_enum_basetype): New helper function.
18799         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18800         one place inside the string heap.
18801         
18802 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18804         * class.c: locking fixes, code cleanups, some docs added.
18805         Allocate some data structures in the image mempool.
18807 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18809         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18810         the example code.
18811         
18812 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18814         * class-internals.h, class.c, reflection.c: reduce memory taken by
18815         MonoClass.
18817 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18819         * metadata.c, metadata.h, loader.h: documentation updates, code and
18820         API cleanups.
18822 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18824         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18825         the example code.
18827         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18828         page faults caused by the runtime while reading metadata.
18830 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18832         * socket-io.c: the field names were changed 3 months ago and no one
18833         realized until bug #76077 got filed!
18835 2005-09-20  Martin Baulig  <martin@ximian.com>
18837         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18839 2005-09-20  Martin Baulig  <martin@ximian.com>
18841         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18842         write the rank into the class entry.
18844 2005-09-20  Martin Baulig  <martin@ximian.com>
18846         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18848 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18850         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18852         * icall.c (custom_attrs_defined_internal): New icall.
18854         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18855         function.
18856         (mono_custom_attrs_construct_by_type): New helper function.
18858 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18860         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18861         terminate the resulting string. Fixes #76123.
18863 2005-09-16  Martin Baulig  <martin@ximian.com>
18865         * mono-debug.c
18866         (mono_debug_add_method): Ignore inflated methods for the moment.
18868 2005-09-14  Martin Baulig  <martin@ximian.com>
18870         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18872 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18874         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18875         return a success/failure indication.
18876         (mono_metadata_interfaces_from_typedef_full): Ditto.
18877         (get_constraints): Ditto.
18879 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18881         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18882         
18883         * marshal.c (emit_marshal_array): Add support for returning string
18884         arrays from delegates. Fixes #76063.
18886         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18888 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18890         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18891         icall.
18893 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18895         * reflection.c icall.c: Fix after mono_get_exception_type_load
18896         signature change.
18898         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18899         (mono_assembly_load_reference): Use the new helper.
18901         * class-internals.h (MonoLoaderError): New structure containing 
18902         information about type loading errors.
18904         * class-internals.h loader.c: Add APIs to store per-thread loader
18905         error information.
18907         * loader.c class.c: Set the loader error if needed.
18909         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18911 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18913         * decimal.c: fixed to handle the broken ARM fp format.
18915 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18917         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18918         broken.
18920 2005-09-06  Martin Baulig  <martin@ximian.com>
18922         * domain.c (supported_runtimes): Added v2.0.50727.
18924 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18926         * culture-info.h: reduce the size of some structures.
18928 2005-09-05  Martin Baulig  <martin@ximian.com>
18930         Reflect latest API changes in the August CTP.
18932         * icall.c
18933         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18934         ("MonoType.HasGenericArguments"): Removed.
18935         ("MonoMethod.BindGenericParameters"): Renamed to
18936         "MakeGenericMethod".
18937         ("MethodBuilder.BindGenericParameters"): Renamed to
18938         "MakeGenericMethod".    
18940 2005-09-05  Martin Baulig  <martin@ximian.com>
18942         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18944 2005-09-05  Martin Baulig  <martin@ximian.com>
18946         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18948         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18949         generic_container is non-NULL.
18951 2005-09-05  Martin Baulig  <martin@ximian.com>
18953         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18955         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
18957 2005-08-29  Michal Moskal  <malekith@nemerle.org>
18959         * reflection.c (encode_locals,
18960         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
18961         for large generic types.
18963 2005-09-05  Martin Baulig  <martin@ximian.com>
18965         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18967         * class.c (mono_dup_array_type): New public method.
18968         (mono_metadata_signature_deep_dup): New public method.
18969         (dup_type): Correctly duplicate array and function types.
18971 2005-09-05  Martin Baulig  <martin@ximian.com>
18973         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18975         * reflection.c (get_default_param_value_blobs): Handle generic types
18976         and generic methods.
18978 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
18980         * class.c: Fixed error reporting (method/class were inversed) for 
18981         inheritance demands.
18982         * security-manager.c|h: Added the AppDomain when calling the managed
18983         System.Security.SecurityManager.InheritanceDemand method.
18985 2005-09-01  Raja R Harinath  <rharinath@novell.com>
18987         * reflection.c (encode_marshal_blob): 'marshaltype' and
18988         'marshaltyperef' are alternate sources for the custom marshaler
18989         name.
18991 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
18993         * class.c: fix creation of array classes with rank == 1
18994         (patch by Ankit Jain <jankit@novell.com>).
18996 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
18998         * object.c: fix check for creating the bound data for arrays vs
18999         szarrays.
19001 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19003         * object.c: configuration file name is now based on the executable name,
19004         not the image name. Fixes bug #75931.
19006 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19008         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19009         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19011 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19013         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19015 2005-08-24  Ankit Jain  <jankit@novell.com>
19016             Raja R Harinath  <rharinath@novell.com>
19018         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19019           called by it recursively.
19020           (mono_class_init): Remove special case in pending_init handling, since it's
19021           superseded by the fix to mono_class_from_typeref.
19023 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19025         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19026         BROKEN_THREAD_START stuff.
19028 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19030         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19031         trampoline.
19033         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19034         
19035         * object.c (mono_delegate_ctor): Replace the original function address with
19036         a delegate trampoline.
19038 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19040         * icall.c: add boolean argument to base64_to_byte_array and 
19041         InternalFromBase64String to control whether a whitespace-only string
19042         is allowed (or should casue a FormatException to be thrown). We need
19043         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19044         to match the MS behaviour in both profiles.
19045         * appdomain.c: Bump corlib version.
19047 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19049         This patch implements a big portion of publisher policy
19050         support, used to bind assembly versions and redirect
19051         one assembly from version A to version B.
19053         * assembly.c:
19054         New GSList loaded_assembly_bindings, for storing the cached
19055         assembly bindings.
19056         (assembly_binding_maps_name): New static function for checking if a 
19057         assembly binding information maps an assembly name.
19058         (mono_assembly_binding_info_free): New function for freeing
19059         assembly binding information resources.
19060         (get_publisher_policy_info): New static function for retrieving 
19061         assembly binding information from a MonoImage.
19062         (compare_versions): New static function for comparing an assembly
19063         binding information data and the version of an assembly name.
19064         (check_policy_versions): New static function for checking if an
19065         assembly binding info mapping an assembly name is valid for it.
19066         (mono_assembly_load_publisher_policy): New static function for
19067         loading the 'policy.major.minor.MyAssembly' image for an assembly
19068         with an assembly name 'aname'.
19069         (mono_assembly_bind_version): New static function for updating
19070         assembly redirection.
19071         (mono_assembly_apply_binding): New static function for applying
19072         assembly binding.
19073         (search_binding_loaded): New static function for searching 
19074         loaded assembly binding infos in the cache domain.
19075         (mono_assembly_load_full): Don't apply assembly binding for
19076         reflection only assemblies.
19078         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19079         which contains information about assembly binding. Also
19080         declare signature for mono_config_parse_publisher_policy ()
19081         function, used to retrieve pub policy info.
19082         
19083         * mono-config.c:
19084         (publisher_policy_start): New static function used to parse publisher 
19085         policy config files.
19086         (publisher_policy_parser): New static MonoParseHandler containing 
19087         the functions used when parsing config files.
19088         (mono_config_parse_publisher_policy): New function for parsing
19089         publisher policy files.
19090         
19091 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19093         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19095         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19097         * object.c (mono_get_addr_from_ftnptr): New helper function.
19099         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19101         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19103 2005-08-19  Dick Porter  <dick@ximian.com>
19105         * threads.c, threads.h, appdomain.c, appdomain.h,
19106         profiler-private.h, monitor.c, object.c, object-internals.h,
19107         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19108         store the thread ID, so it can hold a 64 bit value if needed.
19110 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19112         * reflection.c (mono_reflection_create_dynamic_method): Store the
19113         handle class into the method references as well so ldtoken works in
19114         dynamic methods.
19116         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19117         types.
19119 2005-08-19  Ankit Jain <jankit@novell.com>
19121         Fix #75847.
19122         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19123           here rather than using the method signature of a arbitrary function
19124           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19125           two arguments.
19126           Hack done with Harinath.
19128 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19130         * threadpool.c: disable printing stack traces when we get a exception
19131         in a threadpool thread. I need to do more testing to figure out which
19132         cases actually print this. Fixes bug #75828.
19134 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19136         * icall.c: there might be ignored whitespace after the last '='. This
19137         fixes length computation and bug #75840.
19139 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19141         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19142         well. Fixes #75809.
19144         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19145         #75784.
19146         
19147         * reflection.c (create_custom_attr_data): Ditto.
19149 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19151         * locales.c, culture-info.h : removed RegionLCIDMap.
19152         * culture-info-tables.h : regenerated.
19154 2005-08-16  Martin Baulig  <martin@ximian.com>
19156         * class.c (mono_type_get_name_recurse): Small fix.
19158 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19160         * locales.c : indentation fixie.
19162 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19164         * object-internals.h,
19165           locales.h,
19166           locales.c,
19167           culture-info.h,
19168           icall.c : added RegionInfo table support.
19169         * culture-info-table.h : regenerated for region support.
19171 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19173         * reflection.c (resolve_object): handle all kinds of MonoMethod
19174         including generic ones
19176 2005-08-12  Ankit Jain <jankit@novell.com>
19178         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19179           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19181 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19183         * process.c: Don't close a thread handle when it's NULL. This is a
19184         workaround for bug #75733.
19186 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19188         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19190 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19192         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19194 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19196         * threadpool.c: if a work item in the thread pool has a callback that
19197         catches a exception, don't propagate it after invoking the callback.
19198         Fixes bug #75336.
19200 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19202         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19204         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19206         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19208         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19210 2005-08-03  Ankit Jain  <jankit@novell.com>
19212         Fix #75683.
19213         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19214           PInvoke calling convention is 0.
19216 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19218         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19219         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19221 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19223         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19224         to handle threads not started by the GC (patch by Michael Meeks
19225         <michael.meeks@novell.com>).
19227 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19229         * reflection.c: Make buffer used in emitting types larger for some
19230         big generic types (patch by Michal Moskal).
19232 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19234         * mono-debug.c: Fix some (not all) alignment problems.
19236 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19238         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19239         Invoke mono_image_load_from_data_full passing the refonly
19240         parameter.
19242         * assembly.c
19243         (mono_assembly_open_from_bundle): Add the refonly argument, 
19244         in order to pass it to other methods it calls to.
19245         (do_mono_assembly_open): Add the refonly argument, in order 
19246         to pass it to other methods it calls to.
19247         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19248         the refonly parameter to it.
19250         * image.c: Add loaded_images_refonly_hash and
19251         loaded_images_refonly_guid_hash to cache the reflection
19252         only loaded images.
19253         (mono_images_init): Initialize the hash tables used for
19254         caching the reflection only images.
19255         (load_modules): Invoke mono_image_open_full passing the refonly
19256         parameter to load the modules the correct way.
19257         (build_guid_table): Add the refonly argument, to re-build the 
19258         correct hash table.
19259         (do_mono_image_open): Added the refonly argument, in order to
19260         define it for the loaded image.
19261         (mono_image_loaded_full): New function, which receives an
19262         additional parameter to look for the image in the refonly or
19263         non-refonly section.
19264         (mono_image_loaded): Updated, using mono_image_loaded_full.
19265         (mono_image_loaded_by_guid_full): The same case that happens
19266         with mono_image_loaded_full.
19267         (mono_image_loaded_by_guid): Likewise.
19268         (register_image): Use the ref_only variable inside MonoImage
19269         to decide in which hash table store the current image.
19270         (mono_image_open_from_data_full): Rename
19271         mono_image_open_from_data to mono_image_open_from_data_full,
19272         adding the refonly argument, to define the ref_only variable 
19273         inside MonoImage.
19274         (mono_image_open_from_data): Return 
19275         mono_image_open_from_data_full.
19276         (mono_image_open_full): Rename mono_image_open to
19277         mono_image_open_full, receiving the new refonly argument,
19278         to pass it to inner methods.
19279         (mono_pe_file_open): Update this function, to open
19280         a MonoImage as a non-refonly image.
19281         (mono_image_close): Use the refonly variable inside
19282         MonoImage to remove the image from the correct caches.
19284         * image.h: Add the signatures of mono_image_open_full,
19285         mono_image_open_from_data_full, mono_image_loaded_full,
19286         mono_image_loaded_by_guid_full.
19288         * metadata-internals.h: Add the ref_only field to 
19289         MonoImage.
19290         
19291 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19293         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19294         Fix the last behavior, which used to load the assemblies and
19295         extract MonoReflectionAssemblyName information, instead of
19296         extract it from the metadata tables. Needed for Reflection
19297         Only assemblies.
19298         
19299 2005-07-29  Martin Baulig  <martin@ximian.com>
19301         * mono-debug-debugger.c
19302         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19303         not initialized.
19305         * mono-debug.c
19306         (mono_debug_address_from_il_offset): Check whether we have
19307         debugging support before attempting to take the lock.
19308         (mono_debug_source_location_from_address): Likewise.
19309         (mono_debug_source_location_from_il_offset): Likewise.
19310         (mono_debug_il_offset_from_address): Likewise.
19311         (mono_debug_address_from_il_offset): Likewise.
19313 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19315         * class.c (mono_class_from_name_case): Add support for dynamic images.
19316         Fixes #75650.
19318         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19319         for #75479.
19321 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19322         
19323         * reflection.c (mono_method_get_object): Fix warning.
19325 2005-07-28  Martin Baulig  <martin@ximian.com>
19327         * mono-debug.c
19328         (mono_debug_add_wrapper): Also write the wrapper type.
19330 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19332         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19333         
19334         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19335         data indicates the class has none.
19337 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19339         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19340         loader lock with the debugger lock. Prevents deadlocks for beagle.
19342         Beagle can now run on an smp box for a weekend without any
19343         issues. Woohoo!
19345 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19347         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19348         in a module. Fixes #75629.
19350 2005-07-26  Martin Baulig  <martin@ximian.com>
19352         * mono-debug.c (mono_debug_add_wrapper): New static method.
19353         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19354         interncall or a wrapper.
19356         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19357         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19358         (MONO_DEBUGGER_VERSION): Bump to 51.
19360         * mono-debug-debugger.c
19361         (mono_debugger_add_type): Removed this empty function.
19362         (mono_debugger_add_method): Likewise.
19364 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19366         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19367         before accessing method->slot.
19369 2005-07-21  Jb Evain  <jbevain@gmail.com>
19371         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19372         Fixes #75010.
19374 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19376         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19377         #75587.
19379 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19381         * image.h image.c: Add mono_image_get_guid () API function.
19383 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19385         There were issues when multiple threads tried to load
19386         assemblies. A deadlock was created between assemblies_mutex and
19387         mono_domain_assemblies_lock. This fixes the issue by making the
19388         assembly ref counting be lock free. See bug 75586.
19389         
19390         * image.c (mono_image_close): The add ref function here was using
19391         Interlocked operations while the unref was using a mutex and a
19392         --. I don't think this was ever a bug that would be exposed in a
19393         non-pendantic way (ie, by an embedder doing a ref on one thread
19394         and an unref on another), but for the sake of correctness, this is
19395         now Interlocked.
19397         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19398         (mono_assembly_load_reference): Call mono_assembly_addref rather
19399         than touching the refcount ourselves.
19400         (mono_assembly_close): Use InterlockedDecrement to unref the
19401         assembly. Don't acquire the lock unless it is actually needed.
19403 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19405         * class.c (mono_class_layout_fields): Fix calculation of has_references
19406         for generic types.
19408 2005-07-12  Martin Baulig  <martin@ximian.com>
19410         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19412         * metadata.c
19413         (mono_type_hash): Provide better hashing for generic instances.
19414         (mono_generic_inst_hash): Improve hashing.
19415         (mono_generic_class_hash): Likewise.
19417         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19418         generic instances.
19420 2005-07-12  Martin Baulig  <martin@ximian.com>
19422         * reflection.c (mono_reflection_create_runtime_class): Remove the
19423         hack for generic type definitions and non-`Run' assemblies.
19424         (mono_reflection_bind_generic_parameters): Also use
19425         `klass->wastypebuilder' to check for TypeBuilders.
19427 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19429         * class.c (mono_class_layout_fields): Fix calculation of has_references
19430         for generic types.
19432         * class.c (inflate_generic_class): Fix a leak.
19433         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19434         for generic types.
19436 2005-07-11  Martin Baulig  <martin@ximian.com>
19438         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19439         on error.
19441 2005-07-11  Martin Baulig  <martin@ximian.com>
19443         * loader.c (find_method): Also lookup in
19444         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19446 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19448         * appdomain.c (mono_domain_unload): Don't free the error message
19449         before passing it to mono_get_exception_...
19451         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19452         
19453 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19455         * threads.c: try to better guess an available RT signal (bug #75387).
19457 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19459         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19460         and CACHE_OBJECT.
19462 2005-07-07  Martin Baulig  <martin@ximian.com>
19464         * class.c (mono_type_get_name_full): Return NULL for
19465         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19466         fixes #75408.
19468 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19470         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
19471         exit the appdomain as well being aborted.
19473         * threadpool.c: Create all threadpool threads inside the root appdomain, and
19474         change back to the root domain after calling managed code. This enables
19475         appdomains using threadpools to be unloaded.
19477 2005-07-07  Martin Baulig  <martin@ximian.com>
19479         * class-internals.h
19480         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
19481         into `MonoDynamicGenericClass' since we only need it for dynamic
19482         types.
19484         * reflection.c (mono_class_bind_generic_parameters): We don't need
19485         to compute the `parent' here.
19487 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
19489         * culture-info-table.h : regenerated.
19491 2005-07-06  Martin Baulig  <martin@ximian.com>
19493         * icall.c
19494         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
19496         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
19498 2005-07-06  Martin Baulig  <martin@ximian.com>
19500         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
19501         we're doing a signature-only comparision; fixes #74945.
19503 2005-07-06  Martin Baulig  <martin@ximian.com>
19505         * class-internals.h (MonoGenericClass): Moved some things out into
19506         a new `MonoInflatedGenericClass' type.  
19507         (MonoInflatedGenericClass): New type; the `klass' of a
19508         `MonoGenericClass' is now computed lazyly in
19509         mono_get_inflated_generic_class().      
19511         * class.c (mono_get_inflated_generic_class): New public function.
19512         (mono_class_inflate_generic_method): Removed the unused
19513         `MonoClass *' argument.
19514         (setup_generic_vtable): Don't call mono_get_inflated_method() on
19515         all the methods.
19516         (mono_class_create_generic): Make this static and merge it with
19517         mono_class_create_generic_2(); we're now called automatically from
19518         mono_get_inflated_generic_class().
19520         * loader.c (mono_method_signature): Call
19521         mono_get_inflated_method() here.
19523 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
19525         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
19526         type of fields with RVA.
19528         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
19529         for this pseudo class.
19530         (my_mono_class_from_generic_parameter): Likewise.
19531         (mono_class_init): Allow interfaces to have cctors.
19533 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19535         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
19536         lazily for AOT methods.
19538 2005-07-05  Martin Baulig  <martin@ximian.com>
19540         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
19541         returns FALSE for a successful match, not TRUE.
19543 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
19545         * loader.c (mono_method_get_index): Optimize this a bit.
19547 2005-07-04  Martin Baulig  <martin@ximian.com>
19549         * class.c
19550         (class_compute_field_layout): Move the check for generic type
19551         definitions into mono_class_layout_fields().  Fixes #74684.
19552         (mono_class_from_generic_parameter): Correctly compute
19553         `klass->parent'; fixes #75457.
19555         * reflection.c (register_assembly, register_module): Make sure
19556         `domain->rejobject_hash' is already created.
19558 2005-07-02  Martin Baulig  <martin@ximian.com>
19560         * class-internals.h
19561         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19562         `MonoDynamicGenericClass'.      
19564 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19566         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19567         returned by a field getter is null, since null is a valid value.
19569 2005-07-01  Martin Baulig  <martin@ximian.com>
19571         * reflection.c (mono_reflection_generic_class_initialize): Update
19572         the `dgclass->fields [i].parent' to the correct class.
19573         (mono_image_get_fieldref_token): Use the declaring type, not the
19574         reflected type.
19576 2005-07-01  Martin Baulig  <martin@ximian.com>
19578         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19580 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19582         * threads.c (thread_cleanup): assert that thread != NULL
19583         (wait_for_tids_or_state_change): We were using the wrong variable
19584         when accessing wait->threads. `i' was always out of the bounds of
19585         the array.
19587 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19589         * loader.c: map user32 and kernel32 to libMonoSupportW
19591 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19593         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19595 2005-06-28  Martin Baulig  <martin@ximian.com>
19597         * loader.c (method_from_methodspec): Fix #75334.
19599 2005-06-28  Martin Baulig  <martin@ximian.com>
19601         Fix #74953 - Arrays now implement the generic IList<T> interface
19602         on the 2.0 platform.
19604         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19606         * reflection.c (mono_class_bind_generic_parameters): New public
19607         function; similar to mono_reflection_bind_generic_parameters(),
19608         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19610         * domain.c (mono_init_internal): Try to initialize.
19611         `mono_defaults.generic_array_class' here; this'll only succeed if
19612         we're using the 2.0 corlib.
19614         * icall.c
19615         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19616         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19617         (mono_lookup_internal_call): Added support for nested classes.
19619         * loader.c
19620         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19621         we're an interncall and have generic arguments.
19623         * class.c
19624         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19625         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19626         instance of System.Array.InternalArray<T> for arrays, so they
19627         implement the generic IList<T> interface.
19629 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19631         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19632         (chastamar@yahoo.com). Fixes #75374.    
19634 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19636         * culture-info-table.h: regenerated.
19638 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19640         * icall.c: handle spaces correctly for base64 strings.
19642 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19644         * *.c: Kill some warnings.
19646 2005-06-23  Duncan Mak  <duncan@novell.com>
19648         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19649         that this builds on Solaris 10 (x86).
19651 2005-06-23  Martin Baulig  <martin@ximian.com>
19653         * class.c
19654         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19655         generic type definitions.
19657 2005-06-23  Martin Baulig  <martin@ximian.com>
19659         Fix #75331.
19661         * metadata.c (mono_class_get_overrides): Renamed to
19662         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19663         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19664         pass it to mono_get_method_full().
19666 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19668         * reflection.c (mono_reflection_create_runtime_class): take the
19669         mono_domain_lock in this method. Prevents deadlocks
19671 2005-06-22  Martin Baulig  <martin@ximian.com>
19673         * loader.c (method_from_methodspec): Fix #75330.
19675 2005-06-22  Martin Baulig  <martin@ximian.com>
19677         * reflection.c (type_get_qualified_name): Use
19678         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19679         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19680         argument; use it if we don't have an assembly name.
19682 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19684         * object.c: In mono_message_init, set "copy out" flag for in
19685         parameters with the [Out] flag.
19687 2005-06-21  Martin Baulig  <martin@ximian.com>
19689         * class.c
19690         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19691         and MONO_TYPE_PTR.
19693 2005-06-21  Martin Baulig  <martin@ximian.com>
19695         * class.c (mono_class_init): Don't initialize `class->fields' for
19696         generic instances since they're initialized again in
19697         compute_field_layout(). 
19698         (compute_field_layout): Set the field's `generic_info' here; fix
19699         #75320. 
19701 2005-06-21  Martin Baulig  <martin@ximian.com>
19703         * class-internals.h
19704         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19706         * metadata.c (mono_metadata_generic_method_equal): Also
19707         distinguish the `generic_class'; fixes #75334.
19709 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19711         * domain.c:
19712         * appdomain.c:
19713         * domain-internals.h:
19714         * reflection.c: 'domain_assemblies' field is now protected by its own
19715         lock. Don't call into managed code to run the AssemblyLoad event if we
19716         now there are no registered delegates for it.
19718 2005-06-20  Martin Baulig  <martin@ximian.com>
19720         * class.c (mono_class_is_assignable_from): Use a custom version of
19721         mono_class_has_parent() to make things work for generic instances;
19722         fix #75300.
19724 2005-06-20  Martin Baulig  <martin@ximian.com>
19726         * loader.c (method_from_methodspec): Apply a patch from
19727         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19729 2005-06-20  Martin Baulig  <martin@ximian.com>
19731         * class.c (mono_class_init): Reverted Zoltan's last change; it
19732         breaks generics.
19734 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19736         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19738 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19740         * socket-io.c: fix the index in the socket array for writable/error
19741         sockets. Fixes bug #75306.
19743 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19745         * class.c (mono_class_init): Allow interfaces to have static ctors.
19747 2005-06-17  Martin Baulig  <martin@ximian.com>
19749         * loader.c (method_from_methodspec): Use `context->container' when
19750         parsing the `gmethod->inst'.
19752 2005-06-17  Martin Baulig  <martin@ximian.com>
19754         * class.c (mono_type_get_name_recurse): Don't add the assembly
19755         name for type arguments.
19757 2005-06-15  Martin Baulig  <martin@ximian.com>
19759         * reflection.c (mono_image_get_inflated_method_token): Encode
19760         correct klass; fixes #75260.
19762 2005-06-13 Michal Moskal <malekith@nemerle.org>
19764         * icall.c: Make GetCorrespondingMethod/Constructor take
19765         MonoReflectionMethod method not MonoMethod. Removed
19766         MonoType.GetCorrespondingField, and make
19767         MonoGenericType.GetCorrespondingField take name not
19768         MonoClassField.
19770 2005-06-13  Michal Moskal <malekith@nemerle.org>
19772         * reflection.c (field_encode_signature, encode_locals):
19773          Make sizes of buffers for types larger (for big generic types).
19774          (create_generic_typespec,
19775          mono_reflection_sighelper_get_signature_local,
19776          mono_reflection_sighelper_get_signature_field):
19777          Add asserts for too small buffers.
19779 2005-06-15  Martin Baulig  <martin@ximian.com>
19781         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19782         if our parent is not a dynamic type.
19784 2005-06-15  Martin Baulig  <martin@ximian.com>
19786         * class-internals.h (MonoTypeNameFormat): New enum.
19788         * class.c
19789         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19790         (mono_type_get_full_name): Removed.
19791         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19792         argument instead of the boolean's.
19794         * icall.c (ves_icall_System_MonoType_getFullName):
19795         Added `gboolean assembly_qualified'.    
19797         * reflection.h
19798         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19800         * reflection.c (mono_reflection_parse_type): Parse the new type
19801         name format.
19803 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19805         * icall.c: no need to convert from utf16 to utf8 and then back again
19806         after the call to GetLogicalDrives.
19808 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19810         * icall.c: frombase64. Fix problems exposed by new tests.
19812 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19814         * icall.c: added internal calls for converting char [] and strings in
19815         base64 into byte [].
19817 2005-06-10  Martin Baulig  <martin@ximian.com>
19819         * class.c (mono_class_create_generic_2): Read the nested classes
19820         from the metadata rather than from `gklass->nested_classes' since
19821         `gklass' might not be initialized yet.
19823 2005-06-09  Duncan Mak  <duncan@novell.com>
19825         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19826         all public headers. Fixes #74919.
19828 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19830         * domain.c: The key for proxy_vtable_hash is now a pointer
19831         array. Added new GHashFunc and GCompareFunc functions for this.
19833         * class.h: The list of interfaces in MonoRemoteClass is known in
19834         advance and can't grow (we create a new MonoRemoteClass if needed),
19835         so now the interface array can be allocated together with
19836         MonoRemoteClass.
19837         
19838         * object.c: Added a new method create_remote_class_key.
19839         Fixed mono_remote_class so it does not depend on
19840         mono_upgrade_remote_class.
19841         Removed extend_interface_array.
19842         Added new method clone_remote_class(), which makes a copy of a remote
19843         class and adds a new interface or class to it.
19844         mono_upgrade_remote_class() now creates a new remote class (or gets
19845         it from the cache) if an vtable upgrade is needed. In this way
19846         we make sure that other objects sharing the same remote class
19847         don't get the new vtable with unwanted interfaces.
19848         
19849         * object-internals.h:
19850         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19851         
19852         * marshal.c: Track changes in mono_upgrade_remote_class().
19854 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19855         * icall.c: Add runtime methods for obtaining members of inflated
19856         class, which were created from supplied non-inflated members. It
19857         is used in internal Get{Method,Constructor,Field} methods in
19858         System.Type
19860 2005-06-09  Martin Baulig  <martin@ximian.com>
19862         * reflection.c
19863         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19865 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19866         * reflection.c (mono_image_basic_init): Define
19867         Version in MonoDynamicAssembly. 
19868         
19869 2005-06-08  Martin Baulig  <martin@ximian.com>
19871         Fix #75136.
19873         * loader.c
19874         (mono_method_signature_full): New public method; takes a
19875         `MonoGenericContext *'.
19876         (find_method): Use mono_method_signature_full() and pass the
19877         klass'es context to it.
19879         * class.c (mono_class_is_inflated_method): Use
19880         mono_method_signature_full() and pass the context to it.
19882 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19884         * object.c: add proper locking in mono_remote_class_vtable(),
19885         fixes possible memory corruption.
19887 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19889         * marshal.c (mono_remoting_marshal_init): set
19890         initialized after initialization.
19892 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19894         * locales.c : hush.
19896 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19898         * object.c (extend_interface_array): fix really silly
19899         memory corrupting / comparison bug.
19901 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19903         * reflection.c: Functions added to support the creation
19904         of CustomAttributeData, which includes Attribute data
19905         used by ReflectionOnly methods.
19907         * reflection.h:  mono_reflection_get_custom_attrs_data and
19908          mono_custom_attrs_data_construct added (functions exposed).
19910          * icall.c: Added mono_reflection_get_custom_attrs_data
19911          as icall.
19912         
19913 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19915         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19916         lupus's request.
19918 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19920         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19922         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19923         dynamic DllImportAttribute.
19925         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19926         dynamic DllImportAttribute.
19928         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19929         Fixes #75162.
19931 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19933         * threads.c: avoid segfault when an unstarted thread is aborted.
19935 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19937         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19938         Returns the name and version of the runtime for reporting.
19940 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19942         * appdomain.c: bump corlib version.
19943         * object-internals.h: new field in MonoReflectionAssembly.
19945 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19947         * object-internals.h: Carlos forgot to add this field.
19949 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19951         * icall.c: Added create_version to create instances
19952         of Version of MonoReflectionAssemblyName. This change helps
19953         the AssemblyName tests to keep running fine.
19954         
19955 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
19956   
19957         * object.c (mono_method_return_message_restore): A somehow less
19958         intrusive fix for #75138.
19960 2005-06-03  Raja R Harinath  <rharinath@novell.com>
19962         * object.c (mono_method_return_message_restore): Fix computation
19963         of expected number of out args.
19965 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19967         * reflection.c (mono_image_get_method_info): Fix the case when the
19968         charset is empty.
19970 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
19972         * object.c: Added missing null check in
19973           mono_method_return_message_restore.
19975 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19977         * reflection.c (mono_image_get_method_info): Handle the case when
19978         dllentry is empty.
19980 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
19982         * object.c: When creating the vtable for a proxy, take into account
19983         all inherited interfaces, not only the ones registered in
19984         iclass->interfaces. This fixs bug #74996.
19985         Also, in mono_method_return_message_restore, verify that the array
19986         of out args has the expected lengh.
19988 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19990         * socket-io.c: update the timeout in Poll when the call is interrupte.
19992 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19994         * socket-io.c: support abort/suspend in Select_internal after last
19995         change.
19997 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19999         * threadpool.c: remove warning.
20001 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20003         * icall.c:
20004         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20005         removing the 1024 limit from select(). Runtime part of the fix for
20006         bug #71203.
20008 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20010         * socket-io.c: when resolving the addresses for the same
20011         host returned by gethostname(), get the local IPs from the interface
20012         list. Loopback addresses are discarded if the are interfaces up with
20013         non-loopback ones. Fixes bug #63265.
20015 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20017         * appdomain.c, verify.c, object-internals.h, reflection.c:
20018         bumped corlib number to 36, and added new extra_flags field
20019         to ReflectionMethodBuilder and friends.  Fixes #75060.
20021 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20023         * gc.c: register a new weak link only if the object is non-null
20024         (fixes bug#75047).
20026 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20028         * culture-info.h : short time pattern too.
20030 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20032         * culture-info.h : expand long time pattern string length.
20034 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20036         * culture-info-table.h : update (more French date format; #72788).
20038 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20040         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20041         the method is static. Fixes #75029.
20043 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20045         * reflection.c: Update the table_idx field of method builders after
20046         saving the module, since it can change. This is a workaround for
20047         bug #74914. 
20049 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20051         * culture-info-table.h : update (additional French date format).
20053 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20055         * icall.c (ves_icall_type_Equals): Revert last change.
20056         
20057         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20059         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20061 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20063         * class-internals.h: Added executioncontext_class field to 
20064         MonoDefaults structure.
20065         * domain.c: Cache System.Threading.ExecutionContext class in 
20066         mono_defaults.
20067         * object.c: Capture the ExecutionContext for asynchroneous calls in
20068          mono_async_result_new.
20069         * object-internals.h: Added execution_context and original_context 
20070         fields to MonoAsyncResult. Added execution_context to MonoThread.
20071         * security-manager.c|.h: Added mono_get_context_capture_method to 
20072         return the capture method (if required by the security manager or by
20073         the framework version used).
20074         * threadpool.c: Apply capture (if present) ExecutionContext in 
20075         mono_async_invoke and revert to original context after it completes.
20077 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20079         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20081 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20083         * culture-info-table.h : zh-CHT related workaround.
20085 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20087         * marshal.c (emit_marshal_custom): Add some error checking and call the
20088         methods in the ICustomMarshaler interface. Fixes #74875.
20089         
20090         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20091         native->managed wrappers.
20093 2005-05-12  Martin Baulig  <martin@ximian.com>
20095         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20096         here and use the loader lock.
20098         * mono-debug.c: Properly lock when the debugger is not attached.
20099         (mono_debug_init): Release the initial lock if we're not running
20100         in the debugger.
20102 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20104         * marshal.c (emit_marshal_custom): Pass through NULL values without
20105         calling the custom marshalling routines.
20107         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20108         conversion in structures. Fixes #74882.
20110 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20112         * culture-info-table.h : zh-* cultures were missing.
20114 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20116         * threads.c: Added a new event background_change_event which is signaled
20117         when a thread changes its background mode.
20118         Moved here several checks previously done in managed code. The checks
20119         require the thread lock, and using the thread lock in managed code
20120         can result in deadlocks.
20121         Merged Start_internal and Thread_internal into a single method. Now 
20122         Thread_internal does all work of creating and starting a thread.
20123         Added icalls for setting and getting the state of the object. Moved from
20124         managed code to avoid locking there.
20125         Added wait_for_tids_or_state_change() which is called instad of
20126         wait_for_tids when waiting for non-backround threads to end. This method
20127         will return if one of the threads ends or the background_change_event
20128         is signaled.
20129         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20130         the background mode. This method signals the background_change_event
20131         event.
20132         * icall.c:
20133         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20134         removed Start_internal.
20135         
20136 2005-05-11  Martin Baulig  <martin@ximian.com>
20138         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20139         to order of some fields to get proper alignment on 64-bit machines.
20141 2005-05-11  Martin Baulig  <martin@ximian.com>
20143         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20144         changes as they're broken and completely fuck up the debugger.
20146         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20148 2005-05-10  Martin Baulig  <martin@ximian.com>
20150         * reflection.c (mono_reflection_generic_class_initialize): Don't
20151         call mono_class_setup_parent() here.
20153 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20155         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20156         send/receive timeout use an integer in milliseconds. We were using a
20157         struct timeval.
20159 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20161         * locales.c:
20162         (internal_get_cultures): reserve the first slot of the array for the
20163         InvariantCulture, which will be filled in managed code.
20165 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20167         * reflection.c (mono_image_fill_module_table): Initialize the
20168         GENERATION field as well.
20170 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20172         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20173         Monitor.Enter on the object.
20175 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20177         * threads.c: Enable the wait for running threads when exiting.
20178         * icall.c: Suspend all threads before exiting.
20180 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20182         * assembly.c (mono_assembly_load_reference): Fix warning.
20184 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20186         * threadpool.c: changed the default number of threads per cpu. From now
20187         on, the default will be 20 + (5 * number of cpus) instead of 50.
20189 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20191         * loader.c (mono_method_get_signature_full): Add locking here.
20193 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20195         * appdomain.c: Moved methods for parsing and freeing assembly
20196         names to assembly.c.
20197         * assembly.c, domain-internals.h: Created public methods for parsing
20198         assembly names. Fixed mono_assembly_load_with_partial_name:
20199         it now finds the best match, taking into account the version,
20200         token and culture specified in the partial name. Also return
20201         the latest version if no version information is specified.
20203 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20205         * threadpool.c: replace check for SocketAsyncCall class.
20207 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20209         * threadpool-internals.h:
20210         * Makefile.am: added threadpool-internals.h
20212         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20213         that happen in threadpool threads (tested on MS).
20214         (mono_thread_pool_remove_socket): new function that dispatch any pending
20215         AIO call on a socket that is closing. By now only epoll really needs it,
20216         as select/poll wake up when the socket closes.
20219         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20221 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20223         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20225 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20227         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20229 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20231         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20232         has an abort request, convert it into a suspend request.
20234 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20236         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20237         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20238         is not supported yet.
20240 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20242         * image.c: register assemblies loaded from data (bundles) in the loaded
20243         assemblies hash. Fixes bug #74772.
20245 2005-04-29  Martin Baulig  <martin@ximian.com>
20247         * class.c (mono_type_get_name_recurse): Update to the new naming
20248         schema from the latest .NET 2.x beta2.
20249         (mono_class_setup_vtable_general): If we're a generic instance,
20250         copy the vtable from our generic type definition and inflate all
20251         the methods in it.
20253         * loader.c (find_method): Update to the new naming schema from the
20254         latest .NET 2.x beta2.
20256 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20258         * class.c (mono_class_init): Add a mono_loader_unlock to the
20259         #74734 fix.
20261 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20263         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20264         suspend_all_other_threads () call for the time being, since it can hang.
20266         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20267         the background threads to exit, since it can also hang.
20269         * class.c (mono_class_init): Applied patch from Ankit Jain 
20270         (radical@gmail.com). Avoid pending init errors when a field refers
20271         to a nested class using a typeref. Fixes #74734.
20273         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20274         this for dynamic modules.
20276 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20278         * threads.c: don't wait for threads that are in the process of aborting
20279         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20280         and waiting for background threads to finish. This makes xsp and
20281         mod-mono-server exit without random length delays and/or hangs.
20283 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20285         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20287 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20289         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20290         dynamic types to prevent infinite loops. Fixes #74727.
20292         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20293         ..._is_assignable_to.
20295 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20297         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20299 2005-04-25  Martin Baulig  <martin@ximian.com>
20301         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20303         * domain.c
20304         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20306         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20308         * reflection.c (build_compressed_metadata): Set metadata header
20309         version to 2.0.
20311 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20313         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20314         number into an integral and a decimal part. Fixes #70473.
20316         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20318 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20320         * culture-info-table.h : reflected the latest locale-builder output.
20322 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20324         * threadpool.c: check for SuspendRequested too when deciding if
20325         mono_thread_interruption_checkpoint should be called.
20327 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20329         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20330         * threads.c: remove interruption_mutex and use Interlocked instead. When
20331         suspending all the threads, wait for all the suspended events at once.
20332         If we're shutting down and get an APC that is going to be queued,
20333         call mono_thread_execute_interruption immediately, as the thread might
20334         be sleeping on a pthread condition or mutex.
20336         * icall.c: call mono_runtime_set_shutting_down before suspending the
20337         threads.
20339         Fixes bug #74693. And now xsp is happier when exiting.
20341 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20343         * loader.c (mono_stack_walk): Fix #74690.
20345 2005-04-22  Martin Baulig  <martin@ximian.com>
20347         * mono-debug.h (MonoDebugMethodJitInfo): Added
20348         `MonoDebugMethodJitInfo *jit'.
20350         * mono-debug.c (mono_debug_read_method): Cache the
20351         MonoDebugMethodJitInfo in `address->jit'.
20352         (mono_debug_free_method_jit_info): New public method.
20354 2005-04-22  Martin Baulig  <martin@ximian.com>
20356         * class.c (mono_class_is_assignable_from): Disallow
20357         type parameter -> interface.
20359 2005-04-21  Dick Porter  <dick@ximian.com>
20361         * threads.c (mono_thread_create): Turn an assertion into an error.
20363 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20365         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20366         
20367         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20368         Fix some gcc 4.0 warnings.
20370 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20372         * file-io.c: fix alt dir separator char on unix systems
20373         and cleanup (fixes bug #71214).
20375 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20377         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20378         a call to a remote domain, since the method may be an
20379         interface method in the client domain. This fixes bug #74192.
20381 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20383         * threadpool.c: recv/send are now performed before going back to managed
20384         code to save one transition.
20386 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20388         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20390         * metadata/threadpool.c: removed hack to workaround the bug above.
20392         Fixes bug #74618.
20394 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20396         * reflection.c reflection.h: Fix handling of parameter defaults in
20397         dynamic methods. Also fixes handling of parameter attributes.
20398         Fixes #74609.
20400         * mono-debug.c (mono_debug_close_image): Fix warning.
20402 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20404         * socket-io.h: replaced old unused field with new 'blocking'.
20405         * threadpool.c: restore socket blocking state on windows(tm).
20407 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20409         * icall.c: don't return the codebase in the AssemblyName[] returned by
20410         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20411         * object-internals.h: Removed FIXME (fields were presents) and fixed
20412         versioncompat declaration.
20414 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20416         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20417         not closed, so don't cleanup when it happens.
20419 2005-04-13  Chris Toshok  <toshok@ximian.com>
20421         * mono-debug-debugger.h: change prototype for
20422         mono_debugger_lookup_type.
20424         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20425         this function, although it should probably be named
20426         mono_debugger_init_type.
20428 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20430         * threadpool.c: fix non-AIO case.
20432 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20434         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20435         the built-in profiler to measure just JIT compilation times.
20437 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20439         * threadpool.c: the epollfd might be closed by another thread at
20440         any time, so ignore EBADF at treat it as a "we're closing" sign.
20442 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20444         * threadpool.c: release the semaphores with a count equals to the number
20445         of working threads in both IO and regular pools. Fixed typo that messed
20446         up the count of IO pool threads. Don't initialize the pipe handles if
20447         we're using epoll.
20449 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20451         * threadpool.c: some systems don't like a NULL when deleting the socket
20452         from epoll.
20454 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20456         * threadpool.c: fix semaphore allocation.
20458 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20460         * threadpool.c: added epoll() based implementation for asynchronous IO
20461         that is used instead of the default poll() when available.
20462         It can be disabled by setting MONO_DISABLE_AIO.
20464 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20466         * threadpool.c: windows needs 'closesocket' and instead of returning
20467         0 when the stream is closed while in select, it returns -1. Fixes bug
20468         #74573.
20470 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
20472         * class.c (class_compute_field_layout): Fix the regression caused by
20473         the previous try.
20475 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20477         * threadpool.c: separate pool for socket async. IO.
20478         * threadpool.h: mono_max_worker_threads is not a global any more.
20480 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
20482         * class.c (class_compute_field_layout): Fix #74549.
20484 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20486         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
20487         use 2 connected sockets instead.
20489 2005-04-08  Miguel de Icaza  <miguel@novell.com>
20491         * mono-config.c: Add new entry point for mkbundle
20492         mono_config_parse_memory. 
20494 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20496         * threadpool.c: removed another unused function.
20498 2005-04-08  Ankit Jain  <radical@corewars.org>
20500         * reflection.c (get_default_param_value_blobs): Add 'types'
20501         parameter to get the types encoded in the constant table.
20502         (mono_param_get_objects): Use the type from the constant table,
20503         not the type of the parameter, when creating default values.
20504         Handle null default values correctly.
20506 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20508         * file-io.c:
20509         * file-io.h:
20510         * threadpool.c:
20511         * threadpool.h:
20512         * icall.c:
20513         * socket-io.c: removed dead code for async IO.
20515 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20517         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
20519         * threadpool.c: intercept socket async. calls and pass them to a thread
20520         that is polling and dispatching the job items to the threadpool as
20521         socket become ready. Fixes bugs #71217, #71933.
20523         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
20524         between char and short/ushort arrays.
20526         * socket-io.c: remove dead code.
20528 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20530         * locales.c,
20531           icall.c : removed InternalToUpper_Comp() and
20532           InternalToLower_Comp().
20534 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
20536         * char-conversions.h : The tables were incorrectly generated. Should
20537           be generated against invariant culture.
20539 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
20541         * object.c (mono_runtime_invoke_array): Fix return value when 
20542         passing pre-created valuetype objects to ctors.
20544         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
20545         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
20546         Fixes #74338.
20548 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
20550         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20551         only used with --security and hides the wrong corlib version error.
20553 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20555         * class.c: Changed mono_class_name_from_token so that types
20556         outside of a namespace don't have an initial period.  Improved
20557         the g_warning message used in _mono_class_get when loading
20558         fails.
20559         * assembly.c: In mono_assembly_load_reference, when an assembly
20560         can't be found, "No such file or directory" is misleading and
20561         unhelpful because a few paths were checked for the presence of
20562         the assembly.  When that happens (ENOENT), display a nicer
20563         message indicating the directories that were searched.  In all
20564         cases, the warning is made easier to read for non-hackers.
20566 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20568         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20569         project/solution.
20570         * appdomain.h|domain.c: Removed inline from functions.
20571         * appdomain.c: Reduced warnings when compiling on windows.
20572         * icall.c: Fixed output_debug declaration to gunichar2*.
20573         * mono-config.c: Reduced warnings when compiling on windows.
20574         * rand.c: Added missing "windows.h". Added missing return value.
20575         * rawbuffer.c: Added missing winsock2.h for windows.
20576         * sysmath.h: Added mono-compiler.h header to allow/ease 
20577         compilation with non-GCC compilers.
20578         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20579         Removed cast warnings.
20581         Adapted from the work of J Lothian (for VC6).
20583 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20585         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20586         from default_path.
20588 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20590         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20591         the 2.0 profile.
20593 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20595         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20596         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20597         stuff, and it would probably use $(prefix)/share rather than
20598         $(prefix)/lib.
20600 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20602         * console-io.c: added 2 includes that might be missing.
20604 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20606         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20607         profile.
20609         * reflection.c (create_custom_attr): Allocate the params array using
20610         alloca so it gets GC tracking.
20612 2005-03-23  Chris Toshok  <toshok@ximian.com>
20614         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20615         out some spew.
20617 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20619         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20620         changes to pick up any changes in prefix, etc.
20622 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20624         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20625         
20626         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20627         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20629 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20631         * class-internals.h object-internals.h class.c reflection.c: Extend the
20632         mono_lookup_dynamic_token () function to return the class of the
20633         token as well. 
20635         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20636         well. Fixes #73848.
20638 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20640         * security-manager.c: Skip inheritance checks for intra-corlib
20641         class inheritance and method overrides. This skips a lot of checks
20642         and (anyway) permissions cannot work until corlib is loaded.
20644 2005-03-23  Martin Baulig  <martin@ximian.com>
20646         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20647         MONO_TYPE_GENERICINST.  
20649 2005-03-23  Martin Baulig  <martin@ximian.com>
20651         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20653 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20655         * class.c: added locking comments to some functions.
20656         Cache the interface offsets arrays (saves about 20 KB
20657         of runtime memory in a typical app).
20658         Reduce the time overhead in mono_class_setup_supertypes ().
20660 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20662         * icall.c: speedup and fix leaks in GetMethodsByName and
20663         GetPropertiesByName.
20665 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20667         * reflection.c: some locking fixes.
20669 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20671         * metadata.c: added missing break in case statement.
20673 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20675         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20676         typedbyref return values. Fixes #73941.
20678 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20680         * security-manager.c|h: Added demandunmanaged method and 
20681         suppressunmanagedcodesecurity class to MonoSecurityManager.
20682         Renamed aptc class to allowpartiallytrustedcallers.
20684 2005-03-17  Martin Baulig  <martin@ximian.com>
20686         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20688 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20690         * file-io.c: disabled file async. IO using aio_*. It uses the
20691         threadpool now. Workaround for bug #73718.
20693 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20695         * assembly.h, mono-config.c: added code to deal with bundled configs
20696         for bundled assemblies.
20698 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20700         * *.c, private.h: cleanup, removing old private.h header file.
20702 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20704         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20705         and throw_on_unmappable_char attributes.
20707 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20709         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20710         _ProcessName_internal.
20712 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20714         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20715         #73631.
20717         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20718         are no longer used.
20720 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20722         * object.c (compute_class_bitmap): Add support for generics. Fixes
20723         #73527.
20725 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20727         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20729 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20731         * filewatcher.c: commented out the code for windows watcher, as we don't
20732         use it (we use the managed implementation instead).
20734 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20736         * object-internals.h (MonoThread): Remove 'unused1' field.
20738         * appdomain.c: Bump corlib version.
20740         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20742         * reflection.c (mono_reflection_create_runtime_class): Remove the
20743         AssemblyBuilder.Save optimization since it causes too many problems.
20745 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20747         * exception.c|h: Added mono_get_exception_reflection_type_load to
20748         create a ReflectionTypeLoadException object.
20749         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20750         to return NULL is a InheritanceDemand fails during reflection. Updated
20751         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20752         ReflectionTypeLoadException if an InheritanceDemand fails during 
20753         reflection. Added icall mapping for GetLinkDemandSecurity.
20754         * security-manager.c|h: Added ves_icall_System_Security_
20755         SecurityManager_GetLinkDemandSecurity internal call to return the
20756         class and methods permissions set for a LinkDemand. Removed unused
20757         fields in MonoSecurityManager.
20759 2005-03-10  Martin Baulig  <martin@ximian.com>
20761         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20762         it's a generic instance.
20764 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20766         * reflection.c (mono_get_object_from_blob): Applied patch from
20767         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20769         * class.c (mono_class_is_assignable_from): Another try at fixing 
20770         #73469 without breaking anything.
20772 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20774         * class.c: (mono_class_is_assignable_from): Revert the last changes
20775         since they don't work with generics.
20776         
20777         * class.c (mono_class_is_assignable_from): Fix build bustage.
20779         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20780         the managed IsAssignableFrom method. Fixes #73469.
20782         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20783         function.
20785 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20787         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20788         memory when the remoting callback does not sets the out arguments.
20789         Fixes #73007.
20791         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20792         by mistake.
20794         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20796         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20798         * appdomain.c: Bump corlib version.
20800 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20802         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20803         function.
20805         * threads.c (mono_thread_attach): Detect threads which are not started
20806         by the GC pthread wrappers.
20808 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20810         * icall.c: Added new icall for RNG.
20811         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20812         single handle on Linux to access /dev/urandom and fix #73183.
20814 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20816         * object.c: setting the new vtable in a transparent proxy object must
20817         not change the GC descriptor.
20819 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20821         * object.c: fixed compilation without GCJ support.
20822         * reflection.c: for runtime-created types ensure klass->has_references
20823         is correct (bug #73215).
20825 2005-03-02  Martin Baulig  <martin@ximian.com>
20827         * class.c (mono_class_is_assignable_from): Make this work if
20828         `oklass' is a generic instance; fixes #72831.
20830 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20832         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20833         with hasthis set.
20834         
20835         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20837         * marshal.c: Reorganize native->managed marshalling code to also use
20838         the emit_marshal_... functions.
20840 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20842         * object.c: typed allocs have issues with bitmap sizes > 30,
20843         so check for max_set >= 30.
20845 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20847         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20848         managed code. Fixes #73012.
20850         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20852         * metadata.c reflection.c: Load/Emit elem_mult as well.
20853         
20854         * metadata.h (MonoMarshalSpec): Add comment.
20856         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20858         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20859         num_elem to -1 if not given.
20861         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20863         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20864         given values.
20866 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20868         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20870 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20872         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20874         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20876 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20878         * object.c: generalized the reference bitmap creation
20879         and added hooks for the new GC.
20880         * class-internals.c: removed the gc_bitmap field from MonoClass.
20882 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20884         * domain.c: help the compiler to produce better code
20885         in mono_jit_info_table_find ().
20887 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20889         * object.c: make all allocations look typed.
20891 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20893         * socket-io.c: load Mono.Posix if it's not loaded already
20894         (fixes bug#73033).
20896 2005-02-24  Martin Baulig  <martin@ximian.com>
20898         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20899         * reflection.c (dup_type): Likewise.
20901 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20903         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20904         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20906 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20908         * domain.c, threads.c, object-internals.h: make the critical thread
20909         local vars use the fast access mode (even when we're compiled in
20910         a lib). Provide accessors to be used by the jit during codegen.
20912 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20914         * appdomain.c: Changed hook functios behavior to include
20915         support for the reflection only assemblies. Some icalls were changed
20916         to support the mentioned assemblies too. Signatures of static methods
20917         try_assembly_resolve and real_load now have an additional parameter:
20918         refonly.
20920         * assembly.c: General changes to mono_assembly_ methods to support
20921         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20922         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20923         suffix, to support an additional gbool parameter to specify whether
20924         the assembli is reflection only or not. Created some new hook functions 
20925         to add support for reflection only assemblies. Signatures of static 
20926         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20927         have now an additional parameter: refonly.
20929         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20930         indicating whether the assembly is reflection only or not.
20932         * exception.c: Add mono_get_exception_invalid_operation.
20934         * icall.c: Throw an InvalidOperationException when trying to invoke
20935         a property/method/event, or trying to set/get the value of a field.
20936         Also add an icall to retrieve the ref_only flag to the
20937         MonoReflectionAssembly.
20939 2005-02-23  Chris Toshok  <toshok@ximian.com>
20941         Part of fix for #72827.
20942         * mono-debug.c (mono_debug_add_method): add lexical block data to
20943         the info we write.  Kind of a hack at the moment - we copy the
20944         lexical block info from the MonoDebugMethodInfo to the
20945         MonoDebugMethodJitInfo here, before writing it.
20946         (mono_debug_read_method): read the lexical block info.
20948         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20950         * debug-mono-symfile.h: add lexical block support.
20952         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20953         support.
20955 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20957         * loader.c (mono_lookup_pinvoke_call): Fix warning.
20959         * object.c (mono_runtime_free_method): Call mono_free_method () and
20960         put the TODOs there.
20962         * loader.c (mono_free_method): Free up most memory allocated for 
20963         dynamic methods.
20965 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20967         * reflection.c: properly flag a Type argument to a
20968         named custom attr value (bug #72248).
20970 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20972         * reflection.c: reduce code duplication in named custom
20973         attribute encoding.
20975 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
20977         * reflection.c: properly encode custom attrs of type object
20978         (bug #72649).
20980 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20982         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
20984 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
20986         * socket-io.c: load System.dll if it's not loaded already
20987         (bug #72850 and #70477).
20989 2005-02-21  Martin Baulig  <martin@ximian.com>
20991         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20992         generic instances.
20994 2005-02-21  Martin Baulig  <martin@ximian.com>
20996         * reflection.c (mono_image_build_metadata): We also need to
20997         "fixup" the MethodImpl table after we computed the final method
20998         indices.  Call fixup_methodimpl() to do that.
20999         (fixup_methodimpl): New private method.
21001 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21003         * assembly.c: special case mscorlib.dll (bug#72536),
21004         patch from Carlos Alberto Cortez.
21006 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21008         * threads-types.h threads.c: Fix build bustage.
21010         * threads.c: Use a union for long<->double conversions.
21012         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21013         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21015         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21016         containing the checkpoint call with NOT_TAKEN.
21017         
21018         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21019         checkpoint before pushing the arguments, so they won't have to be
21020         spilled to stack.
21022 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21024         * domain.c, assembly.c, domain-internals.h: make some data
21025         const and relocation-free.
21027 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21029         * object.c, appdomain.c, class-internals.h: introduce the
21030         MonoClassRuntimeInfo structure to hold the info needed to
21031         use a class at runtime. Made mono_class_vtable() lock-free
21032         for all the appdomains.
21034 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21036         * metadata-internals.h, image.c: introduce a per-image mempool to
21037         be used for memory that has the same lifetime as the image.
21039 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21041         * domain.c: In mono_init_internal(), instead of selecting the first
21042         runtime version supported by an executable, get a list of all
21043         supported versions and select the one for which an mscorlib exists
21044         (since even if the runtime supports a given version, it doesn't mean
21045         that the framework for that version is installed).
21046         Modified get_runtimes_from_exe to support this behavior.
21047         In supported_runtimes, added information about additional system
21048         assembly versions.
21049         
21050         * assembly.c: Added support for more than one system assembly version
21051         per runtime version. Updated the assembly list.
21052         In mono_assembly_remap_version, removed the initial version check,
21053         since we don't know to which version we need to compare until we
21054         get the version set on which the assembly is based.
21055         Moved the code for loading corlib into the new method
21056         mono_assembly_load_corlib(), so it can be used by the initialization
21057         code.
21058         
21059         * domain-internals.h: Updated data structures and added declaration
21060         for mono_assembly_load_corlib.
21062 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21064         * reflection.c (resolve_object): Fix the creation of the signature in 
21065         the SignatureHelper case.
21067         * assembly.c (mono_assembly_remap_version): Fix binary search.
21068         
21069 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21071         * class.c: Added inheritance check when a method is overloaded (from a
21072         virtual method or when implementing an interface) and when a class is
21073         inherited. Added functions to set a failure for a class and to 
21074         retreive the exception from a failure.
21075         * class-internals.h: Added fields to MonoClass to keep the exception
21076         information status for inheritance (or other exceptions) to be thrown
21077         later (i.e. not at load time).
21078         * object.c: Throw the inheritance SecurityException when a type is to 
21079         be created with either class or method inheritance violations.
21080         * reflection.c|h: Fix when getting declsec from a class. Removed 
21081         unrequired code for class. Improved sanity in parameter naming.
21082         * security-manager.c|h: Added functions to check for class and method
21083         inheritance.
21085 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21087         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21088         and has_finalize in dynamic types as well.
21090 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21092         * culture-info-table.h : fixed currency format for en-GB (and so on).
21094 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21096         * gc.c: ensure the GC handles never have 0 as a value.
21098 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21100         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21101         a pointer to a struct to unmanaged code. Fixes #72625.
21103 2005-02-16  Martin Baulig  <martin@ximian.com>
21105         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21107 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21109         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21111 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21113         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21115         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21116         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21117         etc. Fixes #71471.
21119         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21121         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21123 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21125         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21126         changes to make the current context a field in MonoThread.
21128 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21130         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21131         the last change.
21132         
21133         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21134         extracted from mono_marshal_get_native_wrapper.
21136         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21137         to create wrappers around native functions.
21139         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21140         delegates for arbitrary function pointers. Fixes #71472.
21142 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21144         * threads.c: cleaned up the code a little.
21146 2005-02-15  Martin Baulig  <martin@ximian.com>
21148         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21149         the data table.
21151         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21152         allocate larger chunks if needed.
21154 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21156         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21157         in by mistake.
21159 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21161         * domain.c: keep the domains in an array and ensure the domain ids
21162         are kept small, so they can be used as indexes to domain-specific data
21163         with a small memory overhead.
21165 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21167         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21169 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21171         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21173 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21175         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21177         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21178         values.
21180         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21181         
21182 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21184         * domain-internals.h: add the hashtable here.
21186         * class-internals.h: Remove `info' from MonoMethod
21188         * domain.c: Add a new hashtable, jit_trampoline_hash
21190 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21192         * object.c: don't set the value of static fields
21193         (fixes bug#72494).
21195 2005-02-11  Martin Baulig  <martin@ximian.com>
21197         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21198         (mono_debug_add_method): Silently ignore the method if it's too big.
21199         (mono_debug_add_type): Likewise.
21201 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21203         * threads.c, appdomain.c: remove #ifdefs from the code.
21205 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21207         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21208         common security informations. This allows us to stay in unmanaged code
21209         when doing LinkDemand and it's special cases (except for the first 
21210         time for initialization). The flags a very much used with --security.
21211         * reflection.c|h: Added code to get declarative security attributes 
21212         for LinkDemand and InheritanceDemand. This required to refactor the
21213         existing code for Demand.
21214         * security-manager.c|h: Added new method fields for the special cases
21215         of LinkDemand.
21217 2005-02-10  Martin Baulig  <martin@ximian.com>
21219         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21220         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21222 2005-02-10  Martin Baulig  <martin@ximian.com>
21224         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21225         debugging code; this is almost a complete rewrite.
21227         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21229 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21231         * domain.c, object.h: expose mono_string_equal () and 
21232         mono_string_hash ().
21233         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21234         it's implemented in managed code.
21236 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21238         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21239         lo leak objects between appdomains.
21241 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21243         * assembly.c: old compilers compilation fix from 
21244         robertj@gmx.net (Robert Jordan).
21246 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21248         * class-internals.h: Little reminder for the future.
21250         * debug-helpers.c: Fix up wrapper_type_names
21252 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21254         * image.c, metadata-internals.h: when loading an image from a file,
21255         mmap all of it and use the same codepaths as when using a
21256         in-memory image: the code is simpler and we use less memory
21257         (both writable and readonly).
21259 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21261         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21262         API to alloc runtime data structures that need to be tracked by the
21263         GC and contain pointers.
21264         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21265         make the code more readable and eventually use a different GC.
21267 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21269         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21270         for out arguments.
21271         
21272 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21274         * object.c: In release_type_locks(), don't release the cctor lock
21275         if it has already been released. This fixes a crash in the
21276         thread5 test.
21278 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21280         * gc.c, marshal.c, icall.c: register a delegate for finalization
21281         only when the native function pointer has been allocated for it.
21283 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21285         * object.c: cleaned up some code, allocate objects that are
21286         pointer free with the atomic malloc variant. Allocate memory
21287         for static data from the mempool if it's pointer-free.
21288         Allocate the bounds array at the end of the array data, when needed.
21289         * object-internals.h, object.h: move a private function in a private
21290         header.
21291         * class.c: handle missing case in tracking references in fields.
21293 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21295         * class.c, class-internals.h: keep track if a type has
21296         reference fields in either the instance or static fields.
21298 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21300         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21301         and renamed to MonoRuntimeInfo. Added fields to store the expected
21302         framework assembly version. Changed mono_get_framework_version and
21303         mono_get_runtime_version for a single mono_get_runtime_info method.
21304         
21305         * assembly.c: Added method to remap system assembly versions to the
21306         current executing runtime version. Removed old mapping code.
21307         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21308         
21309         * icall.c, reflection.c: Track api changes.
21311 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21313         * loader.c (method_from_memberref): Improve error reporting,
21314         produce the class name instead of the typeref/typedef index. 
21316 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21318         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21320 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21322         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21323         stdcall and charset name mangling.  Reorganize the code and add
21324         some tracing stuff.
21326 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21328         * monodiet.c: More iters!
21330         * marshal.c: Iter usage.
21332         * icall.c: Iter usage.
21334         * object.c: Use iters.
21336         * debug-helpers.c: More iters
21338 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21340         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21341         under win32.
21343 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21345         * mono-debug-debugger.c: use iters
21347         * class.c, class-internals.h: mono_class_setup_events is static
21348         now
21350         * All callers: use iters
21352 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21354         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21355         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21357 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21359         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21361         * marshal.h: Add prototypes for ldfld/stfld_remote.
21363         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21364         this is called during startup.
21365         
21366 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21368         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21369         MonoThreadsSync struct private in monitor.c. Changed the way
21370         MonoThreadsSync is allocated so it's faster and there is no
21371         need to keep track of it with a finalizer and it uses less memory.
21372         This also finally allows us to allocate mono objects as ptrfree when
21373         there are no reference fields.
21375 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21377         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21378         disappearing link to the GC interface and use them to simplify
21379         the gchandles code.
21381 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21383         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21384         stfld_remote which call mono_load/store_field_new. This allows methods
21385         calling ldfld/stfld wrappers to be AOTed.
21387         * console-io.c: Include sys/filio.h under solaris.
21388         
21389         * console-io.c: Include curses.h if needed correctly.
21391 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21392         
21393         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21394         method->klass as well.
21396         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21398         * class.c (mono_class_init): Switch on lazy initialization of 
21399         methods.
21401         * class.c (mono_class_get_finalizer): Handle the case when the 
21402         finalizer is inherited.
21404 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21406         * console-io.c: <curses.h> is needed by term.h on solaris.
21408 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21410         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21411         mono_class_setup_properties where possible. Remove this ftn from
21412         the header file, and make it static.
21414 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21416         * loader.c: Add missing setup_... call.
21418         * class.c: Add missing setup_... calls.
21420         * class.c (mono_class_init): Switch on lazy initialization of 
21421         the generic vtable.
21422         
21423         * class.c (mono_class_init): Fix generics broken by the recent changes.
21425         * monodiet.c (handle_type): Add missing setup_... calls.
21427         * class.c: Back out garbage in previous patch.
21428         
21429         * class.c: Add missing setup_... calls.
21431         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21432         mono_class_setup_methods () if possible.
21434         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21436         * class-internals.h (MonoCachedClassInfo): New structure.
21438         * class.c: Initialize properties and events fields of MonoClass lazily.
21440         * class.c: Add infrastructure for lazily initializing the methods and
21441         vtable fields of MonoClass. Not yet used.
21443         * class.c (mono_class_get_finalizer): New helper function.
21445         * class.c: Add infrastructure for loading some class related data from
21446         an AOT file.
21448         * object.c: Add infrastructure for initializing the vtable from data
21449         in the AOT file.
21451         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21453         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21454         appropriate initialization function before accessing parts of the
21455         MonoClass structure.
21457         * marshal.c: Fix warnings.
21458         
21459         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21461         * mono-debug-debugger.c (get_exception_message): Use 
21462         mono_class_get_method_from_name_flags ().
21464 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21466         * reflection.c, appdomain.c: Replace a few manual searches that
21467         Zoltan missed. (Paolo approved this part of my initial patch).
21469 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
21471         * profiler.c: disable recording statistical events at report time.
21473 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21475         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
21476         to byteswap arrays of enum values, too (bug #72080).
21478 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
21480         * appdomain.c (set_domain_search_path): Allow this to be called if
21481         domain->setup is not yet set.
21483         * loader.c (mono_method_get_index): New helper function.
21485         * loader.c reflection.c: Use mono_method_get_index ().
21487         * class.c (mono_class_get_method_from_name_flags): New helper method.
21489         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
21490         this.
21492         * class.c (mono_class_get_cctor): New helper method.
21494         * string-icalls.c object.c class.c marshal.c reflection.c: Use
21495         mono_class_get_method () to look up methods.
21497 2005-02-01  Miguel de Icaza  <miguel@novell.com>
21499         * console-io.c: Fix the build, this should work on Windows.
21501 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
21503         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
21504         be set to null to keep things valid
21506 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21508         * icall.c: added Console 2.0 icalls.
21509         * Makefile.am: added console-io.[ch]
21510         * console-io.[ch]: internal calls for Console 2.0 API.
21512 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21514         * class.c: make sure we consider all the interfaces
21515         when calculating max_interface_id (bug found by
21516         Jeroen Frijters running ikvm).
21518 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
21520         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
21521         valuetype fields to null.
21523         * object.c (set_value): Ditto. Fixes #71669.    
21525 2005-01-31  Martin Baulig  <martin@ximian.com>
21527         * metadata.c (mono_metadata_has_generic_params): New public
21528         function; checks whether something is a generic method.
21530 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
21532         * appdomain.c: fix infinite recursion when adding assemblies.
21534 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
21536         * object.c: Fix small typo to return all items for Environment.
21537         GetCommandLineArgs.
21539 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21541         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
21542         reflection.c: more domain and assembly-unload related fixes
21543         and memory leaks plugs.
21545 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
21547         * 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.
21549 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
21551         * loader.c (mono_method_signature): Make this method lazy
21552         (mono_get_method_from_token): Don't computate the signature here.
21554         Doing this saves quite a bit of memory. I got 90 kb on starting up
21555         monodoc. It should also save some disk reads on startup.
21557         * *: MonoMethod->signature might be NULL now. You *MUST* use
21558         mono_method_signature.
21560 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21562         * object.c (mono_runtime_get_main_args): Return an array from the
21563         current domain here. Fixes #71938.
21565 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21567         * monitor.c: formatting changes to comply with the
21568         mono coding style and remove #ifdefs from the code.
21570 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21572         * metadata.c, private.h: remove some unneeded data
21573         and use a more compact representation for table schemas.
21575 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21577         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21578         to get a better distribution in hash tables.
21579         * *.c: use mono_aligned_addr_hash() where appropriate.
21580         * assembly.c: make var static.
21582 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21584         * domain-internals.h: Put MonoJitInfo on a diet.
21586         * domain.c: Fix a warning.
21588 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21590         * gc.c: rework the gc handles code to reuse handles
21591         when freed.
21593 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21595         * domain.c: fixed long standing bug in mono_string_equal() which
21596         was brought to light with the ldstr changes.
21598 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21600         * reflection.c: Remove warning by adding missing include for marshal.h
21602 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21604         * domain.c, object.c: change the ldstr_table to hold
21605         MonoString* as keys: makes the runtime isinterned lookup
21606         faster and simplifies memory management.
21608 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21610         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21611         possible to add imperative security checks before calling the icall.
21612         * reflection.c: Return security attributes on the original MonoMethod
21613         (and not the wrapped one). This fix permissions on icalls.
21615 2005-01-25  Dick Porter  <dick@ximian.com>
21617         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21618         the check for mktime() support actually test the mktime() return
21619         value.  "Fixes" bug 71682, though the output is still different to
21620         MS.
21622 2005-01-25  Martin Baulig  <martin@ximian.com>
21624         * class.c (mono_class_is_assignable_from): Make this work for
21625         generic instances.
21627 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21629         * marshal.c (mono_string_utf8_to_builder)
21630         (mono_string_builder_to_utf16): We might not have ownership of the
21631         string. In thise case, we need to create a new buffer.
21633         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21634         be null, in which case, use the default capacity.
21636 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21638         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21639         GC events to the profiler.
21641 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21643         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21644         if you don't want the GC to run.
21646 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21648         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21649         start providing a GC API and keeping different implementations in
21650         their own file.
21651         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21653 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21655         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21656         mmap rather than allocating a huge buffer.
21657         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21658         above.
21660 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21662         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21663         and CheckExecutionRights.
21664         * reflection.c|h: Keep the index of the declarative security to be 
21665         used, instead of the pointer, when AOT compiler is used. Also add 
21666         class initialization when requesting demands.
21667         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21668         CheckExecutionRights. Both properties are now FALSE by default, and
21669         unmodifiable, unless the --security option is used.
21671 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21673         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21674         reflection.c: properly refcount images and assemblies, many leaks fixed.
21676 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21678         * threadpool.c: increase the timeout for threads in the thread pool to
21679         10s.  Fixes bug #67159.
21681 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21683         * class-internals.h: Sun's compiler insists on explicit
21684         signed on bit fields to handle then correctly.
21686 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21688         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21689         Make the size of the array fit only the number of invalid path
21690         chars that we have.
21692         * class.c (_mono_class_get): Improve the error reporting when a
21693         class referenced is not found, to assist debugging. 
21695 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21697         * threads.c: fix off-by-one error.
21698         * domain.c: free data allocated in the domain.
21700 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21702         * reflection.c (mono_method_body_get_object): Fill out exception info
21703         as well.
21705         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21706         structure.
21707         
21708 2005-01-19  Martin Baulig  <martin@ximian.com>
21710         * loader.c (mono_get_method_constrained): Make this work again.
21712 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21714         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21715         guint16 to match the managed side.
21717         * reflection.c (mono_reflection_body_get_object): Fill out local
21718         variables array.
21720         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21721         as well.
21723         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21724         'local_var_sig_token'.
21726 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21728         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21729         System.Drawing.
21731         * reflection.c (mono_method_body_get_object): Handle abstract and
21732         runtime methods.
21734 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21736         * marshal.c, loader.c, class-internals.h, reflection.c:
21737         store the emthod data for a wrapper in an array instead of a list.
21739 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21741         * marshal.c: change the code to allocate memory more
21742         conservatively for method wrappers.
21744 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21746         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21747         fields from MonoClass to the marshal info structure where they belong.
21749 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21751         * class.c, object.c, class-internals.h, marshal.c: rearrange
21752         some fields and tweak some types to lower memory usage.
21754 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21756         * threads.c (signal_thread_state_change): Handle the case when the
21757         target thread is the current thread.
21759         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21761         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21762         emit_ptr_to_object_conv. 
21764         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21765         marshalling. Fixes #71352.
21767 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21769         * metadata.h, blob.h: move table enum to blob.h so it can be included
21770         in any header.
21771         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21772         cut the size of MonoImage/MonoDynamicImage.
21774 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21776         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21778 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21780         * reflection.c, reflection.h, icall.c: add a function to check
21781         if an attribute type is defined for a metadata object.
21783 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21785         * object-internals.h: Added some needed fields from StringBuilder class.
21786         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21788 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21790         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21791         threads before shutting down the runtime.
21793         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21795 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21797         * object-internal.h, threads.c: implement stacksize and 
21798         parameterized thread start functionality (requires
21799         matching corlib). Marked broken code for later removal.
21801 2005-01-12  Martin Baulig  <martin@ximian.com>
21803         * class-internals.h (MonoGenericClass): Moved the `initialized'
21804         flag to MonoDynamicGenericClass, removed `init_pending'.
21805         (MonoGenericInst): Added `is_reference' flag.
21807 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21809         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21810         inside the MSDOS header. Fixes #71201.
21812         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21813         gc thread.
21814         (mono_domain_finalize): Ditto.
21816 2005-01-12  Martin Baulig  <martin@ximian.com>
21818         * class.c (mono_get_shared_generic_class): Use the cache for
21819         non-dynamic generic classes.
21821         * class-internals.h (mono_class_create_generic_2): Removed
21822         function prototype, this function is now static inside class.c.
21824         * class.c (mono_class_create_generic_2): Made this static, only
21825         call it from mono_class_init() and mono_class_setup_parent().
21826         (collect_implemented_interfaces_aux): Call mono_class_init() on
21827         the interfaces we collect.
21828         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21830 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21832         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21833         it a real thread handle.
21835         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21836         MonoJitExceptionInfo, since each catch clause needs its own variable.
21837         
21838 2005-01-11  Dick Porter  <dick@ximian.com>
21840         * image.c (mono_pe_file_open): New variant on mono_image_open()
21841         that does not set up the CLI metadata; used for FileVersionInfo so
21842         it can get the data for windows binaries too.
21843         
21844         * process.c (process_read_string_block): Don't read off the end of
21845         the StringTable block.
21847         These both fix bug 70766.
21849 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21851         * gc.c: set some fields to NULL at GC cleanup time.
21852         * threads.c: if we quit the main thread, call exit ().
21854 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21856         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21858 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21860         * threads.h, threads.c, object.c: added accessor and settor for
21861         main_thread. Handle it specially when exiting from it: wait
21862         for other foreground threads to exit.
21864 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21866         * process.c, verify.c: remove some bloat.
21868 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21870         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21871         the calling convention to cdecl under win32.
21873 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21875         * object.c (mono_object_get_size): New function to get the size of
21876         an object instance.
21878         * profiler.c (simple_allocation): Use above.
21880 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21882         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21883         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21884         get an appdomain by it's id and we can't assume the root's id is 0).
21885         * domain-internals.h: Change the function prototype to match.
21886         * icall.c: Change the icall table for AppDomain.
21888 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21890         * locales.c (string_invariant_compare_char): Only compute
21891         GUnicodeTypes in the case where we need them.  Test for ordinality
21892         first and return if so.
21894         From the commit:
21896                 /*
21897                  * FIXME: here we must use the information from c1type and c2type
21898                  * to find out the proper collation, even on the InvariantCulture, the
21899                  * sorting is not done by computing the unicode values, but their
21900                  * actual sort order.
21901                  */
21903 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21905         * loader.c: for P/Invoke methods, allow the "Internal" shared
21906         library name to refer to the calling process symbol namespace.
21908 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21910         * Makefile.am: Add the security manager to the build.
21911         * security-manager.c|h: New. Initialization of the security manager.
21913 2005-01-07  Dick Porter  <dick@ximian.com>
21915         * threads.c: 
21916         * monitor.c: Update thread state during Monitor and WaitHandle
21917         waits.  Fixes bug 71031.
21919 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21921         * reflection.c (property_encode_signature): Correctly handle when the
21922         property has no methods.
21924 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21926         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21927         
21928         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21929         fields from mb, not rmb. Fixes #71017.
21931         * marshal.c (emit_ptr_to_str_conv): Add support for 
21932         ByValTStr -> string conversion. Fixes #71015.
21934         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21936         * mempool.c (mono_mempool_contains_addr): New helper function.
21938 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21940         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21941         HasSematics encoded fields.
21942         
21943         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21944         invalid string marshalling.
21946         * metadata.c: Fix warnings.
21947         
21948 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21950         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21951         profiler support.
21953 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21955         * domain.c object.c domain-internals.h: Revert part of r38077 since the
21956         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
21957         tests.
21959 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21961         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
21962         so methods containing these can be AOTed.
21964 2005-01-03  Martin Baulig  <martin@ximian.com>
21966         * loader.c (find_method): Removed the hack for generic instances.
21967         (method_from_memberref): If our parent is a generic instance, pass
21968         its generic type definition to find_method() and then inflate the
21969         method.
21970         (mono_get_method_constrained): Pass the generic type definition to
21971         find_method() and inflate the method later.
21973         * class-internals.h (MonoStats): Added `generic_class_count'.
21975         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
21976         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
21978         * reflection.c (mono_custom_attrs_from_params): Don't ignore
21979         generic type definitions.
21981 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21983         * loader.c icall.c: Fix warnings.
21985 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
21987         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
21988         blittable types. Fixes #70864.
21990 2004-12-29  Martin Baulig  <martin@ximian.com>
21992         * icall.c
21993         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
21995         * reflection.c (mono_method_get_object): Create a
21996         "System.Reflection.MonoGenericMethod" for inflated methods; don't
21997         call mono_get_inflated_method().
21999         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22001 2004-12-27  Martin Baulig  <martin@ximian.com>
22003         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22004         (MonoMethodInflated): Added `inflated' field.
22006         * class.c (mono_class_inflate_generic_method): Don't really
22007         inflate the method here; just set the `is_inflated' flag in the
22008         MonoMethod.
22009         (mono_class_get_inflated_method): Actually inflate the method here
22010         if it's not already inflated; we use the MonoMethodInflated's new
22011         `inflated' field as a cache.
22013 2004-12-26  Martin Baulig  <martin@ximian.com>
22015         * class.c
22016         (inflate_generic_class): Moved some code out of inflate_generic_type().
22017         (mono_class_inflate_generic_method): If we're already inflated,
22018         inflate the context and use the declaring method; ie. make sure
22019         the declaring method of an inflated method is always the generic
22020         method definition.
22021         (mono_class_create_from_typedef): Create
22022         `class->generic_container->context->gclass'.
22024 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22026         * metadata-internals.h, marshal.c, reflection.c: More
22027         MonoGHashTable->GHashTable.
22029         * domain-internals.h, class.c: Change MonoGHashTable's into
22030         GHashTables for some cases where no gc stuff is used
22032         All users: update apis
22034 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22036         * metadata.c (builtin_types): Make this `const'. Makes this get
22037         put into the shareable section.
22038         (mono_metadata_init): Casts to make gcc happy.
22040 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22042         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22044 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22046         * icall.c: Added an internal call to retrieve the position and length
22047         of assembly-level declarative security attributes (RequestMinimum, 
22048         RequestOptional and RequestRefuse). This is used by the Assembly class
22049         to re-create the corresponding permission sets.
22051 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22053         * marshal.c: fix the stelemref wrapper to be type correct
22054         (and faster).
22056 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22058         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22059         to do key & 0x7fffffff. Hashtable already does this. It just
22060         results in longer code.
22062 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22064         * appdomain.c: Bump corlib version.
22065         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22066         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22067         * reflection.c|h: Add functions to get declarative security infos
22068         (blob position and length) for assemblies, classes and methods.
22070 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22072         * reflection.c: sort the constant table (bug #70693).
22074 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22076         * object-internals.h, threads.c, domain.c: add accessors for
22077         the MonoThread and MonoDomain tls keys.
22079 2004-12-18  Martin Baulig  <martin@ximian.com>
22081         * class.c (inflate_generic_type): If we're inflating a generic
22082         instance, set `ngclass->context->container = context->container';
22083         ie. the container we inflated into.
22085         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22086         inflate_generic_type() changes.
22088 2004-12-17  Martin Baulig  <martin@ximian.com>
22090         * class-internals.h
22091         (MonoGenericClass): Replaced `MonoType *generic_type' with
22092         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22093         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22094         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22096 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22098         * exception.c (mono_exception_from_token): New helper function.
22100 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22102         * assembly.c (mono_assembly_load_with_partial_name): Call 
22103         mono_assembly_loaded before invoking the preload hooks. Fixes
22104         #70564.
22106         * object-internals.h (MonoThread): Change culture_info and 
22107         ui_culture_info into an array.
22109         * threads.c: Cache culture info objects from more than one appdomain.
22111         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22112         current UI culture.
22114 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22116         * threads.h threads.c appdomain.c: Clear the culture_info field of
22117         all threads during unloading if they point to an object in the dying
22118         appdomain.
22120 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22122         * culture-info.h (TextInfoEntry): New struct
22123         * object-internals.h: sync with managed
22124         * locales.c: fill the `text_info_data' field
22125         * culture-info-tables.h: update
22127 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22129         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22130         collector.
22132 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22134         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22135         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22137 2004-12-12  Martin Baulig  <martin@ximian.com>
22139         * mono-debug-debugger.c (write_type): If we're an enum and the
22140         builtin types have already been initialized, call mono_class_init().
22142 2004-12-11  Martin Baulig  <martin@ximian.com>
22144         * metadata.c (mono_metadata_load_generic_params): Added
22145         `MonoGenericContainer *parent_container' argument; automatically
22146         compute `container->is_method'; pass the correct owner to
22147         get_constraints().      
22149         * reflection.c (compare_genericparam): Sort the GenericParam table
22150         according to increasing owners. 
22152 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22154         * profiler.c: allow disabling the default profiler.
22156 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22158         * decimal.c, icall.c: allow disabling System.Decimal support.
22160 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22162         * reflection.c: Add support for null attribute arguments.
22164 2004-12-09  Martin Baulig  <martin@ximian.com>
22166         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22167         names to get rid of compiler warnings.
22169 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22171         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22172         mono_marshal_load_type_info (). Fixes #69625.
22173         (mono_marshal_get_ptr_to_struct): Likewise.
22175 2004-12-08  Martin Baulig  <martin@ximian.com>
22177         * mono-debug.h: Bumped version number to 47.
22179         * mono-debug-debugger.c
22180         (mono_debugger_event_handler, mono_debugger_event): Take two
22181         guint64 arguments insteed of a gpointer and a guint32.  
22183 2004-12-08  Martin Baulig  <martin@ximian.com>
22185         * debug-mono-symfile.h
22186         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22187         `address' to `native_offset'.
22189 2004-12-08  Martin Baulig  <martin@ximian.com>
22191         * class.c (mono_class_create_from_typespec): Only inflate if we
22192         either have `context->gclass' or `context->gmethod'.
22194 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22196         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22198         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22200         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22202         * reflection.c (mono_assembly_get_object): Remove the workaround put
22203         in for the release.
22204         
22205         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22207         * appdomain.c: Bump corlib version.
22209         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22210         be visible in other appdomains.
22212 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22214         * threads.c: Interlocked inc and dec for longs were messed up,
22215         use a KISS based impl for this. Fixes 70234
22217 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22219         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22221 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22223         * icall.c: fix to follow policy not to allow struct
22224         arguments in icalls.
22226 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22228         * process.c: make the patch that handles spaces in file paths work
22229         on mono/windows too.
22231 2004-12-06  Martin Baulig  <martin@ximian.com>
22233         * class.c (mono_class_create_generic): Call
22234         mono_class_setup_supertypes() if we're dynamic.
22235         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22237 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22239         * object-internals.h: Add new fields to MonoThread.
22241         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22243         * icall.c threads-types.h threads.c: Add new icalls.
22245         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22247         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22248         managed side.
22250         * appdomain.c: Bump corlib version.
22252         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22253         internal assemblies. Fixes #69181.
22255 2004-12-05  Martin Baulig  <martin@ximian.com>
22257         * class.c (mono_class_inflate_generic_signature): Make this a
22258         no-op if `context' is NULL or we don't have any type parameters;
22259         also copy `sentinelpos'.        
22261 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22263         * image.c: Add unbox_wrapper_cache.
22265         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22267         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22268         function generator.
22269         
22270         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22271         Fixes #70173.
22273         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22274         
22275 2004-12-04  Martin Baulig  <martin@ximian.com>
22277         * loader.c (mono_method_get_signature_full): New public function;
22278         like mono_method_get_signature(), but with an additional
22279         `MonoGenericContext *' argument.
22281         * class.c (mono_class_inflate_generic_signature): Formerly known
22282         as inflate_generic_signature(); make this public.
22284 2004-12-04  Martin Baulig  <martin@ximian.com>
22286         * metadata.c
22287         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22288         instead of a `MonoGenericContainer *'.  
22289         (mono_metadata_parse_array_full): Likewise.
22290         (mono_metadata_parse_signature_full): Likewise.
22291         (mono_metadata_parse_method_signature_full): Likewise.
22292         (mono_metadata_parse_generic_inst): Likewise.
22293         (mono_metadata_parse_generic_param): Likewise.
22294         (mono_metadata_parse_mh_full): Likewise.
22295         (mono_type_create_from_typespec_full): Likewise.
22297 2004-12-03  Martin Baulig  <martin@ximian.com>
22299         * class-internals.h (MonoGenericContainer): Replaced the
22300         `MonoGenericContext * pointer with a `MonoGenericContext'
22301         structure and made it the first element.
22303 2004-12-03  Martin Baulig  <martin@ximian.com>
22305         * class.c
22306         (inflate_generic_type): Set the `context->container' when creating
22307         a new MonoGenericContext.
22308         (mono_class_inflate_generic_method): Likewise.
22309         (mono_class_create_from_typespec): Just use `context->container'
22310         to get the container.
22312         * loader.c (method_from_methodspec): Set `context->parent' from
22313         `context->container' - and if that's a method container, use its
22314         parent.  Also set the `context->container' when creating a new
22315         MonoGenericContext.
22316         (mono_get_method_from_token): Use just `context->container' to get
22317         the container.
22319         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22320         `gclass->context->container'.
22322         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22323         the `context->container' when creating a new MonoGenericContext.
22325 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22327         * reflection.c (compare_genericparam): Sort params with identical
22328         owner by their number. Fixes gen-111 on sparc.
22330 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22332         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22333         around the domain changes.
22335         * appdomain.c (mono_domain_unload): Handle the case when the thread
22336         calling Unload is itself being aborted during unloading. Fixes #70022.
22338         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22340         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22341         checkpoint_func as an icall so it gets a wrapper.
22342         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22343         in the cross-appdomain wrappers too.
22345         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22347         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22349         * reflection.c: Fix some memory leaks.
22350         
22351 2004-12-02  Martin Baulig  <martin@ximian.com>
22353         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22355         * metadata.c (generic_class_cache): New static hashtable.
22356         (mono_metadata_lookup_generic_class): New public method.
22358 2004-12-02  Martin Baulig  <martin@ximian.com>
22360         * class.c (mono_class_create_from_typedef): Call
22361         mono_class_setup_parent() and mono_class_create_mono_type() before
22362         parsing the interfaces.
22364 2004-12-02  Martin Baulig  <martin@ximian.com>
22366         * metadata.c (generic_inst_cache): New static hashtable.
22367         (mono_metadata_lookup_generic_inst): New public function.
22368         (mono_metadata_inflate_generic_inst): New public function.
22369         (mono_metadata_parse_generic_inst): New public function.
22370         (do_mono_metadata_parse_generic_class): Use the new
22371         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22372         since this'll also use the cache.
22374         * reflection.c (mono_reflection_bind_generic_method_parameters):
22375         Use mono_metadata_lookup_generic_inst() to use the new cache.
22377         * class.c (inflate_mono_type): Use
22378         mono_metadata_inflate_generic_inst() to inflate a generic
22379         instance; this'll also use the new cache.
22381         * loader.c (method_from_methodspec): Use
22382         mono_metadata_parse_generic_inst() and
22383         mono_metadata_inflate_generic_inst() rather than parsing it
22384         manually, so we can use the new cache.
22386 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22388         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22389         the wait times out.
22391 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22393         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22394         iter->args based on whether parameters are passed in registers (i.e.
22395         MONO_ARCH_REGPARMS is defined)
22397 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22399         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22400         the exception message. Fixes #70070.
22401         (method_from_methodspec): Fix warnings.
22403 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22405         * process.c: (complete_path) return the path quoted
22407 2004-12-01  Martin Baulig  <martin@ximian.com>
22409         * class-internals.h (MonoGenericInst): New structure.
22410         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22411         `is_open' with `MonoGenericInst *inst'.
22412         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22413         `is_open' with `MonoGenericInst *inst'.
22415 2004-11-30  Martin Baulig  <martin@ximian.com>
22417         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22419         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22420         to `generic_class_cache'.
22422         * metadata.c
22423         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22424         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22425         (mono_generic_inst_is_valuetype): Renamed to
22426         mono_generic_class_is_valuetype().
22428         * class-internals.h
22429         (MonoGenericInst): Renamed to MonoGenericClass.
22430         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22431         (MonoClass): Renamed `generic_inst' to `generic_class'.
22432         (MonoGenericContext): Renamed `ginst' to `gclass'.
22434         * object-internals.h
22435         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22437         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22438         mono_reflection_generic_class_initialize().
22440         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22441         now known as "System.Reflection.MonoGenericClass".
22442         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22444 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22446         * class-internals.h: Added a flag field to MonoClass to cache the
22447         declarative security attributes actions associated with the class.
22448         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22449         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22450         applicable to the JITted method.
22451         * reflection.c|h: Added functions to extract (as flags) which security
22452         actions are available (declaratively) for a method, class or assembly.
22453         * metadata.c|h: Added functions to search the declarative security
22454         table in the metadata.
22455         
22456 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22458         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22459         EXPORTEDTYPES are already in the class name cache, so there is no
22460         need to add extra code here to look at them. Just removes a bit of
22461         cruft.
22463         (ves_icall_System_Environment_get_TickCount): No need for #if
22464         WINDOWS. We already have the code in io-layer.
22466 2004-11-28  Martin Baulig  <martin@ximian.com>
22468         * loader.c
22469         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22470         Fixes gen-112.cs.
22472 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
22474         * assembly.c (do_mono_assembly_open): Instead of having a
22475         conditional WITH_BUNDLE, incorporate support for bundles here, by
22476         having a global `bundles' variable holding a pointer to the actual
22477         bundles. 
22479         (mono_register_bundled_assemblies): New API call used by the
22480         bundle code. 
22482         See mkbundle.1 for details.
22483         
22484 2004-11-27  Martin Baulig  <martin@ximian.com>
22486         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
22487         the vtable for generic methods.
22489 2004-11-26  Martin Baulig  <martin@ximian.com>
22491         * metadata.c
22492         (mono_metadata_generic_method_hash): New public function.
22493         (mono_metadata_generic_method_equal): Likewise.
22495         * class-internals.h
22496         (MonoGenericContainer): Added `GHashTable *method_hash'.
22498         * reflection.c (ReflectionMethodBuilder): Added
22499         `MonoGenericContainer *generic_container'.
22500         (reflection_methodbuilder_to_mono_method): Don't create a new
22501         MonoGenericContainer each time we're called.
22502         (mono_reflection_bind_generic_method_parameters): Use
22503         `container->method_hash' to cache the results so we don't create a
22504         different method if we're called several times with the same
22505         arguments.
22507         * loader.c (method_from_methodspec): Use the new
22508         `container->method_hash' here, too.
22510 2004-11-26  Martin Baulig  <martin@ximian.com>
22512         * class.c (inflate_generic_signature): Correctly compute
22513         `res->has_type_parameters'.
22514         (mono_class_vtable): Use the `has_type_parameters' flag to
22515         determine whether we're a generic method.
22517         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
22519 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
22521         * object.c (mono_runtime_run_main): Fix a small memory leak.
22523 2004-11-25  Martin Baulig  <martin@ximian.com>
22525         * class.c (set_generic_param_owner): Fixed the loop.
22527 2004-11-25  Martin Baulig  <martin@ximian.com>
22529         * object.c (mono_class_vtable): Don't create any JIT wrappers for
22530         generic methods.
22532 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
22534         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
22535         names. Fixes #69787.
22537 2004-11-24  Martin Baulig  <martin@ximian.com>
22539         * class.c (mono_class_create_generic_2): If we don't have a
22540         `ginst->parent', inflate `gklass->parent' to get our parent.
22542 2004-11-24  Martin Baulig  <martin@ximian.com>
22544         * reflection.c (compare_genericparam): Correctly sort the
22545         GenericParam table; fixes #69779.
22547 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
22549         * reflection.c: When writing a PE file, don't create a huge
22550         buffer in memory. Just write the arrays we have to the file.
22551         This reduces memory usage.
22553         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22554         globally.
22556 2004-11-17  Martin Baulig  <martin@ximian.com>
22558         * class.c (mono_class_init): Don't setup `class->parent' for
22559         dynamic instances; moved this to mono_class_generic_2().
22560         (mono_class_create_generic): Also set `klass->inited' for dynamic
22561         generic instances.
22562         (mono_class_create_generic_2): Don't do anything for dynamic
22563         generic instances.  Set `klass->parent' here and also call
22564         mono_class_setup_parent() here. 
22566         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22567         `MonoType *parent' argument; set `ginst->parent' before calling
22568         mono_class_create_generic_2(), so we set the correct parent.
22570 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22572         * reflection.c: allow getting attributes from ModuleBuilder
22573         (used by ikvm).
22575 2004-11-17  Martin Baulig  <martin@ximian.com>
22577         * class.c (mono_class_create_from_typedef): If a type parameter is
22578         inherited from an outer class, set its owner to that class.
22580 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22582         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22583           for (int*) written size. This fixes bug #69592.
22585 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22587         * icall.c: Added IsAuthenticodePresnet internal call.
22588         * image.c|h: New function that check a MonoImage for an Authenticode
22589         signature in the certificate PE data directory.
22590         * security.c|h: New internal call to ask the runtime if an 
22591         Authenticode signature seems referenced in the PE header.
22593 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22595         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22597         * reflection.c (mono_image_create_pefile): Free the assembly streams
22598         after writing out the assembly file.
22600         * object.c (mono_runtime_run_main): Fix small memory leak.
22602         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22603         property access modifiers. Fixes #69389.
22605 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22607         * domain.c, object.c, object-internals.h, domain-internals.h,
22608         object.h, marshal.c: keep dynamic code info per domain.
22610 2004-11-15  Martin Baulig  <martin@ximian.com>
22612         * class.c (mono_type_get_name_recurse): Put type arguments in
22613         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22614         see bug #68387.
22616 2004-11-15  Martin Baulig  <martin@ximian.com>
22618         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22619         (mono_class_setup_vtable): When computing `the_cname' for a
22620         generic instance, don't include the namespace since we'd otherwise
22621         add it twice.
22623 2004-11-15  Martin Baulig  <martin@ximian.com>
22625         * class.c (mono_class_create_generic): Changed return type to void.
22626         (mono_class_create_generic_2): New public function; setup
22627         `class->method', `class->field' and `class->interfaces' here
22628         instead of in mono_class_init().
22630         * class.h (mono_class_create_generic): Moved to class-internals.h.
22632 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22634         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22635         rather than writing to memory, write to this file. Right now,
22636         we are just writting into a buffer, and copying that. However
22637         we can avoid the buffer later.
22639         (mono_dynamic_stream_reset): new function
22641         * icall.c, object-internals.h: update for the above.
22643 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22645         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22646         have been using gc'd memory. First it is slower, unlikely
22647         the comment in the source code said, secondly, it increases
22648         our footprint to do it in the gc.
22650         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22651         the method so that it does not have to copy to managed code.
22653 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22655         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22657 2004-11-12  Martin Baulig  <martin@localhost>
22659         * reflection.c (mono_image_create_token): Allow generic method
22660         definitions here, since they may appear in an `.override'; see
22661         gen-98/gen-99 for an example.
22663 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22665         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22666         #69365.
22668         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22669         descriptive.
22671 2004-11-11  Martin Baulig  <martin@ximian.com>
22673         * class.c (mono_class_setup_vtable): In an explicit interface
22674         implementation, the method name now includes the arity.
22676 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22678         * object.c (mono_array_full_copy): Fix warning.
22680 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22682         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22683         mono_class_get_method_from_name() instead.
22684         
22685         * class-internals.h: Added two new types of wrappers. 
22686         Added MonoRemotingTarget enum. Added new trampoline function type, which
22687         takes an additional MonoRemotingTarget value as parameter, so it is
22688         possible to request a trampoline for a specific target.
22689         
22690         * class.c: Added new mono_class_get_method_from_name() method.
22691         
22692         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22693         general remoting sinks and one specific for cross domain calls.
22694         
22695         * debug-helpers.c: Added new wrapper names.
22696         
22697         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22698         of a remote class.
22699         
22700         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22701         
22702         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22703         with several other methods (mono_marshal_get_xappdomain_dispatch,
22704         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22705         and others) can generate a fast remoting wrapper for cross domain calls.
22706         More information can be found in docs/remoting.
22707         Other changes: Removed mono_find_method_by_name, and used
22708         mono_class_get_method_from_name instead.
22709         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22710         is stored in the remoting invoke hashtable.
22711         
22712         * marshal.h: published the new method for getting the xdomain wrapper,
22713         and also added a method for getting the adequate wrapper for a given
22714         method and target.
22715         
22716         * object-internals.h, object.c: Added a couple of methods for capying and
22717         cloning arrays.
22718         Modified mono_install_remoting_trampoline, which takes the new remoting
22719         trampoline that has a remoting target as parameter.
22720         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22721         will return the most suitable vtable for the target.
22722         Added mono_remote_class_vtable, which returns the vtable of a remote class
22723         (which can be the normal remoting vtable or the xdomain vtable).
22724         
22725         * threads.c: the xdomain invoke and dispatch wrappers must also be
22726         protected against interruptions.
22728 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22730         * icall.c: use memmove in BlockCopyInternal when the source and
22731         destination arrays are the same.
22733 2004-11-09  Martin Baulig  <martin@ximian.com>
22735         * class-internals.h (MonoGenericContainer): Removed `method' and
22736         `signature', replaced them with `is_method' and `is_signature'
22737         flags.  Added `context'.
22739         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22740         instead of a `MonoGenericContainer *'.
22742         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22743         for dynamic type parameters.
22744         (mono_metadata_load_generic_params): Setup `container->context'.
22746         * reflection.c (mono_reflection_setup_generic_class): Setup
22747         `tb->generic_container->context'.
22748         (do_mono_reflection_bind_generic_parameters): Use
22749         mono_class_inflate_generic_type() to correctly inflate types,
22750         rather than using our own hack just for MONO_TYPE_VAR.
22752 2004-11-09  Martin Baulig  <martin@ximian.com>
22754         * class.c (mono_class_inflate_generic_method): Small fix; don't
22755         crash here.
22757         * icall.c
22758         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22759         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22760         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22761         (ves_icall_Type_BindGenericParameters): Likewise.
22762         (ves_icall_Type_get_IsGenericInstance): Likewise.
22763         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22764         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22765         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22766         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22768 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22770         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22771         assembly versions and public key tokens. Fixes #69113.
22773 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22775         * metadata.c: fix bug introduced with the type cache changes
22776         on 2004-11-06.
22778 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22780         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22781         the MonoClass pointer instead of the token in exception clauses.
22782         * reflection.c: updates for the above and make the code not depend
22783         on the structure of MonoExceptionClause.
22785 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22787         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22788         Add support for dynamic assemblies. Fixes #69114.
22790         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22792 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22794         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22795         since most only those methods use it. the code member of
22796         MonoMethodPInvoke was dead, so that can be removed too. Also,
22797         remove inline_count (again, not used), and move slot so that it
22798         can share bits with some other flags. This saves 8 bytes in the
22799         structure and gives us about 50 kb back for mcs helloworld.cs
22801         * *.[ch]: Do naming changes for the above.
22803         * loader.c (mono_method_get_header): Lazily init the header
22804         on first access.
22805         (mono_get_method_from_token): don't init the header here
22806         (mono_free_method): the header may never be allocated
22808         Overall, this saves 150 kb of unmanaged allocations
22809         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22810         memory at runtime.
22811         
22812         * loader.c, loader.h (mono_method_get_header): new accessor.
22814         * *.[ch]: use the above method. Prepares us to lazily load
22815         the header.
22817         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22818         three warnings, which are actual bugs (see 69206).
22820         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22821         unused. Saves a cool 4 bytes / method.
22823 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22825         * metadata.c (builtin_types): Add types for System.Object here.
22826         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22827         for a class or valuetype from klass->this_arg or klass->byval_arg.
22829         On mcs for a hello world, this gets us down from 21836 MonoType's
22830         to 14560.
22832         (mono_metadata_free_type): Account for the above change.
22834 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22836         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22837         exception instead of asserting if name is null.
22838         (ves_icall_System_AppDomain_GetData): Ditto.
22840 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22842         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22843         EnumBuilder.
22845         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22846         Return NULL when the domain does not have entry_assembly set.
22848         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22849         Add a 'resource_modules' argument.
22850         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22852         * reflection.c (mono_reflection_create_runtime_class): Move setting
22853         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22854         for enums too.
22856         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22857         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22858         Throw an ArgumentNullException if 'ptr' is null.
22860         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22861         assemblies here. Fixes #69020.
22863 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22865         * reflection.c (build_compressed_metadata): Fix the previous patch for
22866         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22867         the stack.
22869 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22871         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22872         the cultures is false. Fixes #69090.
22874         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22875         detected by valgrind.
22876         
22877         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22878         TypeResolve multiple times for the same type. Fixes #65577.
22880 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22882         * marshal.c: Avoid using ldftn to call managed functions. It is
22883         much slower than just a call.
22885         * reflection.c (mono_module_get_object): free the basename we
22886         allocate here from glib.
22887         
22888         * reflection.c (ensure_runtime_vtable): make sure to free
22889         overrides.  Also, we were allocating an array of MonoMethod not an
22890         array of MonoMethod*.
22892         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22894         * image.c (mono_image_close): free image->guid here.
22896 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22898         * reflection.c: Fix some spec conformance issues with the PE file
22899         structures so mcs compiled apps run on the Net 2.0 beta.
22901 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22903         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22904         Implement this. Fixes #67264.
22906         * debug-helpers.h debug-helpers.c marshal.c: Move 
22907         mono_find_method_by_name to debug-helpers.c.
22909 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22911         * object.c (mono_release_type_locks): type_initialization_hash is
22912         a GHashTable.
22914         * reflection.c object.c object-internals.h: Fix warnings.
22916         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22917         without accessors. Fixes #61561.
22919         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22920         application base from the root domain if not set. Fixes #65641.
22921         (mono_runtime_init): Fix warning.
22923 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22925         * appdomain.c: call mono_thread_pool_init.
22926         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22927         of worker threads based on the number of CPUs and the environment
22928         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22929         for non-windows (windows) systems.
22931 2004-10-27  Chris Toshok  <toshok@ximian.com>
22933         * mono-debug-debugger.c (write_class): don't call mono_class_init
22934         here, as even with the check for (!klass->init_pending), we get
22935         into a situation where we're hitting cycles in class
22936         initialization.  Fixes #68816.
22938 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22940         * image.c: Avoid overwriting values in the loaded_images_hash when an
22941         assembly is loaded multiple times. Fixes #61152.
22943         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22944         so multiple satellite assemblies for the same name can be loaded.
22945         Fixes #68259.
22947         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22948         not NULL.
22950         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22951         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22953         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22954         pending finalizers are not invoked after the appdomain has been 
22955         unloaded. Fixes #67862.
22957 2004-10-22  Martin Baulig  <martin@ximian.com>
22959         * mono-debug-debugger.c
22960         (mono_debugger_runtime_invoke): Don't box valuetypes.
22962 2004-10-22  Chris Toshok  <toshok@ximian.com>
22964         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
22965         don't hide private methods.
22967 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
22969         * icall.c: Allows the runtime to "share" (when known) the public key
22970         token of an assembly. This avoid the need to recalculate the token 
22971         (from the public key) in managed code.
22973 2004-10-21  Chris Toshok  <toshok@ximian.com>
22975         * debug-helpers.c (append_class_name): argh, revert last patch.
22976         
22977 2004-10-21  Chris Toshok  <toshok@ximian.com>
22979         * debug-helpers.c (append_class_name): use '+' as the delimiter,
22980         not '/', so that it matches what the debugger uses to look up
22981         methods.
22983 2004-10-21  Martin Baulig  <martin@ximian.com>
22985         * mono-debug-debugger.c (mono_debugger_throw_exception): New
22986         public method; this is called each time an exception is thrown and
22987         allows the debugger to use exception catch points.
22989 2004-10-21  Martin Baulig  <martin@ximian.com>
22991         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
22992         the stack pointer and the exception object in some struct and pass
22993         that to the debugger.
22995 2004-10-21  Chris Toshok  <toshok@ximian.com>
22997         * mono-debug-debugger.c (do_write_class): add instance/static
22998         event support.  We don't expose "raise" or "other" yet.
22999         (event_is_static): new method.
23001 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23003         * mono-debug-debugger.c
23004         (mono_debugger_handle_exception): Remove
23005         bogus return value for fussy compilers.
23007 2004-10-20  Martin Baulig  <martin@ximian.com>
23009         * mono-debug-debugger.c
23010         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23011         (mono_debugger_handled_exception): Likewise.
23013 2004-10-20  Martin Baulig  <martin@ximian.com>
23015         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23016         MONO_DEBUGGER_EVENT_EXCEPTION.
23018         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23019         public function to send the debugger a notification for an
23020         exception and inform it about a catch/finally clause.
23022 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23024         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23025         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23026         fix 2.95 build. 
23028         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23030 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23032         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23033         marshalled as [In,Out]. Fixes #58325.
23035 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23037         * reflection.c (mono_method_body_get_object): Implement some fields.
23039 2004-10-12  Martin Baulig  <martin@ximian.com>
23041         * reflection.c (mono_reflection_bind_generic_parameters): Small
23042         fix, correctly retrieve our parent from a generic instance.
23044 2004-10-12  Martin Baulig  <martin@ximian.com>
23046         * metadata.c (mono_metadata_generic_param_equal): We always have
23047         an owner.
23049         * class.c
23050         (mono_class_from_generic_parameter): We need to have an owner.
23051         (my_mono_class_from_generic_parameter): Likewise.
23053         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23054         mono_reflection_create_generic_class() and added a new
23055         mono_reflection_setup_generic_class().  
23056         (mono_reflection_initialize_generic_param): If we're a nested
23057         generic type and inherited from the containing class, set our
23058         owner to the outer class.
23060 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23062         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23064         * reflection.c (mono_method_body_get_object): New function to create
23065         a MethodBody object.
23067         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23069 2004-10-11  Martin Baulig  <martin@ximian.com>
23071         * metadata.c (_mono_metadata_type_equal): Renamed to
23072         do_mono_metadata_type_equal() and made static.
23074 2004-10-11  Martin Baulig  <martin@ximian.com>
23076         * appdomain.c: Bump corlib version number to 28.
23078 2004-10-10  Martin Baulig  <martin@ximian.com>
23080         * class-internals.h
23081         (MonoGenericInst): Added `MonoGenericContainer *container'.
23082         (MonoGenericMethod): Likewise.
23083         (MonoGenericContext): Likewise.
23084         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23086         * metadata.c
23087         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23088         (do_mono_metadata_parse_generic_inst): Likewise.
23089         (mono_metadata_parse_type_full): New public method.  This is the actual
23090         mono_metadata_parse_type() implementation - with an additional
23091         `MonoGenericContainer *' argument.
23092         (mono_metadata_parse_array_full): Likewise.
23093         (mono_metadata_parse_signature_full): Likewise.
23094         (mono_metadata_parse_method_signature_full): Likewise.
23095         (mono_metadata_parse_mh_full): Likewise.
23096         (mono_type_create_from_typespec): Likewise.
23097         (mono_metadata_interfaces_from_typedef_full): New public method;
23098         this is similar to the other _full() methods, but we take a
23099         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23100         (mono_metadata_parse_generic_param): Take an additional
23101         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23102         from that container.
23103         (mono_metadata_generic_param_equal): New static method to compare
23104         two type parameters.
23105         (_mono_metadata_type_equal): New static method; takes an
23106         additional `gboolean signature_only' argument - if true, we don't
23107         compare the owners of generic parameters.
23108         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23109         with a TRUE argument - do a signature-only comparision.
23111         * loader.c: Use the new _full() methods and pass the
23112         MonoGenericContainer to them.
23114         * object-internals.h (MonoReflectionTypeBuilder): Added
23115         `MonoGenericContainer *generic_container' field.
23116         (MonoReflectionMethodBuilder): Likewise.
23118 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23120         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23121         case initial images of dynamic assemblies.
23123         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23125         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23127         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23128         length of event->other array.
23129         (typebuilder_setup_events): Ditto.
23131         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23132         'assembly_by_name' and add an 'assemblies' list.
23134         * assembly.h assembly.c: Add a new search hook for determining whenever
23135         an assembly is already loaded. Use this instead of searching in the
23136         loaded_assemblies list.
23138         * domain.c appdomain.c: Implement the new search hook so loaded 
23139         assemblies are now scoped by appdomain. Fixes #67727.
23141 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23143         * threads.c (mono_thread_attach): Initialize synch_lock field so
23144         mono_thread_detach works again.
23146         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23147         'lib' too. Fixes #63130.
23149 2004-10-06  Jackson Harper  <jackson@ximian.com>
23151         * culture-info-tables.h: regenerated.
23153 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23155         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23156         implemented by other interfaces in the result. Fixes #65764.
23157         
23158         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23159         Handle unloadable modules without crashing.
23161         * image.c (load_modules): Revert the previous patch since modules must
23162         have a fixed index inside the array.
23163         
23164         * image.c (load_modules): Don't include native modules in the modules
23165         array.
23167 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23169         * reflection.h: Add param_defaults field.
23171         * reflection.c: Add support for parameter defaults in dynamic methods.
23172         Fixes #64595.
23174         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23175         an empty string when a type has no namespace. Fixes #64230.
23177 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23179         * tabledefs.h: Added "internal" security actions to support non-CAS
23180         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23181         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23183 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23185         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23186         constructor of abstract class. Fixes #61689.
23188 2004-10-04  Martin Baulig  <martin@ximian.com>
23190         * class-internals.h (MonoGenericContainer): New type.
23191         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23192         `MonoGenericContainer *generic_container'.
23193         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23194         `MonoGenericContainer *generic_container'.
23196         * metadata.c (mono_metadata_load_generic_params): Return a
23197         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23198         removed the `num' argument.
23200 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23202         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23203         for dynamic images.
23205         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23206         machine fields.
23208         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23210         * reflection.c: Save pe_kind and machine values into the generated
23211         image file.
23213         * appdomain.c: Bump corlib version number.
23215         * object-internals.h: Reorganize layout of LocalBuilder.
23217         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23218         New helper function.
23220         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23221         created MonoType for dynamic types. Fixes #66180.
23223 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23225         * threadpool.c: the ares hashtable needs a critical section around it.
23226         this prevents some nasty segfaults
23228 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23230         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23231         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23232         bug 67324).
23233         
23234 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23236         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23237         
23238 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23240         * image.c: Always canonicalize image file names, to avoid loading
23241         the same assembly twice when referenced using a relative path.
23243 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23245         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23247         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23249         * marshal.c: Fix warnings.
23251 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23253         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23254         attempting to marshal the delegate_trampoline as the method_addr.
23255         This patch has a static hashtable of marshalled delegates so that 
23256         we can map delegate_trampoline addresses back to delegates.  This
23257         allows a delegate passed to managed code to be passed back into native
23258         code.  Fixes #67039
23260 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23262         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23264         * reflection.c (method_encode_code): Align method headers properly.
23265         Fixes #66025.
23267 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23269         * marshal.c: In the runtime invoke wrapper, reset the abort
23270         exception if it is cached. This avoids the automatic rethrowal of 
23271         the exception after the catch of the wrapper. Also check for pending
23272         interruptions before calling the managed method. This is done using
23273         the new method emit_thread_force_interrupt_checkpoint, since the
23274         normal checkpoint method is ignored when running the invoke wrapper.
23275         * object.c: If the abort exception is rethrown, set the abort_exc
23276         field of the thread, so it will be rethrown aftere every catch.
23277         * threadpool.c: Only run an interruption checkpoint if what has been
23278         requested is a stop of the thread (aborts will be ignored).
23279         * threads.c: By default, a thread will now never be interrumped while
23280         running the runtime invoke wrapper (this ensures that runtime_invoke
23281         will always return to the caller if an exception pointer is provided).
23282         There is a new special method mono_thread_force_interruption_checkpoint()
23283         to force an interruption checkpoint even if running a protected
23284         wrapper, which is used by the same runtime invoke wrapper to do a check
23285         at a safe point.
23287 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23289         * object.c, object-internals.h: Implemented mono_release_type_locks,
23290         which releases the cctor locks held by a thread.
23291         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23292         by a thread. Added mono_thread_exit() method to be used to safely stop
23293         a thread.
23295 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23297         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23298         Move null check before dereference.  Avoid indexing beyond the end
23299         of the 'modules' array.
23301 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23303         * metadata-internals.h (MonoImage): Add module_count field.
23304         * image.c (load_modules): Set image->module_count.
23305         (mono_image_load_file_for_image): Use image->module_count.
23306         * reflection.c (mono_image_load_module): Append to image->modules array 
23307         of dynamic assembly.
23308         (mono_module_get_object): Fix loop to actually increment index.
23309         Use image->module_count.
23310         * assembly.c (mono_assembly_load_references): Use image->module_count.
23311         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23312         Likewise.
23314 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23316         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23317         Avoid assert on generic types.
23319 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23321         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23323         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23325         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23326         function to convert a MarshalSpec structure to its managed counterpart.
23328         * reflection.c: Fix warnings.
23329         
23330         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23331         field.
23333         * icall.c (mono_create_icall_signature): Fix build.
23335 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23337         * icall.c: Add MakePointType icall.
23339         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23340         warnings.
23342 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23344         * threadpool.c: reuse allocated slots in the queue.
23346 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23348         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23350         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23352         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23353         previous change.
23355         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23356         ThrowOnUnmappableChar.
23358         * icall.c (ves_icall_Type_GetPacking): New icall.
23360 2004-09-24  Martin Baulig  <martin@ximian.com>
23362         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23364 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23366         * appdomain.c:
23367         (mono_domain_set): allow setting a domain that is being unloaded.
23368         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23369         being unloaded.
23371 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23373         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23374         the GetCustomAttributes icall.
23376 2004-09-23  Martin Baulig  <martin@ximian.com>
23378         * object-internals.h (MonoReflectionGenericParam): Replaced
23379         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23380         with `guint32 attrs'.
23382 2004-09-23  Martin Baulig  <martin@ximian.com>
23384         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23386 2004-09-23  Martin Baulig  <martin@ximian.com>
23388         * object-internals.h (GenericParameterAttributes): New enum.
23390 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23392         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23393         
23394         * class.c (init_events): Fill out event->other field.
23396         * class.c: Fix warnings.
23398         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23400 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23402         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23403         walk which doesn't supply the IL offset.
23405 2004-09-22  Martin Baulig  <martin@ximian.com>
23407         * reflection.c (mono_reflection_setup_internal_class): If we're
23408         System.ValueType, System.Object or System.Enum, set
23409         `klass->instance_size' and create the vtable.
23410         (mono_reflection_create_internal_class): If we're an enum type,
23411         get the base class from our current corlib.
23413 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23415         * reflection.h (MonoResolveTokenError): New type.
23417         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23418         icall.
23420         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23422 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23424         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23425         Support also calling constructors, but only for already allocated objects.
23427 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23429         * reflection.c (type_get_qualified_name): If the klass is null
23430         return the typename to avoid a NullRefEx.
23431         (encode_cattr_value): Get the qualified name of the boxed type,
23432         not the underlying enumtype.  Fixes #62984.
23434 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23436         * marshal.c: Fix problems with previous checkin.
23438 2004-09-21    <vargaz@freemail.hu>
23440         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23441         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23443         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23445 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23447         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23448         should only return a type for pointers, arrays, and passbyref types.
23449         Fixes bug #63841.
23451 2004-09-21  Martin Baulig  <martin@ximian.com>
23453         * domain.c (mono_debugger_check_runtime_version): New public
23454         function.
23456         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23458 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23460         * reflection.c: Added missing sort to the declarative security 
23461         attributes table. MS implementation stops seeing the attributes if the
23462         token number regress in the table (as shown by ildasm and permview).
23464 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23466         * object-internals.h (MonoReflectionModule): Add 'token' field.
23467         
23468         * reflection.c (mono_reflection_get_token): Add support for Module
23469         and Assembly.
23470         (mono_module_get_object): Set 'token' field.
23471         (mono_module_file_get_object): Set 'token' field.
23473         * icall.c: Add new Assembly and Module icalls.
23475         * appdomain.c: Bump corlib version.
23477 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
23479         * loader.h loader.c class.h class.c: Add helper functions for obtaining
23480         tokens of metadata objects.
23482         * reflection.h reflection.c (mono_reflection_get_token): New function
23483         to obtain the token of a metadata object.
23485         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
23487 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
23489         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
23490         
23491         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
23493 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
23495         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
23496         * object-internals.h: Added 3 MonoArray* members to MonoReflection
23497         AssemblyBuilder to access the permissions set in the class lib.
23498         * reflection.c: Added security attributes encoding step in 
23499         mono_image_build_metadata.
23500         * tabledefs.h: Added new security actions defined in 2.0:
23501         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
23503 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23505         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
23506         macro parameter.
23508 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
23510         * locales.c: nullify the ICU_collator member of CompareInfo when it is
23511           finalized. There where random SIGSEVs at program termination, when
23512           an object being finalized was trying to do a string comparison and
23513           the current culture was already finalized.
23515 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23517         * threads.c: call thread_cleanup before finishing the thread if we get
23518         there.
23520 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
23522         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
23523         assemblies from the parent. Fixes #65665.
23525 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
23527         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
23528         modifiers.
23530 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
23532         * reflection.h: add prototype for mono_get_dbnull_object
23533         * reflection.c: add prototypes for get_default_param_value_blobs 
23534         and mono_get_object_from_blob for fussier compilers
23536 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
23538         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
23539         false deadlock checks in class initialization.
23541 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
23543         * image.c (mono_image_addref): Fix comment.
23545         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
23546         possible.
23548 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
23550         * reflection.c (mono_param_get_objects): Modified to return
23551         ParameterInfo.DefaultValue object.
23553         (get_default_param_value_blobs):
23554         (mono_get_object_from_blob):
23555         (mono_get_dbnull_object): New helper routines. 
23557         * object.c (mono_get_constant_value_from_blob): New helper routine
23558         carved out from get_default_field_value ()
23560         * object-internals.h (mono_get_constant_value_from_blob): Added
23561         function declaration.
23563 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23565         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23566         referenced assemblies. Fixes #62135.
23568         * exception.h exception.c (mono_get_exception_file_not_found2): New
23569         helper function.
23571 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23573         * class.h class.c: Add mono_type_get_underlying_type ().
23575 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23577         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23578         Fix GetTypes() to support dynamically created assemblies.
23580 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23582         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23583         
23584         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23585         previous patch.
23587         * reflection.h reflection.c loader.c: Allow dynamic construction of
23588         pinvoke methods. Fixes #65571.
23589         
23590         * reflection.c (mono_reflection_get_type): Revert previous change since
23591         it causes regressions.
23593 2004-09-08  Martin Baulig  <martin@ximian.com>
23595         * class.c (class_compute_field_layout): Don't call
23596         mono_class_layout_fields() for open generic instances.
23598 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23599         * threads.c appdomain.c: fix typo in GC macro
23601 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23603         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23604         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23606 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23608         * image.c (mono_image_close): Applied patch from 
23609         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23610         assembly is loaded multiple times from data.
23611         
23612         * image.c (mono_image_open): Fix warning.
23614 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23616         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23617         once. Fixes #58334.
23618         
23619         * reflection.c (mono_reflection_create_runtime_class): Initialize
23620         klass->nested_classes. Fixes #61224.
23622 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23624         * threads.c: sched_yield() on exit, to allow threads to quit.
23626 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23628         * object.c (mono_unhandled_exception): Remove leftover debug code.
23630 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23632         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23634 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23636         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23637         
23638         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23640 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23642         * marshal.c (emit_marshal_array): Null terminate string arrays.
23643         
23644         * marshal.c (raise_auto_layout_exception): Fix warning.
23646         * reflection.c (mono_param_get_objects): Initialize the default value
23647         with DBNull.Value, not null. Fixes #62123.
23649 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23651         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23652         throw an exception with a cute explanation.
23654 2004-09-06  Dick Porter  <dick@ximian.com>
23656         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23657         Close the new process's thread handle, as we don't use it.  The
23658         handle stays around forever otherwise.
23660 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23662         * object.c (arith_overflow): Fix warning.
23664         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23665         calling conventions in method refs. Fixes #65352.
23667         * reflection.c: Fix warnings.
23669 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23671         * icall.c: Add a new icall for Array.Clear
23673 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23675         * object.c: When allocating an array, we have to throw
23676         an overflow exception if any of the lengths are < 0.
23678 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23680         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23681         properly. Also move implementation of string array marshalling to 
23682         managed code. Fixes #42316.
23684 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23686         * assembly.c: provide more information when loading an assembly fails.
23688 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23690         * filewatcher.c: don't expect the development fam package to be
23691         installed.
23693 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23695         * marshal.c: Make a copy of the signature cookie since it will be
23696         freed by the caller.
23697         
23698         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23700         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23702         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23703         marshal specs.
23705         * marshal.c: More refactoring.
23706         
23707         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23708         smaller functions.
23710 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23712         * object.c: In mono_message_invoke, fill the output parameter array after
23713           calling the managed method (it was done before the call). This fixes
23714           bug #59299.
23716 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23718         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23719         as well.
23721 2004-09-02  Martin Baulig  <martin@ximian.com>
23723         * class.c (mono_class_instance_size): Don't allow generic type
23724         definitions or open generic instances.
23725         (mono_class_array_element_size): If we're a value type, call
23726         mono_class_instance_size() on the original class.
23728         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23729         handle generic instances.
23731         * mono-debug-debugger.c (write_type): Handle generic instances
23732         like classes.
23734 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23736         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23737         the allocation request fails. Fixes #65089.
23739         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23740         
23741         * object.c (mono_runtime_free_method): New function to free a dynamic
23742         method.
23744         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23745         delegate trampoline.
23747         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23748         with hasthis as dynamic,
23750         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23752         * domain.c (mono_jit_info_table_remove): New function to remove an
23753         entry from the jit info table.
23755         * class-internals.h (MonoMethod): Add 'dynamic' field.
23757         * loader.c: Fix warnings.
23759 2004-09-01  Martin Baulig  <martin@ximian.com>
23761         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23762         instead of mono_debugger_lock() because the latter one is a no-op
23763         unless running in the debugger.
23765 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23767         * class.c (class_compute_field_layout): Classes with auto-layout or
23768         reference fields are not blittable.
23769         
23770 2004-09-01  Dick Porter  <dick@ximian.com>
23772         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23773         mono_image_get_filename() to get the assembly location.
23775         * icall.c:
23776         * metadata.h: Fix compile warnings
23778 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23780         * class.c (class_compute_field_layout): System.Object is blittable.
23782         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23783         as in/out. Fixes #59909.
23785 2004-09-01  Martin Baulig  <martin@ximian.com>
23787         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23788         mono_metadata_generic_inst_is_valuetype() if we're a generic
23789         instance to check whether our underlying type is a reference type.
23791 2004-09-01  Martin Baulig  <martin@ximian.com>
23793         * metadata.c (mono_type_size): If we're a generic instance, call
23794         mono_class_value_size() for value types.
23796 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23798         * marshal.c: Implement more custom marshalling functionality. Fixes
23799         #64915.
23801 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23803         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23805 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23807         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23809         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23811         * icall.c: Fix some warnings.
23813         * threads.c (abort_appdomain_thread): Fix unref errors.
23814         (mono_thread_current): Fix THREAD_DEBUG define.
23816 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23818         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23820         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23822 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23824         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23825         string arrays.
23827 2004-08-28  Martin Baulig  <martin@ximian.com>
23829         * metadata.c
23830         (mono_metadata_generic_inst_is_valuetype): New public function.
23832         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23833         mono_metadata_generic_inst_is_valuetype() if we're a generic
23834         instance to check whether our underlying type is a valuetype.
23836 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23838         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23839         #63768.
23841 2004-08-25  Martin Baulig  <martin@ximian.com>
23843         * loader.c (mono_get_method_from_token): Abstract methods can also
23844         be generic and thus have type parameters.
23846         * metadata-internals.h
23847         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23849         * reflection.c (mono_image_get_generic_param_info): Don't create a
23850         metadata row, just add an entry to the `gen_params' array.
23851         (build_compressed_metadata): Sort the `gen_params' array and then
23852         actually create the metadata.
23854 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23856         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23858 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23860         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23862 2004-08-24  Martin Baulig  <martin@ximian.com>
23864         * class.cs (mono_class_is_subclass_of): Like an interface, a
23865         generic instance also derives from System.Object.
23867 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23869         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23870         custom modifiers to be in any order. Fixes #61990.
23872 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23874         * object.c: Register mono_object_new_fast icall.
23875         
23876         * object.c (mono_class_get_allocation_ftn): Return to calling
23877         mono_object_new_fast, since it seems faster to compute the object 
23878         size in unmanaged code than passing it as a parameter.
23880         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23882         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23883         this function with Boehm as the oom handler, so we don't have to check
23884         the result of GC_malloc.
23886         * object.c: Remove checks for oom.
23888         * object.h object.c (mono_class_get_allocation_ftn): New function to
23889         return the icall which can be used to allocate an instance of a given
23890         class. 
23892         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23894         * class-internals.h: Add 'enabled' field.
23896 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23898         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23900 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23901         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23902         value 0x0010.
23904 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23906         * appdomain.c: use the Tls function for appdomain too,
23907         at Zoltan's request. Actually return in mono_context_get
23909         * appdomain.c, profiler.c, threads.c: use __thread
23911 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23913         * appdomain.c threads.c: Call GC_CreateThread on windows.
23915         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23916         multiple libraries since this don't work on windows.
23918 2004-08-18  Martin Baulig  <martin@ximian.com>
23920         * class-internals.h
23921         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23922         MonoMethodHeader.
23924         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23925         MonoMethodNormal since we also need it for abstract and interface
23926         methods.
23928         * reflection.c
23929         (build_compressed_metadata): Sort the GenericParam table.
23930         (mono_image_create_token): Added `gboolean create_methodspec'
23931         argument; this is false when generating a MethodImpl token.
23932         (reflection_methodbuilder_to_mono_method): Abstract and interface
23933         methods may also have generic parameters.
23935 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23937         * appdomain.c: thread local alloc
23939 2004-08-17  Martin Baulig  <martin@ximian.com>
23941         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23943         * icall.c
23944         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23945         argument.
23947         * class.c (mono_type_get_full_name): New public function.
23948         (mono_type_get_name): Don't include the type arguments.
23950 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23952         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23953         for inclusion into the mono executable.
23955 2004-08-16  Martin Baulig  <martin@ximian.com>
23957         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
23958         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
23960 2004-08-14  Martin Baulig  <martin@ximian.com>
23962         * class.c (dup_type): Also copy the `byref' field.
23964 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
23966         * reflection.c (create_dynamic_mono_image): Revert the last change 
23967         since it breaks bootstrap.
23969 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
23971         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
23973         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
23974         not free them with g_free.
23976 2004-08-11  Martin Baulig  <martin@ximian.com>
23978         * reflection.c (mono_reflection_setup_internal_class): Also call
23979         mono_class_setup_mono_type() if we already have a `tb->type.type'.
23981 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
23983         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
23984         called during default (first) AppDomain creation. Keep track of
23985         Evidence when loading assemblies.
23987 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23989         * opcodes.c, opcodes.h: reduce runtime relocations.
23991 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23993         * culture-info.h, locales.c: fixes and chages to sue the new
23994         optimized format of the locale data.
23995         * culture-info-tables.h: regenerated.
23997 2004-08-06  Geoff Norton <gnorton@customerdna.com>
23998         
23999         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24001 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24003         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24004         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24005         * domain-internals.h: icall declaration.
24006         * icall.c: icall registration.
24007         * object-internals.h: New fields in MonoAssembly for CAS.
24009 2004-08-05  Duncan Mak  <duncan@ximian.com>
24011         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24012         CEE_LDELEM_ANY.
24014 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24016         * reflection.c: fix to deal with object[] arrays in custom ctors
24017         (bug #62550).
24019 2004-08-05  Martin Baulig  <martin@ximian.com>
24021         * class.c (mono_class_array_element_size): Added support for
24022         generic instances and correctly handle "recursive" types.
24024 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24026         * assembly.c: Fix warnings.
24028 2004-08-04  Martin Baulig  <martin@ximian.com>
24030         * class.c
24031         (mono_type_get_name_recurse): Added `gboolean include_arity'
24032         argument specifying whether or not we should include the generic
24033         arity in the type name.
24034         (_mono_type_get_name): New static function.
24035         (mono_class_setup_vtable): If we're a generic instance, don't
24036         include the generic arity in the names of explicit method
24037         implementations.        
24039 2004-08-03  Martin Baulig  <martin@ximian.com>
24041         * class.c (mono_type_get_name_recurse): Enclose the generic type
24042         arguments in `<', '>'.
24044 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24046         * gc.c: make GC warning messages use the trace API, they are just
24047         noise to most of the users.
24049 2004-08-03  Martin Baulig  <martin@ximian.com>
24051         * debug-mono-symfile.c (read_string): Correctly read the string.
24053 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24055         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24056         
24057         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24058         icalls.
24059         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24061 2004-07-30  Martin Baulig  <martin@ximian.com>
24063         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24064         Reflect latest symbol writer changes.   
24066 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24068         * object.c: always create an object if null is passed
24069         to Invoke() where a valuetype is expected.
24071 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24073         * marshal.c (mono_marshal_init): make managed
24074         signatures match native ones better for 64bits.
24076 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24078         * appdomain.c: hack to build correctly the private bin path on windows.
24079         Fixes bug #61991.
24081 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24083         * assembly.c: Load mscorlib from the correct framework directory
24084           (mono/<version>/mscorlib.dll).
24085         * appdomain.h: Added prototypes for new functions.
24086         * internals.h: Added some prototypes.
24087         * domain.c: When initializing the runtime, get from the executable and
24088           the configuration files the runtime version that the app supports.
24089           Added support methods for reading app.exe.config. Added list of versions
24090           supported by the JIT. Added two new methods: mono_init_from_assembly,
24091           which initializes the runtime and determines the required version from
24092           the provided exe file, and mono_init_version, which initializes
24093           the runtime using the provided version.
24094         * icall.c: Get machine.config from version-specific directory.
24095         * reflection.c: When generating an image, embed the version number
24096           of the current runtime.
24098 2004-07-28  Dick Porter  <dick@ximian.com>
24100         * socket-io.c
24101         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24102         returned sockaddr size before creating the remote address object.
24103         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24104         61608.
24106 2004-07-28  Dick Porter  <dick@ximian.com>
24108         * locales.c (string_invariant_compare_char): Fix invariant char
24109         compares between upper and lower cases.  Fixes bug 61458.
24111 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24112         
24113         * marshal.c: actually cache stelem.ref wrappers.
24114         
24115 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24117         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24118         sections and remove the mono_cli_rva_map () function.
24120 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24122         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24123         by Geoff Norton (<gnorton@customerdna.com>).
24125 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24127         * class.c: fix class loads for pointer types (typeof(int) !=
24128         typeof(int*)).
24130 2004-07-27  Martin Baulig  <martin@ximian.com>
24132         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24133         reading the debugging information from an external ".mdb" file.
24135 2004-07-24  Martin Baulig  <martin@ximian.com>
24137         * reflection.c (mono_image_get_type_info): Only write a class
24138         layout entry if we actually have a size or a packing size.
24140 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24142         * reflection.c (type_get_fully_qualified_name): 
24143         insert cast to get type checking of ?: with non-gcc compilers
24145 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24147         * rand.c: use g_getenv for both lookups of
24148         MONO_EGD_SOCKET
24150 2004-07-17  Martin Baulig  <martin@ximian.com>
24152         * reflection.c (mono_reflection_bind_generic_method_parameters):
24153         Set `gmethod->reflection_info'.
24155 2004-07-17  Martin Baulig  <martin@ximian.com>
24157         * class.c (mono_class_create_from_typedef): Insert the newly
24158         created class into the hash table before computing the interfaces
24159         since we could be called recursively.
24161 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24163         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24164         function to implement stelem.ref in managed code
24165         * class-internals.h, debug-helpers.c: a new wrapper type
24166         for the above.
24168 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24170         * gc.c: allow GC handles to work even when no GC is compiled in.
24171         Fix part of bug #61134 (GetAddrOfPinnedObject).
24173 2004-07-13  Peter Williams  <peter@newton.cx>
24175         * process.c (complete_path): Make sure we don't attempt to execute
24176         directories.
24178 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24180         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24181           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24182           and will add/subtract the hour if needed
24184 2004-07-12  Martin Baulig  <martin@ximian.com>
24186         * reflection.c (mono_field_get_object): If we have
24187         `field->generic_info', take the attributes from
24188         `field->generic_info->generic_type'.    
24190 2004-07-12  Martin Baulig  <martin@ximian.com>
24192         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24193         This function must be called before initializing the runtime.
24194         (mono_debug_init_1): New function; call this after initializing
24195         the runtime, but before loading the assembly.  It tells the
24196         debugger to load corlib and the builtin types.
24198         * mono-debug-debugger.c: Did some larger changes in the debugging
24199         code; support recursive class declarations, make sure we actually
24200         add all classes.
24202 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24204         * debug-helpers.c: undo my previous patch and fixed the real issue in
24205         ../mini/exceptions-x86.c
24207 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24209         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24210         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24211         called from other .cctors.
24213 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24215         * loader.c: Removed the mono_loader_wine_init hack now that we are
24216         doing a managed version of Windows.Forms.
24218 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24220         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24221         threadpool.c, threads.c: remove static data from rootset.
24223 2004-07-09  Dick Porter  <dick@ximian.com>
24225         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24226         Don't do any more processing if the matched length was 0.  It was
24227         increasing the size of the string before.  Fixes bug 61167.
24229 2004-07-09  Dick Porter  <dick@ximian.com>
24231         * socket-io.h:
24232         * socket-io.c
24233         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24234         Add support for SO_PEERCRED if its available.
24236 2004-07-09  Peter Bartok <pbartok@novell.com>
24237         * loader.c: winelib.exe.so error message is now only displayed if
24238         MONO_DEBUG is set. To help us avoid questions when people are trying
24239         out the new Managed.Windows.Forms.
24241 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24243         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24244         for isinst and castclass wrappers.
24246         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24247         to libmetadata from the JIT, so they could be used by the marshalling
24248         code and the interpreter.
24250         * marshal.c: Register marshalling related JIT icalls here instead of
24251         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24252         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24254         * metadata.h: Remove unneeded marshalling conversions.
24256         * opcodes.c: Update for new opcodes.
24257         
24258 2004-07-08  Martin Baulig  <martin@ximian.com>
24260         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24261         (mono_debug_get_domain_data): Make this function static.
24263 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24265         * gc.c, object.h: add nice GC handle API for embedders.
24267 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24269         * reflection.c: more changes for the new api
24271         * object.c: When we reflect on a field w/ a constant value, it
24272         will not have a memory location, so we must access metadata. Also,
24273         allow easier reading of strings so that we can read them from
24274         the constant data.
24276         * class.c (mono_class_layout_fields): no need for literal fields here.
24278         * class-internals.h: api changes for const fields
24280         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24282 2004-07-06  Martin Baulig  <martin@ximian.com>
24284         * mono-debug.h: Increment version number to 44.
24286         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24287         now a gpointer, rewrote this whole method.
24289         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24290         function.  Add information about the wrapper in a new "misc table".
24292         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24293         for the new misc table.
24295 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24297         * metadata-internals.h image.c: Add a cache for helper signatures.
24299         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24301 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24303         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24304         delegates from a delegate. Fixes #61033.
24305         
24306         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24307         marshalling of stringbuilder arrays. Fixes #59900.
24309 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24311         * icall.c: Add EnumBuilder:setup_enum_type icall.
24313 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24315         * icall.c: Added a new icall for the property version of
24316         OffsetOfStringData.
24318 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24320         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24321         it has a constant size across platforms.
24323         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24324         stack trace.
24326 2004-06-29  Martin Baulig  <martin@ximian.com>
24328         * mono-debug.c (mono_debug_add_method): Protect the whole function
24329         in mono_debugger_lock(), not just parts of it.
24331 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24333         * reflection.c: make sure padding bytes in heaps are zeroed.
24335 2004-06-24  David Waite  <mass@akuma.org>
24337         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24338         image.c, loader.c, locales.c, marshal.c, metadata.c,
24339         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24340         string-icalls.c, threads.c: change to C90-style comments from C99 /
24341         C++ -style
24343 2004-06-24  Dick Porter  <dick@ximian.com>
24345         * threads.c
24346         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24347         return createdNew.  Fixes bug 60412.
24349         * threads-types.h: 
24350         * icall.c: Add createdNew parameter to CreateMutex icall
24352 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24354         * reflection.c, object-internals.h: save default value in params.
24356 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24358         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24359         no need to build a new path combining that with the application base.
24360         Fixes bug #60442.
24362 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24364         * reflection.c: fixed minor standard compliance issues.
24366 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24368         * reflection.c: fixed issue with encoding some custom attributes
24369         (arrays in properties and fields, bug #60411).
24371 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24373         * reflection.c: fix start address when copying the public key token.
24375 2004-06-23  Martin Baulig  <martin@ximian.com>
24377         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24378         the `exc' object in a static object to put it into the GC's root set.
24380 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24382         * reflection.c: make mono_reflection_setup_internal_class ()
24383         callable a second time to setup a new parent class.
24385 2004-06-23  Dick Porter  <dick@ximian.com>
24387         * threads.c: Check for WAIT_IO_COMPLETION return values.
24389 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24391         * appdomain.c: Removed the g_free on the public key token. Now copy 
24392         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24393         * assembly.c: Added public key token string value when loading 
24394         assemblies. Fix bug #60439.
24395         * icall.c: Added missing informations (like public key) in 
24396         GetReferencedAssemblies. Fix #60519.
24397         * image.h: Changed definition for public key token from const char*
24398         public_tok_value to guchar public_key_token [17];
24399         * reflection.c: Updated for changes to public key token.
24401 2004-06-22  Lluis Sanchez Gual
24403         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24404         for the field in base classes.
24406 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24408         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24409         mark headers as not supported, they are installed only for use by the
24410         debugger.
24412 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24414         * *.c, *.h: avoid namespace pollution in public headers.
24416 2004-06-21  Martin Baulig  <martin@ximian.com>
24418         * exception.c (mono_get_exception_security): It's in
24419         "System.Security", not in "System".
24421         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24422         the exception classes.
24424 2004-06-21  Martin Baulig  <martin@ximian.com>
24426         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24427         Protect the exception object from being finalized.
24429 2004-06-21  Martin Baulig  <martin@ximian.com>
24431         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24432         public function.
24434 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24436         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24437         if it was not loaded before. Fix parts of #60439.
24439 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24441         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24442         code that was broken since Ben's change: wrappers are now
24443         dependent on the method signature only again.
24445 2004-06-21  Martin Baulig  <martin@ximian.com>
24447         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24448         added interface support.
24450 2004-06-21  Martin Baulig  <martin@ximian.com>
24452         * class.c (mono_vtable_get_static_field_data): New public method.
24454 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24456         * filewatcher.c : Windows build fix to be compliant with API changes.
24458 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24460         * class.h, class.c: more accessors.
24461         * metadata.h, metadata.c: prepare for hiding MonoType and
24462         MonoMethodSignature: people should use the accessors from now on
24463         outside of the tree.
24465 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24467         * *.c, *.h: more API cleanups.
24469 2004-06-18  Jackson Harper  <jackson@ximian.com>
24471         * assembly.c: Trace loading assemblies.
24472         * loader.c: Trace loading native libraries.
24473         * mono-config.c: Trace loading config files.
24474         
24475 2004-06-18  Dick Porter  <dick@ximian.com>
24477         * locales.c: Tell ICU the lengths of strings, it can cope with
24478         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
24480 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
24482         * image.c: swapped name/filename;
24484 2004-06-18  Martin Baulig  <martin@ximian.com>
24486         * mono-debug-debugger.c (write_class): Write the parent class at
24487         the end of the header.
24489 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24491         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
24493 2004-06-17  Raja R Harinath  <rharinath@novell.com>
24495         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
24496         (bundle_obj): New conditional define.
24497         (BUILT_SOURCES): Remove.
24498         ($(bundle_srcs)): Make parallel-make safe.
24499         (libmonoruntime_la_LIBADD): Make unconditional.
24500         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
24501         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
24503 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
24505         * culture-info-tables.h: It was inconsistent with the latest
24506           supp info files.
24508 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
24510         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
24511         be loaded.
24513         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
24514         with gcc 2.95.
24516 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24518         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
24519         cleaned up public header threads.h.
24521 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24523         * Makefile.am, *.c, *.h: more API cleanups.
24525 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
24527         * Makefile.am: removed monosn from compilation.
24528         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
24529         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
24530         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
24531         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
24532         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
24533         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
24535 2004-06-15  Jackson Harper  <jackson@ximian.com>
24537         * assembly.c: Make locales lower case when searching the GAC for
24538         assemblies. gacutil will always make locales lowercase when
24539         installing so this effectively makes them case insensitive.
24540         
24541 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
24543         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
24544         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
24545           parameter which allows to choose whether the wait can be interrupted or 
24546           not. Also added the method mono_monitor_enter(), which locks the monitor
24547           using an infinite wait and without allowing interruption.
24548           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
24549           interrupted.
24550         * object.h: Added new fields in MonoThread. suspend_event holds the event
24551           used to susped/resume the thread. synch_lock is the lock object to use for
24552           modifying the thread state.
24553         * threads.c: Use the new synch_lock object for locking, instead of "this",
24554           which can generate deadlocks.
24555           Moved thread state change in Thread.Sleep and Thread.Join from managed
24556           to unmanaged code. This avoids a deadlock when the thread was suspended
24557           just after acquiring the thread lock.
24558           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24559           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24560           which is not fully implemented in the io-layer.
24561         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24563 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24565         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24566         threads-types.h: more API cleanups.
24568 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24570         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24571         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24572         threadpool.c, threads.c: first pass at the exported API cleanup.
24574 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24576         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24578 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24580         * icall.c: added internalGetHome.
24582 2004-06-14  Dick Porter  <dick@ximian.com>
24584         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24585         possible to return successfully when '.' or '..' were the only
24586         entries in a directory, but were skipped.  The MonoIOStat was not
24587         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24588         Fixes bug 59574.
24590 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24592         * reflection.c: make binaries run on .Net 1.1 by default.
24594 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24596         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24598 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24600         * marshal.c: keep track of struct size with explicit layout
24601         (bug #59979).
24603 2004-06-12  Martin Baulig  <martin@ximian.com>
24605         * mono-debug-debugger.c: Comment out a debugging g_message().
24607 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24609         * reflection.c, reflection.h: do not free custom attrs that are cached.
24610         * icall.c: use braces to make code clearer.
24612 2004-06-11  Martin Baulig  <martin@ximian.com>
24614         * class.h (MonoInflatedField): New type.
24615         (MonoClassField): Replaced `MonoType *generic_type' with
24616         `MonoInflatedField *generic_info'.
24618         * icall.c
24619         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24621 2004-06-11  Martin Baulig  <martin@ximian.com>
24623         * reflection.c (mono_image_create_method_token): Correctly encode
24624         varargs methods.
24626 2004-06-11  Martin Baulig  <martin@ximian.com>
24628         * metadata.c (mono_metadata_parse_method_signature): When parsing
24629         a MethodDef which has VarArgs, also set sentinelpos if we don't
24630         have any parameters.
24632 2004-06-11  Martin Baulig  <martin@ximian.com>
24634         * verify.c (mono_method_verify): In CEE_CALL, use
24635         mono_method_get_signature() to get the method's signature, unless
24636         we're a PInvoke method.
24638 2004-06-10  Jackson Harper  <jackson@ximian.com>
24640         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24641         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24642         logical name as the supplied path is just a prefix to the gac not
24643         the direct path to it.
24644         
24645 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24647         * reflection.c: make the token for a created method match
24648         the token of the MethodBuilder it was created from
24649         (IKVM requires this behaviour now).
24651 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24653         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24654         reflection.c, socket-io.c: leak fixes.
24656 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24658         * icall.c: handle sentinel pos in vararg methods in position different
24659         from 0.
24661 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24663         * culture-info-tables.h: freshly generated.
24665 2004-06-09  Martin Baulig  <martin@ximian.com>
24667         * loader.c (mono_get_method_constrained): Call `mono_class_init
24668         (constrained_class)'.   
24670 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24672         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24673         any methods. Fixes #59629.
24675 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24677         * culture-info-tables.h: reflecting locale-builder updates.
24679 2004-06-08  Dick Porter  <dick@ximian.com>
24681         * object.h:
24682         * locales.c: Fixed compile warnings, including a real bug in
24683         CompareInfo_internal_compare.
24684         
24685 2004-06-08  Dick Porter  <dick@ximian.com>
24687         * locales.c
24688         (ves_icall_System_Globalization_CompareInfo_internal_index):
24689         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24690         Double-check the resuls of usearches, because ICU currently
24691         ignores most of the collator settings here.  Fixes bug 59720.
24692         
24693 2004-06-08  Dick Porter  <dick@ximian.com>
24695         * locales.c
24696         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24697         Fix memory leak and segfault-causing typo.  No idea how this one
24698         lasted so long without being noticed.
24700 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24702         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24703         any methods. Fixes #59629.
24705 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24707         * assembly.c:
24708         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24709         own the critical section before). Removed dead code (that's done
24710         in the preload hook).
24712         (mono_assembly_load_with_partial_name): call the preload hook.
24714 2004-06-08  Martin Baulig  <martin@ximian.com>
24716         * metadata.c (mono_metadata_signature_alloc): Default
24717         `sentinelpos' to -1.
24719         * reflection.c (mono_image_get_array_token): Likewise.
24721 2004-06-08  Martin Baulig  <martin@ximian.com>
24723         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24725         * metadata.c (mono_metadata_parse_method_signature): When parsing
24726         a MethodDef which has VarArgs, set sentinelpos.
24728         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24729         `gint16' since we're using -1 for non-varargs methods.
24731         * reflection.c
24732         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24733         (method_encode_signature): Added varargs support.
24734         (method_builder_encode_signature): Likewise.
24735         (mono_image_get_varargs_method_token): New static method.
24736         (mono_image_create_method_token): New public method; this is
24737         called via an icall instead of mono_image_create_token() when
24738         calling a varargs method.       
24740 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24742         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24744 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24746         * culture-info-tables.h : Reflecting the latest locale-builder that
24747           fixed empty array representation ({} to {0}).
24749 2004-06-07  Jackson Harper  <jackson@ximian.com>
24751         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24752         looking up extra gac paths. This allows MONO_GAC_PATH to act
24753         exactly like a prefix.
24754         
24755 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24757         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24758         type name before modifying it. Fixes #59405.
24760 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24762         * culture-info.h: added fields for "all datetime patterns".
24763         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24764           _construct_datetime_format ()): fill xxx_patterns fields.
24765         * object.h: added fields for "all datetime patterns" to
24766           MonoDateTimeFormatInfo.
24767         * culture-info-tables.h: reflecting locale-builder updates.
24769 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24771         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24772         the event has no add and remove methods. Fixes #59629.
24774 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24776         * object.c: Fixed possible integer overflow when allocating large
24777         strings.
24779 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24781         * culture-info-tables.h: reflecting locale-builder updates.
24783 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24785         * culture-info-tables.h: reflecting locale-builder updates.
24787 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24789         * culture-info-tables.h: reflecting locale-builder updates.
24791 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24793         * threads.c: Made Thread.Sleep abortable.
24795 2004-06-02  Martin Baulig  <martin@ximian.com>
24797         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24799         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24801 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24803         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24805 2004-05-30  Jackson Harper  <jackson@ximian.com>
24807         * reflection.c: Do not hardcode assembly versions or public key
24808         tokens anymore. All of this except the corlib section was dead
24809         code anyways.
24810         
24811 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24813         * object.c (mono_runtime_invoke_array): Automatically create boxed
24814         objects for byref valuetypes if needed. Fixes #59300.
24815         
24816         * object.c (mono_method_return_message_restore): Handle 
24817         MONO_TYPE_OBJECT as well.
24819 2004-05-28  Jackson Harper  <jackson@ximian.com>
24821         * reflection.c: The modified type encoding was causing build
24822         problems. Reverted for now.
24823         
24824 2004-05-28  Jackson Harper  <jackson@ximian.com>
24826         * reflection.c/h: Take an assembly ref so that we dont create
24827         fully qualified names when encoding types in the same assembly as
24828         the custom attribute being emitted.
24829         * appdomain.c: Increment version number.
24830         
24831 2004-05-26  Duncan Mak  <duncan@ximian.com>
24833         * icall.c
24834         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24835         Set the full version number (major, minor, build, revision).
24837 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24839         * marshal.c (emit_struct_conv): increment src/dst after blit
24840         (mono_marshal_get_managed_wrapper,
24841         mono_marshal_get_native_wrapper): make sure we have marshalling
24842         info before marshalling params (info computation affects
24843         blittable)
24845         * class.c (class_compute_field_layout): correctly deal with
24846         blittable
24847         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24848         value types (as per what windows dows by default)
24849         (mono_class_setup_mono_type): System.ValueType is blittable
24850         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24851         blittable
24853         * marshal.c (mono_marshal_load_type_info): flag types  as
24854         non-blittable if the native layout doesn't match the managed
24855         layout
24857 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24859         * appdomain.c: don't add stuff in the private search path that is
24860         above the application base. If application base is not set, there's
24861         no private search path.
24863 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24865         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24866         byref struct arguments in native->managed marshalling.
24868 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24870         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24871         cache methods using signature (special case for methods
24872         that are value type or string class)
24873         
24874         * image.c (mono_image_close): clean up allocated GSList's
24875         in runtime_invoke_cache.
24877 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24879         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24880         there's no MONO_CFG_DIR environment variable defined.
24882 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24884         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24886 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24888         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24889           is interrumped.
24890         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24891           before waiting for it, and call CloseHandle after the wait to unref it.
24892           This will make sure that handles are not disposed too early.
24894 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24896         * appdomain.c:
24897         * appdomain.h:
24898         * icall.c: removed
24899         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24900         needed now.
24902         * object.c: se the application_base only for the domain that runs
24903         Main. Fixes bug #59216,
24905 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24907         * appdomain.c:
24908         * object.c: only the domain in which Main is run have
24909         SetupInformation.ConfigurationFile set, so moved a few lines from
24910         appdomain.c to object.c.
24912 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24914         * appdomain.c: we tried to load [name].(dll|exe), but according
24915         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24916         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24917         There's a test case attached to bug #58922.
24919 2004-05-27  Dick Porter  <dick@ximian.com>
24921         * icall.c:
24922         * file-io.c: Implemented icalls for locking and unlocking regions
24923         in a file.
24924         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24925         FALSE on error (fixes both compiler warning and real bug.)
24927 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24929         * culture-info-tables.h: reflecting locale-builder updates.
24931           (Added missing ChangeLog entry for 05/26)
24933 2004-05-27  Jackson Harper  <jackson@ximian.com>
24935         * locales.c: Fix some cut and paste errors.
24936         
24937 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24939         * mono-config.c: set the correct path for config. directory on windows.
24941 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24943         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24944           on win32.
24946 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24948         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24949         from pinvoke functions.
24950         
24951         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24953 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24955         * culture-info-tables.h: reflecting locale-builder updates.
24957 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24959         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
24960         #59086.
24962 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
24964         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
24965         * icall.c: Modified icalls for RNG.
24966         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
24967         Windows (CryptoAPI).
24969 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24971         * locales.c: Fix build.
24973 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
24975         * culture-info-tables.h: reflecting locale-builder updates.
24977 2004-05-25  Jackson Harper  <jackson@ximian.com>
24979         * locales.c: When creating the current culture use the $LANGs
24980         specific culture. So DateTimeFormat and NumberFormat entries are created.
24981         
24982 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24984         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
24985         a char array as parameter.
24987 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
24989         * image.c: In mono_image_open(), always use an absolute path name to
24990           look for already loaded images.
24992 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
24994         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
24995         missing in the windows build (like older cygwin include files).
24997 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
24999         * icall.c: Fixed check for possible integer overflow in Buffer_
25000         BlockCopy icall. Replaced comments style // by /* */.
25002 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25004         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25005         
25006         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25007         check after MONO_VTADDR. Fixes pinvoke2.exe.
25009         * marshal.h marshal.c metadata.h: Add beginnings of support for
25010         ftnptr -> delegate marshalling.
25012 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25014         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25015         * threads.c: Fix warnings.
25017 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25019         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25020         * icall.c: Registered icalls for Suspend and Resume.
25021         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25022           Thread.Abort.
25023         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25024         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25025         * process.c: Use WaitForSingleObjectEx.
25026         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25027           checkpoints.
25028         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25029           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25030           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25031           background threads. Added basic support for Abort in Windows.
25032           Start new threads using a managed delegate invoke wrapper. This wrapper
25033           has an interruption checkpoint that is needed since an interruption
25034           can be requested before the thread leaves the unmanaged code that starts 
25035           the thread.
25036         * marshal.c: Added interruption checkpoint after every native call, and
25037           also before managed calls for wrappers called from unmanaged code to
25038           go into managed code.
25039         * object.h: Added new field in MonoThread to keep track of interruption
25040           requests.
25042 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25044         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25045         calls.
25047 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25049         * appdomain.c:
25050         * assembly.c:
25051         * gc.c:
25052         * locales.c:
25053         * mono-config.c:
25054         * rand.c: getenv -> g_getenv (windows!)
25056         * process.c: complete_path is also used on non-windows platforms.
25058 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25060         * icall.c: new signature for Process_Start.
25062         * process.[ch]: new signature for Process_Start. If we're on windows
25063         and UseShellExecute is false, we have to search for the program by
25064         ourselves if we don't get a full path.
25066 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25068         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25069         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25071 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25073         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25074         Fixes bug #58373.
25076 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25078         * process.c: use double quotes to quote program name and arguments on
25079         windows. Fixes bug #58575.
25081 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25083         * file-io.c: don't return "." and ".." when using windows Find*File.
25085 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25087         * marshal.c: Don't pass wrappers to message init because method 
25088         addressed used to lookup metadata. part of remoting[2|3] fix.
25090 2004-05-15  Jackson Harper  <jackson@ximian.com>
25092         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25093         path is essentially the same as MONO_PATH except that it points to
25094         GACs instead of lib directories.
25095         * loader.h: The user gac is gone so we dont need function to
25096         enable/disable it.
25097         * mono-config.c: user gac option is now gone.
25098         
25099 2004-05-15  Jackson Harper  <jackson@ximian.com>
25101         * culture-info.h: Make defines more consistent, add calendar data
25102         to the culture info table.
25103         * culture-info-tables.h: Add basic calendar data. Basically
25104         everyone gets default gregorian until all the data is
25105         updated.
25106         * locales.c: Use the new consistent defines. Set calendar data for
25107         culture info objects.
25108         * object.h: add a field for calendar data to CultureInfo
25109         
25110 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25112         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25113         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25114         a signature.
25115         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25116         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25117         an extra param that is the pointer of the method to invoke. The IL for
25118         the invoke method is no longer specific to the method, but to the
25119         signature of the method. Thus, we can share the same code for multiple
25120         methods. This reduces the number of methods that have to be compiled.
25122 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25124         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25126         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25128         * icall.c: Optimize Buffer.BlockCopy.
25130 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25132         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25133         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25134         quote). Changed them to "MMMM yyyy".
25136 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25138         * rand.c
25139         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25141 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25143         * reflection.h: Updated after changes to managed structures.
25145         * appdomain.c: Bump corlib version.
25147 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25149         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25150         windows.
25152 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25154         * Makefile.am: link to ../os/libmonoos.la on windows.
25156         * assembly.c:
25157                 -If MONO_DEBUG, warn about non-existing directories in
25158                 MONO_PATH.
25159                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25160                 compile time variable.
25161                 -Removed init_default_path and call mono_set_rootdir from
25162                 libmonoos.a instead (windows only).
25164         * assembly.h: declare mono_assembly_getrootdir().
25166         * domain.c:
25167         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25169         * loader.c: s/getenv/g_getenv/
25171 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25173         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25175         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25177         * metadata.h: Add new marshalling conversions.
25179         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25180         function.
25182         * reflection.c (mono_reflection_get_type): Lookup the type in all
25183         modules of a multi-module assembly. Fixes #58291.
25185 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25187         * threads.c: Before aborting a background, set the StopRequested
25188         state.  This avoids throwing the Abort exception.
25189         In mono_thread_manage, don't continue with the shutdown until all
25190         aborted threads have actually stopped.
25192 2004-05-10  Jackson Harper  <jackson@ximian.com>
25194         * locales.c: Remove the modifier from culture names.
25195         
25196 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25198         * Makefile.am: monosn is not installed any more. It has been deprecated
25199         in favor of sn.
25201 2004-05-07  Jackson Harper  <jackson@ximian.com>
25203         * locales.c
25204         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25205         Fix array construction, add bailout if the length is 0.
25207 2004-05-07  Dick Porter  <dick@ximian.com>
25209         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25210         machine doesn't have a DNS entry.  Patch by Urs Muff
25211         (umuff@quark.com), fixes bug 57928.
25213 2004-05-06  Jackson Harper  <jackson@ximian.com>
25215         * reflection.c: Handle null PublicTokens properly. alloc mem for
25216         assembly names culture so we dont crash when freeing it.
25217         
25218 2004-05-06  Jackson Harper  <jackson@ximian.com>
25220         * assembly.c: Check the usergac when loading with partial names.
25221         
25222 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25224         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25225         does nothing for now (not required for Linux/Windows) but the class
25226         library can call it (and a newer or modified runtime could need it).
25227         * icall.c: Registred icall.
25229 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25231         * loader.c: prints a message on module loading error we set MONO_DEBUG
25232         environment variable.
25234 2004-05-05  Jackson Harper  <jackson@ximian.com>
25236         * appdomain.c: Handle PublicKeyToken=null properly.
25237         
25238 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25240         * environment.c|h: Added icall ves_icall_System_Environment_
25241         GetOSVersionString to get the current OS version as a string.
25242         * icall.c: Registred icall.
25244 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25246         * object.c: in mono_object_get_virtual_method(), take into account that
25247         non-virtual methods don't have a slot in the vtable. Check needed when
25248         the object is a proxy.
25250 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25252         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25253         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25255         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25257         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25258         passed when a valuetype is expected.
25260         * object.c (mono_unhandled_exception): Only set the exit code if the
25261         exception happens in the main thread. Fixes thread5.exe.
25263         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25264         invalid names. Fixes #58047.
25266 2004-05-03  Jackson Harper  <jackson@ximian.com>
25268         * assembly.c: This line was committed accidently and is unneeded.
25269         
25270 2004-05-03  Jackson Harper  <jackson@ximian.com>
25272         * icall.c: Add new icall for Assembly::LoadWithPartialName
25273         * assembly.c/.h: new function that probes the GAC to load partial
25274         assembly names by Paolo Molaro.
25275         
25276 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25278         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25279         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25280         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25281         full type name.
25283 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25285         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25286         * reflection.c: fix bug when parsing a full type name and Version is not
25287         the last thing in the string.
25289 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25291         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25292         crashes when it is freed.
25294 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25296         * assembly.c: print the compat warning to stderr.
25298 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25300         * assembly.c (mono_assembly_load_references): Add a compatibility
25301         hack to run old applications that might be still referencing the
25302         3300-based assemblies, only do this for System.xxx.
25304 2004-05-01  Jackson Harper  <jackson@ximian.com>
25306         * appdomain.c: If the culture is neutral we set it to "".
25307         
25308 2004-04-29  Jackson Harper  <jackson@ximian.com>
25310         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25312 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25314         * string-icalls.c: added low overhead function for copying chars
25315         * icall.c: added needed icall for the above function
25317 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25319         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25320         Environment.GetLogicalDrives.
25322 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25324         * rand.c: try and talk to egd or prngd
25325         for random bytes if opening devices fail.
25327 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25329         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25330         alignment for the type using the native alignment of its members 
25331         instead of using klass->min_align.
25333         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25335 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25337         * file-io.c:
25338         * socket-io.c: added check for sys/aio.h.
25340 2004-04-28  Dick Porter  <dick@ximian.com>
25342         * threads.c: Don't abort a thread thats already aborting, when
25343         terminating everything.
25345 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25347         * icall.c: added 2 new async calls for Socket.
25349         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25350         IO on *nix systems.
25352         * threadpool.c: removed unused variable.
25354 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25356         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25358 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25360         * locales.c: put back string_invariant_tolower () and
25361         string_invariant_toupper ().
25363 2004-04-26 David Waite <mass@akuma.org>
25365         * file-io.h:
25366         * socket-io.h:
25367         * threads.h:
25368         * unicode.h: remove comma from end of enumeration declarations
25370 2004-04-26 David Waite <mass@akuma.org>
25372         * debug-mono-symfile.h:
25373         * decimal.c:
25374         * mono_debug.h:
25375         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25378 2004-04-26  Jackson Harper  <jackson@ximian.com>
25380         * appdomain.c: Increment version number.
25381         
25382 2004-04-26  Jackson Harper  <jackson@ximian.com>
25384         * appdomain.c: Set assembly references public token value when
25385         PublicKeyToken is specified, not the hash_value. Free public token
25386         values when free assembly name data. Previously the public key
25387         token was hex decoded, however we are using hex encoded public key
25388         tokens, so this is not neccasary.
25389         * assembly.c: Lookup assemblies in the gac if their public token
25390         value is set. Add function to allow enabling user gac
25391         lookups. Specify whether or not the assembly was loaded from the
25392         GAC. Compare full assembly names when checking the cache for
25393         assemblies (Temporarily disabled see comment in code). Remove
25394         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25395         specifies trace-loader they get extra info to stdout on the
25396         loading of assemblies.
25397         * image.h: Add a field for an assembly references public token
25398         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25399         whether an assembly has been loaded from the GAC.
25400         * image.c: Remove a corlib -> mscorlib name mapping.
25401         * loader.h: Add function to enable/disable the user gac.
25402         * mono-config.c: Check if the usergac is enabled in the config
25403         file.
25404         * icall.c: New icall to determine whether or not an assembly has
25405         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25406         * tabldefs.h: Add constant for assemblyref flag that specifies a
25407         full public key is used instead of a public token.
25408         * reflection.c: Remove mscorlib -> corlib mappings. Set
25409         PublicTokenValue instead of hash value. This value is a hex
25410         string so it does not need to be expanded.
25412 2004-04-26  Martin Baulig  <martin@ximian.com>
25414         * mono-debug-debugger.c (mono_debugger_initialize): Set
25415         `mono_debugger_initialized' before calling mono_debug_lock().
25417 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25419         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25420           InternalToUpper/InternalToLower.
25421         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25422           removed invariant culture shortcut.  This is now done in managed code.
25423         * locales.c: (string_invariant_toupper/tolower) removed.
25425 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25427         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25428         Added Poll internal call.
25430         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25431         call for Poll. Select was too heavy for polling a single socket.
25433         * threadpool.[ch]: added mono_threadpool_cleanup.
25434         * threads.c: use it. Don't use Thread_Abort on windows.
25436 2004-04-23  Martin Baulig  <martin@ximian.com>
25438         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25440 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25442         * icall.c: Registred new icalls for key pair protection and added an
25443         icall for Environment.GetFolderPath on Windows.
25444         * security.c|h: Added new icalls for key pair protection.
25446 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25448         * socket-io.c: don't display the non-supported family warning for known
25449         families. Now this is not displayed on windows when checking support
25450         for IPv4/IPv6.
25452 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25454         * class.c: don't display the layout warning for static fields.
25456 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25458         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25459         * locales.c, locales.h: Added new icalls for culture-specific
25460         Char.ToLower and Char.ToUpper.
25462 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25464         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25465         by David Waite.
25467 2004-04-20  Martin Baulig  <martin@ximian.com>
25469         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25470         of the type name before passing it to mono_reflection_type_from_name().
25472 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
25474         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
25475         encodings here. Fixes #56965.
25477 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
25479         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25480         fix test on strstr result not that I can see anything that
25481         relies on the result.
25483 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
25485         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
25486         Fixes #57081.
25488         * marshal.c (mono_marshal_get_string_encoding): New helper function.
25490         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
25491         function to determine which marshalling to use for strings. Fixes
25492         #56965.
25494         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
25496         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
25498 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
25500         * icall.c: #include mono-config.h
25502 2004-04-15  Jackson Harper  <jackson@ximian.com>
25504         * culture-info-tables.h: Fix date formats for en-US culture.
25505         
25506 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
25508         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
25509         ThreadPool.SetMinThreads.
25510         * threadpool.c: Implemented ThreadPool.GetMinThreads and
25511         ThreadPool.SetMinThreads.
25513 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25515         * mono-config.c: also load the .config file in the directory
25516         where the assembly was found.
25518 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
25520         * assembly.c: load per-assembly config files.
25521         * icall.c: decrapified code to get the config dir and moved to
25522         mono-config.c.
25523         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
25524         per-assembly config files. When doing a dll map lookup give precedence
25525         to the per-assembly data.
25527 2004-04-14  Martin Baulig  <martin@ximian.com>
25529         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
25530         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
25531         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
25533         * mono-debugger-debugger.c: While the debugger is locked, remember
25534         whether the symbol tables have changes and send one single
25535         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
25537 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
25539         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
25541         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
25542         function.
25544         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
25545         account when marshalling string arrays. Fixes #56965.
25547 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
25549         * icall.c: Add new icalls mapping for security.
25550         * security.c|h: Add internal calls for WindowsIdentity,
25551         WindowsImpersonationContext and WindowsPrincipal.
25553 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25555         * class.c: Added comment to ensure the System.MonoDummy class
25556         is removed when no longer necessary
25558 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25560         * appdomain.c: Pass arguments to the bootstraping exceptions to
25561         minimize JITed methods at boot
25563         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25564         second string to be null.
25566         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25567         Change the protocol to minimize the JIT methods at startup.  Now
25568         it Returns the internal codepage, if the value of "int_code_page"
25569         is 1 at entry, and we can not compute a suitable code page
25570         number, returns the code page as a string.
25572 2004-04-13  Jackson Harper  <jackson@ximian.com>
25574         * culture-info-tables.h: Fix number of decimal digits for all
25575         english locales.
25577 2004-04-13  Jackson Harper  <jackson@ximian.com>
25579         * icall.c: Clairfy out of sync error message. It is not always
25580         your corlib that is out of sync.
25582 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25584         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25585         properties when only the set accessor is overriden. Fixes #55874.
25587 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25589         * assembly.c (mono_assembly_load_references): Make this thread safe.
25590         Fixes #56327.
25592 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25594         * monosn.c: Add missing initialization calls.
25596 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25598         * locales.c:
25599         ves_icall_System_Globalization_CultureInfo_construct_number_format
25600         Fix g_assert so it compiles on fussier compilers re int/ptr
25601         mismatch
25603 2004-04-08  Dick Porter  <dick@ximian.com>
25605         * socket-io.h:
25606         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25607         53992.  Also rearrange the code so that the internal calls return
25608         an error value and exceptions are thrown from managed code.
25610         * icall.c: Add type info to the socket icalls.
25612 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25614         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25615         owes me a beer.
25617 2004-04-07  Martin Baulig  <martin@ximian.com>
25619         * class.c (mono_class_from_generic_parameter): Don't default
25620         `klass->parent' to `mono_defaults.object_type'.
25622 2004-04-07  Martin Baulig  <martin@ximian.com>
25624         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25625         `param->pklass->reflection_info'.       
25627 2004-04-07  Jackson Harper  <jackson@ximian.com>
25629         * culture-info-tables.h: Fix date separator symbol.
25630         
25631 2004-04-07  Martin Baulig  <martin@ximian.com>
25633         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25634         from System.Type to System.MonoType.
25636 2004-04-07  Martin Baulig  <martin@ximian.com>
25638         * reflection.h
25639         (MonoReflectionGenericParam): Added `has_reference_type' and
25640         `has_value_type' fields.
25642         * reflection.c (mono_image_get_generic_param_info): Encode the
25643         correct flags if we have the `class' or `struct' constraint.
25645 2004-04-07  Martin Baulig  <martin@ximian.com>
25647         * reflection.h
25648         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25650 2004-04-07  Jackson Harper  <jackson@ximian.com>
25652         * appdomain.c: Revert extra patches, just wanted to bump the
25653         version number.
25654         
25655 2004-04-07  Jackson Harper  <jackson@ximian.com>
25657         * Makefile.am: Add culture-info private headers.
25658         * icall.c: Add new icalls for contructing locales.
25659         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25660         * locales.h: Declare new culture info construction methods.
25661         * object.h: Add new fields used to avoid the CultureMap to
25662         MonoCultureInfo.
25663         * culture-info.h: Definition of structs used in the culture info
25664         tables.
25665         * culture-info-tables.h: Autogenerated tables that contain culture
25666         info data. This file was generated with the locale-builder tool.
25667         * appdomain.c: Incement corlib version number.
25668         
25669 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25671         * appdomain.c: (mono_runtime_init) move mono_thread_init
25672         to before mono_object_new calls so critical sections
25673         are initialized before use.
25675 2004-04-07  Martin Baulig  <martin@ximian.com>
25677         * icall.c
25678         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25679         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25680         (ves_icall_MonoGenericParam_initialize): Removed.
25681         (monogenericparam_icalls): Removed.
25682         (generictypeparambuilder_icalls): Added new table for
25683         System.Reflection.Emit.GenericTypeParameterBuilder.
25685         * reflection.c
25686         (mono_reflection_define_generic_parameter): Removed.
25687         (mono_reflection_initialize_generic_parameter): This is now called
25688         from GenericTypeParameterBuilder's .ctor.
25690 2004-04-06  Martin Baulig  <martin@ximian.com>
25692         * class.c (mono_class_init): Don't inflate nested classes in a
25693         generic instance.
25694         (mono_type_get_name_recurse): Include the generic arguments for
25695         generic instances and generic type declarations.
25696         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25697         (_mono_class_get_instantiation_name): Removed.
25698         (mono_class_create_generic): Always use `gklass->name' as our name.
25700         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25702         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25703         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25704         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25705         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25706         closed generic methods here.
25708         * reflection.c
25709         (mono_reflection_generic_inst_get_nested_types): Removed.
25710         (inflate_mono_method): Copy the generic parameters from the
25711         MonoMethodHeader into out MonoGenericMethod.
25713 2004-04-06  Martin Baulig  <martin@ximian.com>
25715         * row-indexes.h
25716         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25718         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25720         * reflection.c (build_compressed_metadata): If we have any entries
25721         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25722         set the header version to 1.1.
25724 2004-04-06  Martin Baulig  <martin@ximian.com>
25726         * class.c (mono_class_init): If we're a generic instance,
25727         initialize our nested classes, too.
25728         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25729         suffix. 
25731 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25733         * process.c: quote the argument passed to the shell on windows.
25735 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25737         * threads.c (mono_alloc_special_static_data): Allow this to be
25738         called during startup.
25740 2004-04-02  Martin Baulig  <martin@ximian.com>
25742         * icall.c
25743         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25745 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25747         * icall.c: Fix build.
25749 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25751         * Makefile.am: Added security.c|h.
25752         * icall.c: Added icall for get_UserName;
25753         * security.c: New file for security related icalls. Added function
25754         get_UserName for System.Environment (fix #56144).
25755         * security.h: New. Header file for security.c
25757 2004-04-02  Dick Porter  <dick@ximian.com>
25759         * icall.c: Deleted the icalls that were obsoleted some time ago
25760         by the ICU string code, and which were mixed into the icall
25761         rearranging.  Fixes bug 55969.
25763         * string-icalls.h: 
25764         * string-icalls.c: Deleted the code that those icalls reference.
25766 2004-04-01  Martin Baulig  <martin@ximian.com>
25768         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25770         * class.c (mono_class_from_generic_parameter): Don't set 
25771         TYPE_ATTRIBUTE_INTERFACE.
25772         (my_mono_class_from_generic_parameter): Likewise.
25774 2004-04-01  Martin Baulig  <martin@ximian.com>
25776         * loader.c (find_method): Added an optional `MonoClass *ic'
25777         argument to search in a specific interface.
25778         (mono_get_method_constrained): New public function.
25780 2004-04-01  Martin Baulig  <martin@ximian.com>
25782         * reflection.c (mono_image_get_generic_field_token): Use the
25783         `handleref' cache here.
25785 2004-04-01  Martin Baulig  <martin@ximian.com>
25787         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25789         * reflection.c (create_generic_typespec): Use the `typespec' hash
25790         here, not the `typeref' one.    
25792 2004-04-01  Martin Baulig  <martin@ximian.com>
25794         * class.c (mono_class_inflate_generic_type): Moved the
25795         functionality into a new static inflate_generic_type() which
25796         returns NULL if it didn't do anything.  Only increment the
25797         `mono_stats.inflated_type_count' if we actually inflated
25798         something.
25799         (mono_class_get_full): Check the classes type to see whether we
25800         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25802 2004-04-01  Jackson Harper  <jackson@ximian.com>
25804         * reflection.c: Set culture for assembly references.
25805         
25806 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25808         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25810 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25812         * assembly.c:
25813         (do_mono_assembly_open): the critical section also covers
25814         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25816 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25818         * threads.c:
25819         (mono_manage_threads): abort the background threads when finishing.
25820         Fixes bug #47232.
25822 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25824         * gc.c: only close the done_event handle if there was no timeout.
25825         C-ified comments.
25827 2004-03-30  Martin Baulig  <martin@ximian.com>
25829         * icall.c (icall_entries): It's called "System.Activator", not
25830         "System.Activation".    
25832 2004-03-30  Martin Baulig  <martin@ximian.com>
25834         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25835         (mono_class_create_from_typespec): Likewise.
25837 2004-03-30  Martin Baulig  <martin@ximian.com>
25839         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25840         `has_ctor_constraint' and `initialized'.
25842 2004-03-30  Martin Baulig  <martin@ximian.com>
25844         * reflection.c (encode_new_constraint): New static function to add
25845         the constructor constraint attribute to a type parameter.
25846         (encode_constraints): Call encode_new_constraint() if necessary.
25848         * reflection.h
25849         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25851         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25852         
25853 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25855         * reflection.c, icall.c: add support for pinning variables. 
25857 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25859         * marshal.c (mono_marshal_get_managed_wrapper):
25860         init bool local with zero rather than null.
25862 2004-03-29  Martin Baulig  <martin@ximian.com>
25864         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25865         the "official" behavior here.
25866         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25868 2004-03-29  Martin Baulig  <martin@ximian.com>
25870         * icall.c: Reflect latest API changes.
25872 2004-03-29  Martin Baulig  <martin@ximian.com>
25874         * loader.c (mono_get_method_from_token): Also call
25875         mono_metadata_load_generic_params () for abstract and interface
25876         methods; replace the type arguments in the method signature with
25877         the ones which are loaded from the metadata.
25879 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25881         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25882         of the lock is not the current thread. MS.NET don't do it, in spite of
25883         what the documentation says. See bug #56157.
25885 2004-03-28  Martin Baulig  <martin@ximian.com>
25887         * class.c (mono_class_init): Don't call init_properties() and
25888         init_events() for generic instances; set `prop->parent' when
25889         inflating properties.
25891         * reflection.c (mono_generic_inst_get_object): Call
25892         `mono_class_init (ginst->klass)'.
25893         (mono_type_get_object): Only create a MonoGenericInst if your
25894         generic type is a TypeBuilder.
25895         (do_mono_reflection_bind_generic_parameters): Only set
25896         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25898 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25900         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25901         Fixes #56091.
25903 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25905         * icall.c: added Kill_internal icall.
25906         * process.[ch]: added Kill_internal icall.
25908 2004-03-25  Martin Baulig  <martin@ximian.com>
25910         * class.h (MonoStats): Added `generic_instance_count',
25911         `inflated_method_count', `inflated_type_count' and
25912         `generics_metadata_size'.       
25914 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25916         * reflection.c: no warnings now.
25918 2004-03-25  Martin Baulig  <martin@ximian.com>
25920         * class.c (mono_class_get_full): New public function; does a
25921         mono_class_get(), but also takes a `MonoGenericContext *'.
25923         * loader.c (mono_field_from_memberref): Renamed to
25924         `field_from_memberref', made static and added `MonoGenericContext *'
25925         argument.
25926         (mono_field_from_token): Added `MonoGenericInst *' argument.
25927         (method_from_memberef): Likewise.
25928         (mono_get_method_from_token): Likewise.
25929         (mono_get_method_full): New public function; does a
25930         mono_get_method(), but also takes a `MonoGenericContext *'.
25932         * verify.c (mono_method_verify): Get the method's generic context
25933         and pass it to mono_field_from_token(), mono_get_method_full() and
25934         mono_class_get_full().
25936 2004-03-25  Martin Baulig  <martin@ximian.com>
25938         * class.c (mono_class_inflate_generic_type): Take a
25939         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25940         `MonoGenericMethod *'.
25942 2004-03-25  Martin Baulig  <martin@ximian.com>
25944         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25945         instead of the MonoGenericMethod here.
25947 2004-03-25  Martin Baulig  <martin@ximian.com>
25949         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25950         each time we create a new MonoGenericInst, we also create a new
25951         context which points back to us.
25953         * class.c (inflate_method): Use `ginst->context' instead of
25954         creating a new context.
25956         * loader.c (method_from_memberref): Use
25957         `klass->generic_inst->context' instead of creating a new context.
25959 2004-03-25  Martin Baulig  <martin@ximian.com>
25961         * class.h (MonoGenericContext): New struct.
25962         (MonoGenericMethod): Removed `generic_inst'.
25964         * class.c (mono_class_inflate_generic_method): Take a
25965         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
25967 2004-03-25  Martin Baulig  <martin@ximian.com>
25969         * loader.h (MonoMethodInflated): New typedef.
25971         * metadata.h (MonoMethodSignature): Removed `gen_method', make
25972         `generic_param_count' consume just 30 bits, added `is_inflated'
25973         and `has_type_parameters' flags (one bit each).
25975         * class.c (mono_class_inflate_generic_method): Create a
25976         MonoMethodInflated instead of a MonoMethodNormal and set
25977         `is_inflated' in the method signature.
25979         * class.h (MonoGenericMethod): Removed `generic_method'.
25981 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
25983         * image.c: Make sure the name of a MonoImage is always an absolute path.
25984           This fixes bug #54415.
25986 2004-03-24  Martin Baulig  <martin@ximian.com>
25988         * class.c (mono_class_setup_vtable): If we're a generic instance,
25989         use our generic type's vtable size.
25991 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
25993         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
25994         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
25995         problems.
25997 2004-03-23  Martin Baulig  <martin@ximian.com>
25999         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26000         `MonoEvent *events'.
26002         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26003         (typebuilder_icalls): Added "get_event_info"; calls
26004         mono_reflection_event_builder_get_event_info(). 
26006         * reflection.c (mono_reflection_generic_inst_initialize): Added
26007         `MonoArray *events'.
26008         (mono_reflection_event_builder_get_event_info): New function.
26010 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26012         * object.h: add mono_type_initialization_init
26014         * object.c (mono_runtime_class_init): 
26015         implement class constructor synchronization rules
26016         to cope with threading issues.  
26017         add mono_type_initialization_init
26019         * appdomain.c (mono_runtime_init): call 
26020         mono_type_initialization_init
26022         * class.h: removing initializing field from MonoVTable
26024 2004-03-23  Martin Baulig  <martin@ximian.com>
26026         * class.c (my_mono_class_from_generic_parameter): Use
26027         `param->name' if it's not NULL. 
26029 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26031         * class.c: do not insert non-virtual methods in the vtable.
26032         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26033         that means the method is non-virtual. This never would have
26034         happened before.
26036 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26038         * profiler.c: Added lock for accessing coverage_hash.
26040 2004-03-22  Martin Baulig  <martin@ximian.com>
26042         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26043         `method->method->signature->generic_param_count != 0' to make it
26044         work for interface methods.
26046 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26048         * process.c: quote the string passed to the shell using g_shell_quote.
26050 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26052         * threads.c:
26053         (mono_threads_manage): don't remove the finalizer thread and self
26054         from the threads hash table so that mono_thread_manage can be called
26055         more than once.
26057 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26059         * process.c: quote the arguments when UseShellExecute is true. Fixes
26060         bug #55790.
26062 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26064         * threads.c: set mono_thread_detach as a cleanup routine for every
26065         thread. This way it's always executed upon thread termination, either
26066         aborted or finished normally. No more xsp hangs!
26068 2004-03-17  Martin Baulig  <martin@ximian.com>
26070         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26071         `int count_nested' and a `MonoType **nested'.
26073         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26074         most of the functionality into a new static
26075         do_mono_reflection_bind_generic_parameters() and don't take a
26076         `MonoType *nested_in' argument any more.  Don't compute nested
26077         types here.
26078         (mono_reflection_generic_inst_get_nested_types): New public method
26079         to get nested types.
26081         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26082         we're a nested class.
26084         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26085         mono_reflection_generic_inst_get_nested_types() to compute the
26086         nested types.
26088 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26090         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26091         descriptive error message under windows.
26092         
26093 2004-03-17  Martin Baulig  <martin@ximian.com>
26095         * class.c (dup_type): Added `const MonoType *original' argument;
26096         copy the attrs from the original type.
26098 2004-03-17  Martin Baulig  <martin@ximian.com>
26100         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26101         `m->generic_inst_cache' here.
26103 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26105         * exception.h exception.c: Add stack_overflow_exception.
26107 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26109         * threadpool.c:
26110         (overlapped_callback): call SetEvent *after* invoking the callback.
26111         No need to call CloseHandle.
26113 2004-03-16  Martin Baulig  <martin@ximian.com>
26115         * reflection.c (mono_image_get_fieldref_token): Take a
26116         `MonoReflectionField *' instead of a `MonoClassField *' and a
26117         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26119 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26121         * appdomain.c: don't add the culture to the filename we're looking for
26122         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26124 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26126         * locales.c: don't ignore symbols when doing case insensitive compares.
26127         Thanks Dick! Fixes bug #54046.
26129         * threads.c: surround 'threads' usage with enter/leave in
26130         mono_thread_manage.
26132 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26134         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26135         implicitly marshalled as [Out]. Fixes #55450.
26137         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26138         an exception.
26140 2004-03-16  Martin Baulig  <martin@ximian.com>
26142         * class.c (mono_class_from_generic_parameter): Use the actual
26143         parameter name. 
26145 2004-03-16  Martin Baulig  <martin@ximian.com>
26147         * reflection.c (type_get_signature_size): New static function.
26148         Compues the size of the type in a method signature.
26149         (method_get_signature_size): New static function; calls
26150         type_get_signature_size() to compute the actual size of the
26151         method's signature.
26152         (method_encode_signature): Use method_get_signature_size() to get
26153         the signature's size rather than using `nparams * 10'.
26155 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26157         * file-io.h: define here WapiOverlapped on windows. I don't want the
26158         regular OVERLAPPED one.
26160         * file-io.c:
26161         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26162         Disabling AIO on windows.
26164 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26166         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26167         bug #55385.
26169 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26171         * appdomain.c: upgraded corlib version.
26173         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26174         and BeginWrite. Allow opening files for asynchrnous operations.
26176         * file-io.h: new struct that maps FileStreamAsyncResult.
26177         * icall.c: added new icalls.
26178         * process.[ch]: support setting child process environment variables
26179         and use the SHELL or COMSPEC when UseShellExecute is true.
26181         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26182         callback for async. IO is here and also BindHandle.
26184         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26185         from here.
26187 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26189         * reflection.c (create_custom_attr): Allow len == 0.
26191         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26192         computation on big-endian machines.
26194 2004-03-13  Martin Baulig  <martin@ximian.com>
26196         * class.h (MonoGenericInst): Added `int count_ifaces'.
26198         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26199         `ginst->count_ifaces' instead `klass->interface_count' since we
26200         may get called before the vtable is created.
26202         * loader.c (mono_method_get_param_names): If we're a generic
26203         instance, return and don't initialize the class.
26205         * reflection.c (mono_reflection_setup_generic_class): Don't call
26206         ensure_runtime_vtable().
26207         (mono_reflection_bind_generic_parameters): Set
26208         `ginst->count_ifaces'.
26210 2004-03-11  Jackson Harper <jackson@ximian.com>
26212         * icall.c:
26213         * unicode.c:
26214         * unicode.h: Remove unused System.Char icalls.
26215         
26216 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26218         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26219         code when we P/Invoke the first library in Windows.Forms, instead
26220         of when we first open the assembly.
26222         * assembly.c: Drop the lookup from here.
26224 2004-03-10  Martin Baulig  <martin@ximian.com>
26226         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26227         class for properties, fields and events.  Finally fixes #54945.
26229 2004-03-10  Martin Baulig  <martin@ximian.com>
26231         * metadata.c (mono_metadata_class_equal): New static function;
26232         checks whether two generic instances or two generic parameters are
26233         equal.
26234         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26235         compare classes.        
26237 2004-03-10  Martin Baulig  <martin@ximian.com>
26239         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26241         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26242         argument and write it into the `reflection_info' field.
26244         * icall.c
26245         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26246         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26248 2004-03-09  Jackson Harper  <jackson@ximian.com>
26250         * char-conversions.h: use 8 bits for numeric data its all we need
26251         * icall.c: numeric data is only 8 bits now.
26253 2004-03-09  Martin Baulig  <martin@ximian.com>
26255         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26257         * class.c (init_properties, init_events): Initialize the new
26258         `parent' field.
26260         * reflection.c (typebuilder_setup_properties): Likewise.
26261         (typebuilder_setup_events): Likewise.
26263         * reflection.h (MonoEventInfo): Replaced `parent with
26264         `declaring_type' and `reflected_type'.
26266         * icall.c (ves_icall_get_property_info): Distinguish between
26267         declaring and reflected type.
26268         (ves_icall_get_event_info): Likewise.
26270 2004-03-09  Martin Baulig  <martin@ximian.com>
26272         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26273         (ves_icall_Type_GetField): Correctly set field->klass.
26275 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26277         * loader.h: Fix warning.
26279 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26281         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26282         library routine if present.  Notice that it will still continue
26283         executing even if its missing, for those working on the Gtk#
26284         edition of Windows.Forms.
26286         * assembly.c (do_mono_assembly_open): If loading the
26287         System.Windows.Forms call mono_loader_wini_init.
26289 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26291         * class.h: Added MonoRemoteClass struct.
26292         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26293         function for MonoStrings.
26294         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26295         Added internal call for getting the proxy type.
26296         * marshal.c: Get the type of transparent proxies from its remote_class.
26297         Added methods that generate the IL for type checks and casts:
26298         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26299         mono_marshal_get_proxy_cancast.
26300         * marshal.h: Declaration of the previous new methods.
26301         * object.c: Added new moethods for creating and updating MonoRemoteClass
26302         instances: mono_remote_class, mono_upgrade_remote_class, 
26303         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26304         * verify.c: FIx transparent_proxy_fields layout.
26305         * appdomain.c: Bump corlib version.
26307 2004-03-04  Jackson Harper  <jackson@ximian.com>
26309         * icall.c: Add icall to access char conversion tables.
26310         * char-conversions.h: Character conversion tables.
26311         * Makefile.am: Add char-conversions.h private header file.
26312         
26313 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26315         * appdomain.c (unload_thread_main): Increase unloading timeout to
26316         10 sec as a temporary workaround for Nant problems.
26318 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26320         * gc.c: Add checks for GC_enable and GC_disable.
26322         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26323         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26324         (bug #54988).
26325         
26326 2004-02-27  Martin Baulig  <martin@ximian.com>
26328         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26329         `MonoReflectionType *' instead of a `MonoType *'.
26331 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26333         * gc.c (run_finalize): Avoid finalizing the object representing the
26334         finalizer thread.
26335         (finalizer_thread): Fix warning.
26337 2004-02-25  Martin Baulig  <martin@ximian.com>
26339         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26340         argument for nested types.
26341         (mono_class_create_generic): Added support for nested generictypes.
26343         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26344         `GList *nested'.
26346         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26348         * reflection.c (method_encode_signature): Increase the minimum
26349         value of `size' from 10 to 11.
26350         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26351         and `MonoType **types' arguments instead of the `MonoArray
26352         *types'; added `MonoType *nested_in'.  Recursively instantiate
26353         nested classes. 
26355 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26357         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26358         stack_overflow_ex members which are used by exception handling.
26360         * appdomain.c (mono_runtime_init): Initialize the new members.
26362         * gc.c (mono_gc_enable): New helper function.
26363         * gc.c (mono_gc_disable): New helper function.
26365 2004-02-23  Martin Baulig  <martin@ximian.com>
26367         * icall.c: I must have been really stupid - make it actually work
26368         this time ;-)
26370 2004-02-23  Martin Baulig  <martin@ximian.com>
26372         * loader.c (method_from_memberref): Only inflate the method if
26373         it's in another klass.
26375 2004-02-23  Martin Baulig  <martin@ximian.com>
26377         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26378         (mono_class_init): If we're a generic instance and an interface,
26379         compute `class->interface_id'; also create `class->interfaces'
26380         here and inflate them.
26382         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26383         `ginst->is_open'.
26384         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26386         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26388 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26390         * reflection.c (method_encode_code): Improved the error message
26391         generated by the exception.
26393 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26395         * icall.c: Martin did not do what he said in the ChangeLog for
26396         2004-02-18, but put back the changes for properties and events.
26397         Commenting those changes out again and adding comment to bug #54518.
26398         
26399         * process.c: removed warning.
26401 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26403         * marshal.c (emit_struct_conv): Print an error message instead of
26404         asserting when a type does not have the StructLayout attribute.
26406 2004-02-20  Martin Baulig  <martin@ximian.com>
26408         * reflection.c (mono_type_get_object): Also use the cache for
26409         generic instances.
26410         (mono_reflection_bind_generic_parameters): Always compute
26411         `ginst->ifaces'.        
26413 2004-02-20  Martin Baulig  <martin@ximian.com>
26415         * class.h (MonoGenericMethod): Removed `klass'.
26417         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26418         *klass' argument.
26420 2004-02-20  Martin Baulig  <martin@ximian.com>
26422         * reflection.c (method_encode_methodspec): Actually use the
26423         uninflated signature for the memberref.
26425 2004-02-20  Martin Baulig  <martin@ximian.com>
26427         * class.h (MonoGenericMethod): Removed `declaring'.
26429         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26430         is NULL, compute it here.
26432 2004-02-20  Martin Baulig  <martin@ximian.com>
26434         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26436         * metadata.c (mono_metadata_generic_inst_hash): New method.
26437         (mono_metadata_generic_inst_equal): New method.
26439         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26440         `klass->image->generic_inst_cache' cache to avoid creating
26441         duplicate MonoGenericInst's.
26443         * class.c (mono_class_inflate_generic_type): Use the cache.
26445 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26447         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26449 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26451         * icall.c: added Socket.WSAIoctl icall.
26453         * socket-io.[ch]: implemented
26454         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26456 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26458         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26460 2004-02-18  Urs C Muff  <umuff@quark.com>
26462         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26463         this work on PPC and other big-endian architectures.
26465         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26466         fields with an underscore to make sure they're only accessed by
26467         the read32() macro.
26469 2004-02-18  Martin Baulig  <martin@ximian.com>
26471         * icall.c: Put the klass->refclass changes back for methods and
26472         fields, but not for properties and events.  We're currently not
26473         distinguishing between DeclaringType and ReflectedType for
26474         properties and events, that's what caused the regressions.
26476 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26478         * object.c:
26479         (mono_async_result_new): the handle can be NULL.
26481         * threadpool.c: Use an event instead of a semaphore, don't initialize
26482         it until needed. This saves quite a few semaphores from being created
26483         when using the threadpool.
26485 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
26487         * object.c (mono_string_is_interned_lookup): Fix interning of long
26488         strings. Fixes #54473.
26490         * domain.c (ldstr_equal): Optimize if the two strings are equal.
26492         * icall.c: Revert the klass->refclass changes since they introduce
26493         regressions (bug #54518).
26495 2004-02-18  Martin Baulig  <martin@ximian.com>
26497         * class.c (mono_class_init): If we're a generic instance and don't
26498         come from a TypeBuilder, inflate our members here.
26499         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
26500         (mono_class_create_generic): New public method.
26501         (mono_class_initialize_generic): Removed.
26502         (get_instantiation_name): Renamed to
26503         _mono_class_get_instantiation_name() and made it public.
26505 2004-02-18  Martin Baulig  <martin@ximian.com>
26507         * class.c (mono_class_inflate_generic_type): Clear the new
26508         instance's `nginst->klass' when inflating a generic instance.
26509         (mono_class_is_subclass_of): Added (basic) support for generic
26510         instances.
26512 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
26514         * appdomain.h, domain.c: use a MonoCodeManager instead of a
26515         MonoMempool to hold compiled native code.
26517 2004-02-17  Martin Baulig  <martin@ximian.com>
26519         * class.h (MonoDynamicGenericInst): Added `count_properties' and
26520         `properties'.
26522         * reflection.c (mono_reflection_generic_inst_initialize): Added
26523         `MonoArray *properties' argument.
26525         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
26527 2004-02-17  Martin Baulig  <martin@ximian.com>
26529         * icall.c (ves_icall_Type_GetFields): Renamed to
26530         ves_icall_Type_GetFields_internal() and added a
26531         `MonoReflectionType *rtype' argument; pass it to
26532         mono_field_get_object() to set the field's "reflected" type.
26533         (ves_icall_Type_GetConstructors): Likewise.
26534         (ves_icall_Type_GetEvents): Likewise.
26535         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
26536         argument; pass it to mono_method_get_object() to set the method's
26537         "reflected" type.       
26539 2004-02-17  Martin Baulig  <martin@ximian.com>
26541         * class.h (MonoDynamicGenericInst): New type.
26542         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
26544         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
26545         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
26546         (ves_icall_MonoGenericInst_GetFields): New interncall.
26548         * class.c (mono_class_from_generic): Don't call
26549         mono_class_initialize_generic() if this is a dynamic instance;
26550         ie. it's being created from a TypeBuilder.
26551         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26552         `class->byval_arg.type'.
26554         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26555         to `inflate_method' and made static.
26556         (mono_reflection_inflate_field): Removed.
26557         (mono_reflection_generic_inst_initialize): New public method.
26559         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26560         `ctors' and `fields'; added `initialized'.
26562 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26564         * debug-helpers.c (mono_method_full_name): Fix output for empty
26565         namespaces.
26567 2004-02-12  Martin Baulig  <martin@ximian.com>
26569         * class.h (MonoClassField): Added `MonoType *generic_type'.
26571         * reflection.c (mono_image_get_fieldref_token): Added support for
26572         instantiated generic types.
26573         (field_encode_inflated_field): Removed.
26574         (mono_image_get_inflated_field_token): Removed.
26575         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26577         * reflection.h (MonoReflectionInflatedField): Removed.
26579 2004-02-12  Martin Baulig  <martin@ximian.com>
26581         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26582         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26584         * reflection.c (mono_image_get_methodspec_token): Take a
26585         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26586         (mono_image_create_token): Check whether we have a
26587         `method->signature->gen_method' and call
26588         mono_image_get_methodspec_token() if appropriate.
26589         (inflated_method_get_object): Removed.
26590         (mono_reflection_bind_generic_method_parameters): Return a
26591         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26592         (mono_reflection_inflate_method_or_ctor): Likewise.
26594         * reflection.h (MonoReflectionInflatedMethod): Removed.
26596 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26598         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26599         for custom valuetype marshalling.
26601         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26603 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26605         * icall.c: fixed WSAGetLastError_internal name.
26607 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26609         * threads.c (mono_thread_attach): Allow this to be called multiple
26610         times for a thread.
26611         
26612         * threads.c (build_wait_tids): Do not wait for ourselves.
26614         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26615         appdomain list is empty.
26617         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26618         memory returned by mono_string_builder_to_utf16, since it points into
26619         managed memory. Thanks to Bernie Solomon for noticing this.
26621         * icall.c: Add AppDomainSetup icalls.
26623         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26625         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26626         types.
26628         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26629         custom attributes to the method_aux struct. Also fix array indexes etc.
26631         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26632         
26633 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26635         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26636         (both static and runtime) and reduce startup time.
26638 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26640         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26641         AsAny marshalling conversion instead of crashing.
26643         * marshal.c: Fix warnings.
26645 2004-02-09  Martin Baulig  <martin@ximian.com>
26647         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26649         * reflection.h (MonoReflectionInflatedMethod): Removed the
26650         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26652         * reflection.c (method_encode_methodspec): Removed the `method'
26653         argument; we get it from `gmethod->declaring'.
26654         (inflated_method_get_object): Removed the `declaring' argument.
26656 2004-02-09  Martin Baulig  <martin@ximian.com>
26658         * class.h (MonoGenericMethod): New type.
26659         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26660         `generic_method'.
26662         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26663         a `MonoGenericMethod *gen_method' one.
26665         * class.c (mono_class_inflate_generic_type): Take an additional
26666         `MonoGenericMethod * argument.  This is only non-NULL if we're
26667         inflating types for a generic method.   
26668         (mono_class_inflate_generic_signature): Renamed to
26669         inflate_generic_signature() and made static; take a
26670         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26671         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26672         instead of a `MonoGenericInst *' one.
26673         (mono_class_inflate_generic_method): Likewise.
26675         * reflection.c (encode_generic_method_sig): Take a
26676         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26677         (method_encode_methodspec): Likewise.
26678         (inflated_method_get_object): Likewise. 
26680         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26681         field with a `MonoGenericMethod *gmethod' one.  
26683 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26685         * class.h (mono_class_has_parent): add parens to expansion
26686         so you can ! this.
26688 2004-02-08  Martin Baulig  <martin@ximian.com>
26690         * image.h (MonoImage): Removed `generics_cache'.
26692         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26693         instead of a `MonoType *' argument; removed the `inflate_methods'
26694         argument.  Don't inflate methods here.
26696         * loader.c (find_method): If it's a generic instance, call
26697         mono_class_init() on the `sclass->generic_inst->generic_type'.
26699         * metadata.c (mono_type_size): Make this work on uninitialized
26700         generic instances; call it on the `ginst->generic_type's class.
26702         * reflection.c (mono_reflection_bind_generic_parameters): Call
26703         mono_class_from_generic() to create the `ginst->klass'.
26705 2004-02-08  Martin Baulig  <martin@ximian.com>
26707         * class.h (MonoClass): Changed type of `generic_inst' from
26708         `MonoType *' to `MonoGenericInst *'.
26710 2004-02-08  Martin Baulig  <martin@ximian.com>
26712         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26713         mono_type_get_object(), this is now creating a `MonoGenericInst'
26714         for MONO_TYPE_GENERICINST.
26715         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26716         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26718         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26719         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26720         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26721         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26722         and reflected type.
26724         * reflection.h (MonoReflectionInflatedMethod): Removed
26725         `declaring_type' and `reflected_type'.
26727 2004-02-08  Martin Baulig  <martin@ximian.com>
26729         * class.h (MonoGenericInst): Added `MonoType *parent' and
26730         `MonoType **ifaces'.
26732         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26733         `parent' and `interfaces'.
26735         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26736         `MonoType *' argument and return a `MonoType *'.
26738         * icall.c
26739         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26740         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26742 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26744         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26745         valuetype marshalling.
26747 2004-02-06  Martin Baulig  <martin@ximian.com>
26749         * class.c
26750         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26751         (my_mono_class_from_generic_parameter): Likewise.
26753 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26755         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26756         contents of the symbol files lazily.
26758         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26760         * threads.h threads.c icall.c: New icalls for getting and setting the
26761         threads name.
26763 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26765         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26766         Raise an exception when the domain is not found.
26768 2004-02-03  Martin Baulig  <martin@ximian.com>
26770         * reflection.c (mono_image_get_methodspec_token): Use the
26771         uninflated signature; fixes gen-33.
26773 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26775         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26776         the finalizer code can use thread functionality.
26778         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26779         the finalizer thread.
26781         * threads.c: Make some functions more robust.
26783         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26785         * metadata.h: Add new marshalling conventions.
26787         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26788         stringbuilder marshalling. Fixes #53700.
26790         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26792         * reflection.c (mono_image_get_type_info): Save declarative security
26793         info.
26795         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26796         unmanaged fields as well.
26798         * appdomain.c: Bump corlib version.
26800 2004-02-01  Martin Baulig  <martin@ximian.com>
26802         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26803         method type arguments.  
26805 2004-01-30  Duncan Mak  <duncan@ximian.com>
26807         * marshal.h: Add prototype for
26808         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26809         and
26810         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26811         fix the build.
26813 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26815         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26816         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26818 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26820         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26821         custom marshalling of valuetypes.
26823         * marshal.c: Fix some warnings.
26825 2004-01-29  Martin Baulig  <martin@ximian.com>
26827         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26828         for generic method parameters.
26830         * reflection.c (method_encode_methodspec): Write the uninflated
26831         signature into the methodspec table.
26832         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26833         is always the uninflated method.
26834         (reflection_methodbuilder_to_mono_method): Copy the generic
26835         parameters from the MethodBuilder into `header->gen_params'.
26837 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26839         * class.c (mono_class_from_generic_parameter): Fix warning.
26841 2004-01-27  Martin Baulig  <martin@ximian.com>
26843         * class.c (mono_class_from_generic_parameter): Don't create
26844         `klass->methods' here.  
26846 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26848         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26849         extension since it does not work with libraries named lib<FOO>.dll.so.
26851 2004-01-25  Martin Baulig  <martin@ximian.com>
26853         * class.c (mono_class_inflate_generic_type): Added support for
26854         MONO_TYPE_GENERICINST.
26856         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26857         inflate methods on open constructed types.      
26859 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26861         * object.c: fire ProcessExit event in the root AppDomain after running
26862         Main. Fixes bug #53299.
26864 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26866         * socket-io.c: include the new socket-wrappers.h header.
26867         Use the wrappers instead of the unix socket functions to make the code
26868         more clear.
26870 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26872         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26874         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26875         Fixes #22532.
26877 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26879         * reflection.c (mono_image_create_pefile): Handle the case when the
26880         entry point is not a MethodBuilder.
26882         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26883         field to ReflectionMethod since it is not allways a builder.
26885         * reflection.c (type_get_fully_qualified_name): New helper function to
26886         return the fully qualified name of a type.
26888         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26889         type name for custom marshallers.
26891         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26893         * class.c (mono_class_setup_vtable): If a parent class already 
26894         implements an interface, use the implementing methods from that class.
26895         Fixes #53148.
26897 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26899         * threadpool.c: just return instead of ExitThread to allow for thread
26900         clean up earlier.
26902 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26904         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26905         when closing resource modules.
26907         * reflection.c (mono_image_create_pefile): Handle the case when the
26908         entry point is not a MethodBuilder.
26910         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26911         field to ReflectionMethod since it is not allways a builder.
26913 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26915         * marshal.c (mono_marshal_get_managed_wrapper): 
26916         mono_marshal_alloc takes native int so CONV_I
26917         the arg for 64bits.
26919 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26921         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26922         tokens in the cattr table. Fixes #53108.
26924 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26926         * loader.c: don't trim ".dll" before looking up in the config file.
26927         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26929 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26931         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26932         Return the module which contains the resource as well.
26933         (ves_icall_System_Reflection_Module_Close): New icall.
26935         * appdomain.c: Bump corlib version number.
26937         * image.c (mono_image_addref): New public function.
26939         * assembly.c: Call mono_image_addref.
26941         * reflection.c (mono_module_get_object): Increase reference count of 
26942         the image.
26944         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26945         Fixes #22532.
26947         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26948         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26949         proper exceptions on DllImport problems.
26951 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26953         * class.c, metadata.c: eliminate CSIZE macro.
26955 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
26957         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
26958         * object.h: Added async_callback field in MonoAsyncResult.
26959         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
26960         * verify.c: Added async_callback in MonoAsyncResult layout.
26962 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
26964         * reflection.c (mono_reflection_get_custom_attrs): Add support
26965         for Modules.
26967 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26969         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
26970         marshalling.
26971         (mono_marshal_method_from_wrapper): Add null pointer check.
26973 2004-01-16  Martin Baulig  <martin@ximian.com>
26975         * debug-mono-symfile.h: Set version number to 36 and reflect
26976         latest symbol writer changes.
26978 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26980         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
26981         multi-dimensional arrays.
26982         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
26983         (mono_class_from_mono_type): Use bounded_array_class_get.
26984         
26985         * class.c (mono_bounded_array_class_get): New function which takes
26986         a 'bounded' bool argument to distinguish vectors from one dimensional
26987         arrays.
26989         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
26990         bounded_array_class_get if the array has bounds.
26992         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26993         Search modules loaded using AssemblyBuilder:AddModule as well.
26995 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26997         * appdomain.c: increased corlib version.
26998         * filewatcher.c: removed g_print.
26999         * icall.c:
27000         (get_property_info): only allocate what is actually requested.
27001         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27003 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27005         * Makefile.am: added filewatcher.[ch]
27006         * filewatcher.[ch]: FileSystemWatcher runtime support.
27007         * icall.c: added new FSW icalls.
27009 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27011         * string-icalls.c: fix stringbuilder regression as suggested by
27012         Iain McCoy <iain@mccoy.id.au>.
27014 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27016         * process.c (process_read_stringtable_block): Recognize '007f' as
27017         a language neutral stringtable block.
27019 2004-01-12  Patrik Torstensson
27021         * object.h (MonoStringBuilder) : Changed layout to support our
27022         new stringbuilder class.
27023         * marshal.c: Change marshalling to support the new layout of 
27024         string builder.
27025         * appdomain.c: increased version number because new layout of
27026         string builder.
27028 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27030         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27031         assembly name as an string instead of an AssemblyName, since it is
27032         easier to extract info from it.
27034         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27035         the culture subdirectories too. Fixes #52231.
27037 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27039         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27040         It takes 2 new parameters with an optional name for the method to look
27041         for and case ignoring info.
27043         * threadpool.c: removed unused variable.
27045 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27047         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27048         It takes 2 new parameters with an optional name for the property to look
27049         for and case ignoring info.
27050         Fixes bug #52753.
27052 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27054         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27055         Fix #52451.
27057 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27059         * appdomain.c:
27060         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27061         Fixes bug #52630.
27063 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27065         * reflection.c: Add support for more than one unmanaged resource.
27067         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27068         in field->def_value, as done in all other cases.
27070         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27071         TypeBuilders.
27073         * reflection.c (mono_reflection_create_runtime_class): Remove 
27074         errorneous assignment to klass->element_class, since it is already
27075         done in mono_reflection_setup_internal_class.
27077 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27079         * gc.c: added missing LeaveCriticalSection.
27080         * icall.c: indented a couple of lines.
27081         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27082         if we call EndInvoke inside a callback. Fixes bug #52601.
27084 2004-01-07  Martin Baulig  <martin@ximian.com>
27086         * mono-debug-debugger.h
27087         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27089 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27091         * appdomain.c: Use messages in NotImplementedException.
27093         * exception.c (mono_get_exception_not_implemented): Now this takes
27094         a message argument.
27096         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27097         exception instead of g_asserting an aborting when something is not
27098         implemented.
27100         Add some inline docs.
27102 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27104         * reflection.h: Update after changes to object layout.
27106         * reflection.c: Implement saving of unmanaged aka win32 resources.
27108         * appdomain.c: Bump version number.
27110         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27111         Handle missing domains gracefully.
27113 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27115         * file-io.c : On Windows, there are much more invalid_path_chars.
27117 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27119         * class.h, object.c: prepare for GetType () speedup.
27121 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27123         * profiler.c: workaround for --profile null reference exception on
27124           cygwin. Patch by Patrik Torstensson.
27126 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27128         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27129         make work for unaligned access.
27131 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27133         * class.c: small cleanup (class->fields [i] -> field).
27134         * image.c: check address of metadata is valid.
27136 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27138         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27139         search the list of loaded assemblies.
27141         * reflection.c (mono_reflection_type_from_name): Use 
27142         mono_assembly_loaded instead of mono_image_loaded.
27144         * reflection.c: Fix warnings.
27146 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27148         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27149         is dynamic. This is needed since an assembly can contain both dynamic and
27150         non-dynamic images.
27152         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27153         assembly->dynamic.
27155         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27157         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27158         to store modules loaded using AddModule.
27160         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27161         on Modules.
27163         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27165         * reflection.c (mono_image_fill_export_table_from_module): New function to
27166         fill out the EXPORTEDTYPES table from a module.
27168         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27169         into a separate function. Also handle loaded non-dynamic modules.
27171         * reflection.c (mono_image_basic_init): Fix memory allocation.
27173         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27175         * assembly.c (mono_assembly_load_references): Make this public.
27177 2003-12-19  Martin Baulig  <martin@ximian.com>
27179         * class.c (mono_class_initialize_generic): Made this static, take
27180         a `MonoGenericInst *' instead of a `MonoClass *'.
27181         (mono_class_from_generic): Call mono_class_initialize_generic()
27182         unless we're already initialized or being called from
27183         do_mono_metadata_parse_generic_inst().
27185         * class.h (MonoGenericInst): Added `initialized' and
27186         `init_pending' flags.
27188         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27189         `mono_class_init (gklass)' or mono_class_initialize_generic()
27190         here; set `generic_inst->init_pending' while parsing the
27191         `type_argv'.
27193 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27195         * locales.c: include string.h for memxxx prototypes
27197 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27199         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27200         constructor when accessing literal fields.
27202 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27204         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27206         * reflection.c (assembly_add_resource_manifest): New function to fill
27207         the MANIFESTRESOURCE table.
27209         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27211         * reflection.h: Update to changes in class layout.
27213         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27214         Reenable call to mono_runtime_is_shutting_down ().
27216         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27217         determine if the runtime is shutting down.
27219 2003-12-16  Jackson Harper <jackson@ximian.com>
27221         * icall.c: comment out call to mono_runtime_is_shutting_down to
27222         fix build.
27223         
27224 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27226         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27227         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27229 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27231         * reflection.c: move definition of swap_with_size
27232         to before its first call
27234 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27236         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27238         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27239         icall.
27241         * object.c: Fix warnings.
27243         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27244         members if FlattenHierarchy is set.
27246         * reflection.c (mono_image_add_decl_security): New function to emit
27247         declarative security.
27249         * reflection.h reflection.c: Add support for declarative security.
27251         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27252         
27253 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27255         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27256         
27257         * appdomain.c verify.c: Moved corlib version checking into its own
27258         function in appdomain.c since it needs to create vtables etc.
27260 2003-12-13  Patrik Torstensson <p@rxc.se>
27262         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27263         instead of unwrapped server.
27265 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27267         * verify.c (check_corlib): Fix field index.
27269 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27271         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27272         GetGacPath icall.
27274 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27276         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27277         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27278         cope with sizeof(size_t) != sizeof(guint32).
27280 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27282         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27283         in case of failure.
27285 2003-12-10  Mark Crichton <crichton@gimp.org>
27287         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27288         in managed code.
27290         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27292 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27294         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27295         marked as deleted.
27297 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27299         * verify.c (check_corlib): Handle the case when the version field is 
27300         initialized by a static constructor.
27302 2003-12-08  Patrik Torstensson  <p@rxc.se>
27304     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27306 2003-12-08  Martin Baulig  <martin@ximian.com>
27308         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27309         a MonoReflectionGenericParameter, also take the parameter index
27310         and name as arguments.
27311         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27312         (ves_icall_MonoGenericParam_initialize): New interncall.
27313         (ves_icall_Type_make_byref_type): New interncall.
27315         * reflection.h (MonoReflectionGenericParam): Derive from
27316         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27317         `index' fields.
27319         * reflection.c (mono_reflection_define_generic_parameter): Create
27320         and return a new MonoReflectionGenericParam; don't initialize the
27321         constraints here.
27322         (mono_reflection_initialize_generic_parameter): New public method;
27323         initializes the constraints and creates the `param->pklass'.
27325 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27327         * reflection.h reflection.c: Use the new fields 'num_types', 
27328         'num_fields' and 'num_methods' to track the number of types etc.
27330         * verify.c (check_corlib): Check corlib version number.
27332 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27334         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27335         function works on all methods.
27337 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27339         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27340         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27341         the custom_type_info flag of the transparent proxy.
27342         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27343         objects that supports IRemotingTypeInfo.
27344         * object.h: Added custom_type_info field in transparent proxy.
27346 2003-12-06  Martin Baulig  <martin@ximian.com>
27348         * class.c (mono_class_create_from_generic): Removed.
27349         (mono_class_from_generic): Check `ginst->klass' before doing
27350         anything else.  This is important to fully support "recursive"
27351         generic types.
27353         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27354         empty `generic_inst->klass' before doing anything else.
27356 2003-12-06  Dick Porter  <dick@ximian.com>
27358         * verify.c: 
27359         * object.h:
27360         * icall.c:
27361         * locales.c: Use C structs to access class fields.  Don't do a
27362         conversion between MonoString and UChar because both are
27363         platform-endian UTF-16.  Compare now takes startindex and count
27364         parameters.  Add a char overload for IndexOf.  Speed up the
27365         invariant string IndexOf.
27367 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27369         * Makefile.am (monosn_LDADD): Fix parallel build.
27371 2003-12-04  Martin Baulig  <martin@ximian.com>
27373         * icall.c
27374         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27375         (ves_icall_Type_make_array_type): New interncall.       
27377 2003-12-04  Martin Baulig  <martin@ximian.com>
27379         * locales.c: also change it in the !HAVE_ICU case.
27381 2003-12-04  Dick Porter  <dick@ximian.com>
27383         * icall.c:
27384         * locales.c: construct_compareinfo is now in CompareInfo, not
27385         CultureInfo.
27387 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27389         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27390         image->files array.
27392         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27393         table as well.
27395         * assembly.c (mono_assembly_load_references): Only load references
27396         once.
27398         * class.c (mono_class_from_name): Avoid linear search of the 
27399         EXPORTEDTYPE table.
27401         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27403 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27405         * image.h (MonoImage): Add 'field_cache' field.
27407         * loader.c (mono_field_from_token): Cache field lookups.
27408         
27409         * reflection.c (mono_module_get_object): Fix name property.
27411         * icall.c (ves_icall_get_enum_info): Update after changes to 
27412         mono_metadata_get_constant_index ().
27414         * icall.c: Get rid of get_type_info icall, use a separate icall for
27415         each type property to avoid needless memory allocations. Fixes #51514.
27417         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27418         to avoid needless binary searches.
27420         * class.c (class_compute_field_layout): Move the initialization of
27421         field->def_value to mono_class_vtable ().
27423         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27424         non-corlib types.
27426         * object.c (mono_object_allocate): Make it inline.
27428         * object.c (mono_object_allocate_spec): Make it inline.
27429         
27430 2003-12-02  Dick Porter  <dick@ximian.com>
27432         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27433         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27435 2003-12-01  Dick Porter  <dick@ximian.com>
27437         * threads.c: Fix signature and call in CreateMutex and
27438         CreateEvent.
27440 2003-12-01  Dick Porter  <dick@ximian.com>
27442         * icall.c: 
27443         * locales.c: Implement string compares and searching
27445         * object.h: Add extra Thread field
27447 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27449         * reflection.c (fixup_method): Add support for MonoCMethod.
27451 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27453         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27455         * reflection.c (assembly_name_to_aname): Allow extra characters in
27456         assembly names. Fixes #51468.
27458 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27460         * exception.c (mono_exception_from_name_domain): New helper function.
27462         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27463         exception object in the correct domain.
27465         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27466         formatting + make a copy a the input data.
27468         * loader.c (mono_get_method_from_token): Methods which contain
27469         native code do not have entries in the ImplMap.
27471         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
27472         Thanks to Gonzalo for spotting this.
27473         
27474         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
27475         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
27477         * assembly.h (mono_assembly_load_from): Split the second part of 
27478         assembly loading into a new public function.
27480         * exception.h (mono_get_exception_bad_image_format): New function.
27482 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
27484         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27485         Enumerate all modules inside a dynamic assembly. Fixes #51293.
27486         
27487         * icall.c: Add new icall for creating dynamic methods.
27489         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
27491         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
27493         * reflection.c (mono_reflection_create_dynamic_method): New icall to
27494         create a dynamic method.
27496         * reflection.c (resolve_object): New helper function.
27498         * reflection.c: Generalize ReflectionMethodBuilder and the functions
27499         which manipulate it so they can also work on dynamic methods.
27501         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
27502         creating the MonoReflectionMethodAux structure if it is not needed.
27503         
27504         * reflection.h verify.c: Update after changes to object layout.
27506         * reflection.c (method_builder_encode_signature): Fix compilation on
27507         gcc 2.95.x.
27509 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
27511         * appdomain.h: Added support for context static fields. Added static_data
27512           field to MonoAppContext and renamed thread_static_fields to a more
27513           generic special_static_fields in MonoAppDomain, since it can now contain
27514           context static fields.
27515         * domain.c: Updated hashtable name.
27516         * object.c: Replaced field_is_thread_static() for a more generic
27517           field_is_special_static() which also checks for context static attribute.
27518           In mono_class_vtable(), added support for static context fields.
27519         * threads.c: Changed methods that manage thread static fields to more
27520           generic methods so they can be reused both for thread and context static
27521           data.
27522         * threads.h: Declared some new methods.
27524 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
27526         * reflection.h: Update after changes to the managed types.
27528         * reflection.c (encode_custom_modifiers): New helper function.
27530         * reflection.c (method_encode_signature): Emit custom modifiers.
27532         * reflection.c (field_encode_signature): Emit custom modifiers.
27534 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
27536         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
27538         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
27539         implementation.
27541         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
27542         icall.
27544         * object.c (mono_field_get_value_object): New function.
27546         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
27547         specific.
27549 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
27551         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27552         return a preallocated out-of-memory exception instance.
27554         * object.c (out_of_memory): Use the new function.
27556         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27557         flag is before the custom modifiers. Fixes #49802.
27559 2003-11-16  Martin Baulig  <martin@ximian.com>
27561         * class.c (mono_class_is_open_constructed_type): Implemented the
27562         MONO_TYPE_GENERICINST case.
27564 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27566         * assembly.c (mono_assembly_fill_assembly_name): New function to
27567         fill out the MonoAssemblyName structure.
27568         (mono_assembly_open): Use the new function.
27570         * icall.c (fill_reflection_assembly_name): New helper function.
27572         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27573         new function.
27575         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27577 2003-11-15  Martin Baulig  <martin@ximian.com>
27579         * class.c (mono_class_is_open_constructed_type): New public
27580         function; checks whether a type is an open constructed type,
27581         ie. whether it still contains type parameters.
27582         (mono_class_inflate_generic_type): If we're a type parameter and
27583         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27584         type.
27586         * class.h (MonoGenericInst): Added `guint32 is_open'.
27588         * loader.c (method_from_methodspec): Check whether we're an open
27589         or closed constructed type and set `ginst->is_open'.
27591         * reflection.c (mono_reflection_bind_generic_parameters): Check
27592         whether we're an open or closed constructed type and set
27593         `ginst->is_open'.
27594         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27595         from open constructed types.
27597 2003-11-15  Martin Baulig  <martin@ximian.com>
27599         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27600         a generic instance (instead of a generic type declaration) with
27601         unbound generic parameters, bind them to our actual types.
27603 2003-11-14  Martin Baulig  <martin@ximian.com>
27605         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27607         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27608         an interface type, populate `res->interfaces' with instantiated
27609         versions of all the interfaces we inherit.
27611 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27613         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27614         when MONO_PATH is set but doesn't contain the install dir.
27616 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27618         * icall.c:
27619         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27620         it's also implemented in base classes. Fixes bug #50927.
27622 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27624         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27625         if this method is called from a finalizer. Fixes #50913.
27627 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27629         * threads.c: Implement VolatileRead/VolatileWrite
27631         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27633 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27635         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27636         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27637         2.95.3.
27639         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27640         from Peter Ross (pro@missioncriticalit.com).
27641         
27642 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27644         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27646 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27648         * assembly.c (mono_assembly_load_references): Disable check because it
27649         triggers on older corlibs which lots of people have.
27651 2003-11-12  Jackson Harper  <jackson@ximian.com>
27653         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27654         load corlib.dll if mscorlib.dll is not found.
27655         * assembly.h: Remove corlib name define.
27656         * class.c:
27657         * domain.c:
27658         * image.c: Change corlib name to mscorlib.
27659         
27660 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27662         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27664 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27666         * appdomain.h: Added loader_optimization here to sync with the C#
27667         code, and add disallow_binding_redirects field.
27669 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27671         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27673         * reflection.c (mono_image_build_metadata): Fix crash on modules
27674         with no types.
27676         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27678         * icall.c (ves_icall_get_method_info): Return callingConvention as
27679         well.
27681         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27682         namespaces from the EXPORTEDTYPE table as well.
27684         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27685         from all modules inside the assembly.
27686         
27687 2003-11-11  Martin Baulig  <martin@ximian.com>
27689         * reflection.c (mono_reflection_bind_generic_parameters): Make
27690         this work for interfaces.
27692 2003-11-11  Martin Baulig  <martin@ximian.com>
27694         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27696 2003-11-11  Martin Baulig  <martin@ximian.com>
27698         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27699         "MonoInflatedMethod" and "MonoInflatedCtor".
27701 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27703         * reflection.c (resolution_scope_from_image): Use the assembly table
27704         from the manifest module, since other modules don't have it.
27706         * debug-helpers.c (mono_type_full_name): New helper function.
27708         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27710         * image.c (mono_image_load_file_for_image): New public function which
27711         is a replacement for the load_file_for_image in class.c.
27713         * assembly.c (mono_assembly_load_module): A wrapper for the function
27714         above which does assembly association and reference loading too.
27716         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27718 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27720         * appdomain.c: not all of the attributes for the full assembly name
27721         are required and the order doesn't matter. Fixes bug #50787.
27723 2003-11-10  Dick Porter  <dick@ximian.com>
27725         * locales.c: Use platform-endian UTF16
27727 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27729         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27730         
27731 2003-11-10  Martin Baulig  <martin@ximian.com>
27733         * metadata.c
27734         (mono_metadata_load_generic_params): Make this actually work.
27736         * reflection.c (mono_reflection_bind_generic_parameters): If our
27737         parent is a generic instance, pass all the `types' to it, no
27738         matter whether it has the same number of type parameters or not.
27740 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27742         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27744         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27745         assignment code to this function so it gets called recursively for all
27746         modules.
27748         * image.c (load_modules): Remove the assembly assignment since it is
27749         now done by mono_assembly_load_references.
27750         
27751         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27752         Add 'module' argument.
27753         (mono_module_get_types): New helper function.
27754         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27756 2003-11-08  Martin Baulig  <martin@ximian.com>
27758         * class.c (mono_class_inflate_generic_method): Interface method
27759         don't have a header.
27761         * reflection.c (mono_image_get_methodspec_token): Take an
27762         additional `MonoGenericInst *' argument instead of reading it from
27763         the header; this is necessary to support interfaces.
27764         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27765         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27766         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27767         argument.
27769         * reflection.h (MonoReflectionInflatedMethod): Added
27770         `MonoGenericInst *ginst'.
27772 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27774         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27776 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27778         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27780 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27782         * reflection.c 
27783         (reflection_methodbuilder_from_method_builder):
27784         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27785         initialize a ReflectionMethodBuilder structure.
27786         (mono_image_get_methodbuilder_token):
27787         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27788         tokens which point to types in another module inside the same assembly.
27790         * reflection.c: Use the new helper functions.
27791         
27792         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27794         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27795         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27797         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27798         neccesary.
27800         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27801         current module. Emit the manifest only for the main module.
27803         * reflection.c (mono_image_create_token): Add assertion when a 
27804         memberref needs to be created.
27806         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27808         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27809         larger buffer for the custom attribute blob. Fixes #50637.
27810         
27811 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27813         * threadpool.c: notify listener on async processing handles after
27814         invoking the async callback. Thanks to Zoltan.
27816 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27818         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27819         avoid code duplication.
27821         * reflection.h (MonoDynamicImage): New type which is currently unused,
27822         but will be used through the ref.emit code in place of 
27823         MonoDynamicAssembly.
27825         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27826         object layout.
27828         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27829         a MonoDynamicImage instead of just a MonoImage.
27830         
27831         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27832         icalls to ModuleBuilder but keep their semantics, so they will work
27833         with moduleb->assemblyb. This will change later.
27834         
27835 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27837         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27838         object layout.
27840         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27841         main module, since it is now done by the managed code.
27843 2003-11-03  Martin Baulig  <martin@ximian.com>
27845         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27846         `ginst->klass' here.
27847         (method_encode_methodspec): Don't use the `ginst->generic_method's
27848         klass if it's a generic instance, use `ginst->klass' in this case.
27850 2003-11-03  Martin Baulig  <martin@ximian.com>
27852         * reflection.c (mono_image_get_generic_method_param_info):
27853         Removed, use mono_image_get_generic_param_info() instead.
27854         (mono_image_get_type_info): Write the GenericParam table before
27855         the Method table.  This is neccessary because in the GenericParam
27856         table, type parameters of the class (ie. '!0' etc.) must come
27857         before the ones from its generic methods (ie. '!!0' etc).
27859 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27861         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27863 2003-11-02  Martin Baulig  <martin@ximian.com>
27865         * reflection.c (create_generic_typespec): Take a
27866         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27867         the generic parameters from it.
27869 2003-11-02  Martin Baulig  <martin@ximian.com>
27871         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27872         instead of a `MonoClassField *' since we just need the type.
27873         (create_generic_typespec): New static function.  Creates a
27874         TypeSpec token for a generic type declaration.
27875         (mono_image_get_generic_field_token): New static function.
27876         (mono_image_create_token): If we're a FieldBuilder in a generic
27877         type declaration, call mono_image_get_generic_field_token() to get
27878         the token.
27880 2003-11-02  Martin Baulig  <martin@ximian.com>
27882         * reflection.h
27883         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27884         `MonoReflectionGenericInst *declaring_type' and
27885         `MonoReflectionGenericInst *reflected_type' fields.
27887         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27888         `MonoReflectionGenericInst *declaring_type' and a
27889         `MonoReflectionGenericInst *reflected_type' argument instead of a
27890         single `MonoReflectionGenericInst *type' one.  Set
27891         `res->declaring_type' and `res->reflected_type' from them.
27892         (mono_reflection_inflate_field): Likewise.      
27894 2003-11-02  Martin Baulig  <martin@ximian.com>
27896         * class.c (mono_class_setup_vtable): Don't store generic methods
27897         in the vtable.  
27899 2003-11-02  Martin Baulig  <martin@ximian.com>
27901         * reflection.h (MonoReflectionGenericInst): Added
27902         `MonoReflectionType *declaring_type'.
27904         * reflection.c (mono_reflection_bind_generic_parameters): Use
27905         `if (tb->parent)' instead of `klass->parent'.
27907 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27909         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27910         with an empty ASSEMBLY table.
27912         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27913         variable in the inner and outer loops.
27915 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27917         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27918         argument.
27920         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27921         
27922         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27923         icalls. Instead, do everything in managed code. This is needed since
27924         it is hard to restore the original domain etc. in unmanaged code in the
27925         presence of undeniable exceptions.
27927         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27928         New icalls to push and pop appdomain refs.
27930 2003-10-31  Martin Baulig  <martin@ximian.com>
27932         * class.c (inflate_generic_type): Renamed to
27933         mono_class_inflate_generic_type() and made it public.
27935         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27936         New interncall.
27938         * loader.c (mono_field_from_memberref): Also set the retklass for
27939         typespecs.
27941         * fielder.c (mono_image_get_inflated_field_token): New static
27942         method; creates a metadata token for an inflated field.
27943         (mono_image_create_token, fixup_method): Added support for
27944         "MonoInflatedField".
27945         (fieldbuilder_to_mono_class_field): New static function.
27946         (mono_reflection_inflate_field): New public function.
27948         * reflection.h
27949         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27950         (MonoReflectionInflatedField): New typedef.     
27952 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27954         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27955         for Solaris and other platforms without s6_addr16
27957 2003-10-30  Martin Baulig  <martin@ximian.com>
27959         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
27960         argument instead of two.
27961         (mono_class_inflate_generic_signature): Likewise.
27962         (inflate_generic_header): Likewise.
27963         (mono_class_inflate_generic_method): Likewise.  In addition, if
27964         `ginst->klass' is set, it becomes the new `method->klass'.
27966         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
27967         field.
27969         * reflection.c (encode_generic_method_sig): Write a 0xa as the
27970         first byte. [FIXME]
27971         (method_encode_methodspec): If we have generic parameters, create
27972         a MethodSpec instead of a MethodRef.
27973         (fixup_method): Added support for "MonoInflatedMethod" and
27974         "MonoInflatedCtor".
27975         (mono_image_create_token): Added support for "MonoInflatedMethod"
27976         and "MonoInflatedCtor".
27977         (inflated_method_get_object): New static function; returns a
27978         managed "System.Reflection.MonoInflatedMethod" object.
27979         (mono_reflection_bind_generic_method_parameters): Return a
27980         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
27981         (mono_reflection_inflate_method_or_ctor): Likewise.
27982         (mono_image_get_generic_method_param_info): Initialize unused
27983         fields to zero.
27984         (mono_image_get_generic_param_info): Likewise.
27986         * reflection.h (MonoReflectionInflatedMethod): New public
27987         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
27988         "S.R.MonoInflatedCtor" classes.
27990         * loader.c (method_from_memberref): If we're a TypeSpec and it
27991         resolves to a generic instance, inflate the method.
27993 2003-10-28  Dick Porter  <dick@ximian.com>
27995         * object.c (mono_runtime_run_main): Convert command-line arguments
27996         into utf8, falling back to the user's locale encoding to do so.
27998 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28000         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28001         at this time.
28003         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28005         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28006         up icalls at method definition time. Partially fixes #33569.
28008 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28010         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28011         marshalling of arrays. Fixes #50116.
28013         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28015         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28016         points to a vtable in the dying appdomain.
28018         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28019         listeners into unmanaged code inside the lock.
28021         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28022         domains and add some comments.
28024 2003-10-25  Martin Baulig  <martin@ximian.com>
28026         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28028         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28030         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28031         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28032         currently parsing.  Create the generic class and store it in
28033         `generic_inst->klass' before parsing the type arguments.  This is
28034         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28035         for an example.
28036         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28037         to support recursive typespec entries.
28039         * class.c (mono_class_setup_parent): If our parent is a generic
28040         instance, we may get called before it has its name set.
28041         (mono_class_from_generic): Splitted into
28042         mono_class_create_from_generic() and mono_class_initialize_generic().
28044 2003-10-25  Martin Baulig  <martin@ximian.com>
28046         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28047         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28048         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28049         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28051         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28052         (create_typespec): Likewise.
28053         (mono_reflection_bind_generic_parameters): Return a
28054         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28055         (mono_reflection_inflate_method_or_ctor): New public function.
28057         * reflection.h (MonoReflectionGenericInst): New typedef.        
28059 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28061         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28062         inside the domain lock. Fixes #49993.
28063         
28064         * object.c (mono_class_vtable): When typed allocation is used, 
28065         allocate vtables in the GC heap instead of in the mempool, since the
28066         vtables contain GC descriptors which are used by the collector even
28067         after the domain owning the mempool is unloaded.
28069         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28071         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28072         reflect what it does. Also invalidate mempools instead of freeing
28073         them if a define is set.
28075         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28076         of the appdomain.
28077         
28078         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28079         hold the finalizable objects in this domain.
28081         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28082         appdomain.
28084         * appdomain.c (mono_domain_set): New function to set the current
28085         appdomain, but only if it is not being unloaded.
28087         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28088         appdomain which is being unloaded.
28089         
28090         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28091         unloading of the root appdomain.
28093         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28094         icall to execute a method in another appdomain. Intended as a 
28095         replacement for InternalSetDomain, which can confuse the code 
28096         generation in the JIT.
28098         * appdomain.c (mono_domain_is_unloading): New function to determine
28099         whenever an appdomain is unloading.
28101         * appdomain.c (mono_domain_unload): New function to correctly unload
28102         an appdomain.
28104         * assembly.c (mono_assembly_load_references): Check that an assembly
28105         does not references itself.
28107         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28108         domain manually, it asks the finalizer thread to do it, then waits for
28109         the result. Also added a timeout.
28111         * icall.c: Register the new icalls.
28113         * threads.h threads.c: Export the mono_gc_stop_world and 
28114         mono_gc_start_world functions.
28115         
28116         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28117         function to fill out the mempool with 0x2a.
28119 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28121         * reflection.h (MonoReflectionMethodAux): New structure to store
28122         information which is rarely used, thus is not in the MonoMethod
28123         structure.
28125         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28126         store the aux info.
28128         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28129         and marshalling info into the aux structure.
28131         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28132         from the aux structure.
28134         * loader.c (mono_method_get_param_names): Retrieve the param names from
28135         the aux structure.
28136         
28137 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28139         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28140         warning.
28142 2003-10-21  Dick Porter  <dick@ximian.com>
28144         * socket-io.c
28145         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28146         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28148 2003-10-21  Martin Baulig  <martin@ximian.com>
28150         * reflection.c (mono_reflection_bind_generic_parameters):
28151         `klass->parent' is NULL for interfaces.
28153 2003-10-21  Martin Baulig  <martin@ximian.com>
28155         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28157 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28159         * exception.c (mono_exception_from_name_msg): New helper function for
28160         creating exceptions and initializing their message field.
28162         * exception.c: Simplify functions using the new helper.
28164         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28165         New function.
28167         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28168         mono_raise_exception, since otherwise gcc doesn't generate the function
28169         epilog for raise_exception, confusing the stack unwinding in the JIT.
28170         Fixes #45043.
28172         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28173         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28174         Fixes #49499.
28176 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28178         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28179         utf8.
28181 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28183         * icall.c: Removed GetUninitializedObject method because
28184           AllocateUninitializedClassInstance does the same.
28186 2003-10-18  Martin Baulig  <martin@ximian.com>
28188         * class.c (inflate_generic_signature): Renamed to
28189         mono_class_inflate_generic_signature() and made it public.
28190         (my_mono_class_from_generic_parameter): New static function; if we
28191         don't already have the generic parameter's MonoClass, create a
28192         very simple one which is just used internally in the runtime and
28193         not passed back to managed code.
28195         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28197         * metadata.h (MonoMethodSignature): Moved the
28198         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28199         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28201         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28202         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28203         interncall on the MonoMethod class, not on MethodInfo.
28204         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28205         calling mono_reflection_bind_generic_method_parameters() directly.
28207         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28208         return the already computed `method->signature'.
28209         (method_from_methodspec): New static function to load a method
28210         from a MethodSpec entry.
28211         (mono_get_method_from_token): Call the new method_from_methodspec()
28212         for MethodSpec tokens.  
28213         (mono_get_method_from_token): If we're a generic method, load the
28214         type parameters.
28216         * reflection.c (mono_image_get_memberref_token): Allow
28217         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28218         table.
28219         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28220         (mono_image_create_token): First check whether it's a generic
28221         method (so we'd need to create a MethodSpec), then do the other
28222         two alternatives.
28223         (mono_reflection_bind_generic_method_parameters): Return a
28224         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28225         called directly from the interncall.
28227 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28229         * reflection.c (load_public_key): Move loading of the public key
28230         into managed code.
28232         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28234         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28235         fields.
28237         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28238         culture, hash_alg and public_key. Fixes #49555.
28240 2003-10-17  Martin Baulig  <martin@ximian.com>
28242         * class.h (MonoGenericInst): Moved this declaration here and added
28243         `MonoMethod *generic_method'.
28245         * icall.c
28246         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28247         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28249         * metadata.c (mono_metadata_type_equal): Two types of
28250         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28251         index; ie. don't compare the address of the `MonoGenericParam'
28252         structure.
28253         (mono_metadata_load_generic_params): Removed the `MonoMethod
28254         *method' argument.
28256         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28257         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28259         * reflection.c (method_encode_signature): Encode the number of
28260         generic parameters.
28261         (encode_generic_method_sig): New static function.
28262         (method_encode_methodspec): New static function; creates an entry
28263         in the MethodSpec table for a generic method.
28264         (mono_image_get_methodspec_token): New static function.
28265         (mono_image_create_token): Call mono_image_get_methodspec_token()
28266         for generic methods.
28267         (mono_reflection_bind_generic_method_parameters): New public
28268         function.  Instantiates a generic method.
28270 2003-10-16  Martin Baulig  <martin@ximian.com>
28272         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28273         *gen_params' here from MonoMethodHeader.
28275         * metadata.c (mono_metadata_parse_method_signature): If we have
28276         generic parameters, initialize `method->gen_params' and then set
28277         the correct `type->data.generic_param' in all the parameters.
28279 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28281         * threads.c (mono_threads_get_default_stacksize): New function to 
28282         return the default stacksize.
28284         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28285         termination of the finalizer thread, since the previous method had
28286         race conditions. Fixes #49628.
28288         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28289         as for the other managed threads.
28291 2003-10-16  Martin Baulig  <martin@ximian.com>
28293         * class.c (inflate_generic_signature): Copy `generic_param_count'
28294         and `gen_params'.
28296         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28297         New interncall.
28299         * metadata.c (mono_metadata_parse_method_signature): Actually set
28300         the `method->generic_param_count' here.
28301         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28303 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28305         * object.h: Add a new field to TypedRef to simplify the implementation
28306         of the REFANY opcodes in the JIT.
28308         * icall.c: Make use of the new field.
28310         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28311         dynamically.
28313 2003-10-15  Martin Baulig  <martin@ximian.com>
28315         * class.c (mono_class_from_gen_param): Renamed to
28316         mono_class_from_generic_parameter() and moved most of the
28317         functionality from mono_reflection_define_generic_parameter()
28318         here; ie. we create a "real" class here.
28319         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28320         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28321         previously been called.
28323         * class.h (MonoGenericParam): Moved the declaration of this struct
28324         here from metadata.h and added `MonoMethod *method'.
28326         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28327         interncall.
28329         * loader.c (mono_get_method_from_token): If we have any generic
28330         parameters, call mono_metadata_load_generic_params() to read them
28331         from the MONO_TABLE_GENERICPAR.
28333         * metadata.c (mono_metadata_load_generic_params): Added
28334         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28336         * metadata.h (MonoMethodSignature): Replaced
28337         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28338         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28340         * reflection.c (mono_reflection_define_generic_parameter): Moved
28341         most of the functionality into the new
28342         mono_class_from_generic_parameter(); set the `method' field if
28343         we're a method parameter.       
28345 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28347         * marshal.c (emit_struct_conv): if native size is 0
28348         emit no code.
28350 2003-10-14  Martin Baulig  <martin@ximian.com>
28352         * icall.c: The generics API has changed in the spec since it was
28353         added to System.Type; these modifications make it match the spec
28354         again.
28355         (ves_icall_Type_GetGenericParameters): Renamed to
28356         `ves_icall_Type_GetGenericArguments'.
28357         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28358         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28359         `ves_icall_MonoType_get_HasGenericArguments'.
28360         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28361         `ves_icall_MonoType_get_IsGenericParameter'.
28362         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28363         this is no interncall anymore.
28364         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28365         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28367 2003-10-14  Martin Baulig  <martin@ximian.com>
28369         * reflection.c (mono_reflection_bind_generic_parameters): Also
28370         inflate generic methods if we're reading the class from IL.
28372 2003-10-13  Martin Baulig  <martin@ximian.com>
28374         * reflection.c (mono_reflection_define_generic_parameter): This
28375         method isn't called directly from the icall anymore; take a
28376         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28377         method generic parameters.
28378         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28379         (method_builder_encode_signature): Encode generic parameters.
28380         (mono_image_get_method_info): Write generic params to the
28381         MONO_TABLE_GENERICPARAM table.
28383         * reflection.h (MonoReflectionMethodBuilder): Added
28384         `MonoArray *generic_params'.
28386         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28388         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28389         wrapper for mono_reflection_define_generic_parameter().
28390         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28392 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28394         * marshal.h: Add missing function to fix build.
28396         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28397         the SetLastError pinvoke attribute.
28399         * marshal.c (mono_marshal_set_last_error): New helper function called
28400         by the generated code.
28401         
28402         * marshal.c (mono_mb_emit_branch): New helper function.
28404         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28406         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28407         classes as parameters and return values of delegates. Fixes #29256. 
28409 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28411         * locales.c: use gint32 in non HAVE_ICU case
28413 2003-10-11  Martin Baulig  <martin@ximian.com>
28415         * mono-debug.c (mono_debug_add_method): Added a workaround for
28416         bug #48591.
28418 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28420         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28421         delegates passed to native code must use the STDCALL calling 
28422         convention. Fixes #35987.
28424 2003-10-10  Martin Baulig  <martin@ximian.com>
28426         * class.c (inflate_generic_type): If we're inflating for a generic
28427         type instance (and not for a generic method), return
28428         MONO_TYPE_MVAR unchanged.
28430 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28432         * string-icalls.c: Join ignores null strings in the source array.
28433         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28434         * threads.c: GetAvailableTheads is slightly more accurate.
28436 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28438         * threads.h threads.c : add mono_threads_set_default_stacksize
28439         and pass default to CreateThread calls.
28441 2003-10-09  Dick Porter  <dick@ximian.com>
28443         * icall.c:
28444         * locales.h:
28445         * locales.c: Internal calls for constructing CultureInfo and
28446         related objects from libicu (if its available.)
28448 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28450         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28452 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28454         * threadpool.c: added an argument to async_invoke_thread that is the
28455         item to process, pass the MonoAsyncResult to the thread start function
28456         when creating a new thread. This way we don't need to acquire any lock
28457         when we're creating a new thread. Readded a semaphore for faster
28458         response times (instead of that Sleep i added).
28460 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28462         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28463         get daylight change dates better on Windows, fix handling
28464         of platforms without tm_gmtoff.
28466 2003-10-06  Martin Baulig  <martin@ximian.com>
28468         * class.c (inflate_generic_method): Renamed to
28469         mono_class_inflate_generic_method() and made public.
28470         (mono_class_init): Don't inflate the generic methods here.
28471         (mono_class_from_generic): Added `gboolean inflate_methods'
28472         argument.  Inflate the methods here.
28474         * loader.c (mono_method_get_param_names): Ignore instances of
28475         generic types for the moment.
28477         * reflection.c (fixup_method): Added support for inflated methods.
28478         (mono_image_create_token): Use mono_image_get_methodref_token()
28479         for inflated methods.
28480         (mono_custom_attrs_from_param): Ignore instances of generic types
28481         for the moment.
28482         (mono_reflection_bind_generic_parameters): New public function.
28483         Moved all the functionality from
28484         ves_icall_Type_BindGenericParameters() here and added support for
28485         dynamic types.
28486         (mono_reflection_define_generic_parameter): Initialize
28487         `klass->methods' here.
28489         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
28490         functionality into mono_reflection_define_generic_parameter().
28491         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
28492         TypeBuilder, return that TypeBuilder.
28494 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28496         * appdomain.c: removed mono_delegate_semaphore.
28498         * threadpool.c:
28499         (mono_thread_pool_add): moved hash table creation inside and the thread 
28500         creation outside of the critical region.
28501         (mono_thread_pool_finish): removed obsolete code.
28502         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
28503         continue or exit the thread depending on the queue.
28505 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
28507         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
28508         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
28509         handle more bool marshalling options
28511 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
28513         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
28514         arrays of structs. Also add a more descriptive error message when
28515         a structure member is marshalled as LPArray.
28517 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
28519         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28520         marshalling arrays of complex types. Fixes #29098. Also remove an
28521         usused and incomplete function.
28523 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28525         * gc.c: report heap_size - free_bytes as total memory allocated
28526         (bug#49362).
28528 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
28530         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
28531         fix timezone handling problems on Windows.
28532         
28533         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
28534         asserts when the year is outside the range handled by ms the functions.
28536         * class.c (setup_interface_offsets): If the class is an interface,
28537         fill out its interface_offsets slot.
28539 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28541         * threadpool.c: mark threadpool threads as background.
28543 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
28545         * decimal.c - define DECINLINE to nothing if not using GCC
28547 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
28549         * assembly.c: More refcount fixes.
28551 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28553         * string-icalls.c: if we're not trimming, return the same string.
28554         When not splitting, don't create a new string.
28556 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28558         * image.c:
28559         (mono_image_open): increment the ref_count inside the critical section.
28561 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28563         * image.c (mono_image_open): Fix reference counting bug.
28565 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28567         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28568         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28569         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28570         mono_lookup_pinvoke_call throws.        
28572 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28574         * reflection.c (mono_reflection_parse_type): Fix #49114.
28576         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28577         temporary workaround for cygwin header problem.
28579         * object.c (mono_object_isinst): Synchronize this with the code
28580         generated by the JIT for casts.
28582 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28584         * reflection.c (encode_type): Fix #38332.
28586 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28588         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28589         the original method from the wrapper method.
28591 2003-09-25  Martin Baulig  <martin@ximian.com>
28593         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28594         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28595         (ves_icall_Type_get_IsGenericInstance): New interncall.
28597 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28599         * object.c: fix cast warning in big endian code.
28601 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28603         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28604         
28605 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28607         * assembly.c: don't call check_env from mono_assembly_load. It's
28608         already done once in mono_assemblies_init and may cause headaches when
28609         multiple threads are loading assemblies.
28611 2003-09-19  Martin Baulig  <martin@ximian.com>
28613         * reflection.c (mono_reflection_define_generic_parameter): Don't
28614         allocate `klass->methods', set `klass->flags' to
28615         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28617 2003-09-18  Martin Baulig  <martin@ximian.com>
28619         * class.c (mono_class_init): Don't create `class->methods' if it's
28620         already initialized.
28622         * metadata.c (mono_metadata_load_generic_params): Make this
28623         actually work.
28625         * reflection.c (mono_reflection_define_generic_parameter): Set
28626         parent class and interfaces from the constraints.
28628         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28629         to keep this struct in sync with the declaration in TypeBuilder.cs.
28631 2003-09-17  Martin Baulig  <martin@ximian.com>
28633         * metadata.h (MonoType): Replaced the data's `int type_param'
28634         field with `MonoGenericParam *generic_param'.
28635         (MonoGenericParam): Added `MonoClass *klass'.
28637         * class.c (mono_class_from_gen_param): Removed the
28638         `MonoImage *image' and `int type_num' arguments.
28640         * metadata.c (mono_metadata_parse_generic_param): New static
28641         method; creates a MonoGenericParam which just contains the index.
28642         (do_mono_metadata_parse_type): Call
28643         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28644         MONO_TYPE_MVAR.
28646         * reflection.c (mono_image_typedef_or_ref): Generic type
28647         parameters may be in the same assembly, but never use a typedef
28648         for them.
28649         (mono_reflection_define_generic_parameter): We're now creating a
28650         "real" class for the type parameter; it's now safe to call
28651         mono_class_from_mono_type() on the class'es type, it'll do the
28652         right thing.
28654 2003-09-16  Martin Baulig  <martin@ximian.com>
28656         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28657         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28658         the `symfile' data structure must be fully initialized before it
28659         gets added to the table.
28661 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28663         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28665         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28666         class init trampolines.
28668 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28670         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28671         to the built-in profiler to turn off time and allocation profiling
28672         respectively.
28674 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28676         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28677         g_direct_equal.
28679         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28680         in human readable form.
28682 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28684         * reflection.c icall.c: Fixed warnings.
28686         * image.c (load_class_names): Use a temporary hash table to hold the
28687         namespaces in order to avoid doing many string comparisons.
28689         * image.h: Fix typo.
28691         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28692         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28693         since the NULL case is short-circuited inside g_hash_table_lookup, 
28694         leading to better performance.  
28696         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28697         obtain the first custom attribute for a given index. Depends on the
28698         CustomAttribute table being sorted by the parent field.
28700         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28701         for better performance.
28703 2003-09-07  Martin Baulig  <martin@ximian.com>
28705         * class.c (mono_class_init): If we're a generic instance, inflate
28706         all our methods instead of loading them from the image.
28707         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28709 2003-09-07  Martin Baulig  <martin@ximian.com>
28711         * mono-debug-debugger.c: Added support for constructors.
28713 2003-09-06  Martin Baulig  <martin@ximian.com>
28715         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28716         New interncall.
28718         * reflection.c (mono_reflection_setup_generic_class): Call
28719         ensure_runtime_vtable() to create the vtable.
28721 2003-09-05  Martin Baulig  <martin@ximian.com>
28723         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28724         MONO_TYPE_MVAR.
28726 2003-09-04  Martin Baulig  <martin@ximian.com>
28728         * reflection.c (mono_reflection_define_generic_parameter): Generic
28729         parameters start with zero.
28731 2003-09-04  Martin Baulig  <martin@ximian.com>
28733         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28735         * reflection.h (MonoReflectionGenericParam): New typedef.
28736         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28737         the generic parameters from the managed TypeBuilder.
28739         * reflection.c (mono_reflection_define_generic_parameter): New function.
28740         (mono_reflection_create_runtime_class): Encode generic parameters.
28741         (mono_reflection_setup_generic_class): New function; this is
28742         called after adding adding all generic params to the TypeBuilder.
28743         (encode_type): Added MONO_TYPE_VAR.
28745 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28747         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28748         here from the JIT.
28750         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28751         load hook.
28753 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28755         * reflection.h reflection.c class.h class.c: Delete duplicate 
28756         definition of mono_type_get_name () from reflection.c and export the
28757         one in class.c.
28759         * class.c: Class loading fixes from Bernie Solomon 
28760         (bernard@ugsolutions.com).
28762         * reflection.c: Endianness fixes from Bernie Solomon 
28763         (bernard@ugsolutions.com).
28764         
28765 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28767         * assembly.h assembly.c: Define a file format version for AOT
28768         libraries.
28769         
28770         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28772         * appdomain.h (MonoJitInfo): New field to determine whenever the
28773         code is domain neutral.
28774         
28775 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28777         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28779 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28781         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28782         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28783         Avoid caching the result since strings must be domain specific. Fixes
28784         #48050.
28786 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28788         * marshal.c (mono_marshal_init): Make this callable multiple times
28789         since it is hard to find a correct place to call it.
28791         * object.c (mono_runtime_class_init): Execute static constructors in
28792         the correct appdomain.
28794         * image.c (build_guid_table): Handle the case when multiple images have
28795         the same GUID.
28797 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28799         * icall.c: added a couple of icalls for System.Web.
28801 2003-08-28  Martin Baulig  <martin@ximian.com>
28803         * icall.c (ves_icall_Type_BindGenericParameters): Use
28804         `klass->generic_inst' instead of `&klass->byval_arg' in the
28805         mono_type_get_object() call.  The returned type must be
28806         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28808 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28810         * NOTES: New file.
28812         * object.c (mono_class_proxy_vtable): Make it thread safe.
28814         * pedump.c: Fix warning.
28816         * object.c appdomain.h: Get rid of metadata_section. 
28817         It is no longer needed and it was causing deadlocks with domain->lock.
28819         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28821 2003-08-26  Martin Baulig  <martin@ximian.com>
28823         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28825 2003-08-26  Martin Baulig  <martin@ximian.com>
28827         * pedump.c (main): Call mono_metadata_init(),
28828         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28829         and mono_loader_init().
28831 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28833         * loader.h: Add missing include to fix build.
28835         * image.h: mono_image_load_references is no more.
28837         * assembly.c: Reworked assembly loading to make it really thread safe.
28838         After these changes, the assembly returned by mono_assembly_open is
28839         fully initialized, i.e. all its references assemblies are loaded.
28841         * assembly.c (mono_image_load_references): Renamed to 
28842         mono_assembly_load_references, and made private, since clients no
28843         longer need to call it.
28845         * class.c: Removed calls to mono_assembly_load_references, since it was
28846         a source of deadlocks.
28848         * loader.h loader.c class.h class.c: Protect data structures using a 
28849         new lock, the loader lock.
28851         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28852         GPtrArrays only when needed.
28854         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28855         into empty structures by mcs. Fixes pinvoke7.cs.
28856         
28857         * domain.c (mono_init): Call a new initialization function.
28859         * appdomain.c (mono_runtime_init): Call the new initializer function
28860         of the marshal module.
28862         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28863         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28865         * marshal.h marshal.c: Added locks around the wrapper caches to make
28866         this module thread safe.
28868         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28869         this argument. Fixes pinvoke1.exe.
28871 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28873         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28874         enumeration of values. Removed fields to store remote call output values in
28875         MonoAsyncResult. Not needed any more.
28876         * object.c: Initialize call_type and async_result fields in mono_message_init.
28877         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28878         dispatching the message.
28879         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28880         async call to finish. To do it use a message with EndInvoke call type.
28882 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28884         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28885         determines whenever a method has marshalling info.
28887 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28889         * assembly.c: fix the build on windows.
28891 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28893         * object.cs: Fixed bug #47785.
28895 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28897         * string-icalls.c (StringReplace): If their are no occurances of
28898         the old string found return a reference to the supplied
28899         string. This saves some memory and matches MS behavoir.
28900         
28901 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28903         * socket-io.c: fixed compilation for systems that define AF_INET6
28904         and don't define SOL_IP/SOL_IPV6.
28906 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28908         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28909         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28911         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28913         * domain.c: Make this module thread safe.
28915         * domain.c (mono_init): Call new initialization function.
28917         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28918         reference types too. Fixes #38812.
28920         * image.c (mono_image_init): Fixed warnings.
28922         * class.c (mono_class_from_typeref): Handle assembly load failure
28923         correctly.
28925         * appdomain.c (add_assemblies_to_domain): Handle the case when
28926         the references of an assembly are not yet loaded.
28928         * metadata.c image.c assembly.c: Moved initialization of global
28929         variables to a separate function called at startup since lazy 
28930         initialization of these variables is not thread safe.
28931         
28932         * image.c assembly.c: Made this module thread safe by adding locks in 
28933         the appropriate places.
28935         * domain.c (mono_init): Call the new initialization functions of the
28936         three modules.
28938 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28940         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28941           make a direct call. It is proxy's work to make the call asynchronous.
28942           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28943           the return values.
28944         * object.cs: mono_method_call_message_new(): read AsyncResult and
28945           state object from parameters list, if this info is requested.
28946         * object.h: Added fields to store remote call output values in
28947           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28949 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28951         * object.h: add needed fields to MonoThread.
28952         * threads.c, threads.h: allow registering a function to cleanup data
28953         allocated per thread by the JIT.
28955 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28957         * loader.h: portability fix by Bernie Solomon
28958         * <bernard@ugsolutions.com>.
28960 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
28962         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
28963         return a MonoArray. This simplifies the code and also ensures that
28964         the cache allways contains an object reference as a value.
28966         * icall.c (ves_icall_get_parameter_info): Simplified using the new
28967         function.
28969 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28971         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
28972         fixes a problem with byte ordering when getting the address family for
28973         a socket.
28975 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
28977         * .cvsignore: Added monosn.
28979         * reflection.h reflection.c loader.c: Added support for parameter
28980         marshalling to dynamically created types. Fixes #47295.
28982 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
28984         * rand.c: remove useless warnings.
28986 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28988         * class.c: implemented ldtoken for methods and fieldrefs.
28990 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28992         * threadpool.c: when mono_async_invoke was called, no one took care of
28993         monitoring the queue. So if the method invoked took some time and we
28994         got new async invoke requests after 500 ms (the thread created waited
28995         that long in WaitForSingleObject), the new async invoke was not called
28996         until the previous one finished.
28998         This is fixed now. Thanks to Totte for helping with it.
29000 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29002         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29004 2003-08-11  Martin Baulig  <martin@ximian.com>
29006         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29008 2003-08-06  Martin Baulig  <martin@ximian.com>
29010         * mono-debug-debugger.c: Added support for static fields,
29011         properties and methods.
29013 2003-08-06  Martin Baulig  <martin@ximian.com>
29015         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29016         make this work for applications with multiple application domains.
29018 2003-08-04  Martin Baulig  <martin@ximian.com>
29020         * mono-debug-debugger.c: Completely reworked the type support; the
29021         most important thing is that we're now just using one single
29022         `MonoType' instance per type.
29024 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29026         * mono-endian.h, mono-endian.c, icall.c: Added icall
29027         ves_icall_System_Double_AssertEndianity to assert double word endianity
29028         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29030 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29032         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29033         support, icalls and fixes.
29035 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29037         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29038         classes that are a punctuation character in .NET is not the same a
29039         g_unichar_ispunct.
29041 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29043         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29045 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29047         * icall.c: Add new MemCopy internalcall.
29048         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29049         Simplified code; It is not necessary to handle all the cases here,
29050         as the C# code takes care of it.  Only handle the case of the name
29051         resource embedded into the assembly.
29053         Changed signature to return the data pointer and the size of the
29054         data. 
29056 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29058         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29059         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29061 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29063         * socket-io.c: ignore EINTR error in select.
29065 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29067         * class.h, class.c: removed unused subclasses field in MonoClass.
29069 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29071         * icall.c: improve fix of get_base_definition(). If the parent class
29072           doesn't have the mehod, look at the parent of the parent.
29073         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29074           to check if a parameter is an in or out parameter
29075           (PARAM_ATTRIBUTE_IN is not set by default).
29076           mono_method_return_message_restore(): Use mono_class_value_size to
29077           get the size of a value type. mono_type_stack_size (parameterType)
29078           does not return the correct value if parameterType is byRef.
29079           mono_load_remote_field(), mono_load_remote_field_new(),
29080           mono_store_remote_field(), mono_store_remote_field_new():
29081           raise exception if the remote call returns an exception.
29083 2003-07-28  Martin Baulig  <martin@ximian.com>
29085         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29086         method.  This is a wrapper around mono_runtime_invoke() which
29087         boxes the instance object if neccessary.
29089 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29091         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29092         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29094 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29096         * icall.c: disable mcs bug workaround.
29098 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29100         * object.c (mono_runtime_class_init): Take the metadata_section
29101         mutex before obtaining the domain mutex.
29103         * appdomain.h: Added definition of metadata_section mutex here. 
29105         * object.c: define metadata_mutex here.
29107 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29109         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29110         fixed.
29112 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29114         * reflection.c: Fix bug #46669
29116 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29118         * exception.c:
29119         * exception.h:
29120         * icall.c:
29121         * object.h: fill in the type name for TypeLoadException.
29123 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29125         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29126         relationship between TypeBuilders while compiling corlib) and bug
29127         45993 (Array types returned from the runtime while compiling
29128         corlib were from the loaded corlib).
29130 2003-07-22  Martin Baulig  <martin@ximian.com>
29132         * mono-debug-debugger.c: Reworked the type support a bit more;
29133         distinguish between types and classes.
29135 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29137         * icall.c: add IsArrayImpl icall.
29139 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29141         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29142         initializing real_size only once. Also fix bug #46602.
29144 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29146         * object.c: Renamed mono_metadata_section to metadata_section.
29148 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29150         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29151           empty array if the type is an array. Fixed.
29152           ves_icall_MonoMethod_get_base_definition: if the base method
29153           is abstract, get the MethodInfo from the list of methods of
29154           the class.
29155         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29156           and it was 1-based. Fixed in mono_param_get_objects.
29158 2003-07-20  Martin Baulig  <martin@ximian.com>
29160         * mono-debug.h: Set version number to 31.
29161         (mono_debug_init): Added `MonoDomain *' argument.
29163         * mono-debug-debugger.c: Reworked the type support; explicitly
29164         tell the debugger about builtin types; pass the `klass' address to
29165         the debugger.
29167 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29169         * image.c: Allow new metadata tables to be loaded without a
29170         warning. Also update the warning message to give the new constant value.
29171                 
29172 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29174         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29175         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29176         array type representation changes.
29178 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29180         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29181         on Environment.Exit () call.
29183 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29185         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29186         requires a matching corlib.
29188 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29190         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29191           Committed again without the CRs.
29192         
29193 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29195         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29196           getting it from the "this" socket instance. Did not work
29197           if the socket is a subclass of Socket.
29198           Also fixed bug #35371.
29200 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29202         * metadata.c: fixed size for TypedByRef.
29203         * loader.c: when searching for a method, consider the vararg amrker.
29204         * unicode.c, decimal.c: constify some arrays.
29206 2003-07-15  Dick Porter  <dick@ximian.com>
29208         * socket-io.c: Fixed compilation for gcc < 3.2.
29210         Fixed compilation for machines that don't have AF_INET6 (thanks to
29211         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29213         Fixed compile warnings.
29214         
29215         Fixed formatting and line endings.
29217 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29219         * socket-io.h:
29220         * socket-io.c: Added IPv6 support.
29222 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29224         * class.c (mono_class_is_assignable_from): New function to implement
29225         the is_assignable_from logic. Used by mono_object_isinst, 
29226         Type::IsAssignableFrom () and the interpreter.
29228         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29229         Object, even interfaces.
29230         
29231         * object.c (mono_object_isinst): Implement in terms of 
29232         is_assignable_from.
29234         * icall.c (ves_icall_type_is_assignable_from): New icall.
29236 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29238         * domain.c (foreach_domain): fix compiler warning.
29240 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29242         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29243         not available on all plattforms
29245 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29247         * image.h image.c: Store the metadata version string in MonoImage.
29248         * icall.c: New icall to retrieve the image version.
29249         * reflection.c (create_dynamic_image): Fill in the image version field
29250         * reflection.c (build_compressed_metadata): Use the image version
29251         from the image structure.
29253 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29255         * appdomain.c: modified comment.
29256         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29257         That will be its last iteration when mono_gc_cleanup is called from
29258         mono_runtime_cleanup and before the domain is unloaded.
29260         Fixes bug #45962.
29262 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29264         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29265         attributes.
29267 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29269         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29270         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29271         Bernie Solomon <bernard@ugsolutions.com>.
29273 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29275         * object.c, object.h: provide mono_object_new_fast() for faster
29276         allocation in some special cases.
29278 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29280         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29281         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29283 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29285         * threadpool.c: fix leaks.
29287 2003-07-01  Dick Porter  <dick@ximian.com>
29289         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29290         using MonoGHashTables.  Fixes threadpool bug posted to list.
29292 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29294         * image.h, image.c: added support to load an assembly from a byte array.
29295         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29296         assembly bundle support.
29298 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29300         * threadpool.c (mono_thread_pool_add): keep a reference to the
29301         AsyncResult to prevent GC
29303 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29305         * class.c: leak fix.
29307 2003-06-25  Dick Porter  <dick@ximian.com>
29309         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29310         for the async object, the WaitHandle object will close the handle.
29311         Fixes bug 45321.
29313 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29315         * class.c: in mono_array_class_get (), lookup from the hash with the
29316         same type we insert: this works around a bug in
29317         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29318         lluis. The real fix will have to wait for after the release.
29320 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29322         * icall.c: fix memory leak when getting type members.
29324 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29326         * reflection.c: added more pubtoken special cases.
29328 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29330         * class.c: handle field offset correctly when class size
29331         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29333 2003-06-20  Martin Baulig  <martin@ximian.com>
29335         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29336         *image' field.
29338 2003-06-20  Martin Baulig  <martin@ximian.com>
29340         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29342 2003-06-20  Martin Baulig  <martin@ximian.com>
29344         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29345         just distinguish between variables in registers and variables at
29346         an offset relative to a register.
29348 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29350         * icall.c: #ifdef out latest changes until mcs is fixed.
29352 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29354         * icall.c: return members in metadata order.
29356 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29358         * icall.c: avoid infinite loop in GetTimeZoneData.
29360 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29362         * icall.c: added Marshal.Prelink/All icalls.
29364 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29366         * object.c, object.h: fix warnings and do some overflow checking
29367         when creating arrays.
29369 2003-06-17  Dick Porter  <dick@ximian.com>
29371         * file-io.h:
29372         * file-io.c: File attributes need to be tweaked slightly when
29373         passed from the managed to the w32 world.
29375 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29376         * profiler.h profiler-private.h profiler.c: Rework last patch
29377         based on suggestion by Paolo.
29378         
29379 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29381         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29382         instruction level coverage data collection.
29383         * profiler.h profiler.c (: Added new callback function which can be
29384         used by the profiler to limit which functions should have coverage
29385         instrumentation.
29386         * profiler.c (mono_profiler_load): Call g_module_build_path to
29387         generate the file name of the profiler library.
29389 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29391         * profiler.c, profiler.h, profiler-private.h: added basic block 
29392         coverage profiling API.
29394 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29396         * reflection.c (mono_reflection_create_runtime_class): Add support
29397         for events in dynamically generated code.
29399         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29400         not allocated.
29402 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29404         * icall.c: when getting timezone info, return reasonable values if we
29405         can't get the actual data.
29407 2003-06-14  Dick Porter  <dick@ximian.com>
29409         * threads.c (start_wrapper): Remove the reference to the thread
29410         object in the TLS data, so the thread object can be finalized.
29411         This won't be reached if the thread threw an uncaught exception,
29412         so those thread handles will stay referenced :-( (This is due to
29413         missing support for scanning thread-specific data in the Boehm GC
29414         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29416 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29418         * reflection.c: ensure streams and tables are first allocated with
29419         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29421 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29423         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29425 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29427         * reflection.c (mono_reflection_create_runtime_class): Add support for
29428         properties to dynamically created classes.
29429         * reflection.c: Fix a few places where non-MonoObjects were inserted
29430         into the tokens hashtable.
29432 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29434         * object.c: some support to handle out of memory exceptions.
29436 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29438         * marshal.c (mono_marshal_get_native_wrapper): support reference
29439         return types
29441 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29443         * object.h, object.c: more portability stuff from Bernie Solomon.
29444         Unexport mono_object_allocate(). Added mono_object_unbox ().
29445         Set exitcode when an unhandled exception is thrown.
29447 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29449         * marshal.c (mono_marshal_get_native_wrapper): use custom
29450         marshaler for return types.
29452 2003-06-10  Dick Porter  <dick@ximian.com>
29454         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29455         ip_mreq is available
29457 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29459         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29460         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29461         by Bernie Solomon <bernard@ugsolutions.com>.
29463 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29465         * gc.c (mono_gc_init): Avoid error message on shutdown when
29466         GC_DONT_GC=1 is used.
29468         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29469         New icall to return the GUID of a module.
29471 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29473         * class.c: ensure instance size always includes the parent's size
29474         even whem class size is set explicitly (fixes bug#44294).
29476 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29478         * profiler.h, profiler.c: made the simple profiler thread-safe,
29479         get more accurate timing info. Allow the loading of an
29480         externally-developed profiler module.
29482 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
29484         * marshal.c (mono_marshal_get_native_wrapper): improved
29485         class/byref arguments.
29486         (mono_marshal_get_native_wrapper): better string marshaling support.
29488 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
29490         * class.c: ensure .pack and .size are handled correctly and
29491         simplified layout of static fields.
29493 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
29495         * appdomain.c
29496         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
29498         * loader.c (mono_lookup_pinvoke_call): look for modules in the
29499         current directory (fix bug 44008)
29501 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
29503         * marshal.c (mono_marshal_get_native_wrapper): started support for
29504         custom marshalers.
29505         (mono_delegate_to_ftnptr): consider marshalling specifications
29507 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
29509         * reflection.c, reflection.h: emit custom marshal info.
29511 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29513         * object.c: free the GError.
29514         * icall.c: added CloseEvent_internal.
29515         * threads.[ch]:
29516         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
29517         call.
29519 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
29521         * loader.c (mono_method_get_signature): Add support for dynamic
29522         assemblies.
29524 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
29526         * reflection.c: fixed bug #43905.
29528 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29530         * class.c, domain.c, icall.c, metadata.h, object.h: support for
29531         handling TypedReference and ArgIterator.
29532         * loader.c, loader.h: added function to get signature at call site.
29534 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29536         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
29537         data readonly. Buglets and warning fixes. Some MethodSpec support.
29539 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29541         * class.h, class.c, object.c: remove relative numbering support.
29543 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
29545         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
29546         free the string, until we get a chance to fix Gtk#
29548 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29550         * marshal.c: revert last patch.
29552 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29554         * icall.c: updates for new mono_class_vtable() not calling
29555         the type constructor anymore.
29557 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29559         * object.h, object.c: separate vtable creation from type
29560         initialization. Make running the .cctor thread safe.
29562 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29564         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29566 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29568         * loader.c (mono_get_method): consider calling convention
29570 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29572         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29573         to return the invisible global type for a module.
29575         * reflection.c (mono_image_build_metadata): Emit global fields too.
29577 2003-05-20  Peter Williams  <peterw@ximian.com>
29579         * loader.c (mono_lookup_internal_call): Add a few newlines.
29581 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29583         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29584         literal strings.
29586         * appdomain.c (set_domain_search_path): Recalculate search path when
29587         AppDomainSetup.PrivateBinPath changes.
29589         * object.c (mono_class_compute_gc_descriptor): It turns out some
29590         parts of the class libs (like System.Thread) holds pointers to
29591         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29592         to treat native int a pointer type here.
29593         
29594 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29596         * appdomain.h, domain.c: add hashtable for jump target resolution.
29598 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29600         * reflection.h reflection.c icall.c: Added new icalls 
29601         GetManifestResourceInfoInternal, GetModulesInternal and support
29602         infrastructure.
29604 2003-05-16  Dick Porter  <dick@ximian.com>
29606         * icall.c:
29607         * file-io.h:
29608         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29610 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29612         * object.c: mono_store_remote_field: little fix to previous patch.
29614 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29616         * class.c: add constructors to array classes.
29617         * icall.c: special case array construction for InternalInvoke (),
29619 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29621         * class.h class.c reflection.c object.c: Added support for field
29622         defaults in dynamically generated classes.
29624 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29626         * reflection.c: properly encode charset for ddlimport.
29628 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29630         * threads.c: allow compiling without GC.
29632 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29634         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29635         handling of thread static data.
29637 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29639         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29641 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29643         * class.c (mono_array_class_get): always set the serializable flags
29644         (mono_array_class_get): always set the SEALED attribute for array types
29646 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29648         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29649         attributes (fix for bug 42021).
29651 2003-05-12  Dick Porter  <dick@ximian.com>
29653         * gc.c: Don't run finalizers when the finalizer thread is
29654         finishing up, because the default domain has already been
29655         destroyed.
29657 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29659         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29660         value is null, we should throw an exception.   This is slightly
29661         different than the other conventions used for the constructor.
29663 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29665         * socket-io.c: fixed windows build.
29667 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29669         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29671 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29673         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29674         compilers.
29676 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29678         * class.c (mono_class_layout_fields): Add experimental GC aware
29679         auto layout facility. Requires class library changes to work correctly.
29681         (mono_class_setup_vtable): Avoid overriding explicit interface
29682         method implementations. Fixes iface3.exe test.
29684         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29685         object reference.
29686         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29687         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29689         * metadata.h: Add new type classification macro which determines
29690         whenever the type holds an object reference.
29692 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29694         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29696 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29698         * gc.c (finalizer_thread): Work around a GC bug.
29700 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29702         * marshal.c (emit_struct_conv): allow unions
29704         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29706 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29708         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29710 2003-05-06  Martin Baulig  <martin@ximian.com>
29712         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29714 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29716         * socket-io.c:
29717         (Select_internal): allow NULLs, don't create arrays if not needed.
29718         Coupled with Socket.cs changes.
29720         * threadpool.c:
29721         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29722         register a finalizer for it that will close the semaphore handle. This
29723         fixes the leak and make Lupus' test run with > 4080 loops.
29725 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29727         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29728         Jerome Laban (bug #42287)
29730 2003-05-02  Martin Baulig  <martin@ximian.com>
29732         * debug-mono-symfile.h
29733         (MonoSymbolFile): Moved declaration into mono-debug.h.
29734         (MonoDebugMethodJitInfo): Likewise.
29735         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29736         argument.
29737         (_mono_debug_address_from_il_offset): Take a
29738         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29740         * mono-debug.h
29741         (MonoDebugDomainData): New struct.
29742         (mono_debug_get_domain_data): New function.
29743         (mono_debug_add_method): Take an additional `MonoDomain *'
29744         argument.
29745         (mono_debug_source_location_from_address): Likewise.
29746         (mono_debug_il_offset_from_address): Likewise.
29747         (mono_debug_address_from_il_offset): Likewise.
29749 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29751         * reflection.c: one more check for null type in custom attrs.
29753 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29755         * reflection.c: avoid warning (comparison is always false due to limited
29756         range of data type).
29758 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29760         * icall.c: throw an exception in Type.GetField if the argument 'name'
29761         is NULL.
29763 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29765         * reflection.c: fixed handling of enums in named arguments to custom
29766         attributes (bug #42123).
29768 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29770         * reflection.c: use the right array element type and handle
29771         a null for a Type argument, too.
29773 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29775         * reflection.c: handle arrays as arguments to custom attributes.
29777 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29779         * reflection.c: handle a string value in a custom attr
29780         ctor that takes an object.
29782 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29784         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29785         (fix bug #42063)
29787 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29789         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29791 2003-04-27  Martin Baulig  <martin@ximian.com>
29793         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29794         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29795         MONO_DEBUGGER_EVENT_BREAKPOINT.
29796         (mono_breakpoint_trampoline_code): Removed.
29797         (mono_debugger_event_handler): The last argument is now a
29798         `guint32'.
29799         (mono_debugger_insert_breakpoint_full): Removed the
29800         `use_trampoline' argument.
29801         (mono_debugger_method_has_breakpoint): Likewise.
29802         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29803         mono_debugger_breakpoint_callback(); take the method and
29804         breakpoint number as arguments.
29806 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29808         * metadata.c: fix off by one when loading parameters attributes.
29810 2003-04-24  Martin Baulig  <martin@ximian.com>
29812         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29814 2003-04-24  Martin Baulig  <martin@ximian.com>
29816         * mono-debug-debugger.c: Moved all code which interacts with the
29817         Mono Debugger here.
29819         * debug-mono-symfile.c: This code now just deals with the symbol
29820         file itself, the debugger code is now in mono-debug-debugger.c.
29822 2003-04-23  Martin Baulig  <martin@ximian.com>
29824         * mono-debug.c (mono_debug_source_location_from_il_offset):
29825         New method; like mono_debug_source_location_from_address(), but
29826         takes an IL offset instead of a machine address.
29828 2003-04-23  Martin Baulig  <martin@ximian.com>
29830         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29831         `line' field; this is now computed by the debugger.
29833 2003-04-23  Martin Baulig  <martin@ximian.com>
29835         * mono-debug.[ch]: New files.  This is the new debugging interface.
29837         * mono-debug-debugger.[ch]: New files.  Moved all code which
29838         interacts with the Mono Debugger here.
29840 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29842         * domain.c (mono_init): initialize mono_defaults.monitor_class
29844 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29846         * reflection.c (method_encode_code): Add a spicy exception to help
29847         future compiler authors.
29849 2003-04-21  Martin Baulig  <martin@ximian.com>
29851         * icall.c
29852         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29853         Make this work with relative pathnames; g_filename_to_uri() needs
29854         an absolute filename.
29856 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29858         * icall.c: Track name changes in Object and ValueType.
29860 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29862         * metadata.c (mono_type_stack_size): size should be a multiple of
29863         sizeof (gpointer)
29865 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29867         * gc.c:
29868         (internal_domain_finalize): moved into mono_domain_finalize. No need
29869         to create another thread because the finalizers will be run in the
29870         finalizer thread.
29871         
29872         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29873         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29874         to be run (MS does this too).
29876 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29878         * object.c (mono_class_compute_gc_descriptor): Update comment.
29880         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29882         * image.h: Add synchronized wrapper cache.
29884         * image.c (do_mono_image_open): Initialize cache.
29886         * reflection.c (create_dynamic_mono_image): Initialize cache.
29888 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29890         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29891         ves_icall_System_Buffer_ByteLengthInternal.
29893 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29895         * reflection.c: setup klass->nested_in earlier. Allow
29896         a dash in the assembly name.
29898 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29900         * metadata.c (mono_type_to_unmanaged): dont access
29901         type->data.klass for MONO_TYPE_OBJECT
29902         (mono_type_to_unmanaged): consider System.Delegate class
29904 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29906         * class.c: just setup supertypes in the proper place instead of
29907         initializing the full element class for arrays.
29909 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29911         * class.c: ensure the element class of arrays is initialized.
29912         Setup the supertype info for array classes, too.
29914 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29916         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29918 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29920         * Makefile.am: re-added -m option when running cygpath. This way,
29921         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29922         separator.
29923         * mono-config.c: same codepath for locating mono config file for WIN32
29924         and the rest.
29925         * assembly.c: if mono_assembly_setrootdir is called, don't override
29926         the value set.
29928 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29930         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29931         MONO_ASSEMBLIES variable.
29933 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29935         * icall.c: added Assembly::GetNamespaces() icall.
29937 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29939         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29941 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29943         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29944         * object.c: fixed bug in the construction of vtable for proxies
29946 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29948         * object.c (mono_array_new): Mark mono_array_new as an icall.
29950 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29952         * class.c: fixed test for public method when overriding interfaces.
29953         Closes bug #40970.
29955 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29957         * appdomain.h, domain.c: added mono_domain_foreach() to
29958         be able to access the currently loaded appdomains.
29959         * object.c: make string interning work across sppdomains.
29960         Mark some functions for use as icalls.
29962 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
29964         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
29966         * reflection.h reflection.c: Allocate long living data using 
29967         GC_MALLOC_ATOMIC so the collector does not need to scan it.
29969         * reflection.c: Double the allocation size in streams instead of
29970         increasing it, to prevent unneccesary copying on large assemblies.
29971         
29972         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
29973         creation if the assembly does not have the Run flag set.
29975 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
29977         * class.h: avoid the C++ keywords in header files (Jerome Laban
29978         spotted and fixed this).
29980 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29982         * object.c:
29983         (mono_unhandled_exception): fill in the arguments for the
29984         UnhandledException event. Only trigger that event for the default
29985         domain (as MS does).
29987 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
29989         * object.c: Improve typed allocation stuff based on suggestions from
29990         Paolo. Also turn it on if the GC library supports it.
29992 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29994         * object.c object.h class.h: Added experimental typed allocation
29995         facility using the interfaces in gc_gcj.h.
29997         * os/gc_wrapper.h: Added new include files.
29998         
29999 2003-04-03  Martin Baulig  <martin@ximian.com>
30001         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30002         which is not yet enabled by default.
30004         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30005         functions.
30006         (mono_gc_lock, mono_gc_unlock): New static functions.
30008         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30009         functions; stop/start the world for the garbage collector.  This
30010         is using the windows API; we need to complete the SuspendThread()/
30011         ResumeThread() implementation in the io-layer to make this work on Unix.
30012         (mono_gc_push_all_stacks): New public function; tells the garbage
30013         collector about the stack pointers from all managed threads.
30015 2003-04-03  Martin Baulig  <martin@ximian.com>
30017         * object.h (MonoThread): Added `gpointer stack_ptr'.
30019         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30021 2003-04-03  Martin Baulig  <martin@ximian.com>
30023         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30025 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30027         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30028         field.last.
30030 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30032         * loader.c (mono_lookup_internal_call): Report the corlib that is
30033         out of sync.
30035 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30037         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30038         System.DBNull (it's class not valuetype).
30040 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30042         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30043         if the array method was already assigned a token (fixes bug#40646).
30045 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30047         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30048         if no assembly is given.
30050 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30052         * metadata.h: Added the new tables.
30054         * row-indexes.h: Added definitions for new tables.
30056         * metadata.c: Add schemas for new tables, and add support for
30057         computing the sizes of them.
30059         * class.c: Update for handling the new type cases.
30061 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30063         * metadata.h (MONO_TYPE_IS_VOID): new macro
30065 2003-03-31  Martin Baulig  <martin@ximian.com>
30067         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30069         * threads.c (mono_thread_new_init): Call `thread_created' in the
30070         mono_thread_callbacks.
30072 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30074         * loader.h: added marshalbyrefobject_class to mono_defaults
30075         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30076         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30077           generation of output parameters.
30078           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30079         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30080           contextbound and the target object belongs to the context of the caller.
30081         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30082         * object.c: Implemented support for interfaces and abstract classes
30083           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30084           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30086 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30088         * class.h class.c (mono_class_is_subclass_of): New function.
30089         
30090         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30091         routines for most common case (calls from ArrayList::ToArray).
30093         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30094         routine so programs which call Environment::Exit() can be profiled.
30096         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30097         Added MONO_ARCH_SAVE_REGS.
30099         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30101 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30103         * blob.h: Add a couple of new MonoType types definitions.
30105         * tabledefs.h: Add a couple of new call convs.
30107 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30109         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30110         the layout of the class.
30112         * reflection.c (alloc_table): double the size on overflow to avoid
30113         unnecessary copying.
30115         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30116         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30117         null so it can be garbage collected.
30118         
30119 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30121         * reflection.c (mono_reflection_get_type): Return the resolved type
30122         only if it is in the assembly we searched.
30124         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30126         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30127         method.
30129 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30131         * appdomain.c:
30132         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30133         the right one is 'file:///blah', but MS allows it.
30134         * assembly.c:
30135         (mono_assembly_open): allow 'file://blah'
30137         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30139 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30141         * socket-io.c: fixes bug #40310.
30143 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30145         * reflection.c (mono_reflection_parse_type): handle deeply nested
30146         types correctly.
30148         * reflection.c (mono_image_create_token): Use unique token values
30149         since they will be put into a hash table.
30151         * class.c (mono_class_setup_vtable): If a method occurs in more than
30152         one place in the vtable, and it gets overriden, then change the
30153         other occurances too.
30155         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30156         object as return type.
30158 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30160         * icall.c: Deleted "ToString" implementation for double and float
30161         because they are full implemented in managed code.
30163 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30165         * reflection.c, reflection.h: implemented and exported functions
30166         to retrieve info about custom attributes.
30168 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30170         * appdomain.c: moved Uri handling to assembly.c
30171         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30172         work when using a file Uri in *nix and windows.
30174         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30175         GetReferencedAssemblies.
30177 2003-03-18  Dick Porter  <dick@ximian.com>
30179         * icall.c: Rename a couple of internal calls
30181         * threads.c: Set the thread state to Stopped when a thread exits.
30182         Fixes bug 39377.
30184 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30186         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30187         New icall.
30189         * object.c (mono_class_vtable): fix warning.
30191 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30193         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30195         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30196         memory.
30197         (method_encode_clauses): Create exception info structures in the right
30198         order.
30199         (mono_reflection_setup_internal_class): Initialize supertypes field.
30201         * class.c object.c: Handle interfaces which implement other interfaces 
30202         correctly.
30204         * class.h class.c: Move the supertypes array initialization code into 
30205         a separate function so it can be used for dynamic types too. Also call
30206         it earlier, in mono_class_init(), since it can be used before the
30207         type is initialized.
30209 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30211         * Makefile.am:
30212         * assembly.c:
30213         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30215         * appdomain.c:
30216         * appdomain.h:
30217         * marshal.c:
30218         * object.c: remove warnings.
30220 2003-03-13  Martin Baulig  <martin@ximian.com>
30222         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30223         (MonoDebugLexicalBlockEntry): New types.
30225         * debug-mono-symfile.c
30226         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30228 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30230         * process.c: ret can be any non-zero value accroding to MS doc.
30232 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30234         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30235         fixing a warning for a miss-used prototype, would have cause
30236         random memory corruption.
30238 2003-03-07  Martin Baulig  <martin@ximian.com>
30240         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30241         getting really annoying ....
30243 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30245         * reflection.c (fixup_method): added support for array methods.
30247 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30249         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30250         (pointed out by Michael Adams).
30252 2003-03-04  Dick Porter  <dick@ximian.com>
30254         * icall.c: Temporarily reverted the Double and Single ToString()
30255         change, because it broke nunit.
30257 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30259         * object.h, threads.h: make include files compatible with C++
30260         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30262 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30264         * icall.c: Erased ToString helper functions for Double and Single.
30265         Now, that implementations ar all in managed code (Double and Single
30266         Formatters).
30268 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30270         * appdomain.c: Added method for initializing the default context of
30271         a domain. Added internal call for getting the default context.
30272         * appdomain.h: Added context variable in MonoDomain struct.
30273         * domain.c: mono_domain_set also sets the default context of the domain
30274         * icall.c: Mapped internal method InternalGetDefaultContext.
30275         * object.c: mono_object_get_virtual_method returns always a remoting
30276         wrapper if the object is a transparent proxy.
30277         mono_runtime_invoke_array: when creating an object by calling the
30278         constructor, if the created object is a proxy, then the constructor should
30279         be called using the a remoting wrapper.
30281 2003-03-03  Dick Porter  <dick@ximian.com>
30283         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30284         variable so it compiles on solaris.  Problem spotted by
30285         Christopher Taylor <ct@cs.clemson.edu>
30287 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30289         * appdomain.c:
30290         (get_info_from_assembly_name): don't leak value.
30292         * icall.c:
30293         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30294         result.
30296 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30298         * assembly.c: export mono_image_load_references ().
30299         * class.c: handle function pointers. mono_class_from_name() now
30300         supports nested type names directly.
30302 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30304         * reflection.h reflection.c: Encode already created dynamic methods 
30305         and fields correctly as a DEF instead of a REF.
30307         * reflection.c: Get rid of the force_ref argument to 
30308         mono_image_typedef_or_ref since it was wrong in the first place.
30310         * string-icalls.c: add error checking to string constructors according
30311         to the MSDN docs.
30313         * reflection.c: Emit types in the order their TypeBuilders were 
30314         created. Previously, a new table index was assigned to each type before
30315         the tables were emitted. This was wrong because the signature blob
30316         might already refer to a type by its original table index.
30318 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30320         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30321         change.
30322         
30323 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30325         * Makefile.am: make assemblies dir have \ instead of / on windows.
30327 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30329         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30330         iterate over the NESTEDCLASS table using a linear search since the
30331         table is not guaranteed to be sorted by the secondary key.
30333         * class.c (mono_class_create_from_typedef): fixed up call to
30334         mono_metadata_nesting_typedef.
30335         
30336 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30338         * marshal.c (mono_string_to_byvalstr): clear the memory as
30339         suggested by Jerome Laban <jlaban@wanadoo.fr>
30341 2003-02-26  Dick Porter  <dick@ximian.com>
30343         * process.c: Cope with padding in .rsrc blocks
30345 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30347         * metadata.h: reverted the filter_len change, it breaks reflection
30348         
30349 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30351         * metadata.h: added a new field to store the filter_len
30352         
30354 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30356         * reflection.c: handle custom attributes for types and members
30357         created with Reflection.Emit (bug#38422).
30359 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30361         * reflection.c: define RTSpecialName automatically for constructors for
30362         compatibility with MS.NET.
30364         * reflection.c (mono_reflection_create_runtime_class): initialize
30365         nested_in field of dynamically created classes.
30367 2003-02-22  Martin Baulig  <martin@ximian.com>
30369         * debug-mono-symfile.h: Incremented version number.
30371 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30373         * object.h icall.c process.c: fix warnings.
30375 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30377         * appdomain.h appdomain.c:
30378         (mono_domain_try_type_resolve): split the 
30379         name_or_tb argument into a name and a tb argument.
30380         (mono_domain_has_type_resolve): new function to check whenever the
30381         application has registered a TypeResolve event handler.
30382         
30383         * icall.c reflection.h reflection.c: move the type resolve logic into
30384         mono_reflection_get_type () so it will be invoked when 
30385         Assembly::GetType () is called.
30387         * reflection.c:
30388         (mono_reflection_get_type): renamed to get_type_internal.
30389         (mono_reflection_get_type): fixed type name generation so it works 
30390         for nested types too.
30391         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30392         costly type name generation if there is no resolve event handler.
30394 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30396         * class.c, image.c: load exported types from file references.
30398 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30400         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30401           used to cache the managed methods used to create proxies and make 
30402           remote invocation of methods.
30403         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30404           to be remotely created.
30405         * object.c: Modified the method mono_class_vtable(). It now initializes 
30406           the remote flag of the vtable. Modified mono_object_new_specific(), 
30407           so now it checks the remote flag.
30408         * icall.c: Added a couple of internal methods, one for enabling instance 
30409           creation interception for a type, and one for creating objects bypassing
30410           the remote check.
30412 2003-02-18  Martin Baulig  <martin@ximian.com>
30414         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30415         New interncall to get a method's metadata token.
30417         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30418         New interncall for the debugger.
30420 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30422         * class.c (mono_class_setup_vtable): allocate supertype array
30424 2003-02-18  Martin Baulig  <martin@ximian.com>
30426         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30428 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30430         * reflection.c:
30431         (assembly_name_to_aname): jump over unknown properties (i've found
30432         something like: 'type, assembly, version=xxx, custom=null, public...',
30433         so now will ignore custom=null and still get the rest of the values).
30435 2003-02-17  Dick Porter  <dick@ximian.com>
30437         * threads.c: Have Thread.Start() wait for a semaphore to signal
30438         that the thread has set up all its local data.  This fixes bug
30439         34323, where Abort() raced the new thread's TLS data.
30441         Also removes the handle_store() call from start_wrapper, because
30442         threads are now always created suspended and there is no longer a
30443         race between the parent and child threads to store the info.
30445 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30447         * image.c: explain the #- heap issue in a message, hopefully
30448         avoiding FAQs on mono-list.
30450 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30452         * icall.c:
30453         (GetEntryAssembly): if the domain has not invoked
30454         AppDomain.ExecuteAssembly yet, return the assembly of the default
30455         AppDomain.
30457 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30459         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30461 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30463         * metadata.c, reflection.c: simple speedup to type hash
30464         and equals code.
30466 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30468         * image.c, image.h, class.c, assembly.c: move module loading
30469         to MonoImage. When loading metadata, consider alignemnet from
30470         the start of metadata, not from the metadata address in memory.
30472 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
30474         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
30475         AssemblyBuilder objects. Factored out custom attribute creation into
30476         a separate function.
30477         (create_custom_attr): new function to create custom attributes.
30479 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
30481         * Makefile.am: Got tired of typing the full pathname to pedump.
30482         Until there is another option, am installing this.
30484 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
30486         * class.c (class_compute_field_layout): always set field->parent 
30487         (mono_ldtoken): use mono_defaults.fieldhandle_class;
30489 2003-02-11  Dick Porter  <dick@ximian.com>
30491         * threads-types.h:
30492         * monitor.c: Rewrote Monitor, making lock much faster and
30493         Pulse/Wait work as specified.  Also uses much fewer handles, and only
30494         creates them as needed.
30496         * exception.c: Added SynchronizationLockException
30498         * threads.c: Deleted old Monitor implementation.  The new one is
30499         in a new file.
30501 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
30503         * class.c: handled TypedReference type code. Set the correct size for
30504         class data. Setup interface_offsets for interface classes, too.
30506 2003-02-09  Martin Baulig  <martin@ximian.com>
30508         * debug-mono-symfile.h: Reflect latest symbol writer changes.
30510 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
30512         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
30513         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
30514         * object.c: fixed mono_object_get_virtual_method () for interfaces.
30515         * verify.c: check for code that runs after the end of the method.
30517 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30519         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
30520         "System.Math::Round2".
30521         * sysmath.h: Added Floor, Round and Round2 definitions.
30522         * sysmath.c: Modified certain functions that were not 100% compliant
30523         with MS.NET (math precision) and added the implementation of Floor,
30524         Round and Round2.
30526 2003-02-07  Martin Baulig  <martin@ximian.com>
30528         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
30530 2003-02-07  Martin Baulig  <martin@ximian.com>
30532         * debug-mono-symfile.c: Reflected latest symwriter changes.
30533         (mono_debug_create_mono_symbol_file): Removed.
30534         (mono_debug_open_mono_symbol_file): Take an argument which
30535         specifies whether to create a dynamic symbol file.
30537 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
30539         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
30541 2003-02-05  Martin Baulig  <martin@ximian.com>
30543         * reflection.c (mono_image_build_metadata): Make this public,
30544         protect it against being called multiple times, don't create
30545         resources and don't build the compressed metadata here.
30546         (mono_image_create_pefile): Do this here.
30548         * icall.c
30549         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
30551 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30553         * socket-io.c: fixed bug #36322.
30555 2003-02-06  Piers Haken <piersh@friskit.com>
30557         * appdomain.[ch]:
30558         * class.h:
30559         * debug-mono-symfile.c:
30560         * icall.c:
30561         * loader.c:
30562         * mono-config.c:
30563         * monosn.c:
30564         * reflection.c:
30565         * socket-io.c: warning cleanups
30567 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30569         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30570         function. works like remoting invoke, but does a check for the Proxy first.
30572 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30574         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30576 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30578         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30579         array of pointers.
30580         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30581         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30583         * object.c (mono_store_remote_field_new): used by the new jit
30584         instead of mono_store_remote_field
30585         (mono_load_remote_field_new): used by the new jit
30586         instead of mono_load_remote_field
30588 2003-02-05  Patrik Torstensson
30590         * appdomain.c: changed unload to take the domain id instead
30591         of domain
30592         
30593         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30596 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30598         * appdomain.c: don't look for assemblies in ApplicationBase if
30599         PrivateBinPathProbe is set.
30601 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30603         * object.c: make the first argument in main_args contain the absolute
30604         path to the assembly. Fixes bug #37511.
30606 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30608         * icall.c: get correct UTC offset for countries not using daylight
30609         time saving. Fixes bug #30030.
30611 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30613         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30614         and 1 are the family).
30616 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30618         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30620         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30622 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30624         * reflection.c: added support for SignatureHelper tokens, which is
30625         needed by the Calli opcode.
30627         * reflection.h: track changes to SignatureHelper class.
30629         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30631 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30633         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30635 2003-02-03  Patrik Torstensson
30636         * appdomain.[c|h], domain.c : 
30637          - Added support for getting a domain via domain id
30638          - Support for setting and getting domain from System.AppDomain 
30639            (used in cross appdomain channel)
30640          - Added support for get/set for a MonoAppContext on a thread 
30641            (Context class in System.Runtime.Remoting.Contexts),
30642          - Removed hack in Get/SetData and ExecuteAssembly.
30643         
30644         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30645         the managed world to get control when a proxy is created.
30647         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30648         
30649 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30651         * icall.c
30652         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30653         Populate the codebase field as well.
30655 2003-02-02  Martin Baulig  <martin@ximian.com>
30657         * debug-mono-symfile.c
30658         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30659         (mono_debug_symfile_add_method): Allow interncalls.
30661 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30663         * icall.c: throw parse exception if strtod fails or the string is empty.
30665 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30667         * marshal.c: handle object type separately from defined
30668         class types.
30670 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30672         * marshal.c: handle NATIVE_LPSTR for strings when it's
30673         explicitly specified.
30675 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30677         * reflection.c, reflection.h, icall.c: setup the reflection
30678         handle cache for ModuleBuilders and AssemblyBuilders.
30680 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30682         * reflection.c (reflection_methodbuilder_to_mono_method): set
30683         pinvoke flag
30685 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30687         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30689 2003-01-29  Dick Porter  <dick@ximian.com>
30691         * threads.c: No need for the fake_thread kludge now that Thread
30692         doesn't run a class constructor
30693         
30694 2003-01-29  Dick Porter  <dick@ximian.com>
30696         * threads.c: Use g_direct_hash instead of the rather bogus
30697         g_int_hash
30699 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30701         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30702         (fix pinvoke12.exe)
30703         (mono_marshal_get_struct_to_ptr): generate valid IL code
30704         (mono_marshal_get_ptr_to_struct): generate valid IL code
30705         (*): correctly set sig->pinvoke, we need to memdup the signature
30706         to do that
30708 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30710         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30711         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30713 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30715         * profiler.c: provide more callers information.
30717 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30719         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30721         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30723         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30725 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30727         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30728         exception instead of going into an infinite loop on dates which it 
30729         can't yet handle.
30731         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30732         out-of-range exception if needed.
30734         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30735         an implementation for an interface method and to override an inherited
30736         method at the same time. 
30737         Imagine a scenario when a virtual method is used to override a
30738         virtual abstract method in a parent class, and this same method 
30739         provides an implementation for an method inherited from an interface. 
30740         In this case, the interface resolution code will set im->slot, which 
30741         means that the virtual method override pass will skip this method 
30742         which means a pointer to the abstract method inherited from the parent
30743         will remain in the vtable of this non-abstract class.
30745         * class.c: (mono_class_setup_vtable): continue search for a real 
30746         method if only an abstract method is found.     
30748 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30750         * reflection.c: add size to encoding for ByValStr and ByValArray
30751         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30753 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30755         * class.c (mono_class_setup_vtable): pass the override info as an
30756         argument.
30758         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30759         correctly.
30760         
30761         * reflection.c (ensure_runtime_vtable); add support for method 
30762         overrides.
30763         
30764 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30766         * reflection.c (resolution_scope_from_image): Hack to work to work with
30767         dynamic assemblies.
30769         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30770         added a 'force_ref' argument to force this function to allways return 
30771         a TypeRef. This is needed by mono_image_get_memberref_token ().
30772         
30773 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30775         * reflection.c (mono_image_get_type_info): interfaces really don't have
30776         a parent.
30778         * reflection.c (mono_image_basic_init): fill out missing fields of
30779         image structure.
30781         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30782         dynamic assemblies. This is required so dynamic assemblies show up in
30783         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30784         Type::GetType() etc. This is consistent with MS behaviour.
30786         * image.c image.h reflection.c: add newly created classes to the name 
30787         cache so mono_class_get () will find them.      
30789 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30791         First part of changes to get IKVM.NET running under mono.
30792         
30793         * appdomain.h, appdomain.c: added new function 
30794         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30795         This function will call AppDomain::DoTypeResolve to do the actual work.
30797         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30798         moved existing code dealing with dynamic tokens to a new function 
30799         called mono_reflection_lookup_dynamic_token (). This function will 
30800         raise TypeResolve events when appropriate. Since reflection.c is not 
30801         part of libmetadata, a new hook function called 
30802         mono_lookup_dynamic_token() is added to class.c which will call this.
30804         * assembly.h assembly.c: make the invoke_load_hook function public,
30805         so it can be called for dynamic assemblies.
30807         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30809         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30810         type isn't found.
30812         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30813         MonoGHashTable, since it contains pointers to objects which the GC 
30814         needs to track.
30816         * assembly.c (search_loaded): remove unused variable.
30817         
30818 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30820         * object.c: fixed issue exposed by gcc-generated IL programs
30821         that use RVA data for pointers.
30823 2003-01-25  Martin Baulig  <martin@ximian.com>
30825         * threads.c (start_wrapper): Moved the initialization of
30826         `start_func' above the mono_new_thread_init() call to which we
30827         pass it as argument.
30829 2003-01-24  Martin Baulig  <martin@ximian.com>
30831         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30832         the MonoThread pointer.
30834 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30836         * icall.c: Rename `PowImpl' to Pow.
30838 2003-01-23  Dick Porter  <dick@ximian.com>
30840         * threads.c (start_wrapper): Create a Thread object if needed, so
30841         the Main() thread can do the class initialisation in a subthread
30842         that has been set up to allow managed code execution.
30844         Pass the thread ID instead of the MonoThread pointer to the thread
30845         start and attach callbacks.  This change is required, because the
30846         jit thread start callback must be called _before_ the Thread
30847         object can be created.
30848         
30849         (mono_thread_init): Removed much object creation code that is no
30850         longer needed.  No managed code is called from here now.
30852         * object.c (mono_runtime_exec_managed_code): Create a subthread
30853         for Main, and call back to the runtime to use it.
30854         Set the exit code when Main exits.
30856         * gc.c: Make sure domain finalisation happens in a subthread.
30857         Re-enable threaded GC, fixing bug 31333 (again).
30859         * environment.c: System.Environment internall calls (so far just
30860         ExitCode is here, the others are still in icall.c)
30862         * appdomain.c (mono_runtime_cleanup): All threads running managed
30863         code should have finished before mono_runtime_cleanup() is
30864         reached, so no need to clean up threads.
30866 2003-01-22  Martin Baulig  <martin@ximian.com>
30868         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30869         `gpointer func' arguments.      
30870         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30871         but added `MonoThread *thread' argument.
30872         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30874         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30875         and pass it to the mono_thread_start_cb callback.
30876         (mono_install_thread_callbacks): New public function to install a
30877         set of callbacks which are set by the debugger.
30878         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30880 2003-01-22  Martin Baulig  <martin@ximian.com>
30882         * Makefile.am: Install debug-mono-symfile.h.
30884 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30886         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30888 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30890         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30891         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30892         (mono_array_class_get): correctly set access levels of arrays
30894 2003-01-20      Patrik Torstensson
30895         * image.h (MonoAssemblyName): changed major, minor, build, revision
30896         from signed to unsigned.
30898 2003-01-20  sean kasun <skasun@azstarnet.com>
30900         * reflection.c (load_cattr_value): Now this handles
30901         MONO_TYPE_SZARRAY.  Fixes bug #35629
30903 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30905         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30906         integer value
30908 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30910         * decimal.c: fixed bug #26056.
30912 2003-01-17  Martin Baulig  <martin@ximian.com>
30914         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30916 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30918         * exception.[ch]:
30919         (mono_get_exception_type_initialization): new function.
30921         * object.c: throw a TypeInitializationException when an exception is
30922         thrown invoking the class constructor.
30924 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30926         * reflection.c: fixed attribute reading.
30928 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30930         * icall.c:
30931         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30932         provided, look for the type in the calling assembly and then in
30933         mscorlib; if the assembly name is provided, only try that one.
30935 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30937         * object.c: register the vtable before there is a chance it's
30938         queried again recursively.
30940 2003-01-13  Duncan Mak  <duncan@ximian.com>
30942         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30943         gc-internal.h. 
30944         
30945 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30947         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30949 2003-01-11  Martin Baulig  <martin@ximian.com>
30951         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30952         this to 20 for the release.
30954 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
30956         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
30958         * loader.c (mono_method_get_marshal_info): bug fix
30960         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
30961         structures with explicit layout
30963 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30965         * profiler.c: made the output more readable (and sorted). 
30966         Added caller information for the allocation profiler.
30968 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
30970         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
30972 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30974         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
30975         to get value types.
30976         
30977 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
30979         * object.c, profiler.h, profiler.c, profiler-private.h:
30980         Added object allocation profiler.
30982 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
30984         * reflection.h, reflection.c: handle global methods.
30985         Compress blob entries.
30987 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
30989         * marshal.c: fix compilation.
30991 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
30993         * loader.c (mono_method_get_marshal_info): impl.
30995         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
30997 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30999         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31000         for reference types.
31002 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31004         * loader.c: fixed off by one error in loaded parameter names.
31006 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31008         * marshal.c (mono_marshal_get_icall_wrapper): like
31009         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31010         instead of a MonoMethod.
31012 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31014         * decimal.c: fixed bug #36537.
31016 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31018         * marshal.c: throw a missing method exception if a
31019         P/Invoke method is not found.
31021 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31023         * icall.c: allow a null this for constructors.
31025 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31027         * icall.c: raise the proper exceptions if the arguments to the
31028         internal Invoke are incorrect.
31030 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31032         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31034 2003-01-03  Martin Baulig  <martin@ximian.com>
31036         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31038 2002-12-31  Martin Baulig  <martin@ximian.com>
31040         * debug-mono-symfile.c: Completely rewrote the type section.
31041         Instead of using individual malloc()ed fields, we use one big
31042         continuous memory area and offsets into this area.
31043         See the comments in the source code for details.
31045 2002-12-30  Martin Baulig  <martin@ximian.com>
31047         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31049 2002-12-30  Martin Baulig  <martin@ximian.com>
31051         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31052         line number table in this data blob instead of using an external
31053         pointer.
31055 2002-12-28  Martin Baulig  <martin@ximian.com>
31057         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31059 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31061         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31062         as a boxed return type.
31064 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31066         * appdomain.c
31067         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31068         g_build_filename to properly get separators on the filename created.
31070         * object.h: Small change, introduce MonoMarshalByRefObject to
31071         track the layout of that structure in the C# universe as we make
31072         changes there.
31074 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31076         * object.c: removed assert to allow static fields on interfaces.
31077         * loader.c: a TypeSpec may be used for any type, not just arrays.
31079 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31081         * class.c, class.h: added mono_class_array_element_size ().
31082         Ignore static methods in interfaces.
31084 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31086         * threads.c: fixed the build under cygwin.
31088 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31090         * reflection.c: handle nullref constants. Allocate keys for
31091         reflection handles with the GC.
31093 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31095         * threads.c, threads.h: added mono_thread_get_abort_signal()
31096         to get a suitable signal for thread abort.
31098 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31100         * metadata.c: fix handling of ExportedType table.
31102 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31104         * icall.c: added WriteWindowsDebugString internal call.
31106 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31108         * reflection.h: added fields to match C# implementation.
31110 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31112         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31114 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31116         * gc.h, gc-internal.h: Rename header for GC internal calls to
31117         gc-internal.h from gc.h as to not clash with Boehm GC having its
31118         header installed as <gc.h> in outside include paths.
31119         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31120         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31122 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31124         * icall.c: assign minor, build and revision in FillName.
31126 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31128         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31129         Added support for running code generated by Reflection.Emit.
31131 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31133         * appdomain.c: check for NULL argument in LoadFrom.
31135 2002-12-10  Dick Porter  <dick@ximian.com>
31137         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31139 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31141         * appdomain.c: fix buglet when building exe file name.  Handle full
31142         assembly name (needed after latest changes to AssemblyName).
31143         * image.c:
31144         (mono_image_close): free some hashtables.
31146 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31148         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31149         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31150         on some systems (redhat 7.3) 
31152 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31154         * threads.c: delete the critical section of a sync block,
31155         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31157 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31159         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31161 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31163         * appdomain.[ch]: handle the assembly preload event to try loading the
31164         assemblies using the paths we have in the current domain.
31166         * assembly.[ch]: created an assembly preload hook that is called to try
31167         loading the assembly by other means that the ones provided here.
31169         * domain.c: initialize the domain search path.
31171         From now on, assemblies (TODO: except corlib and System) are loaded
31172         according to these rules when using mono_assembly_load ():
31174                 1. It tries to load the assembly from the ApplicationBase
31175                 of the current domain appending .dll and .exe (TODO: have to
31176                 try loading from name/name.dll and name/name.exe).
31178                 2. It tries the search path specified in PrivateBinPath for the
31179                 current domain (if any).
31181                 3. Previous behavior.
31183 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31185         * icall.c: implemented GetInterfaceMap() related icall.
31186         * domain.c, loader.h: load MethodInfo in mono_defaults.
31188 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31190         * gc.c: disable the finalizer thread for now, untill all the issues
31191         with it are resolved.
31193 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31195         * string-icalls.c: handle embedded nulls in string ctor when the
31196         length is specified.
31198 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31200         * class.c: look for explicit interface implementation in parent
31201         classes, too.
31203 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31205         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31207 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31209         * gc.c: protect handles with a critical section.
31211 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31213         * icall.c:
31214         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31215         parameters. If no assembly specified, try getting the type from all
31216         the assemblies in the current domain, else, load the assembly and get
31217         the type from it.
31219 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31221         * marshal.c: applied patch from Aleksey Demakov that fixes
31222         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31224 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31226         * icall.c: fixed get_location.
31228 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31230         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31231         declarations to make it work with older gcc. 
31233         * loader.c (mono_get_method): set signature->pinvoke for native calls
31235 2002-11-20  Dick Porter  <dick@ximian.com>
31237         * threads.c (mono_thread_init): Set the main thread's handle
31239 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31241         * gc.c: allow compilation without GC support. Changed to match the
31242         mono coding style.
31244 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31246         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31248 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31250         * reflection.c: set a public key token on the core assemblies.
31252 2002-11-18  Dick Porter  <dick@ximian.com>
31254         * threads.c: Split out some thread initialisation so that other
31255         files can set the start callback function.
31257         * gc.c: Run finalisers in a separate thread, to avoid stack
31258         overflow.  Fixes bug 31333.
31260         * appdomain.c: Set up GC finalisation thread.
31262         * reflection.c: 
31263         * object.c: 
31264         * domain.c: Use gc.h macros for GC_malloc
31265         
31266 2002-11-15  Dick Porter  <dick@ximian.com>
31268         * threadpool.c: 
31269         * threads.c:
31270         * appdomain.c: Removed mono_runtime_init_with_attach(),
31271         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31272         merging the extra parameter with the existing function.  Removed
31273         unneeded code in mono_thread_attach().
31275 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31277         * image.c (mono_image_loaded_by_guid): a method to get loaded
31278         images by guid. 
31279         (load_metadata_ptrs): we store the guid as string.
31281 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31283         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31285         * metadata.c (mono_guid_to_string): imported method form Zoltan
31286         Varga (slightly modified)
31288         * assembly.c (mono_assembly_open): load precompiled code
31290         * loader.h (MonoMethod): we store the method token for use in the
31291         aot compiler. 
31293 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31295         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31296         the hook function called when an assembly is loaded.
31297         
31298         * domain.c: Modified file.
31299         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31301         Fixes bug #33196.
31303 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31305         * reflection.c: Map PEFileKind to the value expected by the WinNT
31306         image loader. 
31308 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31310         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31311         Read until the buffer is filled completely.
31313 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31315         * icall.c: implemented MonoType.InternalGetEvent ().
31317 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31319         * appdomain.c: implemented InitAppDomainSetup. Delayed
31320         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31321         the entry_assembly.
31323         * assembly.c: base_dir is now an absolute path ending with
31324         G_DIR_SEPARATOR.
31326         * icall.c: modified get_location according to the above changes.
31328         * object.c: init AppDomain.SetupInformation for the default domain after
31329         we have the entry assembly.
31331         * domain.c: when unloading a domain, setup = NULL.
31333 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31335         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31337 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31339         * object.h, object.c: introduced mono_object_get_virtual_method ()
31340         to lookup the method invoked on an object when a callvirt is done on
31341         a method.
31342         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31344 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31346         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31347         current domain when loaded an assembly and failed to load it.
31349         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31351 2002-10-31  Dick Porter  <dick@ximian.com>
31353         * icall.c: 
31354         * file-io.h: 
31355         * file-io.c: Return the error status in a parameter, as the
31356         GetLastError() value has long since been blown away if we try and
31357         look it up in a subsequent internal call invocation.  Delete the
31358         GetLastError() internal call, because it's useless.
31360 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31362         * class.[ch]: added cast_class to fix bug 29517
31364 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31366         * marshal.c: create valid IL code in the filter clause:
31367         the new JIT is less forgiving:-)
31369 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31371         * icall.c: removed get_property internal call.
31373 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31375         * appdomain.h domain.c: Added an ID to appdomains.
31376         
31377         * threads.c threads.h icall.c: Implement icall
31378         Thread:GetDomainID(), and remove unused icall 
31379         CurrentThreadDomain_internal.
31381 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31383         * icall.c: Don't recurse through the base types in GetConstructor.
31384         Fixes bug #32063. 
31386 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31388         * mempool.h, mempool.c: added mono_mempool_empty() and
31389         mono_mempool_stats().
31391 2002-10-23  Dick Porter  <dick@ximian.com>
31393         * file-io.c: 
31394         * file-io.h: 
31395         * icall.c: Added MonoIO.GetFileType internal call
31397 2002-10-17  Dick Porter  <dick@ximian.com>
31399         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31400         delegate semaphore before waiting for all threads to finish,
31401         because new threads can also call async delegates.  Fixes bug
31402         32004.
31404         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31405         of 3 seconds, in case another async job is queued.  (This part is
31406         needed because the bug fix reintroduced the 3s exit lag.)  This
31407         makes the mono_runtime_shutdown flag superfluous.
31409 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31411         * reflection.c: include ehader size in method section headers.
31412         Really check for suplicated modules entries.
31414 2002-10-17  Martin Baulig  <martin@gnome.org>
31416         * debug-mono-symfile.c: Added back support for locals.
31418 2002-10-14  Martin Baulig  <martin@gnome.org>
31420         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31421         MONO_TYPE_VOID.
31423 2002-10-14  Martin Baulig  <martin@gnome.org>
31425         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31426         mono_class_get() instead of looking in the class cache. 
31428 2002-10-13  Martin Baulig  <martin@gnome.org>
31430         * debug-mono-symfile.c: Set version number to 28, include the
31431         signature in method names.
31433 2002-10-13  Martin Baulig  <martin@gnome.org>
31435         * debug-mono-symfile.h: Set version number to 27.
31437 2002-10-11  Martin Baulig  <martin@gnome.org>
31439         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31441 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31443         * metadata.c, metadata.h: added helper function to allocate signatures.
31445 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31447         * icall.c: added internal call to get the location of machine.config.
31449 2002-10-08  Martin Baulig  <martin@gnome.org>
31451         * debug-mono-symfile.c: Ignore classes with a pending init for the
31452         moment.
31454 2002-10-03  Dick Porter  <dick@ximian.com>
31456         * threads.c: Freebsd pthread_t is a pointer
31458 2002-10-03  Dick Porter  <dick@ximian.com>
31460         * socket-io.c: Implemented GetHostName_internal
31462 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31464         * mono-config.c:
31465         (mono_config_parse_file): don't leak the text.
31467 2002-10-02  Martin Baulig  <martin@gnome.org>
31469         * debug-mono-symfile.c: Added support for methods.
31471 2002-10-01  Martin Baulig  <martin@gnome.org>
31473         * debug-mono-symfile.c: Don't emit methods and line numbers for
31474         the dynamic symbol file, just write the type table.  We can easily
31475         have an external helper program which creates a symbol file for an
31476         IL file.        
31478 2002-10-01  Dick Porter  <dick@ximian.com>
31480         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
31481         Only add the handle to the cleanup array when we're about to
31482         launch the thread.  Bug 31425 deadlocked when the test was run on
31483         mono under w32.
31485 2002-10-01  Martin Baulig  <martin@gnome.org>
31487         * debug-mono-symfile.c: Added support for properties.
31489 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31491         * reflection.c: unaligned store fix from Mark Crichton
31492         <crichton@gimp.org>.
31494 2002-09-27  Martin Baulig  <martin@gnome.org>
31496         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
31497         New interncall.
31499 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
31501         * assembly.h, assembly.c: use a sane API to hook into the assembly
31502         loading process instead of a useless special-purpouse hack
31503         (ngen needs a hook, too, for example).
31505 2002-09-27  Dick Porter  <dick@ximian.com>
31507         * threads.c (mono_thread_init): Call GetCurrentProcess() so
31508         io-layer can set up some process handle info.  Not needed on w32,
31509         but doesn't hurt either.
31511         * process.c: Pass the program name in the second parameter to
31512         CreateProcess, so the path is searched.  Include the working
31513         directory. Implemented process name, process enumeration, and some
31514         process detail internal calls.
31515         
31516         * icall.c: Added internal calls for process lookup, and some
31517         process details
31519 2002-09-26  Martin Baulig  <martin@gnome.org>
31521         * assembly.c (mono_install_open_assembly_hook): New global
31522         function to install a function to be invoked each time a new
31523         assembly is loaded.
31524         (mono_assembly_open): Run this callback function if set.
31526         * debug-mono-symfile.c: Put back line numbers for the dynamic
31527         symbol file and also record the .il file as source file.  This
31528         allows us to install the temporary symbol file as `file.dbg' just
31529         like a compiler-generated one.
31531 2002-09-26  Nick Zigarovich <nick@chemlab.org>
31533         * Corrected typo in gc.c (BOHEM vs BOEHM).
31535 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31537         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
31538         GetProperties. Also avoid calling g_slist_length in GetProperties and
31539         GetMethods.
31541 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31543         * reflection.c: avoid unaligned stores (bug spotted by
31544         Mark Crichton  <crichton@gimp.org>).
31546 2002-09-25  Martin Baulig  <martin@gnome.org>
31548         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
31549         instead of guint64 for addresses and added prologue/epilogue info.
31551 2002-09-25  Martin Baulig  <martin@gnome.org>
31553         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31554         store line number info.  For the dynamic symbol file, we only need
31555         to provide the JIT generated dynamic line number info for the dynamic
31556         symbol file.
31558 2002-09-25  Martin Baulig  <martin@gnome.org>
31560         * debug-mono-symfile.h: Incremented version number.
31562 2002-09-24  Martin Baulig  <martin@gnome.org>
31564         * class.c (mono_debugger_class_init_func): New global function
31565         pointer variable.
31566         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31567         call it.
31569         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31570         function.  This is called via the mono_debugger_class_init_func
31571         hook to add all types to the dynamic type table.
31572         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31573         from its metadata token.
31575         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31576         New interncall for the debugger.
31578 2002-09-24  Nick Drochak <ndrochak@gol.com>
31580         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31581         before using it in case it is null.
31582         
31583 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31585         * metadata.c: allow custom modifiers in local var signatures
31586         (bug spotted by Zoltan Varga).
31588 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31590         * class.c: deal with the <Module> class that may have a NULL vtable.
31591         Eliminate warnings.
31593 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31595         * image.c, image.h: more strong name helpers.
31596         * monosn.c: more work: convert pem keys to cryptoapi format.
31598 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31600         * string-icalls.c: speedup IndexOf.
31602 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31604         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31606 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31608         * icall.c: cleanup: use mono_object_domain ().
31610 2002-09-23  Martin Baulig  <martin@gnome.org>
31612         * debug-mono-symfile.c: Improved type support.
31614 2002-09-22  Martin Baulig  <martin@gnome.org>
31616         * debug-mono-symfile.c: Added support for reference types and strings.
31618 2002-09-22  Martin Baulig  <martin@gnome.org>
31620         * debug-mono-symfile.c: Started to work on the type table.
31622 2002-09-21  Martin Baulig  <martin@gnome.org>
31624         * debug-mono-symfile.c: Largely reworked the symbol table format.
31625         The symbol table is now incrementally updated each time a new
31626         method is added.  We're now also using our own magic and version
31627         so that you don't need to recompile all your classes if the
31628         dynamic table changes.
31629         (mono_debug_update_mono_symbol_file): Removed.
31630         (mono_debug_symfile_add_method): New function to add a method.
31632 2002-09-21  Martin Baulig  <martin@gnome.org>
31634         * icall.c
31635         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31636         New interncall.
31638         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31639         New interncall to get a method from its metadata token.
31641 2002-09-21  Martin Baulig  <martin@gnome.org>
31643         * debug-mono-symfile.c: Create type table.
31645 2002-09-20  Martin Baulig  <martin@gnome.org>
31647         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31649 2002-09-20  Martin Baulig  <martin@gnome.org>
31651         * debug-mono-symfile.c: Provide information about params and locals.
31653 2002-09-20  Martin Baulig  <martin@gnome.org>
31655         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31656         New interncall.
31658         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31659         interncall to get a method from its metadata token.
31661 2002-09-20  Martin Baulig  <martin@gnome.org>
31663         * debug-mono-symfile.c: Added a few checks for method->header
31664         being non-NULL.  This should never happen, but for the moment
31665         let's use a g_warning() rather than a g_assert().
31667 2002-09-19  Mark Crichton  <crichton@gimp.org>
31669         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31670         even if support for it isn't present.  Added an #ifdef to fix this.
31672         * socket-io.c: Added checks back for Solaris support.
31674 2002-09-19  Martin Baulig  <martin@gnome.org>
31676         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31677         changes in the symbol file format.
31679 2002-09-18  Martin Baulig  <martin@gnome.org>
31681         * debug-mono-symfile.c: Set version number to 21.
31683 2002-09-18  Dick Porter  <dick@ximian.com>
31685         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31686         on netbsd.  Fixes bug 30051.
31688 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31690         * reflection.c:
31691         (set_version_from_string): little fix.
31693 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31695         * monosn.c, Makefile.am: added strong name utility.
31696         * reflection.h, reflection.c: implemented delayed signing,
31697         locale, version and hash id assembly attributes.
31699 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31701         * loader.c, metadata.c: load param attributes in signatures.
31703 2002-09-16  Martin Baulig  <martin@gnome.org>
31705         * debug-mono-symfile.c: Added string table with all method names.
31707 2002-09-14  Martin Baulig  <martin@gnome.org>
31709         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31710         fast method lookup.
31712 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31714         * reflection.c: record the public key token of referenced assemblies.
31716 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31718         * image.c, image.h: added functions to get the strong name and the
31719         public key of an assembly.
31720         * pedump.c: use them.
31722 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31724         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31726 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31728         * marshal.c (mono_marshal_get_managed_wrapper): Added
31729         MONO_TYPE_BOOLEAN 
31731 2002-09-11  Martin Baulig  <martin@gnome.org>
31733         * gc.c: Call GC_unregister_disappearing_link() on all links when
31734         finalizing them, this is necessary to aviod a crash in boehm's
31735         finalize handler.
31737 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31739         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31740         nick@chemlab.org.
31742 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31744         * icall.c: implemented MonoType::Module.
31745         * reflection.c, reflection.h: mono_module_get_object () from
31746         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31748 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31750         * icall.c: ignore overridden methods in GetMethods ().
31751         Fix for FieldInfo::SetValue().
31752         * object.c: handle float/double in runtime invoke.
31754 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31756         * object.c: allow a constructor to be called again on an object.
31758 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31760         * class.h, class.c: move field layout code to it's own function and
31761         export it. Get an interface id earlier. Move fields in MonoClass
31762         so they are more cache friendly and align the bitfields.
31763         * loader.c: temporary handle get_param_names() for a runtime method.
31764         * reflection.c, reflection.h: more code to handle runtime creation of
31765         types.
31767 2002-09-09  Martin Baulig  <martin@gnome.org>
31769         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31770         signature with the pinvoke field being set for the actual call.
31772 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31774         * icall.c: removed some unused icalls. Start of map of glib charsets
31775         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31777 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31779         * debug-helpers.c: break infinite loop (found and fixed by
31780         Holger Arnold <harnold@gmx.de>).
31782 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31784         * icall.c: target may be null in create_delegate.
31786 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31788         * marshal.c: handle a boolean return type.
31790 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31792         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31794 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31796         * gc.c: fix weakreferences.
31798 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31800         * icall.c: added icall to get default codepage.
31802 2002-09-03  Dick Porter  <dick@ximian.com>
31804         * threads.h: 
31805         * threads.c: Use MonoThread instead of MonoObject where
31806         apropriate.
31808         Store running thread objects in a hash table, so that we have all
31809         the info to hand when waiting for them to finish
31810         (means we don't need OpenThread() any more, so mingw builds should
31811         be fully functional again.)
31813         * verify.c:
31814         * object.h: Added thread ID to MonoThread
31816 2002-09-03  Martin Baulig  <martin@gnome.org>
31818         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31820 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31822         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31824 2002-09-03  Martin Baulig  <martin@gnome.org>
31826         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31827         argument to store the end address of the disassembled instruction.
31829         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31830         here from debug-symfile.h.
31831         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31832         JIT into this struct.
31833         (MonoSymbolFile): Added `char *image_file' field.
31834         (MonoDebugGetMethodFunc): Removed.
31835         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31836         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31837         (mono_debug_find_method): New method.
31839         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31840         create a full symbol file.
31841         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31842         and static symbol files.
31843         (mono_debug_find_method): The symbol file keeps an internal method hash,
31844         call this to get a MonoDebugMethodInfo from a MonoMethod.
31846         * debug-symfile.[ch]: Removed.
31848 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31850         * image.c (do_mono_image_open): Remove linker version check.
31852 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31854         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31855         wrappers for instance methods.
31856         
31857 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31859         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31861 2002-08-28  Dick Porter  <dick@ximian.com>
31863         * Makefile.am: Export HOST_CC for w32 builds
31865 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31867         * file-io.c process.c: MonoString are null terminated, no
31868         need for mono_string_to_utf16() anymore.
31870 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31872         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31874 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31876         * icall.c, reflection.h: speedup System.MonoType.
31878 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31880         * reflection.c: allow null as the value of a string argument in
31881         custom attributes constructors.
31883 2002-08-27  Martin Baulig  <martin@gnome.org>
31885         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31886         `trampoline_address' field.
31888 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31890         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31891         check (fixes bug #29486) 
31893 2002-08-27  Martin Baulig  <martin@gnome.org>
31895         * debug-mono-symfile.c: Changed the file format in a way that allows us
31896         open it read-only and to use a specially malloced area for all the
31897         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31898         debugging IL code and there is no MCS generated symbol file for it.
31900 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31902         * object.c: added a define for a good string and array
31903         creation speedup (not enabled by default because we need to deal with
31904         the synch stuff).
31906 2002-08-26  Martin Baulig  <martin@gnome.org>
31908         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31909         function to create a dynamic symbol file.  This is used by the
31910         debugger to create a symbol file for IL code on-the-fly.
31912 2002-08-26  Martin Baulig  <martin@gnome.org>
31914         * loader.c (mono_lookup_pinvoke_call): Include the error message
31915         from g_module_error() in the error message.
31917 2002-08-24  Martin Baulig  <martin@gnome.org>
31919         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31920         function to update the symbol file.  The symbol file is mmap()ed
31921         writable, but private.  This allows us to install the symbol file
31922         together with the assembly.
31924 2002-08-24  Martin Baulig  <martin@gnome.org>
31926         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31927         but they can read the new symbol file format which mcs is now creating.
31929         * debug-symfile.c (mono_debug_find_source_location): Moved to
31930         debug-mono-symfile.c; this is now operating on the new symbol file.
31932 2002-08-23  Martin Baulig  <martin@gnome.org>
31934         * debug-helpers.c (mono_method_desc_from_method): New function to get
31935         a MonoMethodDesc from a MonoMethod.
31937 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31939         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31940         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31942 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31944         * string-icalls.[ch]: make helper methods static.
31946 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31948         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31949         types to it and to SetValueInternal.
31951         * object.c: Moved handle_enum label to its proper place. This was the
31952         f... bug! ;-)
31954         This time i compiled mcs and gtk-sharp and they both work.
31956 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31958         * icall.c: reverted partially my previous patch until 
31959         object.c:set_value handles enums correcly.
31961 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31963         * icall.c:
31964         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
31965         (ves_icall_System_Environment_get_MachineName): removed warning when
31966         compiling under cygwin.
31968 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31970         * object.c: fixed field_get_value() for reference types.
31972 2002-08-22  Dick Porter  <dick@ximian.com>
31974         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
31975         Don't free a buffer while it's still needed.  Patch from Jonathan
31976         Liger <Jonathan.liger@wanadoo.fr>
31978 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
31980         * icall.c (ves_icall_System_Environment_get_Platform): Add new
31981         internal call.
31983 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
31985         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
31986         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
31988         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
31989         we call unmanaged code which throws exceptions.
31991 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31993         * appdomain.h: added per-domain entry_assembly.
31994         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
31995         arguments.
31996         * icall.c: Assembly::GetEntryAssembly icall.
31997         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
31998         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32000 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32002         * appdomain.h, gc.c: added mono_domain_finalize ().
32004 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32006         * object.c:
32007         (mono_print_unhandled_exception): changed g_warning by g_printerr
32008         because g_log has a 1024 characters limit (yeah, i got a big stack
32009         trace). Don't print exception name, that should be in ToString 
32010         returned string.
32012 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32014         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32015         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32017 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32019         * object.c:
32020         (mono_print_unhandled_exception): after previous commit, i realized
32021         that MS calls ToString on the exception. I changed this function to
32022         do that. This way we get stack_trace for free.
32024 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32026         * object.c:
32027         (mono_print_unhandled_exception): invoke Message property instead of
32028         getting 'message' field from Exception. Don't allocate memory for
32029         'trace' and 'message' if not needed.
32031 2002-08-18  Dick Porter  <dick@ximian.com>
32033         * unicode.c: Fix asserts to match Encoder.cs checks
32035 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32037         * marshal.c: fix unaligned store issue and a few wrong
32038         opcode argument types.
32040 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32042         * icall.c: added GetUninitializedObjectInternal internal call.
32044 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32046         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32047         to the right domain.
32049 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32051         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32053         * class.c (class_compute_field_layout): set blittable to false for Strings
32055         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32057 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32059         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32060         first chunk of code to create types at runtime. Code to
32061         handle ReflectedType/DeclaringType. Make reflection handles
32062         domain specific.
32064 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32066         * class.c: set correct name in arrays.
32068 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32070         * appdomain.c (mono_domain_transfer_object): make it work with
32071         valuetypes. bug fixes.
32073 2002-08-12  Dick Porter  <dick@ximian.com>
32075         * object.h: Rename some parameters to avoid c++ keywords (Patch
32076         from Joseph Wenninger <kde@jowenn.at>)
32078 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32080         * icall.c: added icall to implement Assembly.GetFile*.
32082 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32084         * reflection.h, reflection.c: code to embed managed resources.
32086 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32088         * class.c: move all the type size stuff into
32089         class_compute_field_layout().
32091 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32093         * class.c: ensure enums have always the correct instance size.
32094         * unicode.c: remove wrong assert.
32096 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32098         * assembly.c: fix mem corruption issue.
32099         * image.h, image.c: added mono_image_get_resource () to access
32100         managed resources.
32101         * icall.c: implemented Assembly.EntryPoint property and some
32102         Managed Resources related internalcalls.
32105 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32107         * image.c, image.h: impemented mono_image_get_entry_point ().
32108         * appdomain.c: use mono_image_get_entry_point.
32110 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32112         * reflection.c: support the object type argument when loading
32113         custom attributes.
32115 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32117         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32118         String as return type.
32120 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32122         * reflection.c: fix encoding of named args for custom attrs to match
32123         the ms implementation. Read them back when instantiating custom
32124         attributes.
32126 2002-08-02  Radek Doulik  <rodo@ximian.com>
32128         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32129         by Dietmar as quick fix
32130         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32131         16 as stack size, used on more places as quick fix before Dietmar
32132         will fix it properly
32134 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32136         * object.h, object.c: added accessors for fields and properties.
32138 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32140         * class.c, class.h: made mono_class_get_field_from_name ()
32141         loop on parent types.
32142         Added mono_class_get_property_from_name ().
32144 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32146         * class.c, class.h: move the code to setup the type vtable in its own
32147         function so that it can be reused also for types created at runtime.
32148         Eliminate the "class" identifier from the header file.
32149         * reflection.c: setup the vtable for enums so that we can create
32150         objects for use in SetConstant ().
32152 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32154         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32155         instead of the delegate itself as this pointer (bug #28383)
32157 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32159         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32160         conversions.
32162 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32164         * loader.c: don't set the pinvoke bit on icalls.
32166 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32168         * debug-helpers.c (mono_method_full_name): only print a number to
32169         indicate wrapper type (so that the output is more readable in traces).
32171 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32173         * class.c (mono_class_init): include method override patch from Paolo
32175 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32177         * icall.c: fixed GetTypeCode().
32179 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32181         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32182         use real delegate invoke function to make it work with multicast
32183         delegates (fix bug# 28291).
32185 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32187         * object.c: load constant strings.
32189 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32191         * reflection.c: no magic numbers.
32192         * tabledefs.h: security action enum.
32194 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32196         * assembly.c: fix possible memory corruption.
32198 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32200         * reflection.h, reflection.c: added support for linking resources.
32201         * verify.c: check we have an updated corlib.
32203 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32205         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32206         string arrays.
32207         (mono_marshal_string_array): null terminate unmanaged string arrays.
32208         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32210 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32212         * icall.c: Type.GetType () can now return also types from the
32213         calling assembly.
32215 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32217         * loader.h, loader.c: stack walking support.
32218         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32219         GetCallingAssembly.
32221 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32223         * marshal.c: added optimisations for blittable types 
32225         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32226         (mono_class_setup_mono_type): set blittable attribute for single
32227         and double.
32229         * marshal.c (mono_string_utf8_to_builder): impl.
32230         (mono_string_builder_to_utf8): impl.
32231         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32233 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32235         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32236         (mono_marshal_get_managed_wrapper): impl. byref types
32238 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32240         * icall.c:
32241         (search_method): don't display debug message. 
32243 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32245         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32247 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32249         * appdomain.c: set the missing filename when throwing exception.
32251 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32253         * metadata.c (mono_type_size): code cleanup
32254         (mono_type_stack_size): removed some test code
32256 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32258         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32259         mono_get_exception_file_not_found now.
32261         * exception.c (mono_exception_from_name_two_strings): New version
32262         that will call a constructor with two string arguments. 
32263         (mono_get_exception_file_not_found): New helper routine, used to
32264         report file-not-found errors.
32266 2002-07-20  Dick Porter  <dick@ximian.com>
32268         * process.h:
32269         * process.c: Pass file handles to CreateProcess
32270         
32271         * icall.c:
32272         * file-io.h:
32273         * file-io.c: Implemented CreatePipe
32275 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32277         * metadata.c (mono_get_param_info): set alignment for value types
32279 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32281         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32282         Constify mono_domain_assembly_open().
32283         * loader.c: handle null namespace in icalls.
32285 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32287         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32288         (emit_str_to_ptr_conv): marshal object as structs
32290         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32292         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32294 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32296         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32297         (mono_marshal_get_native_wrapper): we an now return value types
32299 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32301         * verify.c: more checks implemented.
32303 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32305         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32306         (fix bug #27695)
32307         (mono_marshal_get_native_wrapper): allow byref arguments
32308         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32309         impl. PtrToStringXXX methods
32310         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32311         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32312         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32313         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32314         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32316 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32318         * reflection.c: fix buglet in parsing an assembly name.
32320 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32322         * marshal.c (emit_ptr_to_str_conv): first impl.
32324 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32326         * object.c, class.h: cache the vtable in the class as suggested by
32327         vargaz@freemail.hu (Zoltan Varga).
32329 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32331         * class.h, loader.c: added mono_field_from_token().
32332         * verify.c: first cut of type checking code.
32334 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32336         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32338 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32340         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32341         (fix bug #27782)
32342         (mono_marshal_get_remoting_invoke): impl.
32343         (mono_delegate_begin_invoke): impl.
32344         (mono_mb_emit_save_args): impl.
32345         (mono_delegate_end_invoke): impl.
32346         (mono_marshal_get_delegate_begin_invoke):
32347         (mono_marshal_get_delegate_end_invoke):
32348         (mono_marshal_get_delegate_invoke): generate a special name for
32349         those methods (including the signature) and associate them whith
32350         the delegate class. 
32352 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32354         * reflection.[ch]: 
32355         (mono_reflection_type_from_name): now it has a MonoImage parameter
32356         which is used as the default image to search the type in. If the image
32357         is NULL or getting the type from it fails, it defaults to corlib.
32359         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32360         new parameter.
32362 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32364         * reflection.c: update the parameter table index.
32366 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32368         * domain.c: don't include the mark byte in the string hash.
32370 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32372         * icall.cs: icall for Type.GetTypeCode ().
32373         * verify: a couple of fixes and disabled local initialization checks.
32375 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32377         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32379         * debug-helpers.c (mono_method_full_name): print the type of the
32380         runtime wrapper
32382         * metadata.c (mono_signature_hash): a hash function for signatures
32383         (mono_signature_hash): better hash algorithm
32385         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32387         * debug-helpers.c (mono_method_full_name): this can now generate
32388         method names with signatures
32390         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32391         method dont have this pointers.
32393 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32395         * reflection.c: fixup typebuilder tokens.
32396         * image.c: fix buglet.
32397         * marshal.h: remove whitespace.
32398         * metadata.h, metadata.c: reinstate code that was removed.
32399         * verify.c: handle catch directives and fix another couple of bugs.
32401 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32403         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32404         (mono_marshal_get_native_wrapper): make it comp. with the old code
32405         (mono_marshal_get_native_wrapper): support boolean
32406         (mono_marshal_get_managed_wrapper): support more types
32408 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32410         * class.c (class_compute_field_layout): compute class->blittable attribute.
32412 2002-07-09  Dick Porter  <dick@ximian.com>
32414         * threads.c: Make the thread cleaning up cope with threads that
32415         call ExitThread()
32417 2002-07-08  Radek Doulik  <rodo@ximian.com>
32419         * reflection.c (method_encode_code): use non-translated values to
32420         compute finally_start, this fixes exception handling on ppc, yay!
32422         * decimal.h (struct signscale): fix endianess
32424 2002-07-07  Radek Doulik  <rodo@ximian.com>
32426         * reflection.c: swap box_val and not val
32428 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32430         * reflection.c, reflection.h: handle full assembly info in type name.
32431         Handle Type arguments when loading custom attributes.
32432         * icall.c: updated to use new mono_reflection_type_from_name () method.
32434 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32436         * loader.c:
32437         (method_from_memberref): also print assembly name when method not found.
32439 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32441         * icall.c:
32442         (ves_icall_TypeGetProperties): fixed bug #27473. 
32444 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32446         * reflection.c: display image name and token when cannot find the
32447         .ctor for an attribute.
32449 2002-07-05  Martin Baulig  <martin@gnome.org>
32451         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32453 2002-07-04  Dick Porter  <dick@ximian.com>
32455         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32456         compile on mingw.  This will cause mingw builds to not wait for
32457         subthreads to terminate after the main thread does.  I've lodged a
32458         bug with the mingw developers for them to wrap OpenThread().
32460 2002-07-03  Dick Porter  <dick@ximian.com>
32462         * threads.c: Store thread IDs instead of handles, because
32463         GetCurrentThread() returns a pseudohandle and therefore stores
32464         useless values.  mono_thread_cleanup() continues checking the
32465         array of threads until it is empty, to cope with subthreads
32466         spawning new threads after the main thread has finished.
32468         * profiler.h:
32469         * profiler.c:
32470         * profiler-private.h: Pass the thread ID to thread profiler
32471         functions, instead of a handle
32473 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32475         * verify.c: fixes to make it more usable.
32476         * pedump.c: added --verify code to verify IL code in an assembly.
32478 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32480         * reflection.c: turn errors into warnings to allow compiling corlib.
32482 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32484         * reflection.c: add special cases to compile corlib.
32486 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32488         * reflection.c: handle properties with only a set method.
32490 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32492         * opcodes.h: add enum with opcodes in opval order.
32494 2002-07-01  Dick Porter  <dick@ximian.com>
32495         
32496         * object.h:
32497         * object.c (mono_runtime_run_main): Removed unneeded argument
32499 2002-06-28  Martin Baulig  <martin@gnome.org>
32501         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32503 2002-06-27  Dick Porter  <dick@ximian.com>
32505         * threads.c: Store the handle in both the parent thread and in the
32506         subthread, to minimise the time between starting a new thread and
32507         storing its ID.
32509 2002-06-26  Dick Porter  <dick@ximian.com>
32511         * appdomain.c (mono_runtime_cleanup): Close the socket library
32512         after all the threads have finished, not before
32514 2002-06-26  Martin Baulig  <martin@gnome.org>
32516         * debug-symfile.c (mono_debug_find_source_location): Added
32517         `guint32 *line_number' argument.  If it's not NULL, store the line number
32518         there and return the file name without the line number.
32520 2002-06-25  Dick Porter  <dick@ximian.com>
32522         * icall.c:
32523         * process.h:
32524         * process.c: Process forking and other support functions
32526 2002-06-25  Dick Porter  <dick@ximian.com>
32528         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
32529         things dont happen when the image is closed.
32530         (mono_image_lookup_resource): Walk the resource section looking
32531         for a particular entry
32533         * cil-coff.h: PE resource section decoding
32535 2002-06-25  Dick Porter  <dick@ximian.com>
32536         
32537         * assembly.h:
32538         * assembly.c: 
32539         (mono_assembly_foreach): Accessor functions to walk the list of
32540         loaded assemblies
32541         (mono_assembly_set_main):
32542         (mono_assembly_get_main): Process methods need to know which
32543         assembly is the "main" one
32545         * object.c (mono_runtime_run_main): Record the main assembly
32547         * debug-helpers.c: Fix typo
32549 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
32551         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32552         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32554 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32556         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32558 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32560         * image.c (do_mono_image_open): Initialize reference count,
32561         otherwise we leak the MonoImage.
32563 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32565         * reflection.c: small tweak to handle self-hosting.
32567 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32569         * reflection.c: fix type name parse code.
32571 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32573         * reflection.c: break out of the loop.
32574         * image.c: special case corlib.
32576 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32578         * reflection.c: add all the custom attrs at the end to ensure the
32579         ctors have been properly initialized when the attributes are defined
32580         in the current assembly.
32582 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32584         * reflection.c: handle correctly multiple-nested types.
32586 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32588         * row-indexes.h: fix typos.
32589         * reflection.c: adjust for typos and fix method_def_or_ref
32590         encoding in MethodImpl table.
32592 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32594         * reflection.c: fix entry point patching (thanks Serge!).
32596 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32598         * verify.c: add check for System.Exception
32600 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32602         * image.c, class.c: minifix for code just c&p'ed.
32603         * reflection.c: warning fix.
32604         * object.h, loader.h, domain.c: load also StringBuilder.
32606 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32608         * marshal.h, marshal.c: some support code to handle complex marshaling.
32610 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32612         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32613         Better signatures with vtable error dump.
32615 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32617         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32619 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32621         * icall.c (ves_icall_Type_GetField): impl.
32623 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32625         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32626         to retrieve a marshal description blob for a field or param.
32628 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32630         * reflection.h, reflection.c: change order of nested type emission
32631         to avoid table corruption. The NestedTypes table is sorted.
32632         * icall.c: change order of GetConstructor results to workaround mcs bug.
32634 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32636         * reflection.h, reflection.c: handle field and param marshal
32637         information.
32639 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32641         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32643 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32645         * reflection.c: fix call convention.
32647 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32649         * reflection.h, reflection.c: mono_image_get_memberref_token()
32650         takes a type instead of a class, now. Added
32651         mono_image_get_array_token() to create tokens for the special
32652         multi-dim array methods.
32654 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32656         * assembly.c: handle modules (no assembly table). Split
32657         loading references in its own function.
32658         * class.c: handle moduleref resolution scope.
32659         * image.c, image.h: cache module name in image.
32661 2002-06-07  Martin Baulig  <martin@gnome.org>
32663         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32664         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32666 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32668         * icall.c: more signature fixes that used uint instead of int.
32670 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32672         * reflection.c: fixed signature of field refs.
32674 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32676         * class.c, reflection.c: handle typerefs of nested types
32677         (both on read and when writing files).
32679 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32681         * icall.c: fix method signatures that tried to workaround the previous
32682         typo, d'oh!
32684 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32686         * debug-helpers.c: fix typo.
32688 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32690         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32691         rewrote the PE/COFF writing code (our programs are understood by the
32692         ms runtime, now).
32694 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32696         * gc.c, gc.h, icall.c: weakreference support.
32698 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32700         * Makefile.am, mono-config.c: use $(sysconfdir).
32702 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32704         * icall.c: changed default precision of Double.ToString() to 15.
32705         Fixed memory leak. Unified with Single.ToString.
32707 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32709         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32711 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32713         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32714         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32715         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32716         and myself.
32718 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32720         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32722 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32724         * reflection.c, socket-io.c: more compilation fixes.
32726 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32728         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32729         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32730         unicode.c: warning and compiler compatibility fixes.
32732 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32734         * class.h, metadata.c: fixed warnings/compilation errors.
32736 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32738         * Makefile.am, mono-config.c, mono-config.h: configuration file
32739         support routines.
32740         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32741         config file. Export methods to insert and lookup mappings.
32743 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32745         * reflection.c: handle types and boxed objects in custom attr
32746         constructors.
32748 2002-05-30  Martin Baulig  <martin@gnome.org>
32750         * debug-symfile.c
32751         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32753 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32755         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32756         to lookup the implmap row for a P/Invoke method.
32757         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32758         P/Invoke method from the runtime on an as needed basis.
32760 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32762         * metadata.c (mono_metadata_parse_signature): impl.
32764 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32766         * class.c: handle .pack directive.
32768 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32770         * object.c: initialize static fields with RVA data.
32772 2002-05-25  Martin Baulig  <martin@gnome.org>
32774         * debug-symfile.c
32775         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32777 2002-05-24  Martin Baulig  <martin@gnome.org>
32779         * debug-symfile.c
32780         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32781         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32782         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32784 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32786         * object.c: special case string ctros in invoke.
32787         * gc.c: silly whitespace changes.
32789 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32791         * threadpool.[ch]: impl. a threadpool that can
32792         be used by mint and mono.
32794 2002-05-22  Martin Baulig  <martin@gnome.org>
32796         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32797         The first argument is now a `MonoReflectionModuleBuilder *', the return
32798         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32799         `methods' field to get the method builder.  The `token' argument is the
32800         unfixed token.
32802         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32803         invalid characters instead of g_assert_not_reached()ing.  This seems
32804         to be the behaviour of mscorlib.
32806 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32808         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32809         Hestilow to fix bug #25104
32811 2002-05-21  Martin Baulig  <martin@gnome.org>
32813         * debug-symfile.c (mono_debug_find_source_location): New function.
32814         Looks up an IL offset in the line number table and returns the source
32815         location as a string.
32817 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32819         * icall.c:
32820         (mono_double_ToStringImpl): changed %f by %g until we have something
32821         better.
32823 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32825         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32826         parameters first in C#.
32828 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32830         * icall.c, reflection.h: added icall to get info about an event.
32832 2002-05-20  Radek Doulik  <rodo@ximian.com>
32834         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32835         endian
32836         (mono_value_box): don't use memcpy for small sizes on
32837         architectures with unaligned access
32839 2002-05-20  Martin Baulig  <martin@gnome.org>
32841         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32842         if `tb->parent == NULL'.
32843         (mono_reflection_create_internal_class): New function.  This is
32844         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32845         for enum types.
32847         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32848         New interncall.
32850 2002-05-19  Martin Baulig  <martin@gnome.org>
32852         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32853         argument to get the length, don't default to the array length.
32855 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32857         * assembly.c (mono_assembly_setrootdir): New function used to
32858         override the MONO_ASSEMBLIES directory.
32860 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32862         * icall.c: ValueType_GetHashCode() initialize local var.
32864 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32866         * reflection.c: sort custom attributes table.
32868 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32870         * reflection.c: support named args in custom attributes (write support).
32872 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32874         * reflection.c: fix finally position calculation.
32876 2002-05-15  Radek Doulik  <rodo@ximian.com>
32878         * reflection.c: fixed endianess at many places
32880         * icall.c (ves_icall_InitializeArray): comment out debug msg
32882 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32884         * object.c (mono_unhandled_exception): new function to handle
32885         unhandled exceptions.
32886         (mono_unhandled_exception): call the UnhandledException event.
32887         (mono_runtime_delegate_invoke): impl.
32889 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32891         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32892         returns the RVA, not the direct pointer to the data. Handle the case
32893         when the class size is fixed.
32895 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32897         * reflection.c: fix some endianess issues.
32899 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32901         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32903         * threads.c (mono_thread_init): added a callback which is invoked
32904         at thread start.
32906 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32907         
32908         * icall.c: make GetHashCode return non-negative values.
32910 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32912         * object.c, icall.c, gc.c: revert to address-based hashcode.
32914 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32916         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32918 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32920         * icall.c, class.c: special case <Module>.
32922 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32924         * icall.c: fix bug in GetNow().
32926 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32928         * object.c (mono_runtime_class_init): make sure that we call all
32929         static class constructors.
32931 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32933         * reflection.c: sort methodsemantics table.
32935 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32937         * reflection.h, reflection.c: honour init locals setting.
32939 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32941         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32943 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32945         * reflection.c: support ContructorBuilders in attribute blob creation.
32947 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32949         * reflection.c: some changes to build a binary that can be run
32950         directly in windows.
32952 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32954         * loader.c: print a big message when an icall can't be found.
32956 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32958         * string-icalls.c: fix bug 24248.
32960 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32962         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
32963         icall.c, reflection.h: separate assembly loading by pathname and by
32964         assembly name. Use the MONO_PATH env var to search for assemblies.
32966 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32968         * assembly.c, image.h: add some support for assemblies
32969         with multiple modules.
32970         * class.c, class.h: export mono_class_from_typeref().
32971         * loader.c: remove duplicated code and use mono_class_from_typeref(),
32972         instead.
32974 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32976         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
32977         documentation says (the ECMA one is correct).
32979 2002-05-02  Dick Porter  <dick@ximian.com>
32981         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
32982         Don't name the synchronisation mutex.
32984 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
32986         * rand.c
32987         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
32988         Make the prototypes match.
32989         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
32990         Same.
32992         * icall.c
32993         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
32994         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
32995         all systems have tm.tm_zone, so use strftime() with %Z to print
32996         the timezone abreviation into a temp string.
32998         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
32999         rather than mono_array_addr() on a MonoString on Big Endian
33000         machines.
33002 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33004         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33005         fix bug 24041
33007 2002-04-30  Dick Porter  <dick@ximian.com>
33009         * socket-io.c: Cope with SOCKET being an integer rather than a
33010         pointer now.
33012         * threads.c: Added Thread_free_internal, to deal with thread
33013         handle cleanup.  Moved calls to handle_store() and handle_remove()
33014         to start_wrapper(), so each can only be called once.  Allocate
33015         synchronisation blocks with GC_malloc(), and use GC finalisation
33016         to close the handles.
33018         * icall.c: added System.Threading.Thread::Thread_free_internal
33020 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33022         * icall.c: support Environment.Exit, CommandLineArgs().
33024 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33026         * object.c, object.h: added mono_runtime_run_main () and
33027         mono_runtime_get_main_args () for use in System.Environment.
33029 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33031         * gc.c: fix thinko, enable actual finalization since the jit is now
33032         fixed.
33034 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33036         * gc.c, object.c: take into account that an object may be offset wrt the address
33037         returned by GC_malloc().
33039 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33041         * image.c: handle files without entries in the assembly table (modules).
33043 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33045         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33046         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33047         allowed to be null when it's System.Object class setup.
33049 2002-04-27  Martin Baulig  <martin@gnome.org>
33051         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33052         if `tb->parent == NULL' rather than crashing.
33054 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33056         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33057         calling acos() where asin() should have been called.
33059 2002-04-26  Martin Baulig  <martin@gnome.org>
33061         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33062         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33063         there's a subdirectory called `System', but we don't want to read that
33064         subdirectory as an assembly.
33066 2002-04-25  Martin Baulig  <martin@gnome.org>
33068         * debug-symfile.c: Reflect latest MonoString changes.
33070 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33072         * rand.c, rand.h: instance method icalls need to have an explicit
33073         this pointer as first argument in the C implementation.
33075 2002-04-25  Nick Drochak <ndrochak@gol.com>
33077         * icall.c: Fix typo in map for GetNonZeroBytes
33079 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33081         * string-icalls.c : String does now passes unit tests without any 
33082         errors, the following changes has been made:
33083         
33084         Implemented replace methods.
33085         Renaming of methods to (try) follow the standard.
33086         Fixed compare ordinal
33087         Made all memory allocated directly to function instead of via icall function.
33088         Small performance fix in is_in_array function
33089                         
33090  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33092         c (mono_string_Internal_ctor_charp_int_int):
33093         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33094         sindex < 0, throw ArgumentOutOfRangeException instead of
33095         ArgumentNullException.
33097         Added new check for length == 0, however
33098         I need to make it return String.Empty from the C code.
33099         
33100         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33101         that calculate the length for us here.
33102         
33103         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33104         mono_string_new_utf16 with mono_string_new, since value is utf8.
33106 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33108         * object.c: register the object for finalization if needed.
33109         Allocate one more char in the string for the terminating 0 char.
33111 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33113         * class.c, class.h, image.c: check if a type implemenst a destructor.
33114         Use the proper key for array class lookups.
33115         * icall.c: register the icalls in the System.GC class.
33116         * gc.c, gc.h: GC-related functions and icalls.
33118 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33120         * icall.c:
33121         * socket-io.c:
33122         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33123         changed a couple of free () by g_free ().
33125         * decimal.c: one-liner in the comments for decimal2string ().
33127 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33129         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33131 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33133         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33134         * object.c (mono_runtime_invoke_array) : handle null in params
33136 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33138         * string-icalls.c: fixed bug in split (one off bug)
33140 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33142         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33143         * icalls.c: added String::Equals as internal method
33145 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33147         * threads.c: fixed bug in the double interlocked functions
33149 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33151         * threads.c: implemented all of the new interlocked icalls.
33152         * string-icalls.c: fix a bug in insert.
33153         * icalls.c: added the icalls for interlocked, removed old string functions.
33154         
33155 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33157         * loader.c: fix off-by-one error when reading argument names.
33159 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33161         * profiler.c: win32 counter implementation (untested).
33162         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33163         (the latter needs testing and more complete impl. from win32 folks).
33165 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33167         * object.c: mono_array_new_full workaround mono_array_class_get
33168         problem.
33170 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33172         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33173         * object.h (mono_string_chars): Changed casting type.
33175 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33177         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33178                            method signatures to use gunichar2 instead of gint16.
33180 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33182         * object.h, object.c: domain-specific versions of mono_object_new and
33183         mono_array_new.
33185 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33187         * object.c: changed String layout
33189         * string-icalls.c (mono_string_Internal_ctor_chara): added
33190         internal string constructors.
33192 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33194         * threads.c: pass 'this' to the thread start routine.
33196 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33198         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33199         InternalCompareStr don't call twice mono_string_cmp_char for the last
33200         character. Improved performance in mono_string_cmp_char.
33202 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33204         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33205         code into its own library: libmonoruntime.
33207 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33209         * object.h, object.c: changed array format so that szarrays do not
33210         require a bounds structure.
33211         * icall.c, appdomain.c: support for new szarray format.
33213 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33215         * metadata.c: compare also the retuns type when comparing signatures:
33216         we didn't do this as an optimization since really overloaded methods
33217         must differ also in the arguments, but this doesn't work with
33218         low-level IL code (or when using explicit conversion operators: see
33219         bug#23498 for an example).
33221 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33223         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33225 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33227         * icall.c: make MonoType::GetElementType its own icall.
33229 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33231         * icall.c: remove MonoMethod_get_Name().
33232         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33233         object.
33235 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33237         * string-icalls.c: optimized a few methods.
33239 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33241         * icall.c: added all new string internal calls
33242         * string-icalls.c: added, new string internal call implementation.
33243         * object.c: added mono_string_new_size for allocating a string a size
33245 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33247         * object.c (mono_object_isinst): use the same code as in the
33248         optimized x86 version.
33250 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33252         * profiler.c: TSC-based timer code (faster and more accurate).
33253         Not hooked up in configure, yet (set USE_X86TSC to 1).
33255 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33257         * profiler.c, profiler.h: track time spent compiling methods.
33258         * threads.c: track thread creation/destruction.
33260 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33262         * profiler.c, profiler.h, profiler-private.h: profiling interface
33263         and sample implementation. Moved here so that it can be used also by
33264         the jit.
33266 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33268         * reflection.c, reflection.h: keep types and other handles separate in
33269         the hash tables for referred tokens. Add guid for modules.
33271 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33273         * assembly.c: fix bugs found with valgrind.
33274         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33276 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33278         * threads: added icall support for getting current domain for
33279                    the thread.
33281 2002-04-13  Martin Baulig  <martin@gnome.org>
33283         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33284         (MonoDebugVarInfo): Added `index' field for register based addresses.
33285         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33286         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33287         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33288         `MonoDebugVarInfo *this_var'.
33290         * debug-symfile.c (relocate_variable): New static function to write
33291         a location description for a local variable or method parameter.
33293 2002-04-12  Martin Baulig  <martin@gnome.org>
33295         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33296         stack offset and begin/end scope address of a local variable.
33297         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33298         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33299         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33301         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33302         Added new relocation types for start/end scope of a local variable.
33304 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33306         * object.h: add mono_object_domain() macro.
33307         * reflection.c: handle typespecs.
33308         * icall.c: MonoMethod::get_Name() implementation.
33310 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33312         * icall.c: String::GetHashCode() icall implementation.
33314 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33316         * icall.c: String::IndexOfAny icall.
33317         * object.c, object.h: make array->max_length more useful.
33318         Intrduced mono_object_class() and mono_string_length() macros.
33320 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33322         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33323         instead of g_unichar_isdigit.
33325 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33327         * icall.c: Implement a simple Double.ToString().
33329 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33331         * appdomain.h: only io-layer.h is supposed to be included.
33332         * icall.c: explicitly import environ. Fix warning.
33334 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33336         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33337                 return true even if it's not Daylight Savings time.
33338                 Only return false for the case where the function isn't
33339                 implemented for a plaform (read Windows).
33341 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33343         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33344         data with a mutex.
33346 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33348         * mempool.c (mono_mempool_alloc): only use g_malloc when
33349         absolutely necessary.
33351 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33353         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33355         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33356         (mono_class_proxy_vtable): use domain mempool
33358 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33360         * appdomain.h, appdomain.c: split initialization that requires the
33361         execution engine support into mono_runtime_init().
33363 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33365         * class.c (mono_class_init): don't include vtable inside MonoClass
33366         to save some memory, gather some statistics.
33367         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33369 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33371         * icall.c: internalcall implementation for ValueType.Equals().
33373 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33375         * object.c (mono_message_init): moved 
33376         (mono_runtime_exec_main): new arch. independent impl.
33377         (mono_runtime_invoke_array): new method - like
33378         mono_runtime_invoke, but you can pass an array of objects.
33379         (mono_remoting_invoke): new arch. independent impl.
33380         (mono_message_invoke): new arch. independent impl.
33381         (mono_runtime_class_init): new arch. independent impl.
33382         (mono_runtime_object_init): new arch. independent impl.
33384 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33386         * metadata.c, object.c, reflection.c: documented the exported
33387         functions.
33389 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33391         * icall.c: simpler code to pass the assembly builder data to corlib.
33392         Implement GetNestedTypes() internalcall.
33394 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33396         * class.c: warn if a type can't be loaded.
33398 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33400         * image.h: typedef MonoImageOpenStatus
33401         * types.h: removed unused file
33402         
33403 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33405         * icall.c: Enum_ToObject accepts enum value arguments.
33407 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33409         * class.c: move initialization of properties, events and nested
33410         classes, so that they happen for interfaces, too.
33412 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33414         * icall.c: cleanup some ugly casts in Array_SetValue*.
33416 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33418         * icall.c: the values array fro enums is of the correct type, now.
33419         Implement (correctly) getFullName instead of assQualifiedName for
33420         MonoType.
33421         * reflection.h, reflection.c: added mono_type_get_name ().
33423 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33425         * assembly.c, image.h: for each MonoImage, record from wich assembly
33426         it was loaded.
33427         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33428         Make Type.Assembly work.
33430 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33432         * debug-symfile.h: use char* instead of gpointer to avoid
33433         unnecessary casts.
33435         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33437         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33438         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33440 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33442         * icall.c (mono_message_init): impl. (code cleanup)
33443         (ves_icall_InternalExecute): impl. FieldGetter
33445         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33446         defined we call all (non-static)methods through the vtable. 
33448 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33450         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33451         finalizer even though the memory is still referenced (and the chunk of
33452         memory is not freed).
33454 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33456         * assembly.c: fix brokeness.
33458 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33460         * class.c: kill some warnings. Check explicit interface method
33461         implementation also without considering the namespace.
33462         Load also literal strings in static class data.
33464 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33466         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33467         (default_assembly_name_resolver): Make the resolver take the
33468         "base" directory where the assembly was originally defined, so we
33469         can load DLLs that are in the same directory as the assembly that
33470         is being referenced.
33472 2002-03-28  Dick Porter  <dick@ximian.com>
33474         * file-io.h: 
33475         * file-io.c:
33476         * socket-io.c: 
33477         * unicode.h: 
33478         * unicode.c: Warning cleanups
33480 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
33482         * object.h, reflection.h: use the correct type instead of MonoObject.
33484 2002-03-28  Martin Baulig  <martin@gnome.org>
33486         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
33487         (mono_debug_update_symbol_file): Initialize classes if necessary.
33489 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33491         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
33492         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
33494 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
33496         * assembly.h: fix function prototype.
33497         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
33498         * mono-endian.h: use const cast.
33500 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33502         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
33504 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33506         * loader.c: don't assert when a typeref can't be loaded, give
33507         a chance to the runtime to trow an exception instead.
33508         * loader.h: fix warning.
33510 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
33512         * class.c (mono_class_proxy_vtable): added proxy support
33514 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
33516         * icall.c: removed last of PAL calls, added System.Environment
33517         * file-io.h, file-io.c: MonoIO implementation
33518         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
33520 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33522         * appdomain.c: do not use the byte marker in ldstr table lookup.
33523         * debug-helpers.c: allow two ':' to separate class and method name.
33524         * object.c: allocate arrays bounds with the GC, too.
33525         * verify: add a few more checks.
33527 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
33529         * reflection.c: output also literal strings. Allocate parameter data
33530         with GC_malloc() (thanks, Martin, for catching this!).
33532 2002-03-26  Martin Baulig  <martin@gnome.org>
33534         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
33535         include the `this' offset in the `param_offsets'.
33537 2002-03-25  Martin Baulig  <martin@gnome.org>
33539         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
33540         mono_debug_get_class() function to get the classes. Added new
33541         relocation types for arrays and strings.
33542         (mono_debug_get_class): New static function to search in all
33543         referenced assemblies for a metadata token.
33545         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
33547 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33549         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
33550         hold gc-allocated objects. Make the string heap a stream like the
33551         others. Removed duplicated code when writing stream info.
33552         Added asserts to catch possible buffer overflows. Set the sorted map
33553         for tables that need sorting. Added some documentation.
33555 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33557         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33558         for interned strings and vtables.
33560 2002-03-24  Martin Baulig  <martin@gnome.org>
33562         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33563         it in the array since it was created with g_slist_prepend().
33565 2002-03-24  Martin Baulig  <martin@gnome.org>
33567         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33568         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33569         (mono_debug_method_from_token): Renamed to
33570         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33571         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33573         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33574         relocation types.
33576         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33578 2002-03-24  Martin Baulig  <martin@gnome.org>
33580         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33581         (mono_debug_method_from_token): New func.
33583         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33584         New interncall, calls mono_debug_local_type_from_signature().
33585         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33586         calls mono_debug_method_from_token().
33588 2002-03-23  Martin Baulig  <martin@gnome.org>
33590         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33591         specifies the number of bytes to be converted, not the array size.
33592         Return the number of chars, not the number of bytes.
33593         (ves_icall_iconv_get_chars): The `byteCount' argument
33594         specifies the number of bytes to be converted, not the array size.
33596 2002-03-23  Martin Baulig  <martin@gnome.org>
33598         * reflection.h (MonoReflectionSigHelper): New type.
33600         * reflection.c (mono_reflection_sighelper_get_signature_local),
33601         (mono_reflection_sighelper_get_signature_local): New functions.
33603         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33604         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33605         interncalls.
33607 2002-03-23  Martin Baulig  <martin@gnome.org>
33609         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33610         is_writeable is set.
33611         (mono_raw_buffer_update): New function to write the modified map
33612         back to disk.
33614         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33616         * debug-symfile.c (mono_debug_update_symbol_file): Call
33617         mono_raw_buffer_update() when done writing.
33619 2002-03-23  Martin Baulig  <martin@gnome.org>
33621         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33623         * debug-symfile.c: Added support for arguments and local variables.
33625 2002-03-23  Dick Porter  <dick@ximian.com>
33627         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33628         protected by ifdefs, hence breaking the w32 build.
33630 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33632         * object.c: implement is_interned() the right way.
33634 2002-03-21  Martin Baulig  <martin@gnome.org>
33636         * debug-symfile.[ch]: New files to handle debugging information
33637         files. There's also support to dynamically update these symbol
33638         files to include machine dependent information.
33640 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33642         * threads.c (mono_thread_create): new function to create thread
33643         from C
33645 2002-03-20  Martin Baulig  <martin@gnome.org>
33647         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33648         method is a constructor.
33649         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33650         points to ves_icall_InternalInvoke().
33652 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33654         * file-io.c: Flush shouldn't throw exceptions.
33656 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33658         * file-io.c: FileStream flush support; FileSetLength now
33659         restores file pointer.
33661 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33663         * class.c: set image for pointer classes.
33665 2002/03/19  Nick Drochak <ndrochak@gol.com>
33667         * sysmath.c: Forgot one.
33669 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33671         * sysmath.c: Avoid redefining existing names.
33673 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33675         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33676         handled by runtime as icall rather than dllimport from libm.so
33677         * file-io.c, file-io.h: fixed handle argument type.
33679 2002-03-18  Dick Porter  <dick@ximian.com>
33681         * reflection.c (mono_image_get_type_info): rename interface to
33682         iface, because of "#define interface struct" on windows.
33684 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33686         * class.c, class.h: rename and export mono_ptr_class_get().
33687         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33688         * reflection.c, reflection.h, icall.c: better/saner type name
33689         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33690         method signatures.
33692 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33694         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33696         * icall.c (ves_icall_InternalInvoke): impl.
33698 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33700         * reflection.c: output the interface map table, too.
33702 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33704         * class.c (class_compute_field_layout): separate computation of 
33705         static field layout
33707 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33709         * icall.c: added System.Buffer support.
33710         * file-io.c: moved file icalls from PAL to FileStream.
33712 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33714         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33716 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33718         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33720 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33722         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33724 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33726         * debug-helpers.{c,h}: moved here from monograph some useful functions
33727         to locate a method by name/signature in a class or image. Included
33728         also a small and flexible IL disassembler.
33730 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33732         * reflection.c: fixup tokens in methods with small header size, too.
33734 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33736         * object.c (mono_string_to_utf8): remove assert(!error), instead
33737         print a warning. 
33739 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33741         * icall.c: update to the new mono_Array_class_get interface.
33743 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33745         * appdomain.c, object.c: Boehm-GC enable.
33746         * icall.c: make get_data_chunk() support split data requests.
33747         Ensure a class is initialized in more cases. Return only the first
33748         property found in GetProperties() or the compiler gets confused. 
33749         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33750         * reflection.h, reflection.c: add fixup mechanism for field and method
33751         tokens. Initialize assembly->typeref in a single place. Output
33752         properties after events. Support custom attributes for events, too.
33753         Typo fix for paramter custom attrs.
33755 2002-03-07  Martin Baulig  <martin@gnome.org>
33757         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33759 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33761         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33763 2002-03-06  Martin Baulig  <martin@gnome.org>
33765         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33766         non-zero lower bounds. See testcases #F10-#F13.
33768 2002-03-05  Martin Baulig  <martin@gnome.org>
33770         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33772         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33773         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33774         here.
33775         (ves_icall_System_Array_SetValue): Likewise.
33776         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33777         as argument and does the actual work. This function is used when copying a
33778         multi-dimensional array.
33779         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33780         now do all the widening conversions of value types.
33781         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33783 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33785         * class.c: remove some magic numbers and use the smbolic names,
33786         instead. Added init_events() to load event info at class init time.
33787         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33788         and mono_metadata_methods_from_event().
33789         * reflection.h, reflection.c: added support for writing out the evnets
33790         related information.
33792 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33794         * reflection.h, icall.c: use a different method (GetInterfaces)
33795         to gather interface info and add isbyref, isprimitive and
33796         ispointer to the ves_icall_get_type_info() return value.
33798 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33800         * class.h: stared adding support for events.
33801         * icall.c: split find_members implementation. Added debug icall to get
33802         the address of an object.
33803         * reflection.c: handle TypeBuilders in mono_type_get_object().
33805 2002-03-01  Martin Baulig  <martin@gnome.org>
33807         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33808         ArgumentOutOfRangeException(), not an ArgumentException().
33809         (ves_icall_System_Array_GetLowerBound): Likewise.
33810         (ves_icall_System_Array_GetValue): Improved argument checking.
33811         (ves_icall_System_Array_SetValue): Improved argument checking.
33813 2002-03-01  Martin Baulig  <martin@gnome.org>
33815         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33816         called with invalid arguments rather than just dying with g_assert().
33817         (ves_icall_System_Array_SetValue): Likewise.
33818         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33819         raise a NotImplementedException instead.
33820         (ves_icall_System_Array_GetLength): Added argument checking.
33821         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33823 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33825         * object.h (mono_assert): new macros mono_assert and
33826         mono_assert_not_reached
33828 2002-02-28  Martin Baulig  <martin@gnome.org>
33830         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33831         and "System::String::IsInterned" to "System::String::_IsInterned".
33833 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33835         * icall.c: remove hacks for typebuilder. Added icall to create a
33836         modified type from a tybebuilder.
33837         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33838         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33839         to create a backing MonoClass for a TypeBuilder.
33841 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33843         * class.c, class.h: more refactoring of class init.
33844         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33846 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33848         * marshal.c, marshal.h: start of marshaling interface.
33850 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33852         * icall.c: fix order in assembly qualified name icall.
33854 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33856         * class.c: do not free str, since we store it in the hash table.
33857         * reflection.h: add label field to MonoILExceptionInfo.
33858         * reflection.c: handle references to more than one assembly. Handle
33859         case when there isn't a module created in the assembly.
33861 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33863         * class.c: Fix typo. Start refactoring of class init code.
33865 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33867         * appdomain.c: exit with 1 on error.
33868         * class.c: we already have the name in MonoClassField.
33869         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33870         MonoStreamHeader instead of an offset of image->raw_metadata.
33872 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33874         * appdomain.c (mono_init): Be even more descriptive about the error.
33876 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33878         * appdomain.c: give the user an informative message when corlib can't
33879         be loaded.
33881 2002-02-26  Martin Baulig  <martin@gnome.org>
33883         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33884         New icall to get the time zone data.
33886 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33888         * reflection.c: set virtual and raw size of section correctly.
33889         * threads.c: transfer domain information to newly created threads.
33891 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33893         * class.c: when instancing a class in a domain, load the default
33894         vaules for static fields from the constant table. Fix System.Enum to
33895         not be an enum.
33896         * icall.c: implement Object::GetType() internalcall. Implemented
33897         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33898         Fixed checking of binding flags in find_members().
33899         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33900         * reflection.c: handle enumerations when writing to the constant
33901         table. Use a different object cache for types.
33904 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33906         * object.c (mono_object_isinst): fix for arrays
33908         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33910 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33912         * object.c: don't use mprotect ()  and fix intern pool hash table
33913         lookup for big endian systems.
33915 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33917         * icall.c: change type_is_subtype_of () signature.
33919 2002-02-21  Mark Crichton  <crichton@gimp.org>
33921         * rand.c, rand.h: Added random number generator for
33922         System.Security.Cryptography classes.
33924         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33926         * icall.c: Added System.Security.Cryptography calls.
33928 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33930         * class.c, icall.c, metadata.c: better support for pointer types.
33931         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33932         * reflection.c: Add support for getting custom attrs for properties
33933         and simplify some code.
33935 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33937         * icall.c: change getToken () and add custom attribute GetBlob()helper
33938         method.
33939         * reflection.h: add custom attrs array to the reflection builder structures.
33940         * reflection.c: encode and emit custom attributes for all the relevant
33941         reflection objects. Cache fieldref and methodref tokens. Change
33942         mono_image_create_token() interface to take a MonoDynamicAssembly.
33943         More complete custom attributes decoder. Load custom attributes for
33944         Assembly, Field, Method and Constructor objects, too. Make the
33945         returned array an Attribute[] one, not object[]. Added
33946         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33947         custom attribute constructor.
33949 2002-02-20  Dick Porter  <dick@ximian.com>
33951         * icall.c:
33952         * rawbuffer.c:
33953         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33954         problem code out for now).
33956 2002-02-19  Radek Doulik  <rodo@ximian.com>
33958         * object.c (mono_ldstr): use hash table to avoid multiple swapping
33960 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
33962         * icall.c: register the GetCustomAttributes method.
33963         * object.c, object.h: add mono_string_new_len ().
33964         * reflection.h, reflection.c: added mono_runtime_invoke(),
33965         mono_install_runtime_invoke(). Added
33966         mono_reflection_get_custom_attrs () to load custom attributes and
33967         create the attribute objects.
33969 2002-02-19  Dick Porter  <dick@ximian.com>
33970         * threads-dummy-types.c:
33971         * threads-dummy-types.h:
33972         * threads-dummy.c:
33973         * threads-dummy.h:
33974         * threads-pthread-types.c:
33975         * threads-pthread-types.h:
33976         * threads-pthread.c:
33977         * threads-pthread.h:  Deleted obsolete files
33979 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
33981         * class.c (mono_class_vtable): runtime init the class when we
33982         allocate static class data.
33984         * icall.c (ves_icall_System_Array_SetValue): check for null values.
33986         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
33987         and String - but we will need generic marshalling support in the
33988         future. 
33989         (mono_init): set the domain name in a ms compatible way
33991         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
33992         String[].
33994 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
33996         * object.c (mono_array_clone): use alloca() instead of g_malloc  
33997         for sizes
33999         * appdomain.c (mono_domain_unload): impl.
34001 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34003         * appdomain.c, object.c: fix intern pool implementation.
34004         * class.c: fix alignment code.
34006 2002-02-16  Radek Doulik  <rodo@ximian.com>
34008         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34009         and s2 > s1, just copy lower bytes to be compatible with little
34010         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34011         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34013         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34014         force big_endian to be 1 for big endian machines 
34015         (ves_icall_iconv_new_decoder): ditto
34017 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34019         * socket-io.c (convert_sockopt_level_and_name): If the system
34020         doesn't define SOL_IP or SOL_TCP, get them by hand using
34021         getprotobyname() and caching the values (because this could be a
34022         slow operation).
34023         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34024         Use the appropriate struct when the system does support it. Ie,
34025         not all systems have struct ip_mreqn so use struct ip_mreq when
34026         appropriate.
34028 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34030         * reflection.c: handle finally clauses.
34032 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34034         * socket-io.c: use g_snprintf() instead of snprintf.
34036 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34038         * reflection.c (mono_param_get_objects): Cast second argument to
34039         mono_method_get_param_names to a const char** to silence the
34040         compiler warning.
34042         * appdomain.c (mono_domain_assembly_open): Put parens around the
34043         truth statement in the for-loop.
34045         * unicode.c (iconv_convert): Got rid of a compiler warning about
34046         int i being unused when the system has a new iconv.
34047         (iconv_get_length): Same.
34049         * image.c (load_class_names): Cast the second argument to
34050         g_hash_table_insert() to char* to hush compiler warnings about the
34051         arg being a const.
34052         (mono_image_open): Same here.
34054         * socket-io.c: Don't conditionally include sys/filio.h or
34055         sys/sockio.h here anymore since we now get them from
34056         io-layer/io-layer.h
34057         (inet_pton): If the system doesn't support inet_aton, implement
34058         using inet_addr and also #define INADDR_NONE if it isn't defined
34059         by the system.
34061 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34063         * metadata.c, metadata.h: added function to get packing and size info
34064         of a typedef.
34065         * reflection.h, reflection.c: handle field RVA data. Save info about
34066         the table layout if needed. Assign typedef indexes to all the types
34067         before dumping the info about them to avoid forward reference problems.
34069 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34071         * socket-io.c (convert_sockopt_level_and_name): ifdef
34072         SO_ACCEPTCONN because it is not defined on my system (old debian)
34074 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34076         * opcode.c: use stddef.h to get NULL.
34078 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34080         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34081         for FIONBIO, FIONREAD and SIOCATMARK.
34082         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34083         define INADDR_NONE and besides, inet_addr() is deprecated and
34084         should not be used. Use inet_pton() instead - it also has the
34085         added bonus that it can easily handle IPv6 addresses as well.
34086         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34088 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34090         * decimal.c: remove _MSC_VER conditional.
34092 2002-02-13  Dick Porter  <dick@ximian.com>
34094         * socket-io.c: 
34095         * icall.c: Internal calls for Blocking, Select, Shutdown,
34096         GetSocketOption and SetSocketOption
34098 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34100         * assembly.cs: better resolver: use it instead of some kludgy
34101         code.
34103 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34105         * reflection.c: the best way to speed-up the compiler is to avoid
34106         infinite loops.
34108 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34110         * class.c (mono_class_vtable): changed the object layout
34111         (obj->vtable->class). 
34112         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34114 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34116         * assembly.c: look for assemblies in the assembly dir, too.
34118 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34120         * class.c: fix thinko in mono_class_from_type().
34122 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34124         * exception.h, exception.c: added TypeLoadException.
34125         * object.h, object.c: added mono_array_clone ().
34126         * icall.c: handle throwOnError in AssemblyGetType().
34127         Added Array.Clone().
34128         * opcode.h, opcode.c: use a single value for the opcode val.
34129         Compile fix for non-gcc compilers.
34131 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34133         * opcodes.c, opcodes.h: export interesting info about opcodes.
34135 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34137         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34138         icalls. 
34140         * class.c (class_compute_field_layout): set element_class for enums
34141         (mono_class_create_from_typedef): set element_class for normal classes
34143         * icall.c (ves_icall_System_Enum_get_value): impl.
34145         * class.c (mono_class_create_from_typedef): do not set valuetype
34146         flag for System.ValueType and System.Enum
34148 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34150         * unicode.c (iconv_convert): fix big endian problem.
34152 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34154         * class.c: add asserts if we are ever going to scribble over memory.
34155         * socket-io.c: not all systems have AF_IRDA defined.
34157 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34159         * class.c (class_compute_field_layout): do not consider static
34160         fields to compute alignment
34162 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34164         * appdomain.c (mono_appdomain_get): impl.
34165         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34167 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34169         * icall.c: ignore "file://" prefix when loading an assembly.
34171 2002-01-23  Dick Porter  <dick@ximian.com>
34173         * socket-io.c:
34174         * icall.c:
34175         * Makefile.am: Added socket support
34177 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34179         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34180         code back.  This should return the assemblies that are loaded by
34181         the runtime on behalf of an application domain. 
34183         The current implementation is still broken, it just returns every
34184         assembly loaded, but until we get real applications domain this
34185         will do.
34187 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34189         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34190         AppDomain object.
34192 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34194         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34195         the mono_class_from_name lookup.
34196         (ves_icall_get_parameter_info): ditto.
34197         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34198         method.
34199         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34201 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34203         * class.c: load also nested classes on class init.
34204         System.ValueType instance methods gets passed boxed
34205         values, unless methods in derived classed that get a pointer to the
34206         data.
34207         * icall.c: use better name parsing code in GetType().
34208         * image.c, image.h: add mono_image_loaded ().
34209         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34210         * reflection.c, reflection.h: added mono_reflection_parse_type().
34212 2002-01-22  Veronica De Santis <veron78@interfree.it>
34214         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34215         * threads.c : Added the implementation of internal calls for events
34216         * threads.h : Added prototypes of internal calls for events
34217         
34218 2002-01-21  Radek Doulik  <rodo@ximian.com>
34220         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34222 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34224         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34225         (mono_class_value_size): use min_align
34227 2002-01-20  Dick Porter  <dick@ximian.com>
34229         * threads.h:
34230         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34231         so it compiles on w32.
34233 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34235         * metadata.c (mono_type_stack_size): impl.
34237         * class.c (mono_class_get_field): impl. memberref token
34239 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34241         * icall.h : Added the internal calls mapping for CreateMutex_internal
34242                     and ReleaseMutex_internal.
34243         * threads.h : Added the prototype of mutexes internal calls.
34244         * threads.c : Added the implementations of mutexes internal calls.
34246 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34248         * metaparse.h: removed unused file.
34249         * reflection.c, reflection.h: added stream_data_align () function 
34250         to align data in streams and keep stream aligned. Add support for
34251         exception support in method headers.
34253 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34255         * unicode.c: make iconv_convert () return the number of bytess written
34256         in the output buffer.
34258 2002-01-15  Dick Porter  <dick@ximian.com>
34259         * threads.c: Make the runtime's idea of infinite timeouts coincide
34260         with the class library's
34262         Fix a particularly egregious bug in mono_thread_cleanup(). That
34263         code was so utterly bogus it must have been written on a Monday.
34265 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34267         * reflection.h: add subtypes field to TypeBuilder.
34268         * reflection.c: encode constants for literal fields.
34269         Handle subtypes. Fix user string token (and add a zero byte)
34270         at the end.
34271         
34272 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34274         * class.c (mono_class_init): bug fix: assign slot numbers for
34275         abstract methods.
34277 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34279         * reflection.c: don't try to output a code RVA for abstract methods.
34280         Small fixes for method header format. Output parameter info to the
34281         ParamDef table. Save method overriding info to MethodImpl table.
34282         Fix property support. Allow typedef.extends to be a type in the
34283         building assembly.
34284         * verify.c: fix off-by-one error.
34286 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34288         * class.c: fix mono_class_from_mono_type () for szarray types.
34289         Remove unused cache check in mono_class_from_type_spec().
34290         * icall.c: *type_from_name () functions handle simple arrays and byref.
34291         * reflection.c: handle byref and szarray types. Handle methods without
34292         body (gets P/Invoke compilation working). Handle types and fields in
34293         get_token ().
34294         * reflection.h: add rank to MonoTypeInfo.
34296 2002-01-10  Dick Porter  <dick@ximian.com>
34298         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34299         internal calls
34301 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34303         * icall.c: initialize class in type_from_handle ().
34304         Loop also in parent classes for get_method ().
34305         * reflection.c: properly encode class and valuetype types.
34306         Start on encoding TypeBuilder types. Handle fieldrefs.
34307         Use correct length when registering a user string.
34308         Handle ConstructorBuilder and MonoMethod in get_token ().
34309         Make mono_type_get_object () aware of cached types.
34310         * object.c: back out change to mono_string_new ().
34312 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34313         * object.c: mono_string_new should return a NULL when the string 
34314         passed in is NULL -- not try to deference it.
34315         
34316 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34318         * icall.c: hack to make IsSubType work for TypeBuilders.
34319         * reflection.c: emit constructors before methods.
34320         Retrieve param names in mono_param_get_objects().
34322 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34324         * Makefile.am: fix list of headers and sources so automake 1.5
34325         doesn't complain. Removed \# at end of list.
34327 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34329         * reflection.c: get token for a method ref. Set return type of
34330         constructor to void.
34331         * loader.c: debug message.
34332         * class.c: typo fix.
34334 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34336         * icall.c: fix array init with rank > 1. FindMembers
34337         loops in parent class as well.
34338         * image.c: do not insert nested types in name cache.
34339         * reflection.c: warning fix.
34340         * reflection.h: add override method (for interface impl).
34342 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34344         * metadata.c: fix customattr decoding.
34346 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34348         * rawbuffer.cs: Added native Win32 implementation, avoids using
34349         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34351 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34353         * class.c: make the low-level routines handle the cache.
34355 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34357         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34359 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34361         * class.c: fix mono_array_element_size() for objects.
34362         * class.h, class.c: add properties to MonoClass and load them
34363         at init time.
34364         * icall.c: check with isinst() when assigning a value to an array
34365         instead of requiring the classes to match exactly.
34366         Implemented icall for System.Type::GetType().
34367         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34368         enums. Handle bindingflags when looking for methods and fields.
34369         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34370         and mono_metadata_methods_from_property().
34371         * reflection.h, reflection.c: added structures for propreties,
34372         parameters and enums. Implemented mono_property_get_object() and
34373         mono_param_get_objects().
34375 2001-12-18  Dick Porter  <dick@ximian.com>
34377         * file-io.c: Use mono_string_to_utf16() instead of
34378         mono_string_chars()
34380         * object.c: Added mono_string_to_utf16(), which copies the non
34381         NULL-terminated MonoString into a new double-null-terminated
34382         buffer.
34384 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34386         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34388 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34390         * file-io.c: raise exceptions if handle is invalid.
34392 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34394         * assembly.c: yet another check for mscorlib.
34395         * class.c, class.h: load nesting info for classes.
34396         * icall.c: many new functions to support the Reflection classes.
34397         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34398         * reflection.h, reflection.c: mono_image_create_token(),
34399         mono_assembly_get_object(), mono_type_get_object(),
34400         mono_method_get_object(), mono_field_get_object(): methods to return
34401         objects that parallel the C representation of assemblies, types,
34402         methods, fields.
34404 2001-12-11  Dick Porter  <dick@ximian.com>
34406         * icall.c:
34407         * file-io.c: Internal calls for file IO.
34409 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34411         * tabledefs.h: missing FileAttributes.
34412         * verify.h, verify.c: use is_valid_string () to simplify and check for
34413         valid strings more correctly. Fix warnings and speeling.
34414         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34415         Check code: branches, maxstack, method calls.
34417 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34419         * object.c (mono_object_allocate): removed static, so that the jit
34420         can allocate value types.
34422         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34424 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34426         * class.c: init enum types right away and register the
34427         token->MonoClass map in mono_class_create_from_typedef ().
34428         * verify.h, verify.c: first cut of the verifier.
34429         * pedump.c: add --verify switch to verify metadata tables.
34430         * tabledefs.h: add some missing enums.
34432 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34434         * class.c (mono_install_runtime_class_init): impl.
34435         (mono_class_init): renamed mono_class_metadata_init to
34436         mono_class_init, also removed the metadata_inited flag
34438         * object.c (mono_object_isinst): use faster algorithm
34440 2001-11-30  Radek Doulik  <rodo@ximian.com>
34442         * mono-endian.h: reverted last change
34443         added function prototypes
34445         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34446         add mono-endian.c back
34448         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34449         for unaligned access, I've mistaked it with endianess. I am
34450         sorry.
34451         (mono_read16): fix reverted endianess
34452         (mono_read64): ditto
34453         (mono_read32): ditto
34455 2001-11-30  Dick Porter  <dick@ximian.com>
34457         * exception.c: Implement mono_exception_from_name()
34459 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34461         * metadata.h, metadata.c: remove params_size and locals_size and their
34462         calculation from the metadata code: they are only usefult to the
34463         interp.
34465 2001-11-29  Radek Doulik  <rodo@ximian.com>
34467         * object.c (mono_ldstr): swap bytes here, it's probably not the
34468         best place, but works for me now, I'll redo it once I know mono
34469         better, also note that I add PROT_WRITE and don't reset back, also
34470         note that it's only affects big endians, so x86 should be OK
34472         * mono-endian.h (read16): use just glib macros for both endians
34474         * mono-endian.c: removed as glib macros are used in in
34475         mono-endian.h so we don't need to care about endianess for read
34476         macros as glib does that for us already
34478 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
34480         * class.h, class.h: take minimum alignment into consideration so
34481         that the fields of a class remain aligned also when in an array.
34483 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34485         * loader.h, loader.c: add mono_method_get_param_names().
34486         * class.c: 0-init class fields.
34488 2001-11-26  Dick Porter  <dick@ximian.com>
34490         * icall.c:
34491         * threads-types.h:
34492         * threads.c: New file that handles System.Threading on all platforms
34494         * object.c: 
34495         * object.h: Remove the synchronisation struct from MonoObject,
34496         replace it with a pointer that gets initialised on demand
34498         * Makefile.am: Replace all the system-specific threading code with
34499         a single file that uses the new wrapper library
34501 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
34503         * class.c, class.h: add mono_install_trampoline() so that the runtime
34504         can register a function to create a trampoline: removes the ugly
34505         requirement that a runtime needed to export arch_create_jit_trampoline.
34506         * object.h, object.c: added mono_install_handler() so that the runtime
34507         can install an handler for exceptions generated in C code (with
34508         mono_raise_exception()). Added C struct for System.Delegate.
34509         * pedump.c: removed arch_create_jit_trampoline.
34510         * reflection.c: some cleanups to allow registering user strings and
34511         later getting a token for methodrefs and fieldrefs before the assembly
34512         is built.
34513         * row-indexes.h: updates and fixes from the new ECMA specs.
34515 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
34517         * class.h, class.c: add enum_basetype field to MonoClass.
34518         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
34519         to get index in the constant table reated to a field, param or
34520         property.
34521         * reflection.h, reflection.c: handle constructors. Set public-key and
34522         version number of the built assembly to 0.
34523         * row-indexes.h: update from new ECMA spec.
34525 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34527         * class.h, class.c: add a max_interface_id to MonoClass.
34528         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
34529         since it's used to do that. Added mono_type_type_from_obj().
34530         Make GetType() return NULL instead of segfaulting if the type was not
34531         found. Handle simple arrays in assQualifiedName.
34532         * object.h: add a struct to represent an Exception.
34533         * reflection.c: output call convention in method signature.
34534         Add code to support P/Invoke methods and fixed offsets for fields.
34536 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
34538         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
34539         the value.
34540         * icall.c: use mono_array_addr instead of array->vector: fixes the
34541         reflection image writing.
34542         * reflection.c: init call convention byte to 0 in method signature.
34543         Encode the property signature. Don't output property-related methods
34544         twice. Really process the properties for a type (don't cast a field to
34545         a property, my mom always told me that).
34546         Fix 64 bit issues in pointer alignment in a different and more
34547         readable way.
34549 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
34551         * loader.h: Removed type class from MonoDefaults, added monotype
34553         * loader.c: Loaded MonoType, removed loading of Type
34555         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34556         and fills in System.Type._impl with a RuntimeTypeHandle rather
34557         than the actual MonoClass *
34559         (ves_icall_type_from_handle): change from type_class to
34560         monotype_class
34562         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34563         implemented
34565         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34566         implemented
34568         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34570         (ves_icall_System_Reflection_Assembly_GetType): implemented
34572         (ves_icall_System_MonoType_assQualifiedName): implemented
34574         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34576 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34578         * assembly.c (mono_assembly_open): Implement a cache for the
34579         assemblies. 
34581         (mono_assembly_close): only destroy the assembly when the last
34582         reference is gone.
34583         
34584 2001-11-09  Dick Porter  <dick@ximian.com>
34586         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34588 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34590         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34592 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34594         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34595         from Martin Weindel.
34596         * object.h: add mono_string_chars ().
34598 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34600         * reflection.c (build_compressed_metadata): Eliminates warnings
34601         and uses 64-bit clean code.
34603         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34604         (mono_type_equal): Change signature to eliminate warnings.
34606 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34608         * icall.c, loader.c: remove the internalcall array constructors.
34609         Changes to match the new MonoArray structure.
34610         * object.h, object.c: an array object doesn't allocate an extra
34611         vector. Add mono_array_new_full () to create jagged arrays easily.
34613 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34615         * metadata.h, metadata.c: add mono_metadata_field_info () to
34616         retreive all the info about a field from vairous tables.
34617         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34618         * class.h, class.c: augment MonoClassField with more info.
34619         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34620         policy and load a field's RVA if needed.
34622 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34624         * class.c (mono_class_metadata_init): create a trampoline for all
34625         virtual functions instead of actually compiling them.
34627 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34629         * class.h, class.c: include name in MonoClassField.
34630         * class.c: fix fundamental type of System.Object and System.String.
34631         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34632         tokens in ldtoken.
34633         * icall.c: remove internalcalls for the Reflection stuff that is now
34634         done in C# code.
34635         * loader.c: mono_field_from_memberref () implementation.
34636         * mono-endian.c: thinko (s/struct/union/g).
34637         * object.c, object.h: make the mono_string_* prototypes actually use
34638         MonoString instead of MonoObject.
34639         * reflection.c, reflection.h: updates for changes in the reflection
34640         code in corlib: we use C structures that map to the actual C# classes.
34641         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34642         fat method header if needed and use the info from the ILGenerator for
34643         methods. Handle fields in types. Misc fixes.
34645 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34647         * class.c (mono_class_metadata_init): bug fix: always allocate
34648         space for static class data
34650 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34652         * class.c (mono_compute_relative_numbering): use relative
34653         numbering to support fast runtime type checks.
34655 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34657         * class.c (mono_class_create_from_typeref): added debugging output
34658         to print class name when MonoDummy is returned instead of real class
34660 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34662         * class.c (mono_class_metadata_init): interface offset table now
34663         contains pointers into the vtable - this is more efficient for the jit
34665 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34667         * class.c (mono_class_metadata_init): use a temporary vtable (the
34668         old algorithm only worked for the interpreter, but not for the jit)
34670 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34672         * loader.c (method_from_memberref): use mono_class_get to get the
34673         class of an array instead of using System.Array directly.
34674         (mono_get_method): also add MEMBERREF methods to the method cache
34675         which usefull for arrays.
34677 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34679         * pedump.c (arch_compile_method): added to compute vtable entry
34681         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34682         number of interfaces.
34683         
34684         * class.h: merged MonoArrayClass into MonoClass
34686         * class.c (mono_class_create_from_typedef): compute the vtable size and
34687         allocate space to include the vtable inside MonoClass
34688         (mono_class_metadata_init): initialize the vtable
34690 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34692         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34693         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34694         * image.c: endian fixes by Laurent Rioux.
34695         * object.h, object.c: rename MonoStringObject to MonoString and
34696         MonoArrayObject to MonoArray. Change some function names to conform to
34697         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34698         guint16* as first argument, so don't use char*.
34699         Provide macros to do the interesting things on arrays in a portable way.
34700         * threads-pthread.c: updates for the API changes and #include <sched.h>
34701         (required for sched_yield()).
34702         * icall.c: updates for the API changes above.
34703         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34704         platforms that need them.
34706 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34708         * class.c: set the correct type for all the fundamental
34709         type when loading the class.
34711 2001-10-05  Dick Porter  <dick@ximian.com>
34713         * threads-pthread.c (pthread_mutex_timedlock): Simple
34714         compatibility version for C libraries that lack this call.
34716 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34718         * class.c: MonoTypes stored in MonoClass are stored as
34719         fundamental MonoTypes when the class represents a
34720         fundamental type (System.Int32, ...).
34721         The TypeHandle return by ldtoken is a MonoType*.
34722         * icall.c: ves_icall_get_data_chunk () write out all the
34723         PE/COFF stuff. Implement ves_icall_define_method (),
34724         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34725         * image.c: properly skip unknown streams.
34726         * loader.h, loader.c: add type_class to mono_defaults.
34727         * metadata.c, metadata.h: export compute_size () as
34728         mono_metadata_compute_size () with a better interface.
34729         Typo and C&P fixes.
34730         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34731         * reflection.c, reflection.h: many cleanups, fixes, output method
34732         signatures and headers, typedef and typeref info, compress the metadata
34733         tables, output all the heap streams, cli header etc.
34734         * row-indexes.h: typo fixes.
34736 2001-10-04  Dick Porter  <dick@ximian.com>
34738         * object.h: Add a synchronisation mutex struct to MonoObject
34740         * object.c (mono_new_object): Initialise the object
34741         synchronisation mutexes
34743         * icall.c: System.Threading.Monitor internal calls
34744         
34745         * threads-pthread.h:
34746         * threads-pthread.c: System.Threading.Monitor internal calls
34748         * threads-types.h: New file, includes the system-specific thread
34749         structures
34750         
34751         * threads-pthread-types.h:
34752         * threads-pthread-types.c: New files, handle pthread-specific
34753         synchronisation types
34755         * threads-dummy-types.h: 
34756         * threads-dummy-types.c: New files of dummy support for
34757         thread-specific types
34759         * metadata.c:
34760         * image.c:
34761         * pedump.c: include mono-endian.h not endian.h
34762         
34763         * Makefile.am: More threads files.
34764         Name mono-endian.h not endian.h
34766 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34768         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34769         stuff and implement a few more bits.
34770         * icall.c: a field needs to be dereferenced twice. Do not use the same
34771         name for two variables in the same scope.
34772         * image.c, image.h: cleanups.
34774 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34776         * class.c (mono_class_metadata_init): bug fix: compute the right size
34778 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34780         * icall.c: implemented some of the Reflection internalcalls.
34781         * image.c, image.h: start writing out the PE/COFF image.
34782         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34783         that does the reverse than decode_blob_size ().
34784         * object.c: use mono_metadata_encode_value (). Move here
34785         temporary implementation of mono_string_to_utf8 ().
34786         * rawbuffer.c: make malloc_map static.
34788 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34790         * metadata.c: fix type comparison for arrays.
34791         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34792         Added a couple of new classes to monodefaults.
34793         * icall.c: added a couple of Reflection-related internalcalls.
34794         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34795         Added a byval_arg MonoType to MonoClass.
34797 2001-09-28  Dick Porter  <dick@ximian.com>
34799         * icall.c:
34800         * threads-pthread.h: 
34801         * threads-pthread.c: Implemented internal calls for
34802         LocalDataStoreSlot operations.  Applied mutexes around all shared
34803         data.  Reworked the thread creation and Start() operations to
34804         avoid a race condition.
34805         
34806         * threads-dummy.h:
34807         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34809 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34811         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34813 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34815         * class.c, loader.c: warn and return NULL instead of erroring out.
34816         * icall.c: added System.AppDomain::getCurDomain().
34817         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34819 2001-09-25  Dick Porter  <dick@ximian.com>
34821         * threads-pthread.h:
34822         * threads-pthread.c: Implemented timed thread joining and added
34823         System.Threading.Thread::Join_internal internal call
34825         * icall.c: Added System.Threading.Thread::Join_internal internal call
34827         * threads-dummy.h:
34828         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34830 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34832         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34833         mono_string_intern () to implement the semantics of the ldstr opcode
34834         and the interning of System.Strings.
34835         * icall.c: provide hooks to make String::IsIntern and String::Intern
34836         internalcalls.
34838 2001-09-23  Dick Porter  <dick@ximian.com>
34840         * threads-dummy.c: 
34841         * threads-dummy.h: New files of dummy threading routines
34843         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34844         support code based on system specifics
34846         Rename PTHREAD_LIBS to THREAD_LIBS
34847         
34848 2001-09-23  Dick Porter  <dick@ximian.com>
34850         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34851         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34852         internal calls.
34853         (mono_thread_init): Set up a Thread object instance to return when
34854         the main thread calls Thread.CurrentThread
34855         (mono_thread_cleanup): Wait for all subthreads to exit
34857         * icall.c: New internal calls for System.Threading.Thread::Sleep
34858         (including Schedule) and CurrentThread
34860         * threads.h: New file, to insulate thread-specific stuff from the
34861         rest of the code
34863 2001-09-21  Dick Porter  <dick@ximian.com>
34865         * threads-pthread.h: 
34866         * threads-pthread.c: New file, for handling pthreads-style
34867         threading support.  Start() now starts a new thread and executes
34868         the ThreadStart delegate instance.
34870         * icall.c: Added the internalcall for
34871         System.Threading.Thread::Start_internal
34873         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34875 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34877         * loader.c: work around the different signatures for delegates
34878         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34880 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34882         * class.h, class.c: add mono_class_get_field_from_name ().
34883         * *: Fix C comments and other ANSI C issues.
34885 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34887         * endian.h, assembly.c: fix some endianness issues.
34889 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34891         * loader.h, load.c: add delegate_class to mono_defaults.
34892         Handle runtime provided methods in mono_get_method ().
34894 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34896         * loader.c (mono_get_method): use pinvoke for internal call
34898         * icall.c: use pinvoke for internal call
34900         * loader.c (method_from_memberref): set the method name
34902 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34904         * metadata.c: help the compiler generate better code for
34905         mono_class_from_mono_type ().
34907 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34909         * class.c (mono_class_metadata_init): delayed computing of the
34910         class size to mono_class_metadata_init ()
34912 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34914         * class.c, class.h: add an interfaces member to MonoClass.
34915         * image.c, image.h: add assembly_name field to MonoImage
34916         from the assembly table.
34917         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34919 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34921         * class.c: Handle Array in mono_class_from_mono_type ().
34922         * metadata.c, pedump.c: some endian fixes.
34924 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34926         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34927         * metadata.c: fix small problem introduced with the latest commit.
34929 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34931         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34932         We don't need a MonoMetadata pointer anymore to compare signatures in
34933         mono_metadata_signature_equal (), update callers.
34934         Reduced memory usage an number of allocations for MonoMethodHeader and
34935         MonoMethodSignature.
34937 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34939         * metadata.c: added compare for szarray.
34941 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34943         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34944         and add a couple more types to it and mono_defaults. Give an hint on
34945         classes that need implementing in our corlib and are referenced
34946         in mscorlib.
34948 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34950         * class.h, class.c: keep track if a class is also an Enum.
34951         * loader.c: Implement a couple more types for use in libffi
34952         marshalling. Gives better diagnostics when failing to dlopen
34953         a library. Set method->klass for P/Invoke methods, too.
34955 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
34957         * class.c, class.h: add a MonoType this_arg to MonoClass that
34958         represents a pointer to an object of the class' type that
34959         can be used by the interpreter and later the type cache.
34960         Add best guess alignment info for valuetype objects.
34962 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
34964         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
34965         into MonoType: one less level of indirection and allocation and
34966         simplifies quite a bit of code. Added cache for MonoTypes that are
34967         used frequently, so that we don't need to allocate them all the time.
34969 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
34971         * class.c (mono_class_create_from_typedef): System.Enum is also a
34972         value type, although it does not derive from System.ValueType
34973         (maybe a bug in the ms compiler?)
34975         * metadata.c (mono_type_size): return the right size for value types
34977         * loader.c (mono_get_method): only initialize method header if not abstract
34979         * class.c (mono_class_from_mono_type): use mono_default values. 
34981 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
34983         * *: use MonoClass pointers instead of <type_tokens>
34984         
34985         * class.h: new flag: metadata_inited.
34987         * class.c (mono_class_metadata_init): impl.
34988         (mono_class_instance_size): impl.
34989         (mono_class_data_size): impl.
34991 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34993         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
34994         MonoClass now has the name and name_space fields. 
34995         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
34996         mono_get_method () takes and optional MonoClass as argument.
34997         Removed mono_typedef_from_name() and added mono_class_token_from_name()
34998         instead that takes advantage of a map from class names to typedef
34999         tokens in MonoImage.
35001 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35003         * metadata.c: zero is not a valid alignment boundary.
35004         Merge MONO_TYPE_VOID in default decoding code.
35006 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35008         * image.h: merged MonoMetadata into MonoImage
35010         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35011         identify the type of elements.
35013 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35015         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35016         * cil-coff.h: split MonoMSDOSHeader and add size info.
35017         * image.c: add some consistency checks.
35018         * metadata.c: fix row size computation: one programmer
35019         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35020         add explanation for the locator routine.
35021         Fix decoding of size in method header.
35022         
35023 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35025         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35026         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35027         function from gnome-libs.  This uses the right path separator
35028         based on the OS, and also works around a bug in some systems where
35029         a double slash is not allowed. 
35030         (default_assembly_name_resolver): Use g_concat_dir_and_file
35031         (mono_assembly_open): ditto.
35033 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35035         * metadata.c (mono_metadata_signature_equal): impl.
35037         * *: void is now a realy MonoType (instead of using NULL)
35038         
35039         * metadata.c (do_mono_metadata_parse_type): use
35040         mono_metadata_parse_type to parse void value.
35042 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35044         * metadata.c, metadata.h: in the signature and method header store
35045         only the space required for holding the loca vars and incoming arguments.
35047 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35049         * metadata.c (do_mono_metadata_parse_type): treat void like any
35050         other type (instead of assigning NULL);
35052 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35054         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35056 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35058         * image.c (do_mono_image_open): added a cache for arrays.
35060 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35062         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35063         decode a single column from a row in a metadata table and changes
35064         to take advantage of it in the typedef locator (gives a nice speed up).
35065         Store offset info for function params.
35067 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35069         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35071 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35073         * assembly.c: how could mono_assembly_close () had ever worked?
35074         * metadata.c, metadata.h: provide offset info for local vars.
35075         Implement mono_type_size () to take care of alignment as well
35076         as size (it was mono_field_type_size in cli/class.c before).
35078 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35080         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35082         * assembly.h (CORLIB_NAME): set to corlib.dll
35084         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35086 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35088         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35089         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35090         tokentype.h: massive namespace cleanup.
35092 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35094         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35096 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35098         * metadata.c (mono_metadata_free_type): added check for type !=
35099         NULL (void) before calling mono_metadata_free_type()
35101 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35103         * metadata.h, row_indexes.h: added header with enumerations to use
35104         to index in the columns from tables in metadata and to decode coded
35105         tokens: we should start using this instead of embedding magic numbers
35106         all over the code.
35108 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35110         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35111         Move metadata_t info from cli_image_info_t to MonoImage, where
35112         it's easily accessible. Changed all the uses accordingly.
35113         Added the method and class caches to MonoImage.
35114         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35115         and mono_metadata_decode_value () signature to be more consistent
35116         with the other parse functions (and simplify code). Taken advantage
35117         of zero-length array allocation with GCC. Removed reduntant (and
35118         wrong) MonoFieldType struct and use MonoParam instead. Changed
35119         mono_metadata_parse_field_type () to use common code for parsing.
35120         Added mono_metadata_typedef_from_field () and
35121         mono_metadata_typedef_from_method () to lookup a typedef index from a
35122         field or method token.
35123         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35125 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35127         * metadata.c (mono_metadata_parse_field_type): Implement. 
35128         (do_mono_metadata_parse_type): Split engine from
35129         mono_metadata_parse_type, so that we can create smaller structures
35130         for things that just have one pointer to the MonoType (look at
35131         the MonoFieldType)
35133 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35135         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35136         as Jan Gray found out, it is incorrect. 
35138 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35140         * assembly.c: Implement asssembly loading.  This loads an image
35141         and loads all the referenced assemblies.  Come to think of it, we
35142         could always do lazy loading of the assemblies. 
35144         * image.c (mono_image_open): Keep loaded images in a hashtable.
35146         * image.h (MonoImage): Add reference count.
35148 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35150         * assembly.c (mono_assembly_open): Keep track of the file name in
35151         case the assembly has no ASSEMBLY table.
35153         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35154         from get.c here.
35156 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35158         * metadata.c, metadata.h: decode local vars in method header
35159         parse function. Change callers accordingly.
35161 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35163         * metadata.h, cil-coff.h: protect against multiple inclusion.
35164         Added some new structures to hold information decoded from metadata:
35165         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35166         and relevant decoding/free functions.
35167         * metadata.c: implement decoding functions. Add warning for out of bounds
35168         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35169         all the info about a method signature and invocation. Remove check on
35170         uninitialized local var in parse_mh() and fix memory leak.
35172 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35174         * metadata.h: More macros.
35176         * tokentype.h: New file.
35178 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35180         * assembly.c: added a consistency check and initialize
35181         some structures with g_new0().
35182         * metadata.c: fixed a couple more bugs in table size computation
35183         and add other checks for out-of bound access to metadata.
35185 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35187         * metatada.c: fix bugs computing table sizes. Spew a
35188         warning when index in string heap is out of bounds.
35190 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35192         * metadata.h: Add a couple of macros to manipulate tokens. 
35194 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35196         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35197         cli_section_tables).
35199 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35201         * metadata.c (mono_metadata_user_string): New function, provides
35202         access to the UserString heap. 
35204 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35206         * metadata.c: Add inline documentation.
35208 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35210         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35211         files. 
35213 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35215         * typeattr.h: New file, TypeAttribute flags. 
35217 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35219         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35220         mono_assembly_ensure_section): Section loading code.
35221         (load_section_tables): Load the sections.
35223         * mono/metadata/metadata.c (mono_metadata_locate_token,
35224         mono_metadata_locate): Functions to locate the information
35225         definition given a token or a table and an index.
35226         (mono_metadata_compute_table_bases): New.
35227         (compute_size): New function to compute the sizes of the various
35228         tables.
35230         * mono/metadata/metadata.h: Finish listing the different index
35231         types. 
35233         * mono/metadata/pedump.c: Improve to dump new information.
35235 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35237         * mono/metadata/metadata.c: Entered all the tables matching
35238         Beta2. 
35240         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2