2010-01-21 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
blob6a4fa880a6830dd8a6f6a197e17fdd976e56288e
1 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
3         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
4         has a recursive reference to itself.
6         Fixes #571863.
8 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
10         * loader.c (mono_method_signature): Fix error message.
12 2010-01-21  Mark Probst  <mark.probst@gmail.com>
14         * sgen-gc.c: Reuse to-space sections between nursery collections.
16 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
18         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
19         from the current assembly or mscorlib. Fixes bug #322957.
21 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
23         * marshal.c: Calculate the target class of the delegete invoke wrappers using
24         get_wrapper_target_class.
26 2010-01-19  Mark Probst  <mark.probst@gmail.com>
28         * sgen-gc.c: Fix warnings.
30 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
32         * verify.c (store_local): Better error message.
34 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
36         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
37         arguments.
39 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
41         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
42         function is generics variance aware.
44 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
46         * security-core-clr.c (mono_security_core_clr_can_access_internals):
47         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
49 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
51         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
52           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
54         Code is contributed under MIT/X11 license.
56 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
58         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
59         on a GTD.
61 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
63         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
64         return a point to a wrapper specific info structure describing the wrapper.
65         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
67 2010-01-18  Mark Probst  <mark.probst@gmail.com>
69         * sgen-gc.c: Make minor collection section allowance adaptive,
70         depending on the amount of memory reclaimed in the last major
71         collection.  If more memory was reclaimed (i.e. more garbage
72         produced), do the next collection earlier.
74 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
76         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
77         to itself.
79         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
80         the token as parameter.
82         * verify-internals.h: Ditto.
84         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
86         Fixes #571460.
88 2010-01-18  Mark Probst  <mark.probst@gmail.com>
90         * sgen-gc.c: Make store_remset_buffer_index long.
92 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
94         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
96         Fixes #569579.
98 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
100         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
101         off precise marking if it is available.
102         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
104 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
106         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
108         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
109         pinned objects.
111         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
112         to the array allocator.
114 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
116         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
117         result of mono_compile_method (), it already includes an ftnptr.
119 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
121         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
123 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
125         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
126         hash value which doesn't depend on glib/eglib versions.
127         (mono_metadata_type_hash): Use it.
129         * object.c (mono_method_get_imt_slot): Ditto.
131 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
133         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
134         independently of the GTD.
136         * class.c (mono_class_setup_fields): Fail if field has negative offset.
138         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
139         to the upper limit since instance_size includes this amount.
141         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
143         Fixes #569544.
145 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
147         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
148         with static methods.
150         * object.c (build_imt_slots): Avoid asserting when static methods are
151         encountered in an interface.
153 2010-01-13  Mark Probst  <mark.probst@gmail.com>
155         * sgen-gc.c (to_space_expand): Fix assertion.
157 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
159         * string-icalls.c: missing declaration fixes.
160         * sgen-gc.c: portability fixes.
162 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
164         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
166         * class.c:
167         * cominterop.c:
168         * icall.c:
169         * object.c: 
170         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
172 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
174         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
175         it can fail loading the type.
177         * class.c: Add mono_class_inflate_generic_class_checked.
179         * class.c:
180         * verify.c:
181         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
183 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
185         * loader.c (mono_method_signature_checked): New internal function taking an
186         MonoError argument.
188         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
189         Fixes build on rh 7.3.
191 2010-01-10  Aaron Bockover  <abockover@novell.com>
193         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
194         at runtime in the same way as on Windows, which yields a relocatable
195         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
196         of the running mono process.
198         On TARGET_ARM, fallback () will always be executed.
200 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
202         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
204 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
206         * class.c (mono_class_is_assignable_from_slow): Support variant
207         generic delegates.
209         * class.c (mono_class_implement_interface_slow): Support types with
210         variant generic arguments.
212 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
214         * verify.c: Remove some code duplication.
216 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
218         * object.c: Update docs.
220 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
222         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
224         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
225         fallback trampoline as well.
227         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
228         out argument that is set to TRUE if the match was direct. 
230         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
232         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
234 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
236         * class.c: Add mono_class_interface_offset_with_variance function that does same
237         as mono_class_interface_offset but takes variance into account.
239         * class-internal.h: Export mono_class_interface_offset_with_variance.
241         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
243 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
245         * object.c:
246         * icall.c:
247         * class.c: Add some FIXME for due to variant generic arguments.
249         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
250         can't use the simple bitfield check, so call mono_class_is_assignable_from if
251         the bitfield check fails.
253 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
255         * class.c (mono_class_is_assignable_from): Rework the generics variance code
256         to be easier to read and fix bugs in the case a non generic type implements a variant
257         interface.
259         * class.c (mono_class_has_variant_generic_params): Make non static.
261         * class-internals.h: Export mono_class_has_variant_generic_params as part of
262         the private API.
264 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
266         * assembly.c: fix MONO_PATH debug output.
268 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
270         * culture-info-table.h : regenerated.
272 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
274         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
275         types that are meant to not have a parent.
277 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
279         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
280         from the image mempool, so it is not leaked.
282 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
284         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
286 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
288         * verify.c (verify_valuetype_layout_with_target): Fix case
289         that can lead to infinite recursion. Fix bug #567861
291 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
293         * pedump.c: Run code verifier even if image verification fails
294         due to a failed type we. This allows more errors to be shown.
296 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
298         * class.c (count_virtual_methods): Remove the assert and now
299         fail properly.
300         
301         * class.c (setup_interface_offsets): This can fail now.
303         * class.c (mono_class_setup_vtable_general): Check for parent vtable
304         errors. Check setup_interface_offsets errors.
306         * class.c (setup_interface_offsets): Simplify the return error logic
307         and remove class_init_ok.
309         Fixes #560327.
311 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
313         * class.c (mono_class_init): Do class verification at the beginning. Add
314         some asserts to avoid tripping into invalid memory.
316         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
317         g_error and a decent message.
319         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
321         Fixes #567548.
323 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
325         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
326         as inline functions instead of defining them in mempool.c.
328         * metadata-internals.h (MonoImageSet): New structure representing a set of
329         MonoImages, which own a collection of generic instances.
331         * metadata.c: Get rid of the global generic caches, instead assign each generic
332         instance to the image set which consists of all the images referenced by the
333         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
334         the memory used by generic instances to be allocated from a per image-set mempool
335         later.
337 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
339         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
341 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
343         * appdomain.c (zero_static_data): Fix a warning.
345         * locales.c (construct_culture_from_specific_name): Applied patch from
346         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
347         not found. Fixes #567900.
349 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
351         * loader.c (mono_method_get_signature_full): Remove two asserts.
352         Return NULL instead so that the verifier can handle both cases 
353         gracefully.
355 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
357         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
358         so we can properly fail types instead of crashing.
360         Fixes #567676.
362 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
364         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
365         generic method.
367 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
369         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
371 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
373         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
374         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
375         we can't remove it from it since we don't hold the lock.
376         (mon_new): Free the orphaned events here when a mon structure is added to the
377         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
378         this down.
380 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
382         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
383         as max stack might be zero.
385         Fixes #562320.
387 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
389         Rework all uses of mono_class_setup_methods to accept that it can fail now.
391         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
392         instances if the GTD did.
394         * class.c (mono_class_setup_properties): Ditto.
396         * class.c (mono_class_setup_events): Ditto.
398         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
400         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
401         error setting.
403         * class.c (mono_class_init): Fail if GTD did.
405         * cominterop.c:
406         * generic-sharing.c:
407         * icall.c:
408         * loader.c:
409         * object.c:
410         * verify.c: Properly handle failure of mono_class_setup_methods.
412 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
414         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
415         mono_class_inflate_generic_method_full internal.
417         * class.c (inflate_generic_context): Now takes a MonoError argument.
419         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
420         errors.
422 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
424         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
425         they cannot be patched. Partly fixes #564408.
427 2009-12-24  Mark Probst  <mark.probst@gmail.com>
429         * metadata-internals.h, reflection.c: Use the
430         MonoDynamicImage.handleref hash table only with unmanaged keys,
431         and add a managed hash table handleref_managed for managed keys.
433 2009-12-24  Mark Probst  <mark.probst@gmail.com>
435         * sgen-gc.c: Unset to-space bumper between collections.  It might
436         become invalid due to degraded allocations.
438 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
440         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
441         with the one from the original method.
443         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
444         compatibility.
446         * verify-internals.h: Add new function to the internal API.
448 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
450         * culture-info-tables.h: regenerated it to include the Georgian culture.
452 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
454         * sgen-gc.c: Include mono/utils/memcheck.h.
456         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
457         instead of the current domain, since the two might not match if this is called
458         from the debugger.
460         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
461         domain which created this assembly.
463 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
465         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
467 2009-12-17  Mark Probst  <mark.probst@gmail.com>
469         * sgen-gc.c: Managed implementation of the specialized generic
470         store write barrier.
472 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
474         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
475         A private virtual newslot method is used to implement an interface method without exposing
476         it to users. When querying for public instance methods, such method would hide a public one
477         on a parent type.
479         Fixes #564379.
481 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
483         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
484         conventions.
486 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
488         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
490 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
492         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
493         as they are no longer used.
494         
495          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
497         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
499 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
501         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
502         if the owner class has not been finished before returning reflection_info.      
504         Fixes #565127.
506 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
508         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
509         param doesn't have custom attributes. Fixes #565117.
511         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
512         #565120.
514 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
516         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
518 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
520         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
521         same amount done by a core-clr enabled runtime.
523 2009-12-15  Marek Habersack  <mhabersack@novell.com>
525         * appdomain.c (mono_make_shadow_copy): make sure access mode of
526         the target files is reset to writable by owner and readable by
527         everyone else to prevent problems when updating shadow copies of
528         files whose source is read-only. Fixes bug #556884
530 2009-12-15  Mark Probst  <mark.probst@gmail.com>
532         * class.c (mono_generic_class_get_class): Allocate the generic
533         class via malloc again, so that it can be freed when any one of
534         the images of its constituent types is closed.
536         * metadata.c: When closing an image, don't free generic insts and
537         generic classes right away, but put them into a list for later
538         freeing.
540         * image.c, metadata-internals.h: Store the free list and in the
541         second pass of closing an image, free it.
543 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
545         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
547         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
548         types in type_hash.
550         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
552 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
554         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
555         user type.
557         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
558         is used.
560 2009-12-14  Miguel de Icaza  <miguel@novell.com>
562         * verify.c (mono_method_verify): The Unused opcodes produce an
563         InvalidProgramException on .NET
565 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
567         * loader.c (mono_method_get_header): Move assert after the verifier
568         has been called on the method header.
570 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
572         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
574         * appdomain.c: Bump corlib version.
576 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
578         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
579         types as well since otherwise generic instances would not return UT as arguments but
580         their undelying system type.
582         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
583         to reflect the fact that they can have now multiple different types.
585         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
587         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
589         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
591         * reflection.c (mono_reflection_register_with_runtime): Init super types
592         if the image is not dynamic.
594         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
595         check if the generic type definition is a TypeBuilder.
597         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
598         doesn't belong to a dynamic image, skip initialization.
600         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
601         base definition is not a dynamic type.
603 2009-12-11  Marek Habersack  <mhabersack@novell.com>
605         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
606         mono_profiler_string_allocation
608         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
609         if string profiling is enabled, call
610         mono_profiler_string_allocation
612         * profiler.h: added two MonoProfileFlags -
613         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
614         installation functions for the hooks below.
616         * profiler-private.h, profiler.c: added two hooks:
617         mono_profiler_string_allocation called whenever a string is
618         allocated by InternalAllocateStr and mono_profiler_iomap called
619         whenever IOMAP code performs an adjustement on a file path.
621 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
623         * boehm-gc.c: fixed race condition while getting the target of a
624         disappearing link (bug #522233).
626 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
628         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
629         the error.
631 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
633         * reflection.c: Add mono_reflection_register_with_runtime icall to
634         allow a MonoGenericClass to register itself as the managed mirror of
635         a given generic instance.
636         This is a temporary workaround until all MGC instantiation happens in
637         managed code.
639         * object-internals.h: Ditto.
641         * icall-def.h: Ditto.
643 2009-12-10  Mark Probst  <mark.probst@gmail.com>
645         * sgen-gc.c (find_in_remsets): Also search the generic store
646         remsets.
648 2009-12-10  Mark Probst  <mark.probst@gmail.com>
650         * sgen-gc.c: Don't access class names in debugging code when
651         unloading a domain, because they might not be valid anymore.
653 2009-12-10  Mark Probst  <mark.probst@gmail.com>
655         * domain.c, domain-internals.h: New function mono_domain_unset().
657         * appdomain.c (unload_thread_main): Detach the thread again at the
658         end.
660         * threads.c: When a thread exists or is detached, unset its domain
661         so that it's NULL when, for example, a pthread destructor runs.
663         * sgen-gc.c: Assert that there is no domain set after a thread is
664         done.
666 2009-12-10  Mark Probst  <mark.probst@gmail.com>
668         * class.c (mono_generic_class_get_class),
669         metadata.c (free_generic_class): Allocate generic MonoClass's from
670         the image mempool, not via malloc.  The problem with malloc is
671         that when unloading a domain those classes are freed before
672         clearing the heap and SGen needs the classes.  Rewriting the
673         unloading code to do the free later would be more work and there's
674         no point in using malloc anyway.
676 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
678         * loader.c (mono_method_signature): Always call mono_loader_unlock 
679         before returning.
681 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
683         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
684         user string blobs.
686         * verify-internals.h: Add new function to the internal API.
688         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
689         check if it's a valid string.
691         * object.c (mono_ldstr): Ditto.
693         Fixes #561943.
695 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
697         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
698         from a method before returning it. This is the expected behavior.
700 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
702         * reflection.c (inflate_method): Handle the case of a regular system type.
704 2009-12-08  Mark Probst  <mark.probst@gmail.com>
706         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
707         gathering code.
709         * mempool.c, mempool-internals.h: New function
710         mono_mempool_get_bytes_allocated().
712         * Makefile.am: sgen-pinning-stats.c added.
714 2009-12-08  Mark Probst  <mark.probst@gmail.com>
716         * sgen-gc.c (create_allocator): Only use the fast path if the
717         object size is within the small object size limit.
719 2009-12-07  Mark Probst  <mark.probst@gmail.com>
721         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
722         possibly adding padding to sizeof (GCMemSection).
724 2009-12-07  Mark Probst  <mark.probst@gmail.com>
726         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
727         reference is not in the nursery.
729 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
731         * class.c (mono_class_from_typeref): Bounds check idx against the 
732         assemblyref table.
734 2009-12-07  Mark Probst  <mark.probst@gmail.com>
736         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
737         through the potential roots, then sort the results and find the
738         pinned objects from there.
740         * Makefile.am: sgen-pinning.c added.
742 2009-12-07  Mark Probst  <mark.probst@gmail.com>
744         * sgen-gc.c: Record generic stores in specialized remset buffers.
746 2009-12-06  Mark Probst  <mark.probst@gmail.com>
748         * sgen-gc.c: Make pinned chunks the same size as major heap
749         sections, and align them as well, so that we can check whether an
750         object is in a pinned chunk or a major section in constant time.
752 2009-12-06  Mark Probst  <mark.probst@gmail.com>
754         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
756 2009-12-06  Mark Probst  <mark.probst@gmail.com>
758         * sgen-gc.c: Make all major heap sections the same size (currently
759         128k) and allocate them on aligned addresses.  Small heap sections
760         give us better granularity with pinned objects - we can free up
761         much more memory.
763 2009-12-06  Mark Probst  <mark.probst@gmail.com>
765         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
766         output removed.
768 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
770         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
772         * mono/metadata/assembly.c: When opening an assembly image, pass the real
773         names in addition to the runtime generated one.
775         * mono/metadata/image.h: Add a function to take the real name of the assembly
776         image.
778         * mono/metadata/image.c: If a real name has been passed to load an assembly,
779         use it instead of the runtime generated one.
781         Code is contributed under MIT/X11 license.
783 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
785         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
786         before the other checks to prevent problems if the DateTime class is blittable.
787         Hopefully fixes #559600.
789 2009-12-05  Mark Probst  <mark.probst@gmail.com>
791         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
792         returns the largest string length that will not be put into the
793         LOS.
795         * sgen-gc.c, gc-internal.h: New function that returns the largest
796         object size that will not be put into the LOS.
798         * appdomain.c: Bump corlib version.
800 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
802         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
804         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
806 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
808         * reflection.c (inflate_method): Fix signature.
810         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
811         in managed code.
813 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
815         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
817 2009-12-03  Mark Probst  <mark.probst@gmail.com>
819         * sgen-gc.c: Abstract to-space handling.
821 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
823         * loader.c (find_method_in_class): Ignore methods with broken signatures.
825         Fixes #559906.
827 2009-12-03  Mark Probst  <mark.probst@gmail.com>
829         * sgen-gc.c: Only add references from outside the nursery to
830         within the nursery to the global remset list.
832 2009-12-03  Mark Probst  <mark.probst@gmail.com>
834         * appdomain.c (create_exceptions): Set the domain temporarily if
835         necessary to avoid cross-domain references.
837 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
839         * verify.c (get_stack_type): Return that the type is invalid instead of
840         asserting.
842         * verify.c (mono_method_verify): Verify that all locals and arguments
843         have valid stack types.
845         Fixes #559913.
847 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
849         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
850         bounds checking overflow aware.
852         Fixes #559910.
854 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
856         * verify.c (do_invoke_method): Check for invalid method signatures.
858         Fixes #553450.
860 2009-12-02  Jb Evain  <jbevain@novell.com>
862         * appdomain.c (MONO_CORLIB_VERSION): bump.
863         * icall-def.h (get_base_definition): renamed to get_base_method
864         and add a boolean argument indicating we want the original
865         method definition, or the immediate base method.
866         * icall.c: apply the get_base_definition to get_base_method change.
868 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
870         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
872         Fixes #558042.
874 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
876         * class.c: remove asserts for invalid type token in
877         mono_class_name_from_token(), mono_assembly_name_from_token() and
878         mono_class_create_from_typedef () (fixes bug #553318).
880 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
882         * metadata.c, class.c, loader.c: remove assert after bsearch() for
883         incorrect assemblies (bug #553322).
885 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
887         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
889         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
891         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
893         * class.c (inflate_generic_context): Ditto.
895         * loader.c (method_from_methodspec): Ditto.
897         Fixes #558230.
899 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
901         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
903         * class.c (mono_class_create_from_typespec): Ditto.
905         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
907         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
909         Fixes #558184.
911 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
913         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
915         * verify.c (verify_delegate_compatibility): Ditto.
917         * verify.c (do_newobj): Ditto.
919         Fixes #558046.
921 2009-12-02  Mark Probst  <mark.probst@gmail.com>
923         * sgen-gc.c: Use a gray queue instead of requiring that gray
924         objects are in a contiguous region.
926         * sgen-gray.c: The gray queue implementation.
928         * Makefile.am: sgen-gray.c added.
930 2009-12-02  Mark Probst  <mark.probst@gmail.com>
932         * appdomain.c: When unloading a domain, zero its static data and
933         perform a minor collection when using SGen.  That will get rid of
934         all the remsets pointing into that domain's static data.
936         * sgen-gc.c: Allow remsets into static data.  By doing this we
937         need less checks so we're more efficient.
939 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
941         * verify.c (mono_method_verify): Check for catch clauses with broken
942         types.
944         Fixes #558465.
946 2009-12-01  Jb Evain  <jbevain@novell.com>
948         * class.c (make_generic_param_class): set the namespace of
949         the generic parameter class from its owner, if available.
951 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
953         * verify.c (code_bounds_check): Do proper overflow checking.
955         * verify.c (mono_method_verify): The number of switch entries is
956         an unsigned int. Properly bounds check it.
958         Fixes #558594.
960 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
962         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
963         mono_metadata_method_has_param_attrs which only checks if a given param
964         list has a non zero flags entry.
966         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
967         to inform how many params should we expect to decode.
969         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
970         as it's faster than mono_metadata_get_param_attrs.
972         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
973         add mono_metadata_method_has_param_attrs.
975 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
977         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
978         failures.
980         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
981         is -1 but its class is broken.
983         Fixes #558522.
985 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
987         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
988         for parameter overflow.
990         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
991         of mono_metadata_get_param_attrs.
993         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
994         API.
996         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
998 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1000         * class.c (mono_class_setup_fields): Check for fields with broken types.
1002         Fixes #558741.
1004 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1006         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1007         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1008         its TypeBuilder::CreateType ().
1010         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1011         if not needed.
1013         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1014         to make setup_interface_offsets happy.
1016         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1017         compilation now works.
1019 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1021         * appdomain.c (create_exceptions): New helper function extracted from
1022         mono_runtime_init () to precreate objects used during exception handling.
1023         (mono_runtime_init): Call it.
1024         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1026 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1028         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1029         compilation until the proper one is found.
1031 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1033         * class.c (mono_class_setup_vtable_general): Cache the result of
1034         get_virtual_methods () since it can be slow because of the metadata
1035         optimization.
1037         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1038         from a MonoValueHashTable for now, since the later is based on an earlier
1039         version of hpj's internal probing code and seems to have serious collision
1040         issues.
1042         * loader.c (mono_get_method_full): Update after the change above.
1044 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1046         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1048 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1050         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1051         the GTD instead of the DGC instead of crashing.
1053         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1054         required. Inflate fields if needed.
1056         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1057         finished. Renamed.
1059 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1061         * class.c (check_interface_method_override): Check for NULL signatures and fail
1062         the type.
1064         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1066         Fixes #553428.
1068 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1070         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1071         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1073 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1075         * loader.c (field_from_memberref): Resolve the class first then the field
1076         signature. Remove a lot of duplicated code and make sure we don't pass valid
1077         values to mono_loader_set_error_field_load.
1079         Fixes #553306.
1081 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1083         * class.c (inflate_generic_type): Change code to use new signature of
1084         mono_error_set_bad_image.
1086         Fixes #558124.
1088 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1090         * verify.c (mono_method_verify): Don't free ctx.params items if 
1091         we aborted while inflating the ctx.locals. Complete previous fix
1093 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1095         * verify.c (mono_method_verify): Use the uninflated type name, 
1096         when the inflated is null, to report errors. Also take care when
1097         freeing, not to free everything since, in case of an error, some
1098         stuff would be copies (i.e. not allocated by the function itself)
1099         Fix bug #558145
1101 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1103         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1104         or overflow. The caller must have done this check explicitly. This guard us
1105         from accessing invalid memory.
1107         * verify.c (do_push_static_field): Check for stack overflow.
1109         Fixes #553333.
1111 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1113         * loader.c (find_method_in_class): Don't crash if the signature cannot
1114         be resolved.
1116         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1117         of asserting for the case of invalid params.
1119         Fixes #553304.
1121 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1123         * image.c (mono_image_load_module): Fix crash when a bad assembly
1124         has no module at all (fix bug #553412) and also replace the 
1125         g_assert with a return NULL (documented return value for failure)
1127 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1129         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1131 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1133         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1134         file attribute to managed code and avoid doing the mask/attribute
1135         checks here. 
1137 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1139         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1140         the managed world.
1142         * icall-def.h: New entry points.
1143         
1144 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1146         * process.c: Don't put references to managed objects into a
1147         g_ptr_array.
1149 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1151         * class.c (can_access_internals): Allow CoreCLR to participate in
1152         allowing (or not) [InternalsVisibleTo] between assemblies.
1153         * security-core-clr.c|h: Make sure that only trusted code (a 
1154         superset of platform code) can access the internals of platform
1155         code.
1157 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1159         * reflection.c: use the correct base class to get the virtual method
1160         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1162 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1164         * security-core-clr.c (get_caller_no_reflection_related): 
1165         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1166         it's still reflection and must be filtered correctly.
1168 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1170         * object.c (compute_class_bitmap): Fix for large bitmaps.
1172 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1174         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1176         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1177         koush@koushikdutta.com). Disable GC_no_dls on android.
1179 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1181         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1182         tlab_next points outside the TLAB because the allocator was
1183         interrupted.
1185 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1187         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1189 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1191         * object-internals.h: Change signature for mono_string_to_utf8_image.
1193         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1194         argument.
1196         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1197         exceptions due to mono_string_to_utf8.
1199 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1201         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1203         * object.c (mono_remote_class): Make sure all resources are released before
1204         raising an exception.
1206         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1208 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1210         * mono-perfcounters.c (network_get_impl): Change variable initialization
1211         ordering to fix potential memory leak in case of exceptions.
1213         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1214         encoded strings.
1215         
1216 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1218         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1219         variable initialization ordering to fix potential memory leak in case
1220         of exceptions.
1222 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1224         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1225         needed.
1227 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1229         * appdomain.c: Fix shadow path code to better deal with exceptions.
1231 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1233         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1234         exception in the middle of the runtime code.
1236 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1238         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1239         leak memory with broken envvar value.
1241 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1243         * reflection.c (mono_reflection_setup_internal_class): Because
1244         nested classes are not added to the name cache, we must put them
1245         in the reflection_info_unregister_classes list.
1247 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1249         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1250         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1251         platform (trusted) code. Instead we return a TypeLoadException to
1252         be thrown later. This is the exception thrown by Silverlight 2 if
1253         a type, inside application (user) code is marked with [ComImport]
1255 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1257         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1258         mono_is_debugger_attached () too.
1260         * mono-debug.c (mono_is_debugger_attached): New helper function.
1261         (mono_set_is_debugger_attached): Ditto.
1263 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1265         * object-internals.h: Add mono_string_to_utf8_checked.
1267         * object.c: Implement mono_string_to_utf8_checked.
1269 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1271         * class.c: Add missing check for load errors after every
1272         call to mono_class_setup_fields
1274         Fixes #552282.
1276 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1278         metadata-verify.c (verify_tables_schema): Fix the error message.
1280 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1282         * metadata.c: Change event table schema to use TDOR for event type
1283         as this is what it's meant to be.
1285         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1286         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1287         entry.
1289         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1290         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1291         rows in MONO_TABLE_GENERICPARAM.
1293         Fixes #552289.
1295 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1297         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1298         insertion.
1300         * reflection.c (mono_reflection_setup_internal_class): Avoid
1301         registering a gc root the same MonoClass multiple times.
1302         Don't register nested types on the global scope as they should
1303         not be available there.
1305 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1307         * culture-info-tables.h: regenerated.
1309 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1311         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1313 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1315         * string-icalls.c|h: Remove string internal calls that are not 
1316         used anymore by the class libraries.
1317         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1318         which is not used in the class librairies.
1319         * icall-def.h: Update tables.
1321 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1323         * class.h: Move mono_class_inflate_generic_type_checked...
1325         * class-internals.h: to here and make it internal. We don't want to
1326         further expose MonoGenericContext. 
1328 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1330         * verify.c (mono_method_verify): Improve error message.
1332 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
1334         * reflection.c (fieldref_encode_signature): If field_image is NULL then
1335         the token is already properly encoded. Fixs 4.0 build.
1337 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1339         * locales.c (construct_number_format): Check if the number index is
1340         valid before trying to use it, if not, just return.
1341         
1342 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
1344         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
1345         since that loses the abort state. Fixes #539394.
1347 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
1349         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
1350         explicit this argument to the call signature.
1351         (mono_marshal_get_icall_wrapper): Ditto.
1353 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1355         * reflection.c (fieldref_encode_signature): Add new field_image parameter
1356         to indicate which assembly to use when resolving a custom-mod.
1358         Fixes handling of volatile fields used across assemblies as reported in #551513.
1360 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1362         * loader.c: Improve error messages.
1364 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1366         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
1367         of interfaces. Fixes IKVM.
1369         * class.c (mono_class_setup_vtable_general): Improve debug spew.
1371 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
1373         * verify.c (verifier_inflate_type): Return the inflated type on success.
1375 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
1377         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
1379         * threads.c (mono_thread_attach): Call the profiler thread start callback.
1381         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
1383         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
1384         flag set.
1386         * profiler.c: Add new profiler callbacks for runtime invoke.
1388         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
1390 2009-11-01  Mark Probst  <mark.probst@gmail.com>
1392         * sgen-gc.c: Keep track of the reason for a major collection and
1393         write it to the heap-dump file.
1395 2009-10-31  Miguel de Icaza  <miguel@novell.com>
1397         * threads.c: refactor the code that initializes the
1398         thread_start_args into a reusable function and use this in the two
1399         methods that start up threads.
1401 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
1403         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
1404         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
1406 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
1408         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
1409         Until now, we only had the per-cpu(core) counters.
1411 2009-10-28  Mark Probst  <mark.probst@gmail.com>
1413         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
1414         mono_gc_get_suspend_signal(), which returns the suspend signal
1415         number used by the GC.
1417 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
1419         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
1421         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
1422         signalling start_notify.
1424 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1426         * appdomain.c: do not test the st_mode field for shadow-copies.
1427         Fixes bug #545276.
1429 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1431         * threadpool.[ch]: added hooks for thread start/finish and item
1432         processing begin/end. For monotouch use only.
1434 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
1436         * threads.c (mono_thread_get_name): New helper function.
1438         * reflection.c (resolve_object): Set handle_class for strings too.
1439         (mono_reflection_create_custom_attr_data_args): New helper function to decode
1440         a cattr blob into a set of arrays and structures without creating the custom
1441         attributes themselves.
1442         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
1444         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
1446         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
1447         function.
1449 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1451         * verify.c: Replace calls to mono_class_inflate_generic_type with
1452         mono_class_inflate_generic_type_checked. Fixes #480005.
1454 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
1456         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
1457         object since not all paths lead to callees initing it.
1459 2009-10-23  Alp Toker  <alp@nuanti.com>
1461         Fix embedding API breakage from r144688. mono-compiler.h is an internal
1462         header and should not be shipped:
1464         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
1465         which is specific to the mono build. Not going to work.
1467 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
1469         * security-manager.c: Report if core-clr is active from
1470         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
1471         to allow Moonlight BCL to behave appropriately (both in browser
1472         and outside, e.g. smcs)
1474 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
1476         * mono-config.c: ignore UTF-8 BOM and report parser errors.
1477         Fixes bug #549108.
1479 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1481         * class.c: fix typo.
1483 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
1485         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
1486         a MonoError parameter.
1488         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
1489         version that can does proper error handling.
1491         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
1493         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
1495         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
1497 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1499         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
1500         NO_UNALIGNED_ACCESS is defined.
1502 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
1504         * marshal.c (mono_string_builder_to_utf16): Applied patch from
1505         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
1506         Fixes #549173.
1508 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1510         * sgen-gc.c: Shorten sections whenever possible.
1512 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1514         * sgen-gc.c: Use our portable semaphore #defines.
1516 2009-10-22  Mark Probst  <mark.probst@gmail.com>
1518         * sgen-gc.c: A debug option for dumping the heap layout to a file
1519         after each collection.
1521 2009-10-21  Mark Probst  <mark.probst@gmail.com>
1523         * sgen-gc.c: Make managed write barriers atomic via
1524         thread-restarts.
1526 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
1528         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
1529         methods. Fixes #543021.
1531 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1533         * socket-io.[ch]: fix VS build.
1535 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
1537         * icall-def.h:
1538         * socket-io.[ch]: implemented SendFile.
1540 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
1542         * class.c (mono_class_create_from_typedef): Initialize class->element_class
1543         before the interfaces to avoid crashes later if class initialization fails.
1544         Fixes #548417.
1546         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
1547         Fixes #548276.
1549 2009-10-20  Marek Safar  <marek.safar@gmail.com>
1551         * domain.c: Bump 4.0 version.
1553 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
1555         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
1556         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
1557         check since 'pubkey' can't be NULL at this stage
1558         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
1559         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
1560         initialization of 'iter'
1562 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
1564         * cominterop.c : Search the interface parts of vtable to find 
1565           method matches.  Fixes 547030.
1567         Code is contributed under MIT/X11 license.
1569 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
1571         * marshal.c: BeginInvoke cannot be called on multicast delegates with
1572         multiple targets. Fixes bug #574426.
1574 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1576         * profiler.h: Put here the definition of
1577         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
1578         (and fix the build...).
1580 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
1582         * profiler.c, profiler.h, profiler-private.h:
1583         Added support for different ways of getting call chains in stat mode.
1585 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1587         * object.c, object-internals.h: New function for computing the
1588         size of an array, factored out of mono_array_new_full().  Use
1589         SGen's functions for allocating arrays and vectors.
1591         * sgen-gc.c, gc-internal.h: Special functions for allocating
1592         arrays and vectors without race conditions.  A managed array
1593         allocator method.
1595         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
1597 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1599         * object.c, object.h, icall.c: Write barriers do the copying now,
1600         as well, so no need for an additional memcpy.
1602         * sgen-gc.c: Lock when storing remsets.  Do the memory
1603         copying/moving in the write barriers.
1605         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
1607         * reflection.c: Added an assert.
1609 2009-10-12  Mark Probst  <mark.probst@gmail.com>
1611         * threads.c, process.c: A few missing write barriers.
1613 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
1615         * mono-perfcounters.c, mono-perfcounters-def.h: Add
1616         network performance counters for bytes sent per second, bytes
1617         received per second, and bytes total per second.
1619         Code is contributed under MIT/X11 license.
1621 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1623         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
1624         Fix warning.
1626 2009-10-09  Mark Probst  <mark.probst@gmail.com>
1628         * threads.c, object-internals.h, object.c: Move code for
1629         transferring an object to a different domain (via
1630         serialization/remoting) to object.c.
1632         * object.c (call_unhandled_exception_delegate): If the exception
1633         is in a different domain than the delegate, transfer the exception
1634         to that domain.
1636 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
1638         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
1639         Fixes #322934.
1641 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
1643         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
1645 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1647         * object.c (mono_method_return_message_restore): Handle the case
1648         where the argument is an instance of a generic type.  Fixes
1649         #544446.
1651 2009-10-06  Mark Probst  <mark.probst@gmail.com>
1653         * object.c (set_value): Write barrier fix - we must pass the
1654         count, not the size.
1656 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
1658         * domain.c (mono_init_internal): Print a useful error message when encountering
1659         an old mscorlib, instead of crashing. Fixes #544307.
1661 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
1663         * appdomain.c (copy_app_domain_setup): Fix a warning.
1665         * debug-helpers.c (dis_one): Ditto.
1667 2009-10-04  Mark Probst  <mark.probst@gmail.com>
1669         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
1670         into the new domain, instead of referencing the original one.
1672         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
1673         non-static.
1675         * appdomain.c: Corlib version bump.
1677 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1679         * threadpool.c: one more...
1681 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
1683         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
1684         threads to die because we're shutting down. delgate5.exe works again.
1686 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
1688         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
1689           ccw_interface_hash table when a ccw is finalized.
1691         Code is contributed under MIT/X11 license.
1693 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1695         * assembly.c, domain.c, image.c, metadata-internals.h: Split
1696         domain and image unloading into two steps.  We must do this
1697         because clearing the domain in SGen requires the class metadata to
1698         be intact, but we need to free the mono_g_hash_tables in case a
1699         collection occurs during domain unloading and the roots would trip
1700         up the GC.
1702 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1704         * object-internals.h: Remove serialized culture fields from
1705         MonoInternalThread.
1707         * icall-def.h, thread-types.h, threads.c: Remove serialized
1708         culture icalls.
1710         * appdomain.c: Corlib version bump.
1712 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
1714         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
1715         Fixes #543133.
1717 2009-09-30  Mark Probst  <mark.probst@gmail.com>
1719         * sgen-gc.c: Try to shorten the new section after a major
1720         allocation to avoid ever-growing sections.
1722 2009-10-13  Martin Baulig  <martin@ximian.com>
1724         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1725         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
1726         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
1727         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
1729         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
1731 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
1733         * threadpool.c: fixed the order in which 'completed' and the wait
1734         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
1735         No need to use the wait_handle field of ASyncCall. Make sure the
1736         threadpool is active when adding a job or queueing an idle thread.
1738 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
1740         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
1742         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
1743         when using --compile-all.
1745 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1747         * metadata.c (free_generic_class): Unregister the field_objects
1748         roots if we're using SGen.
1750 2009-09-27  Mark Probst  <mark.probst@gmail.com>
1752         * reflection.c (mono_dynamic_image_free): Deregister the GC root
1753         for GenericParamTableEntry.gparam.
1755 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
1757         * marshal.c: don't create the handle when calling. It is created later
1758         if needed.
1760 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1762         * sgen-gc.c: Warning fixes.
1764 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1766         * sgen-gc.c: New debug option "xdomain-checks", which scans the
1767         whole heap for cross-domain references before each collection.
1769         * sgen-scan-object.h: The scan action can now use SCAN to scan the
1770         object.
1772         * threadpool-internals.h, threadpool.c: New function
1773         mono_thread_pool_is_queue_array() for checking whether a given
1774         array is used as a (cross-domain) queue by the thread pool code.
1776 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1778         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
1779         searches the whole heap for objects containing a specific
1780         reference.  Only for debugging.
1782 2009-09-26  Mark Probst  <mark.probst@gmail.com>
1784         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
1786         * icall-def.h, threads.c, threads-types.h: New icalls for copying
1787         byte arrays between domains.
1789 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1791         * threadpool.c:
1792         * class-internals.h:
1793         * mono-perfcounters-def.h:
1794         * mono-perfcounters.c:
1795         -There is a list of idle threads
1796         -Each of those idle threads wait on their own WaitHandle instead
1797         of all of them using the same semaphore. When a new work item is
1798         added, the job is assigned directly to an idle thread or a newly
1799         created one if possible and then the handle for that thread is
1800         signaled. Compare that to the current approach where all the
1801         threads in the pool compete to dequeue a job from the same
1802         queue.
1803         -New struct ThreadPool that brings together the bunch of static
1804         variable for each threadpool (IO and regular).
1805         -New performance counters: # of items added and its rate per
1806         threadpool. The rate will be used later, perhaps together with
1807         other perf. counters, to decide when idle threads should exit.
1809 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
1811         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
1812         Fix typo on Windows build.      
1813         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
1814         
1815         Code is contributed under MIT/X11 license.
1817 2009-09-25  Mark Probst  <mark.probst@gmail.com>
1819         * object-internals.h: The Thread class is split up into Thread and
1820         InternalThread now.  We have exactly one InternalThread per
1821         thread, and at most one Thread per appdomain per thread.  Most
1822         data is stored in InternalThread.  All InternalThread objects live
1823         in the root domain.
1825         * class-internals.h: Add internal_thread_class to MonoDefaults.
1827         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
1828         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
1829         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
1830         resulting from the split of the Thread class.
1832         * gc-internal.h: Prototype for new function for checking whether a
1833         thread is the finalizer thread.
1835         * appdomain.c: Corlib version bump.
1837 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1839         * appdomain.c|h: Add a mono_domain_try_unload method which is
1840         equivalent to mono_domain_unload, except that it returns an exception
1841         instead of throwing it. Make mono_domain_unload use the
1842         mono_domain_try_unload method to avoid code-duplication.
1844 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
1846         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
1847         a problem.
1849 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
1851         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
1852         aborting when a conversion is not implemented.
1854 2009-09-23  Miguel de Icaza  <miguel@novell.com>
1856         * verify.c: when comparing culture strings, use g_ascii_strcmp
1858         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
1859         when comparing public key tokens to use memcmp on 16 bytes.   I do
1860         not believe this ever worked as advertised in the past.
1862         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
1863         which would have always failed earlier.
1865 2009-06-25  Miguel de Icaza  <miguel@novell.com>
1867         * gc.c: Raise a NullArgumentException if the object passed is
1868         null.
1870 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
1872         * image.c (mono_image_close): Atomically decrement the reference count and
1873         remove the image from the hash tables, to prevent another thread from seeing a
1874         dying MonoImage. Fixes #541194.
1876 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1878         * threadpool.c: actually use the minimum number of 'completion ports'
1879         (for us is just a potential worker thread).
1881 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1883         * threadpool.c: remove ares_htable. It does not make sense any more
1884         since the same objects are now stored in GC-tracked arrays while they are
1885         in the queue.
1887 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
1889         * threadpool.c: increase the minimum length of the queues to 128.
1890         Remove warning.
1892 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
1894         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
1895         return the modified signature used by string ctors.
1897 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
1899         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
1900         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
1901         method, to be used by full-aot.
1903 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
1905         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
1906         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
1907         be known to be good.
1909         * class.c (mono_class_init): Fail array types if their element type fails initialization
1910         as well.
1912         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
1913         initialization, additionally we request the element_type vtable to be initialized as well.
1915         This is fine and should not increase the working set in any meaningful way since it's reasonable
1916         to assume       that most code will create an array and eventually populate it, which will require the
1917         type's vtable to be initialized.
1919         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
1921 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
1923         * normalization-tables.h : regenerated.
1925 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
1927         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
1928         a leb128 encoding can take up to 5 bytes.
1930 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1932         * class.c (verify_class_overrides): Remove useless argument.
1934         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
1935         before interface enumeration as this is no longer required.
1937 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
1939         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
1940         used under mono_class_init context. This functions avoid any code path that
1941         calls mono_class_init, which leads it to be slow as some things like the interface
1942         bitmap are not available.
1944         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
1945         of it's own broken version. Fixes the verifier part of #538588.
1947         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
1948         API.
1950 2009-09-15  Mark Probst  <mark.probst@gmail.com>
1952         * class.c (mono_class_init): Always set an exception in a class if
1953         vtable setup fails.  Fixes #538577.
1955         * generic-sharing.c: Raise an exception if mono_class_vtable()
1956         returns NULL.
1958 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
1960         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
1961         methods of vtypes, as they could be incorrectly shared with static methods
1962         taking an IntPtr argument.
1964 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1966         * domain.c:
1967         * object.c:
1968         * class-internals.h: renamed waithandle_class to
1969         manualresetevent_class.
1970         * marshal.c: propagate the exception if a remoting BeginInvoke call
1971         fails.
1973 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1975         * object.c: Properly handle vtable failures.
1977 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1979         * socket-io.c: Assert on vtable failure.
1981         * mono-mlist.c: Assert on vtable failure.
1983 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1985         * marshal.c: Assert on vtable failure.
1987 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1989         * icall.c: Properly handle vtable failures.
1991 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1993         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
1995 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
1997         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
1999         * console-unix.c (do_console_cancel_event): Same.
2001 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2003         * class-internals.h: Add mono_class_vtable_full function that allows control
2004         if an exception should be raised or not.
2006         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2007         to do what its documentation say, that is to return NULL and set exception_type on
2008         failure.
2010         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2011         and change the code to honor it.
2013 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2015         * verify.c: Fix typo in error message.
2017 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2019         * security-core-clr.c: Fix default_platform_check so it can run
2020         the runtime coreclr tests (without an infinite recursion when
2021         throwing an exception).
2023 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2025         object.c (mono_delegate_ctor_with_method): Guard against null method.
2027 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2029         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2030         that should be replaced with error handling later.
2032 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2034         * marshal.c (mono_delegate_end_invoke): Fix warning.
2036 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2038         * loader.c (mono_field_from_token): Properly handle invalid
2039         dynamic tokens.
2041 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2043         * pedump.c (verify_image_file): Skip types that can't be
2044         decoded.
2046 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2048         * verify.c: Look for recursive valuetypes only against the
2049         type been initialized as this is a lot simpler and works.
2051 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2053         * verify.c: Ensure that fields are properly loaded before
2054         checking them.
2056 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2058         * object.c (mono_object_get_virtual_method) : Call 
2059           mono_cominterop_get_invoke if the object is a COM object.
2061         Code is contributed under MIT/X11 license.
2063 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2065         * verify.c: Check for recursive valuetype definitions.
2067 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2069         Use inheritance-aware interface offsets. Inherited types use the same offsets
2070         of their parents. This reduce offset duplication in case more than one type in
2071         the inheritance tree explicitly implements the same interface.
2073         This also removes a source of vtable bubbles found in #532409. An abstract type
2074         isn't required to provide abstract methods to all interfaces it implements, which
2075         resulted in a bubble with the previous scheme as the child would get a non-full
2076         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2077         should be fixed.
2079         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2080         it's expected to not cause any significant increase beyond that.
2082         * class.c (setup_interface_offsets): Compute super class iface offsets
2083         first to force sharing.
2085         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2086         dumping only the relevant ones.
2088         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2089         methods a new slot regardless if they belong to an interface or not. This allows
2090         an inherited type to override the iface method separately from the class one.
2092 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2094         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2095         applications that take less than 2s to execute.
2096         Bug #524984 fixed.
2098 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2100         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2102         * object.c (mono_get_runtime_callbacks): New helper function to return
2103         the runtime callbacks.
2105         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2106         mono_get_runtime_build_info () as the display name.
2107         
2108 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2110         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2111         argument, since NEWARR expects a native int. Fixes #481559.
2113 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2115         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2116         against broken SRE methods.
2118 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2120         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2121         a NULL variable. Abort early on failure.
2123 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2125         * class.c (can_access_type): Fail visibility test for non nested
2126         types with nested visibility.
2128 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2130         * assembly.c (parse_public_key): Avoid allocating (and not 
2131         freeing) the public key array when it's not requested by the 
2132         caller.
2133         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2134         ves_icall_System_Threading_Thread_Thread_internal): Free 
2135         allocated memory on error.
2137 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2139         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2141 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2143         * class.c (mono_class_setup_fields): Remove duplicated local variable
2144         named gklass.
2145         Rename gklass to gtd to reflect the fact that it points to the generic
2146         type definition.
2147         Remove the duplicated call to mono_class_setup_fields on gtd and move
2148         the error check to the beginning.
2150 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2152         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2153         Remove cruft of the previous patch.
2155 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2157         * metadata-verify.c (verify_method_table): Check for abstract + final.
2158         Fixes #534175.
2160 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2162         * verify.c (verify_class_fields): Check for duplicate fields.
2164 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2166         * metadata-verify.c: Verify the typeref table for duplicates.
2168 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2170         This reverts r140936 and properly handles interfaces with static methods. The
2171         right fix is to ensure vtables without bubles which is an easier to verify
2172         constraint. We should avoid such special cases as of the reverted patch as those
2173         only make the runtime more brittle.
2175         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2176         static methods on interfaces.
2178         * class.c (setup_interface_offsets): Use the number of virtual methods when
2179         calculating interface offsets instead of the number of methods. This way we
2180         avoid bubles on the layout.
2182 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2184         * metadata-verify.c (verify_metadata_header): Some very smart
2185         obfuscators like to add extra stream headers. Ignore them.
2187 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2189         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2190         methods correctly.
2192 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2194         * metadata-verify.c: Verify for duplicated types.
2196 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2198         * metadata-verify.c (verify_typedef_table): Verify for nested types
2199         without an entry on the nested class table.
2201 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2203         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2204         <tom_hindle@sil.org>. Add locking around hash table accesses.
2206 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2208         * verify.c (mono_verifier_verify_class): Verify all interface if
2209         really are interfaces. Fixes #534184.
2211 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2213         * pedump.c: Initialize all types during metadata validation so we report
2214         errors only detected as part of class initialization.
2216 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2218         * metadata-verify.c (verify_method_table): PInvoke requires method to
2219         be static. Fixes #534189
2221 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2223         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2224         being NULL.
2226 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2228         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2229         for holes or bad methods. Fixes #525314.
2231 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2233         * class.c (setup_interface_offsets): Don't allocate slot
2234         for the same interface multiple times. This creates bubbles
2235         that waster space and make vtable verification harder.
2237         The same interface get a slot multiple times since we need
2238         to get the closure of all implemented interfaces, which means
2239         the same interface is reported multiple times.
2241 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2243         * verify.c (mono_verifier_verify_class): Don't check the fields
2244         of generic instances since the context on which they got expanded
2245         might lead to false positives.
2247         Such thing happens when a generic type is inflated in the context
2248         of a generic method and the inflated type of a field turns into a
2249         generic method argument, which causes the checking code to think
2250         it's an invalid class when it's not.
2252 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2254         * verify.c (mono_type_is_valid_in_context): Verify if type
2255         is NULL and remove duplicate test.
2257 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2259         * verify.c (mono_verifier_verify_class): Check fields for
2260         invalid generic arguments.
2262 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2264         * class.c (verify_class_overrides): Verify if for static
2265         and non virtual methods.
2267 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2269         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2270         Check for errors after retrieving the vtable.
2272 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2274         * class.c (mono_class_setup_vtable_general): Verify
2275         if method overrides are valid before processing them.
2277 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2279         * marshal.c (mono_array_to_lparray): Fix minimal build with
2280         cominterop disabled.
2282         * marshal.c (mono_free_lparray): Same.
2284 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2286         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2287         the hash function for the ares_htable.
2289 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2291         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2292         bit for assembly flags. MS is ok with it but there is no spec anywhere
2293         on its mean
2295 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2297         * class.c (mono_class_create_from_typedef): Emit profiler events
2298         in all cases.
2300 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2302         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2303         Release memory on failure.
2305 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2307         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2308         to the internal API.
2310         * metadata.c (get_constraints): Use a single-linked table as we don't
2311         traverse it backward. Fail and return FALSE if only of the contraint types
2312         is not found.
2314         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2315         to mono_metadata_load_generic_param_constraints except for having a return value.
2316         This has to be done since the later is part of the public API.
2318         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2319         and fail the type.
2321         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
2322         and fail the method.
2324 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2326         * metadata-verify.c (is_valid_method_header): Add work-around to deal
2327         with MS broken behavior of emmitting EH section sizes without the
2328         header size added.
2330 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2332         * metadata.c (mono_type_create_from_typespec): Don't allocate image
2333         memory until we're sure that we'll need it. This avoids leaking for
2334         broken types or duplicated instantiation.
2336 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2338         * metadata-verify.c (is_valid_method_header): Fix stupid formating
2339         mistake.
2341 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2343         * metadata-verify.c (is_valid_method_header): Fix number of clauses
2344         and expected size calculation.
2346 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2348         * class.c (mono_class_get_field_idx): Add fixme for broken
2349         behavior for types with multiple fields with the same name.
2350         I would rather fix it, but have no idea on how to generate
2351         such artifact for testing.
2353 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2355         * verify.c (verifier_load_field): We should allow references to
2356         fields to be made using the generic type definition. It's up to
2357         the loader system to fail invalid ops.
2359         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
2360         are invalid.
2362 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2364         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
2366         * metadata-internals.h: Fix declaration of 
2367         mono_metadata_interfaces_from_typedef_full.
2369         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
2370         heap_alloc_result parameter that controls if the result should be
2371         g_malloc'd.
2373         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
2374         array be g_malloc'd and properly document this public API function.
2376 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2378         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
2379         remove METHOD_HEADER_TINY_FORMAT1.
2381         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
2383         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
2385         Both spec and MS uses only 2 bits to enumerate the kind of header.
2386         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
2387         is superfluous, only used for tiny headers with odd code lengths.
2389         This change also make sure that mono doesn't wronly interpret bit 2
2390         of fat header flags, which is currently reserved.
2392 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2394         * metadata.c (do_mono_metadata_parse_type): Do error
2395         checking for element types. Don't abort if presented
2396         with a broken type kind.
2398 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
2400         * metadata.c (mono_metadata_parse_method_signature_full):
2401         Gracefully fail bad vararg signatures.
2403 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2405         * profiler.c:
2406         * class.c: Fix warnings for uninitialized variables.
2408 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2410         * icall.c: Fix _NSGetEnviron method declaration warning.
2412 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2414         * icall.c:
2415         * reflection.c: Make bitwise checks explicit.
2417 2009-08-18  Christian Hergert  <chris@dronelabs.com>
2419         * debug-helpers.c:
2420         * marshal.c: Fix printf warnings.
2422 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
2424         * reflection.c (encode_cattr_value): Fix a warning.
2426 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2428         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
2429         of array bounds.
2431 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2433         * loader.c (mono_method_signature): Don't assert on broken
2434         signature. Print a more useful error message.
2436 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2438         * loader.c (mono_method_get_marshal_info): Assert if
2439         signature is invalid. Bounds check stores to the
2440         mspecs array;
2442 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2444         * loader.c (field_from_memberref): Fix warning.
2446 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2448         * loader.c (mono_method_get_param_names): Check if signature
2449         is null. Don't store beyond the size of the name array.
2451 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2453         * loader.c (mono_get_method_constrained): Check if signature
2454         is null.
2456 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2458         * loader.c (mono_loader_set_error_bad_image): Improve
2459         error messages.
2461 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2463         * loader.c (mono_get_method_full): Convert an assertion
2464         into a loader error.
2466 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
2468         * class-internals.h, class.c: Better naming and documentation.
2470 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
2472         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
2473         obj is NULL.
2475 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2477         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
2478         parsing fails.
2480 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2482         * loader.c (mono_loader_error_prepare_exception): Handle missing field
2483         errors with no class set.
2485         * loader.c (field_from_memberref): If the field signature is of the wrong
2486         type fail with a MissingFieldException instead of a BadImageException as
2487         this is the behavior observed on MS. 
2489 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2491         * loader.c (field_from_memberref): Don't crash if either the field
2492         signature or the typespec class are invalid.
2494 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2496         * verify.c (verifier_load_field): Don't allow field related
2497         ops to reference fields on generic type definition.
2499 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2501         * metadata-verify.c: Add new warning level for errors specified
2502         by ECMA 335 but that MS ignores.
2504         * metadata-verify.c (verify_method_table): Make compiler controled
2505         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
2506         this check is safe because the end result will only be some visibility
2507         exceptions been thrown.
2509 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
2511         * verify.c (get_boxable_mono_type): Don't allow the
2512         use of the generic type definition on boxed type positions.
2514         Fixes #531237.
2516 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2518         * threadpool.c: Make sure no cross-domain references remain in
2519         ares_htable or the arrays that are thrown away when resizing.
2521 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2523         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
2524         list of classes for which we have to unregister reflection_info
2525         with the GC and which are not in the namespace cache.
2527         * reflection.c (mono_reflection_initialize_generic_parameter): Add
2528         the class to the list.
2530 2009-08-14  Mark Probst  <mark.probst@gmail.com>
2532         * domain.c (mono_domain_free): Unregister the GC roots in
2533         MonoDomain.
2535 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2537         * reflection.c (mono_reflection_type_get_handle): Fix typo.
2539 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
2541         * class.c: Add mono_class_get_field_from_name_full which does
2542         the same as mono_class_get_field_from_name but does check field
2543         signature as well.
2545         * class-internals.h: Export mono_class_get_field_from_name_full as
2546         part of the internal API.
2548         * loader.c (field_from_memberref): Search fields by name and signature
2549         as it's valid to have two fields with same name but different types.
2551         Fixes #528055.
2553 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
2555         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
2557         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
2559         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
2560         System.Type.
2562 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
2564         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
2566         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
2568 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2570         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
2571         to sgen-scan-object.h, which can be included and parameterized via
2572         macros.
2574         * Makefile.am: sgen-scan-object.h added.
2576 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2578         * gc.c: #define GC_dont_gc if we're compiling with SGen.
2580 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2582         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
2583         before clearing a domain in the GC.
2585 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2587         * exception.c (mono_exception_from_name_domain): Actually create
2588         the exception in the specified domain.
2590         * appdomain.c (mono_domain_create_appdomain_internal): Create the
2591         OutOfMemoryException a bit later so that the domain is inialized
2592         "enough" that it works.
2594 2009-08-12  Mark Probst  <mark.probst@gmail.com>
2596         * threads.c (thread_cleanup): Clean up the cached_culture_info
2597         array to prevent cross-domain references.
2599 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
2601         * metadata.c: more documentation for MonoType accessors.
2603 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
2605         Fix incorrect size definitions where the tail array isn't a list
2606         of pointers
2607         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
2608         define size.
2609         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
2610         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
2611         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
2613 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2615         * reflection.h:
2616         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
2618 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2620         * metadata.c:
2621         * loader.c:
2622         * metadata-internals.h:
2623         * method-builder.c:
2624         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
2626 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2628         * cominterop.c:
2629         * metadata.c:
2630         * metadata.h:
2631         * loader.c:
2632         * marshal.c:
2633         * reflection.c: #define for sizeof in MonoType and
2634         MonoMethodSignature.
2636 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2638         * domain.c:
2639         * domain-internals.h: add and use #define's instead of sizeof()
2640         for MonoJitInfo and MonoJitInfoTable.
2642 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
2644         * object.c:
2645         * class.h: use #define instead of sizeof() for MonoRemoteClass.
2647 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2649         * metadata.c:
2650         * metadata.h:
2651         * object.c:
2652         * class-internals.h:
2653         * generic-sharing.c:
2654         * marshal.c: use a #define instead of sizeof() for a few
2655         structures that use a zero-length array.
2657 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
2659         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
2660         to handle inflated generic methods.
2662         * appdomain.c: Bump corlib version.
2664         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
2665         instances.
2667         * reflection.c (fixup_method): Same
2669         * reflection.c (resolve_object): Same.
2671         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
2672         g_error and a decent message.
2674 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
2676         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
2677         from the object because it could not yet be available globally
2678         (it happens if the profiler tries to create a gchandle on the
2679         MonoThread object of a thread that is still registering itself
2680         with the runtime).
2682 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
2684         * reflection.c (mono_generic_class_get_object): Initialized the
2685         managed type arguments array.
2687         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
2689         * appdomain.c: Bump corlib version.
2691 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
2693         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
2694         #527902.
2696 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
2698         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2699         Avoid a crash if synch_cs is not set.
2700         
2701         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
2702         Handle the case when the handle is 0.
2704         * appdomain.c: Bump corlib version.
2706 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
2708         * reflection.c (mono_type_get_object): Fix a warning.
2710 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2712         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
2713         descriptor here.  We assume it's already been computed.
2715         * generic-sharing.c (instantiate_other_info): Compute the GC
2716         descriptor for info type MONO_RGCTX_INFO_KLASS.
2718 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2720         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
2721         type, so don't use MONO_OBJECT_SETREF to set a field.
2723 2009-08-01  Mark Probst  <mark.probst@gmail.com>
2725         * gc.c: We were missing one case where invoking a finalizer would
2726         not reset the domain.  Also, in the finalizer thread loop, assert
2727         that we're in the root domain.
2729 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2731         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
2732         if the type is not an array.
2734 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2736         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
2737         method bound to the declaring type of the method. Raise an exception
2738         if the type is not a generic param.
2740 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
2742         * class.c (print_unimplemented_interface_method_info): Print the
2743         full type name.
2745         * class.c (mono_class_setup_vtable_general): When dealing with a
2746         generic instance first check if the generic type definition is
2747         not broken.
2749 2009-02-11 Tom Hindke <tom_hindle@sil.org>
2751         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
2753         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
2755         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
2757         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
2759         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
2761         Code is contributed under MIT/X11 license
2763 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
2765         * verify.c: Fix naming of stelem and ldelem.
2767 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2769         * generic-sharing.c: Replace the templates lock with the loader
2770         lock because of very hard to resolve deadlock issues.
2772 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
2774         * icall.c (ves_icall_Type_GetMethodsByName): Use 
2775         mono_class_get_vtable_size () instead of accessing klass->vtable_size
2776         directly. Fixes #525338.
2778         * class.c (mono_class_get_vtable_size): New helper function.
2780         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
2781         the field belongs to the type. Fixes #525733.
2783 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2785         * sgen-gc.c: When we stop a thread and its stack top is not within
2786         its allocated stack (because it's in an altstack signal handler),
2787         restart it and stop it again, until it is.
2789 2009-07-30  Mark Probst  <mark.probst@gmail.com>
2791         * sgen-gc.c: Take a thread's stack top and registers from the
2792         sigcontext in the suspend signal handler.
2794         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
2795         stuff to sgen-archdep.h.
2797         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
2798         caller, because have code in sgen-archdep.h to acquire that data.
2800 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
2802         * profiler.c, profiler.h, profiler-private.h:
2803         Added support for keeping track of code chunks and buffers.
2805 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
2807         * metadata-verify.c: Fix endianness problems on decoding functions.
2808         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
2810 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2812         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
2813         schema for vectors and one dimension SZARRAY.
2815 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
2817         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
2818         schema for vectors and one dimension SZARRAY.
2820 2009-07-27  Mark Probst  <mark.probst@gmail.com>
2822         * icall-def.h, thread-types.h, threads.c: New separate icalls for
2823         Interlocked.(Compare)Exchange with object arguments, which invoke
2824         write barriers.
2826 2009-07-26  Miguel de Icaza  <miguel@novell.com>
2828         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
2829         passed invalid arguments.   Fixes another crasher in the
2830         Silverlight test suite.
2832         * class.c (mono_class_array_element_size): Return 0 for the size
2833         of the class;  This fixes the crasher exposed by :
2835         typeof (void).MakeArrayType ();
2837         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
2838         if there is no method to dereference.    Put all the code that
2839         depends on this inside the if (method) block.
2841         This fixes the crasher exposed by Microsoft's Silvelright CLR test
2842         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
2844         With this change, we pass the test.
2845         
2846         * reflection.c (mono_reflection_sighelper_get_signature_local):
2847         Only dereference the assembly if it has been set.    Fixes a
2848         crasher exposed by #525328
2850 2009-07-25  Mark Probst  <mark.probst@gmail.com>
2852         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
2853         don't perform the store in mono_gc_wbarrier_generic_nostore().
2854         Remove the second argument (value), which is not needed.
2856 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
2858         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
2859         the build.
2861         * boehm-gc.c: Ditto.
2862         
2863 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2865         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
2866         not perform the store itself.  Introduce
2867         mono_gc_wbarrier_generic_nostore(), which is the same as
2868         mono_gc_wbarrier_generic_store(), except it doesn't perform the
2869         store.
2871 2009-07-24  Mark Probst  <mark.probst@gmail.com>
2873         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
2874         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
2875         we still need the memcpy().
2877 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2879         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
2880         so that big arrays are handled correctly.  Always use
2881         safe_object_get_size() to calculate array object sizes, which
2882         takes bounds into account.
2884 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2886         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
2887         GC descriptor is computed before we use it.
2889 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2891         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
2892         write barrier if necessary.
2894 2009-07-22  Mark Probst  <mark.probst@gmail.com>
2896         * icall-def.h, icall.c, thread-types.h: New separate icall for
2897         VolatileWrite(object&,object) that uses a write barrier.
2899         * console-unix.c, file-io.c, icall.c, threads.c: Use write
2900         barriers in icalls which write to "ref" or "out" arguments.
2902 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
2904         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
2905         handler in a separate icall, to reduce the size of the wrappers.
2907 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2909         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
2911 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2913         * metadata-verify.c (parse_field): Allow byref field.
2915         * metadata-verify.c (parse_locals_signature): Allow byref locals.
2917         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
2919 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
2921         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
2922         Fixes #522784.
2924 2009-07-20  Robert Jordan  <robertj@gmx.net>
2926         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
2927         Fix invalid IL in valuetype handling (STOBJ must push the
2928         corresponding class). Fixes bug #523149.
2930         Code is contributed under MIT/X11 license.
2932 2009-07-20  Geoff Norton  <gnorton@novell.com>
2934         * gc.c: Use proper semaphores where available on posix and darwin.
2936 2009-07-19  Geoff Norton  <gnorton@novell.com>
2938         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
2940 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
2942         * refletion.c (is_sre_usertype): Change name to is_usertype and
2943         invert it's result so it returns true if the type is an user type
2944         and not the opposite.
2946         * reflection.c (is_*_type): Change all of those to use new macro
2947         check_corlib_type_cached that cached the type lookup so we don't
2948         need to do string comparisons all the type. Changed the signature
2949         to take a MonoClass instead.
2951         * reflection.c: Change mono_image_create_token and resolve_object
2952         to use is_sre_* functions.
2954 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2956         * sgen-gc.c: Check for writes to the stack in the managed
2957         wbarrier as well.
2959 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2961         * sgen-gc.c: When a thread is unregistered, don't free its remsets
2962         but put them on a list which is processed with the other thread's
2963         remsets.
2965 2009-07-18  Mark Probst  <mark.probst@gmail.com>
2967         * sgen-gc.c: Fix and enable the internal allocator instead of
2968         using malloc/free (which causes deadlocks).
2970 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
2972         * refletion.c: Fix builds with SRE disabled by adding a minimal
2973         implementation of mono_reflection_type_get_handle.
2975 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2977         * refletion.c: Make mono_reflection_type_get_handle non static.
2979         * object-internals.h: Export mono_reflection_type_get_handle.
2981         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
2982         unmanaged handle using mono_reflection_type_get_handle.
2984 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
2986         * refletion.c: Replace all reads of MonoReflectionType::type with
2987         calls to mono_reflection_type_get_handle. Only the functions that
2988         deal with constructing TypeBuilder::type have not been changed
2989         because they have to deal with NULL values.
2991         This is a first step into supporting reflection types that don't
2992         map directly into their unmanaged counterpart.
2994 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
2996         * metadata-verify.c (parse_locals_signature): Don't complain
2997         on signature with zero locals since MS generates it and doesn't
2998         bother with.
3000 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3002         * reflection.c (mono_image_get_array_token): Resolve return
3003         type using mono_reflection_type_get_handle.
3005         * reflection.c (mono_image_get_array_token): Resolve array method
3006         parent type using mono_reflection_type_get_handle.
3008 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3010         * reflection.c (mono_image_basic_init): Applied patch from
3011         <Dax@daxxfiles.net>. Set the public key token from the assembly
3012         builder. Fixes #518909.
3014         * appdomain.c: Bump corlib version.
3016 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3018         * class.c (mono_class_needs_cctor_run): Make this return false if
3019         the class has no cctor.
3021 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3023         * sgen-gc.c: When the minor GC needs to allocate a new section,
3024         invoke the major GC afterwards.
3026 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3028         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3029           Applying the window_style field to the SHELLEXECUTEINFO struct.
3031         Code is contributed under MIT/X11 license.
3033 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3035         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3036         locking earlier.  Fix it in the managed allocator by making sure
3037         that no thread is stopped there before the GC runs.  If we do stop
3038         a thread there, we restart it and let it run a but, until it stops
3039         somewhere else.
3041         * gc-internal.h, gc.c: Function for getting the IP from a signal
3042         context via a function registered by mini.
3044 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3046         * object-internals.h (MonoIntPtr): New structure describing a boxed
3047         IntPtr.
3049         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3050         returns. Fixes #519953.
3052         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3054 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3056         * class-internals.h, generic-sharing.c: New RGCTX info type for
3057         getting a remoting invoke with check wrapper.
3059 2009-07-07  Geoff Norton  <gnorton@novell.com>
3061         * icall-def.h: Fix the enable-minimal build.
3063 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3065         * object-internals.h: Add MonoReflectionDerivedType.
3067         * reflection.c: Implement support for PointerType.
3068         Fixed tons of warnings.
3070 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3072         * object-internals.h: Add MonoReflectionByRefType.
3074         * reflection.c: Implement support for ByRefType.
3076 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3078         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3080         * object-internals.h: Add MonoReflectionArrayType and
3081         mono_reflection_create_unmanaged_type.
3083         * reflection.c: Implement support for ArrayType.
3085 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3087         * metadata-verify.c (is_valid_method_header): Parse EH block
3088         flags correctly.
3090 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3092         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3093         processing the disappearing links, and process disappearing links
3094         in a loop until no new objects are copied.
3096 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3098         * object.c (handle_enum): Invoke the write barrier when copying
3099         value type instances.
3101         * sgen-gc.c: Register remsets for unmanaged write barriers only
3102         when the address written to is actually on the heap.  This makes
3103         set_value() in object.c work without requiring that the result be
3104         on the heap.
3106 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3108         The runtime wrappers are all bound to a given type that must
3109         exist in the same image. For regular images we use the <Module>
3110         type, which is required to exist for all images.
3112         The <Module> type can't be used for dynamic images because it
3113         might not exist at the time the wrapper is required, so we create
3114         a synthetic type to use instead.
3116         The current code works because of the 2 stage setup of MonoClass,
3117         but once this is gone it will no longer work.
3119         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3121         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3123         * object-internals.h: Export mono_image_set_wrappers_type icall
3124         as part of the internal API.
3126         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3127         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3129         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3130         image wrappers_type to the provided value.
3132 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3134         * appdomain.c (deregister_reflection_info_roots): No need
3135         to use the image lock here.
3137 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3139         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3141 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3143         * threads.c: Store the thread start argument in a hash table instead of
3144         registering it as a root, as libgc doesn't support unregistering roots
3145         under windows, leading to 'too many root sets' errors when many threads
3146         are created.
3148         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3149         shutdown, they can still be referenced by the other dying objects.
3150         Fixes #514506.
3152 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3154         * socket-io.c: DontLinger does not allow LingerOptions.
3156 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3158         * metadata-verify.c: The spec doesn't mention that it's possible to add
3159         custom attribute to a generic parameter. Fixed.
3161 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3163         * class.c (inflate_generic_type): Don't crash while trying to output a message
3164         on why we're aborting.
3166 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3168         * socket-io.c: DontLinger can take an int or a boolean too.
3170 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3172         * gc.c: check for a null argument to SuppressFinalize () and
3173         ReRegisterForFinalize ().
3175 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3177         * loader.c (method_from_methodspec): Call into the verifier to check
3178         the signature.
3180         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3182         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3183         part of the internal API.
3185 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3187         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3188         the signature.
3190         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3192         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3193         part of the internal API.
3195 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3197         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3198         the signature.
3200         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3201         blob verification.
3203         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3204         part of the internal API.
3206 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3208         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3209         when doing basic verification. 
3211         This check must be done since the runtime peeks into signatures in much
3212         more places than it does decoding so it makes sense to ensure that all
3213         pointers to blob objects are well formed.
3215 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3217         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3218         Use proper overflow dectection. Fix usage of it.
3220 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3222         * loader.c (field_from_memberref): Call into the verifier to check
3223         the signature.
3225         * loader.c (mono_method_get_signature_full): Same.
3227         * loader.c (method_from_memberref): Same.
3229         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3231         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3232         part of the internal API.
3234 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3236         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3237         or unloaded, still return an AsyncResult, but don't add it to the
3238         threadpool.
3240 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3242         * threads.c: fix missing colon when DEBUG is defined.
3244 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3246         * threadpool.c: Don't add new calls to a threadpool if the domain
3247         of the call is unloading or unloaded.  When dequeuing a job, null
3248         the reference in the queue.
3250 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3252         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3253         generation if an object was moved.
3255 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3257         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3258           parameters of type SAFEARRAY[VARIANT].
3260         * reflection.c (encode_marshal_blob): Properly generate element type
3261           (SafeArraySubType marshal attribute option).
3263         Code is contributed under MIT/X11 license.
3265 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3267         * reflection.c: in mono_method_clear_object () really ensure all the
3268         objects are removed.
3270 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3272         * loader.c (mono_method_signature): Call into the verifier to check
3273         the method signature.
3275         * metadata-verify.c (verify_method_table): Move signature verification
3276         to verify_method_table_full.
3278         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3280         * verify-internals.h: Export mono_verifier_verify_method_signature as
3281         part of the internal API.
3283 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3285         * loader.c (mono_method_get_header): Call into the verifier to
3286         check the method header.
3288         * metadata-verify.c: Add mono_verifier_verify_method_header.
3290         * verify-internals.h: Export mono_verifier_verify_method_header as
3291         part of the internal API.
3293 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3295         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3296         check the field signature. Replace an assert with an explicit check.
3298         * class.c (mono_class_setup_fields): Call into the verifier to check
3299         the field signature.
3301         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3303         * verify-internals.h: Export mono_verifier_verify_field_signature as
3304         part of the internal API.
3306 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3308         * class.c (mono_class_find_enum_basetype): Simplify this function
3309         by moving code outside of the loop and not decoding static fields.
3311 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3313         * metadata-verify.c (verify_typedef_table): Check the extends
3314         token here. Move to here a flags check from verify_typedef_table_full.
3316 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3318         * metadata-verify.c (is_valid_method_header): Fix a warning.
3320         * metadata-internals.h (MonoImage): Remove the unused 
3321         static_rgctx_invoke_wrapper_cache.
3323         * image.c marshal.c: Ditto.
3325 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3327         * image.c (do_mono_image_load): Enable table data verification.
3329 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3331         * metadata-verify.c (is_valid_constant): Fix nullref check.
3333 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
3335         * metadata-verify.c (is_valid_constant): Fix string bounds check.
3337 2009-06-22  Mark Probst  <mark.probst@gmail.com>
3339         * sgen-gc.c: Managed allocation with pthreads TLS.
3341         * threads.c, threads-types.h: Functions for the JIT to tell the
3342         runtime whether it supports the MONO_TLS opcode.
3344 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3346         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
3347         without methods.
3349 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3351         * metadata-verify.c (is_valid_constant): Fix the string length check.
3352         Use safe overflow checking. Add decent error messages.
3354 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3356         * metadata-verify.c: Move remaininh blob checks to the offline
3357         verification path.
3359 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
3361         * metadata-verify.c: Move more blob checks to the offline verification
3362         path.
3364 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
3366         * object-internals.h : Adding interrupt_on_stop field.
3368         * threads.c (mono_thread_request_interruption) : On Windows exit the
3369           thread if interrupt_on_stop is set.
3371         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
3372          Removing old interrupt logic and setting the interrupt_on_stop for the
3373          thread when calling accept.
3375         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
3376          setting the interrupt_on_stop for the thread when calling accept.
3378         Contributed under MIT/X11 license.
3380 2009-06-20  Martin Baulig  <martin@ximian.com>
3382         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
3384 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
3386         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
3387         running in no-exec mode.
3389 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3391         * metadata-verify.c (verify_method_table): Move header
3392         checking to verify_method_table_full.
3394         * metata-verify.c (mono_verifier_verify_full_table_data):
3395         Call verify_method_table_full.
3397 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3399         * metadata-verify.c (verify_field_table): Move signature
3400         checking to verify_field_table_full.
3402         * metata-verify.c (mono_verifier_verify_full_table_data):
3403         Call verify_field_table_full.
3405 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3407         * metadata-verify.c (verify_typedef_table): Move remaining
3408         stuff to verify_typedef_table_full.
3410 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3412         * metadata-verify.c: Kill is_corlib from VerifyContext.
3413         It is only used by the offline mode.
3414         So we better remove it from the runtime path.
3416 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3418         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
3419         function that perform the offline metadata verification steps.
3421         * metadata-verify.c (verify_typedef_table): Move some checks to
3422         verify_typedef_table_full and make it been called by new function
3423         mono_verifier_verify_full_table_data.
3425         * pedump.c: Call mono_verifier_verify_full_table_data.
3427         * verify-internals.h: Export mono_verifier_verify_full_table_data as
3428         part of the internal API.
3430 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3432         * metadata-verify.c (typedef_is_system_object): Fix System.Object
3433         check.
3435         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
3436         flags bits. SupportLastError was confused as bit 7 instead of 6.
3438         * metadata-verify.c (verify_implmap_table): Fix import scope verification
3439         to check against the module ref table instead of module.
3441         * metadata-verify.c (verify_implmap_table): Fix corlib check.
3443         * pedump.c: Call mono_image_load_names.
3445 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
3447         * image.c: Extract mono_image_load_names from do_mono_image_load.
3449         * metadata-internals.h: Export mono_image_load_names as part of
3450         the internal API.
3451         
3452 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
3454         * metadata.c (mono_metadata_cleanup): Free the generic method cache
3455         first, as it could reference data in the other caches.
3457 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3459         * metadata-verify.c: Finished with method header verification.
3461 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
3463         * metadata-verify.c: Added more header verification code.
3464         Now only EH clauses are missing.
3466 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
3468         * marshal.c (get_runtime_invoke_type): Don't share primitive types
3469         for return values.
3471 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3473         * metadata-verify.c: Initial method header verification.
3475 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
3477         * metadata-verify.c (verify_import_table): The IAT contents
3478         might end been patched by the windows DL when running with
3479         coree enabled.
3481 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
3483         * class.c (mono_class_from_typeref): If the enclosing type is not
3484         found return null instead of crashing. Fixes #508487.
3486 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
3488         * normalization-tables.h : updated to the latest unicode charcter
3489           data.
3490         * appdomain.c : bump corlib version.
3492 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
3494         * class.c (mono_class_from_name): Fix support for assembly references
3495         in the EXPORTEDTYPE table. Fixes #511704.
3497 2009-06-13  Geoff Norton  <gnorton@novell.com>
3499         * domain.c: Ensure that mono_domain_assembly_open actually opens the
3500         assembly in the target domain.
3502 2009-06-12  Robert Jordan  <robertj@gmx.net>
3504         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
3505         because "this" of the managed signature has become an
3506         ordinary parameter in the unmanaged signature.
3508 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
3510         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
3511         field for owner-less generic containers.
3513         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
3514         image field of the owner-less generic containers created here.
3516         * metadata.c (mono_metadata_load_generic_params): Ditto, the
3517         contain is ownerless until the caller sets its owner.
3519         * metadata.c (type_in_image): Handle owner-less generic containers
3520         correctly.
3521         
3522 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3524         * image.c (mono_image_close): Support debug_assembly_unload for
3525         dynamic images too.
3527 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
3529         * class.c: Fix some typos in comments.
3531 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
3533         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
3535         * threads.c (mono_thread_execute_interruption): Avoid creating the
3536         abort exception object while holding the synch_cs lock.
3538 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
3540         * metadata-verify.c: Verify basic cattr content.
3542 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
3544         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
3545         nested types.
3546         
3547         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
3548         support for nested types. Fixes #511704.
3550 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3552         * metadata-verify.c: Verify methodspec signatures.
3554 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
3556         * metadata-verify.c: Verify typespec signatures.
3558 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
3560         * metadata.c (free_inflated_method): Call 
3561         mono_marshal_free_inflated_wrappers (), which was missed earlier.
3563 2009-06-08  Miguel de Icaza  <miguel@novell.com>
3565         * mono-config.c: Small change to report the PPC64/ILP32 model.
3567 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3569         * metadata-verify.c (parse_type): Check szarray.
3571 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3573         * metadata-verify.c (parse_type): Check fnptr.
3575 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3577         * metadata-verify.c (parse_type): Check generic instances.
3579 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
3581         * metadata-verify.c (parse_type): Check array shape.
3583 2009-06-05  Robert Jordan  <robertj@gmx.net>
3585         * class.c (mono_class_create_from_typedef): Check only for
3586         mscorlib's System.Array.
3588 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3590         * metadata-verify.c (parse_type): Check pointer, class/valuetype
3591         and generic params. 
3593         * metadata-verify.c (parse_field): Check the signature.
3595 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
3597         * metadata-verify.c: Implement locals signature check.
3599 2009-06-04  Marek Safar  <marek.safar@gmail.com>
3601         * domain.c: Add .NET 4.0 Beta 1 version.
3603 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
3605         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
3606           For QueryInterface on CCWs consider the base class
3607           interfaces as well.
3609         Code is contributed under MIT/X11 license.
3611 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3613         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
3615         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
3616         used.
3618         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
3619         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
3621         * generic-sharing.c (inflate_other_data): Ditto.
3622         
3623 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
3625         * metadata-verify.c: Implement property signature check.
3627 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3629         * sgen-gc.h: Register saving support for PPC.
3631 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3633         * sgen-gc.c: Fixed a pthread TLS screwup.
3635 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3637         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
3638         supported.
3640 2009-06-04  Mark Probst  <mark.probst@gmail.com>
3642         * sgen-gc.c: Disable TLA and managed allocation if the __thread
3643         keyword is not supported.
3645 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
3647         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
3648         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
3649         the inflated method is freed. Fixes #508389.
3651         The code is contributed under the MIT/X11 license.
3652         
3653 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
3655         * marshal.c (get_wrapper_target_class): New helper function.
3656         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
3657         the <Module> class of the image. Fixes #509049.
3659 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3661         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
3662         Check if the thread was interrupted and proccess it straight away.
3663         Makes abortion much more responsive.
3665 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3667         * threads.c (mono_thread_execute_interruption): Use atomic cas with
3668         MonoThread::interruption_requested to match it's counterpart.
3670         Fixes a hang in abort-stress-1 on a 2 core x86.
3672         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3673         Fix warning.
3675 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3677         Change MonoImage::name_cache to be protected by the image lock
3678         instead of the loader lock.
3680         * appdomain.c (deregister_reflection_info_roots): Protect access
3681         to name_cache.
3683         * class.c (mono_image_init_name_cache): Change from the loader lock
3684         to the image lock. Check if the cache wasn't already created.
3686         * class.c: Change from the loader to the image lock.
3688         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
3689         the code to hold the image lock while iterating over name_cache and
3690         not go into mono_array_new holding it.
3692         * metadata-internals.h: Add a comment about this change.
3694 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3696         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
3697         Under the 2.0 profile raise the loader error.
3699         Fixes #508532.
3701 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
3703         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
3704         of ldind opcode for generic instances so we don't fail for direct wrappers.
3705         This only affect direct calls.
3707 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
3709         * reflection.c (create_dynamic_mono_image): Fix warnings.
3711         * generic-sharing.c (other_info_equal): Ditto.
3712         
3713 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3715         * metadata-verify.c: Implement field signature check.
3717 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
3719         * metadata-verify.c: Implement standalone signature check.
3721 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
3723         * metadata-verify.c: Implement methodref signature check.
3725 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
3727         * object-internals.h (MonoRuntimeCallbacks): New structure containing
3728         callbacks supplied by the runtime.
3730         * object.c (mono_install_callbacks): New internal function to install
3731         the callbacks.
3733         * object.c (mono_create_ftnptr): Move the implementation of this to
3734         mini/.
3736         * object.c (mono_get_addr_from_ftnptr): Ditto.  
3738 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3740         * metadata-verify.c (parse_return_type): Proper byref check.
3741         * metadata-verify.c (is_valid_method_signature): Check for zero arity
3742         generic signatures and method params.
3744 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
3746         * metadata-verify.c (decode_signature_header): Fix bounds check.
3748         * metadata-verify.c (parse_custom_mods): Check custom mods.
3750         * metadata-verify.c (parse_type): Do initial basic verification
3751         of valid values.
3752         
3753         * metadata-verify.c (is_valid_method_signature): Parse the generic
3754         param count.
3756 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
3758         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
3759         discarded based on their most specific definition so we set the method_slots
3760         array before checking if the method is acceptable or not.
3762         Fixes #506757.
3764 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3766         * icall.c: Free the old array when resizing a mono_ptr_array.
3768 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3770         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
3771         for the hashes whose keys are managed objects.
3773 2009-05-26  Mark Probst  <mark.probst@gmail.com>
3775         * object-internals.h, threads.c: Set the execution context on
3776         thread start here, not in corlib.
3778         * appdomain.c: Bump corlib version.
3780 2009-05-27  Martin Baulig  <martin@ximian.com>
3782         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
3783         if `_mono_debug_using_mono_debugger' is set to make things work
3784         properly when embedding Mono.
3786 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3788         * class.c (mono_class_setup_fields): Don't mark simd types as having
3789         16 bytes alignment as the whole runtime doesn't support.
3791 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
3793         * metadata-verify.c (safe_read): Use endian safe read macros.
3795 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
3797         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
3798         it is read-only when using full aot.
3800 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3802         * metadata-verify.c (is_valid_method_signature): Verify parts
3803         of the return type. Provide an error message in case of failure.
3805 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3807         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
3809 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
3811         * metadata-verify.c: Include the size prefix in the bounds check.
3813 2009-05-22  Miguel de Icaza  <miguel@novell.com>
3815         * icall.c: Remove warnings.
3817         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
3818         prevent auto-detection based on GCC defines.
3820         Add PS3
3822         * metadata-verify.c: Do not include signal.h
3824         * generic-sharing.c, marshal.c: Add returns to avoid some warning
3825         messages.  Not sure why the g_assert_not_reached is not enough to
3826         quiet the compiler.
3827         
3829         * appdomain.c: Remove code that is not used when
3830         DISABLE_SHADOW_COPY is set.
3832         * image.c: use g_getenv
3834 2009-05-21  Miguel de Icaza  <miguel@novell.com>
3836         * reflection.c: Remove code that it not used with
3837         DISABLE_REFLECTION_EMIT is defined.
3839 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
3841         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
3842         invoke wrappers.
3844 2009-05-20  Miguel de Icaza  <miguel@novell.com>
3846         * socket-io.c
3847         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
3848         the ifdef here and instead put that on io-layer
3850 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3852         * metadata-verify.c: Verify the generic param constraint table.
3854 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3856         * metadata-verify.c (verify_generic_param_table): Fix
3857         thinko on the valid flags bits for generic params.
3859 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3861         * metadata-verify.c: Verify the methodspec table.
3863 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
3865         * metadata-verify.c: Verify the generic param table.
3867 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3869         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
3871 2009-05-19  Mark Probst  <mark.probst@gmail.com>
3873         * sgen-gc.c: Use generation enum more consistently and use the
3874         correct generation in mono_gc_register_for_finalization().
3876 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3878         * metadata-verify.c: Verify the nested class table.
3880 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
3882         * metadata-verify.c: Verify the manifest resource table.
3884 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
3886         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
3888 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
3890         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
3891         wrappers, this is now done in the JIT.
3892         
3893         * class.c (mono_set_generic_sharing_supported): New internal function.
3894         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
3896 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3898         * metadata-verify.c: Verify the exported type table.
3900 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3902         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
3904 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3906         * metadata-verify.c: Verify the file table.
3908 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3910         * metadata-verify.c (verify_assembly_table): Fix an error message.
3912         * metadata-verify.c: Verify the assemblyref table.
3914 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
3916         * metadata-verify.c (verify_assembly_table): Fix the valid
3917         bits mask for flags.
3919 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
3921         * debug-helpers.c (mono_method_full_name): Print generic parameters of
3922         generic methods as well.
3924 2009-05-15  Geoff Norton  <gnorton@novell.com>
3926         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
3927         use-case and is significantly more performant than the wapi layer.
3929 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3931         * metadata-verify.c: Verify the assembly table.
3933 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3935         * metadata-verify.c: Fix rows limit check.
3937 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
3939         * metadata-verify.c: Verify the fieldrva table.
3941 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3943         * sgen.c: Speed up weak links and finalizers by grouping them by
3944         generation.
3946 2009-05-13  Mark Probst  <mark.probst@gmail.com>
3948         * marshal.c (delegate_hash_table_add): When overwriting an entry,
3949         free the old GCHandle (only applies to SGen).
3951 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
3953         * loader.c (mono_get_method_from_token): Avoid the expensive call to
3954         mono_metadata_load_generic_params () for non-generic methods.
3956 2009-05-12  Mark Probst  <mark.probst@gmail.com>
3958         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
3959         New function for returning a monitor's weak link if it has one.
3961         * sgen-gc.c: Remove an object's monitor's weak link (if it has
3962         one) when clearing a domain.  These can still be around because
3963         the object might not have been collected.
3965 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
3967         * gc.c: Fix a warning.
3969 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
3971         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
3972         prevous wait that resulted in a deadlock on Windows when initializing
3973         the runtime form DllMain. Also results in improved startup time.
3974         (finalizer_thread): Get rid of thread_started_event.
3975         * threads.c, threads-types.h (mono_thread_create_internal): Return the
3976         resulting MonoThread.
3978         Contributed under MIT/X11 license.
3980 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
3982         * metadata-verify.c: Verify the implmap table.
3983         Don't require that #US and #Strings be present.
3985 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
3987         * security-core-clr.c: Delegate checks are done at creation time,
3988         not a invocation time. Fix exception for Telerik Silverlight demo
3990 2009-05-11  Mark Probst  <mark.probst@gmail.com>
3992         * sgen-gc.c (need_remove_object_for_domain): Remove the special
3993         case for the Thread class.
3995         * threads.c: Do clean-up of abort exception/state in
3996         thread_cleanup() instead of Thread.free_internal().  Also clean up
3997         current_appcontext.  The reason we have to do that is because
3998         those references might point into another domain and if that
3999         domain is unloaded before the thread is finalized, they point to
4000         invalid data.
4002 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4004         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4005         stub signatures.
4006         
4007         Contributed unter MIT/X11 license.
4009 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4011         * verify.c, metadata-verifier.c: Add support for disabling the
4012         verifier in some builds.
4014         [ Sorry, my previous commit accidentally commited some work in
4015         progress ]
4017 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4019         * class.c (mono_class_setup_fields): Set class->field.first for
4020         generic instances.
4022 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4024         * metadata-verify.c: Verify the typespec table.
4026 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4028         * metadata-verify.c: Verify the module table.
4030 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4032         * metadata-verify.c: Verify the methodimpl table.
4034 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4036         * metadata-verify.c: Verify the property table.
4038 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4040         * debug-helpers.c (mono_method_desc_match): Add support for generic
4041         glob patterns.
4043 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4045         * metadata-verify.c: Verify the propertymap table.
4047 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4049         * metadata-verify.c: Verify the event table.
4051         * metadata-verify.c (search_sorted_table): Fix offset
4052         calculation.
4054 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4056         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4058 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4060         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4061         because mono_delegate_free_ftnptr() needs it.
4063 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4065         * metadata-verify.c: Verify the eventmap table.
4067 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4069         * metadata-verify.c: Verify the standalonesig table.
4071 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4073         * metadata-verify.c: Verify the field layout table.
4075 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4077         * class.c (mono_type_get_name_recurse): Don't crash
4078         for ownerless generic params.
4080         * debug-helpers.c (mono_type_get_desc): Correct the format
4081         for ownerless generic params.
4083 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4085         * metadata-verify.c: Verify the class layout table.
4087 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4089         * metadata-verify.c: Verify the decl security table.
4091 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4093         * domain.c (mono_domain_set_internal_with_options): Don't do
4094         anything if the old domain is the same as the old one.  Fixes
4095         #499326.
4097 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4099         * appdomain.c: Deregister the reflection_info roots when unloading
4100         a domain.
4102         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4103         memory allocated by a domain and frees its disappearing links.
4105         * boehm-gc.c, null-gc.c: Empty implementation of
4106         mono_gc_clear_domain().
4108 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4110         * appdomain.c (clear_cached_vtable): Free the static fields memory
4111         block.
4113 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4115         * gc.c: Set the correct domain when invoking finalizers.
4117         * appdomain.c: Set the correct domain when creating threads.
4119 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4121         * sgen-gc.c: Fix skip size for vectors.
4123 2009-05-03  Martin Baulig  <martin@ximian.com>
4125         * mono-debug-debugger.c
4126         (mono_debugger_check_breakpoints): Check class init handlers even
4127         if we don't have any method load handers.
4129 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4131         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4132         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4134 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4136         * metadata-verify.c: Verify the field marshal table.
4138 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4140         * metadata-verify.c: Verify the custom attribute table.
4142 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4144         * metadata-verify.c: Verify the constant table.
4146 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4148         * metadata-verify.c: Verify the memberef table.
4150 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4152         * metadata-verify.c (get_coded_index_token): Remove
4153         dead argument.
4155 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4157         * metadata-verify.c: Verify the interfaceimpl table.
4159 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4161         * verify.c: Improve error message.
4163         * debug-helpers.c (mono_type_get_desc): Harden the code that
4164         deals with VAR and MVAR.
4166 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4168         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4169         part of #498692.
4171 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4173         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4174         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4176 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4178         * security-core-clr.c: Avoid redundant checks for platform code, 
4179         e.g. check for method and for class (very common) and check
4180         for class and outer class (less common)...
4182 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4184         * reflection.c: Avoid returning random cattrs for synthetic methods.
4185         Fixes #498545.
4187 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4189         * assembly.c: assemblies in the GAC should never be shadow-copied.
4191 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4193         * domain.c, domain-internals.h: Disable
4194         track_resurrection_{objects,handles}_hash in MonoDomain if using
4195         SGen.
4197 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4199         * metadata-verify.c: Verify the param table.
4201 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4203         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4204         MethodList.
4206         * metadata-verify.c (verify_method_table): Proper check the ParamList
4207         field.
4209 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4211         * metadata-verify.c (verify_method_table): Check for runtime
4212         implemented functions such as delegate .ctors. Remove spurious
4213         printf.
4214         
4215 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4217         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4219 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4221         Don't allocate MonoGenericInfo for ownerless generic params.
4222         * class-internals.h (MonoGenericParam::info): Move field to ...
4223         (MonoGenericParamFull): ... this.  New struct.
4224         (MonoGenericContainer::type_params): Change type to
4225         MonoGenericParamFull.
4226         (MonoGenericParam, MonoGenericContainer): Update accessors.
4227         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4228         'info' field for ownerless generic param.
4229         (mono_metadata_load_generic_params): Update to changes.
4230         * reflection.c (mono_reflection_create_generic_class): Likewise.
4231         (reflection_methodbuilder_to_mono_method): Likewise.
4232         (mono_reflection_initialize_generic_parameter): Likewise.
4234 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4236         Don't use MonoGenericParamInfo for ownerless generic params.
4237         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4238         use ParamInfo class at all.
4239         (mono_class_from_generic_parameter): Use them.
4240         (make_generic_param_class): Fix a couple of instances where 'pinfo
4241         == NULL' wasn't handle.
4243 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4245         * class.c (make_generic_param_class): Carve out of ...
4246         (mono_class_from_generic_parameter): ... here.
4248 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4250         Simplify mono_class_from_generic_parameter
4251         * class-internals.h (MonoGenericParamInfo::token): New field.
4252         * metadata.c (mono_metadata_load_generic_params): Initialize it
4253         from metadata.
4254         * class.c (mono_class_from_generic_parameter): Use it instead of
4255         searching through metadata.
4257 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4259         * metadata-verify.c: Add verification of the method table.
4261 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4263         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4264         Delegate::Invoke optimization.
4266 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4268         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4269         string returned by get_shadow_assembly_location_base.
4271         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4272         about caller's ownership.
4274 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4276         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4277         reflection memory on domain unload.
4279         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4280         reflection cleanup code do it.
4282         * domain-internals.h: Add mono_reflection_cleanup_domain.
4284         This fixes a memory leak for managed mirrors of reflection objects
4285         on domain unload. 
4287 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4289         * metadata-verify.c: Implement more verification of the field table.
4291 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4293         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4294         doesn't try to parse the input assembly, which can be broken.
4296 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4298         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4299         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4300         by using the lowest bit in the link to store whether the link is
4301         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4303 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4305         * Makefile.am: Split the console support in platform specific code
4306         and put together a framework for making this easy in the future so
4307         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4309 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4311         * pedump.c: Fix a warning.
4313 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4315         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4316         mono_class_from_mono_type to avoid bad interactions with the dual representation
4317         of the generic type definition.
4319 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4321         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
4322         get the MonoClass for the call context type as it might be a generic
4323         instance.
4325         Fixes #491483.
4327 2009-04-21  Mark Probst  <mark.probst@gmail.com>
4329         * object-internals.h: The Thread object has no execution_context
4330         member anymore.
4332         * threads.c, threadpool.c, threads-types.h: Accessor functions for
4333         the execution context.
4335         * appdomain.c: Bump corlib version.
4337 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4339         * verify.c (do_newobj): Improve error message.
4341 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4343         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
4344         is nested in the filter block.
4346         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
4347         block is not fully nested.
4349         Fixes #495656.
4351 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4353         * verify.c (verify_type_compatibility_full): Compare MonoClass and
4354         not MonoType to check for equality of valuetypes as the generic type
4355         definition allows for two different encodings: the generic type definition
4356         class or a generic instance over the GTD arguments.
4358         Fixes #496175.
4360 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4362         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
4364         * verify.c (do_initobj): Improve error message.
4366 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
4368         * metadata-verify.c: Enable pe verification as the issue with #496453
4369         is that the authenticode data directory have a different unspecified
4370         format. Ignore it for now.
4372         * pedump.c: Run the metadata verifier together with the IL verifier.
4374         Fixes ##496453.
4376 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4378         * metadata-verify.c: Temporarily disable pe verification due to #496453.
4380 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4382         * class.c (can_access_type): Check visibility against
4383         the element type for pointers and arrays.
4385         Fixes #496150.
4387 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4389         * metadata-verify.c: Fix cli and table verification to use information
4390         from the MonoImage. A lot of duplicated code got killed.
4392 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
4395         This patch starts to integrate the metadata verifier with the runtime code.
4397         This patch causes major regression in functionality for the metadata verifier
4398         as cli and table verification are disabled since they require to be ported to
4399         use MonoImage information.
4401         * image.c (do_mono_image_load): Split the code in this function
4402         into mono_image_load_pe_data and mono_image_load_cli_data.
4403         Add     care_about_pecoff parameter to not load pecoff data.
4404         Call into the metadata verifier for pecoff and cli verification.
4406         * image.c (mono_image_open_raw): New function that doesn't perform
4407         any parsing of the image contents.
4408         
4409         The reason for the 3 new functions is to give pedump better control
4410         into the interaction with the verifier.
4412         * metadata-internals.h: Add new functions from image.c as part of the
4413         internal mono API.
4415         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
4416         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
4417         to make those functions work together with the runtime.
4419         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
4420         true if the image needs to be verified.
4422         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
4424         * pedump.c: Use new metadata verifier API.
4426 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
4428         * object.c (mono_install_vtable_trampoline): Make this receive a
4429         trampoline creation function instead of trampoline, allowing the JIT
4430         to use a different trampoline for each vtable.
4432 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4434         * object.c (mono_raise_exception): Don't reset the thread abort
4435         exception state here.
4437 2009-04-18  Mark Probst  <mark.probst@gmail.com>
4439         * icall-def.h: New icall for getting the thread abort exception
4440         state for a thread.
4442         * object.c, thread.c, object-internals.h: A thread's abort
4443         exception state is now a GC handle.  To get the object it stands
4444         for, we must move it into the current app domain, if it's
4445         different than the one where it originated from.
4447         * appdomain.c: Bump corlib version.
4449         * domain.c, domain-internals.h: New function for setting the
4450         domain and migrate the thread abort exception or not.
4452 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4454         * metadata-verify.c: Add initial verification of the
4455         field table.
4457 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4459         * metadata-verify.c: Add a macro to conditionally enable
4460         dumping of verification information. Add  make_coded_token
4461         and search_sorted_table to enable search sorted tables
4462         by a given coded token.
4464 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4466         * metadata-verify.c: Add array mapping from table index
4467         to description offset. Add get_col_offset and get_col_size
4468         functions.
4470 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4472         * metadata-verify.c: Add remaining table descriptions offsets.
4473         Add remaining coded index descriptions.
4475 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4477         * metadata-verify.c: Fixed constant table description.
4478         Fixed calculation of HasCustomAttribute coded index size.
4479         Fixed calculation of size for many table indexes. 
4481 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4483         * pedump.c (dump_metadata): Dump table offset instead
4484         of useless pointer in memory.
4486 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
4488         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
4490 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4492         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
4493         a missing of for interface types.
4495 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4497         * metadata-verify.c (verify_pe_optional_header): Add comment of why
4498         the code is commented.
4500         * metadata-verify.c (verify_resources_table): Remove spurious printf
4501         and don't fail if there are unmanaged resources. Gmcs generates a useless
4502         one     for all assemblies - I bet it's some MS compatibility junk.
4504 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4506         * metadata-verify.c (verify_typedef_table): Verify the extends field.
4508         * metadata-verify.c (mono_image_verify): Add a is_corlib.
4510         * verify-internals.h: Same.
4512         * pedump.c: Fix for mono_image_verify new signature.
4514 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4516         * metadata-verify.c (verify_typedef_table): Verify for some invalid
4517         flags combinations.
4519 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
4521         * metadata-verify.c (verify_module_table): Ignore the generation field.
4523 2009-04-15  Martin Baulig  <martin@ximian.com>
4525         * debug-mono-symfile.c
4526         (mono_debug_symfile_lookup_location): Don't print a warning for
4527         unknown extended opcodes if they're within 0x40 and 0x7f.
4529 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
4531         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
4532         invoke signatures returning an enum. Fixes #494847.
4534 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4536         * metadata-verify.c: Initial code to verify the typedef table.
4538 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4540         * verify.c (mono_method_verify): Don't fail if an unconditional branch
4541         with non empty stack happens before the beginning of a try block.
4543         Fixes #494812.
4545 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
4547         * metadata-verify.c: Verify typename and typenamespace fields of
4548         the typeref table.
4550 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4552         * metadata-verify.c: Initial code to verify the typeref table.
4554 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
4556         * verify.c (verify_delegate_compatibility): Fix error message.
4558 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4560         * security-core-clr.c: Fix typo
4562 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4564         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
4565         a MonoGHashTable to keep its values alive.
4566         (emit_marshal_boolean): Fix a warning.
4568 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4570         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
4571         not have any interface configured for IPv4/IPv6.
4573 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
4575         * assembly.c: fix typo in error message.
4577 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
4579         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
4580         allocating the location holding the this argument to prevent
4581         'too many root sets' errors.
4583         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
4584         to mark fields as special static.
4585         (mono_field_static_get_value): Handle special static fields.
4586         (mono_field_static_set_value): Ditto.
4588         * class-internals.h (struct _MonoClassField): Document this.
4590 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4592         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
4593           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
4594           case.  This will handle when managed code returns null to native code.
4596         Code is contributed under MIT/X11 license.
4598 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4600         * object.c (build_imt_slots): Changing a free to a g_free to match
4601           the g_malloc0 in add_imt_builder_entry that allocated this memory.
4603         Code is contributed under MIT/X11 license.
4605 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
4607         * marshal.c (emit_marshal_boolean): Adding code to ensure that
4608           the correct TRUE value is passed through the marshaling layer.
4610         Code is contributed under MIT/X11 license.
4612 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
4614         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
4615         correctly. Fixes #492330.
4616         
4617         * marshal.c: Fix the embedding of object pointers into JITted code in
4618         the native-to-managed wrappers by allocating some GC tracked memory, and
4619         embedding the address of that.
4621 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
4623         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
4624         pointers into the vtable.
4626 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
4628         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
4630         * verify.c (verify_ldftn_delegate): Improve error message.
4632 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4634         * reflection.c (my_mono_class_from_mono_type): Remove.
4636 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
4638         Prepare to reduce memory usage of owner-less generic parameters (1/n)
4639         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
4640         and constraints fields into ...
4641         (MonoGenericParamInfo): ... this.
4642         (mono_generic_param_info, mono_generic_container_get_param_info):
4643         New accessors.
4644         * class.c, debug-helpers.c, icall.c: Update to changes.
4645         * metadata.c, reflection.c, verify.c: Likewise.
4647 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
4649         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
4651         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
4652         
4653         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
4654         booleans with sbytes.
4656 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4658         * class.c (can_access_instantiation): Verify accesibility of element types
4659         for arrays and pointers.
4661         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
4663         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
4665         Fixes #493068.
4667 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
4669         * verify.c (do_invoke_method): Improve error messages.
4671 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
4673         * verify.c:  Fixing the MSVC build.
4675         Code is contributed under MIT/X11 license.
4677 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
4679         * security-core-clr.c: Simplify get_reflection_caller not to call
4680         mono_method_get_last_managed (another stack walk) and adjust the
4681         callers to handle a (should not happen) NULL return value.
4683 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4685         Add accessors to some MonoGenericParam fields
4686         * class-internals.h (mono_generic_param_owner): New accessor.
4687         (mono_generic_param_num): Likewise.
4688         (mono_type_get_generic_param_owner): New helper.
4689         (mono_type_get_generic_param_num): New helper.
4690         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
4692 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4694         * class-internals.h (mono_generic_container_get_param): New wrapper.
4695         * class.c, icall.c, metadata.c, verify.c: Use it.
4697 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
4699         Fix gtest-252.cs
4700         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
4701         the standard case/loop.  In particular, don't complain about
4702         references to generic type definitions.
4704 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
4706         * debug-helpers.c (dis_one): Decode string arguments.
4708 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4710         * pedump.c (dump_verify_info): Dump type name correctly.
4712 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
4714         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
4715         are larger than code size.
4717         This can happen in valid code if the try/catch block is not followed by any instruction
4718         and do a backward branch on the leave instruction.
4720         Fixes #492494.
4722 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
4724         * security-core-clr.c: Fix typo while comparing second method names
4725         in can_avoid_corlib_reflection_delegate_optimization
4727 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4729         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
4731         Fixes #487738.
4733 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
4735         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
4736         a MVAR using a class context.
4738         Fixes #490335.
4740 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
4742         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
4744         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
4746         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
4747         functions supplied by the JIT for the SGEN GC.
4749         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
4750         
4751 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4753         monitor.c (mono_monitor_try_enter_internal):
4754         Added calls to profile monitor contentions.
4755         Also duplicated a small piece of code (the "get the monitor" logic)
4756         from the fast path to the slow path, and changed the relevant goto
4757         statements, so that monitor acquisition events can be emitted from the
4758         slow path (this is by Paolo Molaro).
4760 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
4762         * profiler.c, profiler.h, profiler-private.h:
4763         Added support for profiling monitor contentions.
4765 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
4767         * metadata-verify.c: Verify the modules table.
4769 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
4771         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
4772         using the context of the method been verifier and not of the method been called.
4774         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
4775         safely inflate generic types. 
4777 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4779         * security-core-clr.c: Change the strategy for checking the 
4780         "reflection using delegates optimization" to avoid unneeded 
4781         attributes in multiple class libraries.
4783 2009-04-02  Mark Probst  <mark.probst@gmail.com>
4785         * sgen-gc.c: Remove object element in the disappearing link struct
4786         by storing the object pointer in the link.
4788 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4790         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
4792 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4794         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
4796         * verify.c (mono_method_verify): Do proper bounds checking of exception
4797         clause ranges.
4799 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
4801         * loader.c (mono_field_from_token): Don't crash if the field parent could
4802         not be decoded.
4804 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4806         * sgen-gc.c: Execute critical finalizers after ordinary
4807         finalizers.
4809         * class-internals.h, domain.c: Add CriticalFinalizerObject to
4810         mono_defaults.
4812 2009-03-31 Jb Evain <jbevain@novell.com>
4814         * verify.c (do_ldstr): don't check if a string is in the user strings
4815         heap if the current image is dynamic.
4817 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4819         * sgen-gc.c: Wait until the last finalizer has executed when
4820         returning from WaitForPendingFinalizers.
4822 2009-03-31  Martin Baulig  <martin@ximian.com>
4824         * mono-debug-debugger.h (MonoDebuggerEvent): Add
4825         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
4826         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
4827         (mono_debugger_event_create_appdomain): New function.
4828         (mono_debugger_event_unload_appdomain): New function.
4830         * appdomain.c (mono_domain_create_appdomain_internal): Call
4831         mono_debugger_event_create_appdomain().
4833 2009-03-31  Martin Baulig  <martin@ximian.com>
4835         * mono-debug-debugger.c
4836         (mono_debugger_register_class_init_callback): Also register the
4837         class init callback if the class is already initialized to make
4838         things work with shadow copied assemblies.
4840 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
4842         * security-core-clr.c
4843         (mono_security_core_clr_ensure_reflection_access_field): Let 
4844         critical code access the field (just like we do for methods). Use
4845         check_field_access helper.
4846         (mono_security_core_clr_ensure_reflection_access_method): Use 
4847         check_field_access helper.
4849 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4851         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
4852         call the run-finalize function directly.
4854         * gc.c, gc-internal.h: Make run_finalize() non-static.
4856 2009-03-31  Mark Probst  <mark.probst@gmail.com>
4858         * sgen-gc.c: Use a separate struct for disappearing links.
4860 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
4862         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
4863         * MaxIOVectorLength enabled, just ignore them.
4864         Fixes bug #349688.
4866 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
4868         * metadata-verify.c: Fix eglib build.
4870 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
4872         * threads-types.h: Fix the win32 build.
4874 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4876         * class.c: move coreclr inheritance/override checks to 
4877         security-core.clr.c
4878         * security-core.clr.c|h: add code from class.c with additional
4879         documentation. Fix override check when the method is not critical.
4881 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
4883         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
4884         (match_class): Ditto.
4886 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4888         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
4890         * metadata-verify.c: Implement table layout row size calculation. Verify
4891         the total size of the tables.
4893 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
4895         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
4897 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4899         * appdomain.c:
4900         * console-io.[ch]: added new mono_console_init() to make sure that
4901         file descriptors 0, 1 and 2 are opened.
4902         Bug #489019 fixed.
4904 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
4906         * appdomain.h: Export a new callback type and a new function to
4907         set this callback. This allow a mono host to provide it's own
4908         definition for "platform code".
4909         * metadata-internals.h: Add a core_clr_platform_code flag on 
4910         _MonoImage to (cache and) know if it is representing platform 
4911         code.
4912         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
4913         on platform code images.
4914         * security-core-clr.c|h 
4915         (mono_security_set_core_clr_platform_callback): Allow the host
4916         to provide it's own platform check definition.
4917         (mono_security_core_clr_determine_platform_image): Detect if an 
4918         image is platform code (using the specified callback).
4919         (mono_security_core_clr_is_platform_image): Return cached value 
4920         for platform code.
4922 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
4924         * threads.c (mono_create_thread): New helper function to wrap CreateThread
4925         which has different parameter types for the 'tid' argument in windows and
4926         the io-layer.
4928         * appdomain.c attach.c threads.c: Use the new helper.
4930 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4932         * metadata-verify.c: Verify valid table bits.
4934 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
4936         * metadata-verify.c (verify_metadata_header): Store size in the size field.
4938         * metadata-verify.c: Add initial table schema verification.
4940 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4942         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
4943         obtain the refclass argument needed by mono_param_get_objects (). Fixes
4944         #488383.
4946         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
4948         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
4950 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
4952         * security-core-clr.c: Add/update documentation
4954 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
4956         * marshal.c (emit_marshal_object): Generate code to throw an exception
4957         instead of throwing it. Fixes #488670.
4959 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
4961         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
4962         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
4963         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
4964         and add a call to mono_security_core_clr_ensure_delegate_creation
4965         to do the extra checks required by CoreCLR.
4966         * security-core-clr.c|h: Add function to check delegate creation,
4967         both in the binding and accessibility, under CoreCLR.
4969 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
4971         * reflection.c (mono_reflection_create_dynamic_method): when 
4972         coreclr is enabled make sure that every resolved object are
4973         checked (e.g. field and method access).
4974         * security-core-clr.c|h: Add function to check objects resolved
4975         when a dynamic method is created.
4977 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4979         * metadata-verify.c: Cache directory rva translations.
4981         * metadata-verify.c: Add cli-header and streams verification.
4983 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
4985         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
4986         the wrong offset (8 instead of 6).
4988 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
4990         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
4991         methods, return the native function address itself. Fixes
4992         #487758.
4994 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
4996         * console-io.c: some of the values for control characters might not be
4997         present.
4999 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5001         * exception.c|h: Add helpers to create [Field|Method]AccessException
5002         * icall.c: Add required coreclr check calls for field reflection.
5003         Move the existing (method) check logic into security-core-clr.c
5004         * security-core-clr.c: Add functions to check if the access of a
5005         field or method is allowed when reflecting under coreclr. This is
5006         mostly done using a stack walk to find the "real" caller: i.e. the
5007         code that is calling the reflection
5009 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5011         * gc-internal.h: Change location of gc_wrapper.h
5013 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5015         * class.c: Simplification to coreclr checks for overrides that
5016         makes it easier to set breakpoints.
5018 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5020         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5021         mono_security_core_clr_method_level): Avoid potential 
5022         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5023         user/application code) and make it easier to set breakpoints
5025 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5027         * metadata-verify.c: Reject cli header tables that mono don't handle.
5029 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5031         * pedump.c: Fix CLI header dumping.
5033 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5035         * metadata-verify.c: More CLI header verification.
5037 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5039         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5041 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5043         * metadata-verify.c: Initial verification of the CLI header.
5045 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5047         * metadata-verify.c (verify_resources_table): Fix verification of zero
5048         sized resource section and id entries count.
5050 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5052         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5054 2009-03-17  Jb Evain  <jbevain@novell.com>
5056         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5058 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5060         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5061         (mono_gc_make_descr_for_array): Ditto.
5063 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5065         * verify.c (mono_verifier_is_class_full_trust): Add support for
5066         CoreCLR security mode where trusted assemblies are defined as
5067         "platform code".
5069 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5071         * metadata-verify.c: Add minimal PECOFF resource verification.
5073 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5075         * metadata-verify.c: Be less restrictive with some coff fields.
5077 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5079         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5080         params as boxed values on stack. Fixes #485706.
5082 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5084         * console-io.c: the termios values may vary in different flavors of unix.
5086 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5088         * console-io.[ch]: return the entire set of control characters when
5089         initializing the terminal.
5090         * appdomain.c: bump corlib version.
5092 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5094         * mono-perfcounters.c: added support for in-process custom
5095         performance counters.
5097 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5099         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5101 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5103         * metadata-verify.c: Verify the data pointed by the import table. 
5105 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5107         * metadata-verify.c (load_data_directories): Store data
5108         directory contents.
5110         * metadata-verify.c: Verify the import table. 
5112 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5114         * metadata-verify.c: Verify data directories.
5116 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5118         * metadata-verify.c: Check section header flags.
5120 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5122         * appdomain.c: if the assembly name is a shadow-copied file, return
5123         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5124         in mono_make_shadow_copy.
5125         * icall.c: if the assembly name is a shadow-copied file, replace it
5126         with the original assembly path.
5128         Bug #484244 fixed. NUnit tests for corlib can be run without
5129         --noshadow now.
5131 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5133         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5134         entries when the table is reallocated.
5136         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5137         mono_gc_alloc_fixed () since it contains GC refs.
5139 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5141         * reflection.c (ensure_complete_type): New helper function to call
5142         type resolve handlers for unfinished dynamic types.
5143         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5145 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5147         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5148         #483247.
5150 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5152         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5154 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5156         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5157         between GCHandles of type WeakTrackResurrection and the objects they
5158         point to.
5160         * gc.c: Partly implement the sematics of GCHandles of type 
5161         WeakTrackResurrection: these handles should only be cleared after the
5162         finalizer of the object they are pointing to has ran.
5164 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5166         * icall.c: Partially revert r126631 because using the jump
5167         trampolines for generic shared methods makes it superfluous.
5169 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5171         * threads.c (handle_store): Create the 'threads' hash table with the proper
5172         MONO_HASH_VALUE_GC type.
5174 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5176         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5177         FIRST_GC_TRACKED.
5179         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5180         and LAST_GC_TRACKED as a GC root.
5182         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5184         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5185         the static data even if it consists of 1 reference.
5187         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5188         if there is a GC descriptor.
5190         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5191         instead of through the GC since they contain no object references.
5193 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5195         * generic-sharing.c (instantiate_other_info): Always return a jump
5196         trampoline for method code.
5198 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5200         * culture-info-tables.h: generated to include the en-tt culture.
5202 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5204         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5205         capture the thread context.
5207         * object.c (mono_async_result_new): Cache the invoke wrappers to
5208         ExecutionContext::Capture.
5210 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5212         * marshal.h: Add a prototype for what mono_compile_method returns
5213         for invoke wrappers.
5215         * gc.c: Use the new prototype declaration.
5217 2009-03-04  Geoff Norton  <gnorton@novell.com>
5219         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5220         * gc-internal.h:
5221         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5223 2009-03-04  Martin Baulig  <martin@ximian.com>
5225         * mono-debug.h
5226         (mono_debugger_runtime_invoke): Removed.
5228         * mono-debug-debugger.c
5229         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5231 2009-03-02  Martin Baulig  <martin@ximian.com>
5233         * mono-debug.h
5234         (mono_debugger_unhandled_exception): Removed.
5235         (mono_debugger_handle_exception): Removed.
5236         (mono_debugger_throw_exception): Removed.
5238         * mono-debug.c
5239         (mono_debug_debugger_version): Bump to 5.
5241         * mono-debug-debugger.c: Moved the exception handling code to
5242         ../mini/debug-mini.c
5244 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5246         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5247         finalize_objects_hash.
5249         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5250         
5251         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5252         field.
5254         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5255         cache.
5257         * image.c (mono_image_close): Free it.
5258         
5259         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5260         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5261         on the this argument.
5263         * gc.c (run_finalize): Optimize the calling of the finalizers.
5265 2009-03-03  Martin Baulig  <martin@ximian.com>
5267         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5268         of the `MonoGenericInst' changes.
5270 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5272         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5273         mono_array_class_get_cached to reduce locking contention. Extract
5274         a domain var.
5276         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5277         intermediary managed arrays. Use caching version of mono_array_new
5278         to allocate the result array.
5280         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5282         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5284         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5285         to reduce locking contention.
5287 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5288                 
5289         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5290         thunk builder code for the non-interface case.
5292 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5294         * object.c (get_generic_virtual_entries): New helper function to collect
5295         the virtual generic method instances which need to be added to an IMT
5296         thunk.
5297         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5298         Instead of creating a new IMT thunk, reset the vtable slot to the
5299         trampoline, the thunk will be created the next time the trampoline is called.
5300         (build_imt_slots): Add support for virtual generic methods in interfaces by
5301         adding to the IMT thunk all the methods registered using 
5302         mono_method_add_generic_virtual_invocation ().
5304         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5305         (struct _MonoIMTCheckItem): Ditto.
5307         * object.c (mono_method_add_generic_virtual_invocation): Take a
5308         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5309         the IMT thunk to include all items.
5310         
5311         * object.c (mono_class_create_runtime_vtable): Add a missing
5312         mono_loader_unlock ().
5314 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5316         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5318         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
5320 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5322         * object-internals.h: Rename _MonoReflectionEvent to
5323         MonoReflectionMonoEvent so it reflects the right managed type.
5324         Add a MonoReflectionEvent that correctly represents System.EventInfo.
5326         * icall.c:
5327         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
5328         type.
5330 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5332         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
5333         intermediary managed arrays. Use caching version of mono_array_new
5334         to allocate the result array.
5336 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5338         * reflection.c: Use cached version of mono_array_new alongside
5339         the mono_reflection_get_custom_attrs_by_type call path.
5341 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5343         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
5344         intermediary managed arrays. Use caching version of mono_array_new
5345         to allocate the result array.
5347         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
5349 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
5351         * icall.c: Add small implementation of a growable stack bound array.
5353         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
5355         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
5356         intermediary managed arrays. Use caching version of mono_array_new
5357         to allocate the result array.
5359 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
5361         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
5362         helps Enum::CompareTo to be implemented without reboxing all enums
5363         to their underlying type.
5364 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
5366         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
5367         since it acquires a global lock leading to scalability problems.
5369         * profiler.c: Make the stat profiler work with multiple appdomains, this
5370         currently only works when no appdomains are unloaded.
5372 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5374         * appdomain.c: make the check to avoid copying when the assembly is
5375         already shadow copied actually work.
5377 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
5379         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5381         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
5382         changes to the managed side.
5384 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
5386         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
5387         classes + a separate lock for it, as it is used frequently at runtime, not
5388         just during metadata loading/JIT compilation.
5390         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
5391         for szarrays.
5392         
5393         * object-internals.h (mono_class_from_name_cached): New macro to cache
5394         the results of the lookup locally without having to declare a static
5395         variable to hold it.
5396         (mono_class_get_field_from_name_cached): Ditto.
5397         (mono_array_class_get_cached): Ditto.
5399         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
5400         the new macros.
5401         
5402         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
5403         slower search in metadata.
5405         * pedump.c: Fix a warning.
5407 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
5409         * reflection.c (encode_locals): Add checks for user types.
5410         (method_encode_clauses): Ditto.
5411         (method_encode_code): Ditto.
5412         (mono_image_create_token): Ditto.
5414         * object-internals.h: Change the type of more fields from MonoReflectionType*
5415         to MonoObject*.
5417 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
5419         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
5420         the a thread does not suspend within 100ms.
5422         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
5423         in addition to StopRequested as well.
5425         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
5427         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
5428         search the method_hash before inserting a new entry, to avoid crashes when
5429         the same method is inserted multiple times, causing the old 
5430         MonoDebugMethodInfo structure to be freed by the value dtor function.
5432 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
5434         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
5435         SO_EXLUSIVEADDRUSE where available.
5437 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
5439         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
5440         runtime invoke wrappers, this time it is string ctor wrappers, which
5441         pass a dummy string as 'this' instead of their obj argument. Fixes
5442         #478473.
5444 2009-02-21  Jb Evain  <jbevain@novell.com>
5446         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5447         only get create_culture once.
5449 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
5451         * reflection.c (mono_reflection_setup_internal_class): Move the user type
5452         check before the locking.
5453         
5454         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
5455         (mono_reflection_create_runtime_class): Ditto.
5456         (mono_reflection_sighelper_get_signature_local): Ditto.
5457         (mono_reflection_sighelper_get_signature_field): Ditto.
5459         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
5460         is a System.MonoType object or similar.
5461         (monotype_cast): New helper function to cast a MonoObject to a 
5462         MonoReflectionType object.
5464         * object-internals.h: Change MonoReflectionType* members in structures to
5465         MonoObject* members to force the usage of the monotype_cast () function.
5467         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
5468         structures/arrays. This causes us to assert instead of crashing when 
5469         instances of user defined subclasses of System.Type are encountered.
5471 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5473         * cil-coff.h:
5474         * icall-def.h:
5475         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
5476         win32 resource loaded from a PE file.
5478         * image.c: fix mono_image_lookup_resource.
5480 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5482         * icall-def.h:
5483         * threads-types.h:
5484         * threads.c: added internal call for WaitHandle.SignalAndWait.
5486 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
5488         * cominterop.c : Adding cominterop_type_from_handle and 
5489           registering it as an icall.  Replacing all references
5490           to type_from_handle.
5492         Code is contributed under MIT/X11 license.
5494 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5496         * Makefile.am: Add lock-tracer.h and lock-trace.c.
5498         * appdomain.c: Call the tracer init function.
5500         * domain-internals.h: Enable the tracer for the domain locks.
5502         * image.c: Enable the tracer for image locks.
5504         * loader.c: Enable the trace for the loader lock.
5506         * lock-tracer.h:
5507         * lock-tracer.c: Initial implementation of the lock trace utility.
5508         The tracer requires a compile time define to be enabled and a env var
5509         to be enabled at runtime.
5511 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5513         * domain.c (mono_domain_code_foreach): Improve documentation.
5515 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
5517         * appdomain.c:
5518         * generic-sharing.c:
5519         * object.c:
5520         * reflection.c:  Adjust locking order to the new semantics where the loader lock
5521         comes first.
5523 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
5525         * domain.c: Add mono_domain_code_* functions that perform locking
5526         around the domain codeman.
5528         * domain-internals.h: Export those functions.
5530         * object.c: Use new functions instead of acquiring the domain lock.
5532 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
5534         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
5535         delegate. Fixes #477396.
5537 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5539         * reflection.c (create_custom_attr): Get rid of alloca.
5541 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
5543         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
5544           Adding exception handling for all CCW calls.
5546         Code is contributed under MIT/X11 license.
5548 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
5550         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
5552         * marshal.c (emit_marshal_boolean): Add null checks to the new 
5553         native->managed marshalling code. Fixes #476247.
5555 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5557         * class.c (mono_class_get_vtable_entry): Move the addition of
5558         static rgctx invoke wrappers for vtable methods here, this simplifies
5559         a lot of code and causes fewer rgctx wrappers to be created.
5561         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
5562         name of the statistics to begin with an uppercase.
5564 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5566         * reflection.c: Revert previous change as it breaks the build.
5567         
5568 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5570         * verify.c: Properly handle SZARRAY element type.
5572         Fixes #474271.
5574 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
5576         * reflection.c (mono_image_create_method_token): Correctly encode
5577         MethodDef MemberRefParent token.
5579         Fixes #472845.
5581 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
5583         * image.c (mono_image_close): Delete the critical section before
5584         freeing the memory holding it.
5586 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5588         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
5589         Fixes #476257.
5591 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5593         * pedump.c (main): Call mono_marshal_init so pedump
5594         doesn't crash.
5596 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5598         * loader.c (method_from_memberref): Properly fix #474271 and
5599         don't break the runtime bad.
5601 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5603         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
5604         (mono_domain_alloc0): Ditto.
5606 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5608         * loader.c (method_from_memberref): Don't abort if the array
5609         method is not found. A regular loader failure is more informative
5610         and correct.
5612         Fixes #474271.
5614 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
5616         *loader.c: Guard MonoImage::method_cache/methodref_cache
5617         using the image lock instead of the loader lock.
5619         * metadata.h: Add comments about which fields are protected by
5620         the image lock.
5622 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
5624         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
5626         * generic-sharing.c (mono_method_construct_object_context): Remove the
5627         wrapper_type == NONE assert, it is not needed.
5629 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
5631         * reflection.c (clear_cached_object): New helper function.
5632         (mono_method_clear_object): New function to clear the cached reflection
5633         objects for a dynamic method.
5635         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
5636         Partly fixes # 463323.
5637         
5638 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5640         * class.c:
5641         * loader.c:
5642         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
5644 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
5646         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
5647         take the image lock instead of the loader lock.
5649         * metadata-internals.h: Export new functions.
5651 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5653         * domain.c (app_config_parse): Remove another use of stat that is
5654         not necessary as g_file_get_contents already does the presence
5655         check. 
5657 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5659         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
5661         * marshal.c: Move the bstr handling code to cominterop.c.
5663         * marshal.c: Remove some COM interop code missed previously.
5665 2009-02-12  Miguel de Icaza  <miguel@novell.com>
5667         More Paolo patches from the Wii port:
5668         
5669         * security.c: Remove ves_icall_System_Environment_get_UserName
5670         from here.
5672         * icall.c: And put ves_icall_System_Environment_get_UserName
5673         here. 
5675         * appdomain.c (mono_set_private_bin_path_from_config): Remove
5676         redundant call to stat that was only used to test for the file
5677         existence.   Patch from Paolo.
5679         * gc.c (run_finalize): If COM is disabled, do not link in
5680         mono_marshal_free_ccw.
5682         * generic-sharing.c: Use alloca.h here as well.
5684 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
5686         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
5688 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
5690         * cominterop.c cominterop.h: New files.
5692         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
5693         function/typedefs which are needed by cominterop.c global.
5695 2009-02-12  Mark Probst  <mark.probst@gmail.com>
5697         * generic-sharing.c: Don't take the loader lock to guard image
5698         mempool allocs.
5700 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5702         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
5703         called without the loader lock which is required to guard MonoImage:tokens.
5705 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5707         * class.c:
5708         * metadata.c:
5709         * method-builder.c:
5710         * marshal.c:
5711         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
5713 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5715         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5716         Rework the code to use regular mono_image_alloc/0.
5718         * loader.c: Rework the code to use regular mono_image_alloc/0.
5720         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
5722 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
5724         * object-internals.h : Fixing a typo in the 
5725           MonoReflectionComVisibleAttribute struct.
5727         * marshal.c (cominterop_com_visible): Check the implemented 
5728           interfaces for ComImport.
5730         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
5731           assume that bools should be treated as VARIANTBOOLs.
5733         * marshal.c (emit_marshal_boolean): Adding cases for 
5734           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
5736         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
5737           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
5739         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
5740           should be treated as VARIANTBOOLs.    
5742         Code is contributed under MIT/X11 license.
5744 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5746         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
5747         allocation with the image lock.
5749 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5751         This patch is the last of a series to remove explicit reference of MonoImage::mempool
5752         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
5754         * object.c: Add mono_string_to_utf8_image.
5756         * object-internals.h: Export mono_string_to_utf8_image.
5758         * reflection.c: Rework all explicit references to the the image mempool to go thought
5759         the mono_image_alloc set of functions.
5761 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5763         This patch is the third of a series to remove explicit reference of MonoImage::mempool
5764         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
5765         and generics-sharing.c.
5767         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
5768         as first argument. Note that this function remains broken as it doesn't perform locking around the
5769         mempool allocation.
5771         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
5773         * image.c: Add g_slist_append_image.
5775         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
5776         the supplied image for allocation. Move code into mono_metadata_field_info_full.
5778         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
5779         Fix all related code to do the same.
5781         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
5783         * metadata-internals.h: Fix the signatures.
5785 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
5787         This patch is the second of a series to remove explicit reference of MonoImage::mempool
5788         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
5789         and similar to work using MonoImage.
5791         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
5792         MonoMemPool.
5794         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
5796         * class.c (mono_metadata_signature_deep_dup): Same.
5798         * class.c (inflate_generic_type): Same.
5800         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
5802         * metadata.c (mono_metadata_signature_dup_full): Same.
5804         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
5805         mono_metadata_signature_dup_full.
5807         * metadata.c (mono_metadata_type_dup): Same.
5809         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
5811         * reflection.c: Same.
5813         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
5815         * metadata-internals.h: Fix the signatures.
5817         * class-internals.h: Same.
5819 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5821         This patch is the first of a series to remove explicit reference of MonoImage::mempool
5822         and use mono_image_alloc set of functions instead. 
5824         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
5825         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
5826         of a MonoMemPool.
5828         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
5830         * class.c (g_list_prepend_mempool): Removed.
5832         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
5834         * image.c: Add g_list_prepend_image.
5836         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
5838         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
5841 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5843         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
5844         mono_image_unlock.
5846         * image.c (mono_image_init): Init the lock field.
5848         * image.c (mono_image_init): Cleanup the lock field.
5850         * image.c: Add mono_image_(un)lock functions.
5852 2009-02-11  Mark Probst  <mark.probst@gmail.com>
5854         * class.c, class-internals.h: mono_method_get_context_general()
5855         combines the functionality of mono_method_get_context() and
5856         mini_method_get_context().
5858         * generic-sharing.c, domain-internals.h:
5859         mono_method_construct_object_context() and
5860         mono_domain_lookup_shared_generic() moved from mini.
5862         * icall.c (ves_icall_InternalInvoke): Handle the case where the
5863         method doesn't have the correct instantiation because it's shared
5864         generic code.  Fixes #473999.
5866 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
5868         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
5870         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
5871         
5872 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
5874         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
5876         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
5878         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
5879         and recheck the cache for dups after it.
5881         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
5883         Fixes one of the deadlocks found in #473150.
5885 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
5887         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
5888           For Win32, add additional break conditions for accept.
5890         Code is contributed under MIT/X11 license.
5892 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
5894         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
5895         lazily initialize the native wrapper cache.
5896         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
5897         cache, since they are different from the normal wrappers.
5899         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
5901         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
5902         AOT compiled native wrappers.
5904 2009-02-09  Geoff Norton  <gnorton@novell.com>
5906         * appdomain.h:
5907         * security-core-clr.c: Allow enabling core-clr from the embedding
5908         API.
5910 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5912         * socket-io.c: when requesting all the local ips, if there are no
5913         interfaces up and running, MS returns 127.0.0.1.
5915 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5917         * mono-perfcounters-def.h: processor time is an inverse time.
5918         Fixes bug #468625.
5920 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
5922         * socket-io.c: an empty host name returns the list of local IPs.
5923         Fixes bug #386637 part 1/2.
5925 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
5927         * verify.c (mono_class_interface_implements_interface): Call
5928         mono_class_setup_interfaces ().
5929         (merge_stacks): Ditto.
5931 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5933         * class.c (mono_class_setup_interfaces): New function to lazily initalize
5934         klass->interfaces.
5935         (mono_generic_class_get_class): Don't initalize klass->interfaces.
5936         (mono_generic_class_get_class): Ditto.
5938 2009-02-06  U-QUACK\miguel  <miguel@quack>
5940         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
5941         they live in security.c
5943         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
5944         another bit from Paolo's code.
5946 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
5948         * object.c (build_imt_slots): Add a small optimization to avoid inflating
5949         methods which will be discarded by add_imt_builder_entry ().
5951         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
5952         need to be boxed.
5954         * loader.c: Add a statistics for the size of the memberref signature cache.
5955         
5956         * loader.c (find_cached_memberref_sig): New helper function.
5957         (cache_memberref_sig): Ditto.
5959         * loader.c: Cache the result of parsing memberref signatures, since otherwise
5960         they will be parsed again for every generic instantiation, leading to unbounded
5961         memory growth.
5963 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5965         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
5966         parameters of generic methods.
5968         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
5969         after the original method is copied to the inflated method.
5970         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
5972         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
5973         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
5975         * class.c metadata.c: Update after the changes above.
5977 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
5979         * metadata-verify.c: Simplified error handling and added
5980         section table validation.
5982 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
5984         * class-internals.h (MonoClassExt): New structure containing rarely used
5985         fields of MonoClass.
5986         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
5987         through a new 'ext' field.
5989         * class.c (mono_class_alloc_ext): New helper function to allocate 
5990         class->ext.
5992         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
5994 2009-02-05  Mark Probst  <mark.probst@gmail.com>
5996         * object.c (mono_object_get_virtual_method): Properly inflate
5997         generic methods.  Fixes #472692.
5999 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6001         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6002         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6003         for the parent type, the created type must be ready to be used on a generic
6004         instantiation.
6005         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6006         we won't have duplicated entries in generic_inst_cache.
6008         Fixes #469553.
6010 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6012         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6013         replace with plain BSD per the comments on the bug MONO77637.
6015 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6017         * class.c (mono_class_get_generic_class): New accessor function.
6018         (mono_class_get_generic_container): Ditto.
6020         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6021         fields, similar to the ones in MonoMethod.
6023         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6024         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6026         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6027         
6028         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6029         the same information as element_class->byval_arg.
6031         * class.c reflection.c: Remove references to class->byval_arg.
6033         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6034         klass->enum_basetype directly.
6036         * verify.c metadata.c object.c icall.c reflection.c: Use 
6037         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6038         directly.
6040 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6042         * icall-def.h: Remove internal calls for sockets when
6043         DISABLE_SOCKET is defined, file system writing features when the
6044         OS only support reading and not writing data and Policy support if
6045         the Policy is disabled.
6046         
6047         * image.c (do_mono_image_open): Apply Paolo's patches for using
6048         mono_file_map_ APIs here.
6050         * assembly.c: Add support for platforms to avoid prefix
6051         auto-detection. 
6053 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6055         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6056         warning.
6058         * class.c (mono_class_inflate_generic_class): New helper function.
6060         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6061         statistics for inflated methods/classes.
6063         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6065         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6066         the call is made from Delegate.CreateDelegate () for the invoke method of
6067         a delegate.
6069         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6071         * metadata.c (mono_metadata_signature_size): New helper function.
6073         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6074         generic instances.
6076         * metadata.c (inflated_method_in_image): Avoid calling 
6077         mono_method_signature () if the method does not already have a signature.
6079 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6081         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6082         valuetype is compatible with target type, check by inheritance as a
6083         VT is not really compatible with System.ValueType, for example.
6085         * verify.c (do_invoke_method): Improve error message.
6087         * verify.c (do_box_value): If boxing a nullable, use the type argument
6088         on stack instead.
6090         * verify.c (do_newobj): Improve error message.  
6092         Fixes #469549.
6094 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6096         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6098 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6100         * generic-sharing.c: Don't hold domain lock when calling
6101         instantiate_other_info().  Fixes #471958.
6103         * domain-internals.h, loader.c: Describe locking policy of domain
6104         lock vs loader lock.
6106 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6108         * verify.c (mono_delegate_signature_equal): Make it possible to check
6109         first-arg-bound delegates to static method.
6111         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6112         static methods with the first arg bound.
6114         Fixes #469529.
6116 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6118         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6119         errors.
6121         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6122         under strict mode. Any type, when boxed can be seen as a reference type.
6124         Fixes #469528.
6126 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6128         * object.h: The lower bound of an array is a signed integer value.
6129         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6130         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6132         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6133         calculate the upper bound.
6134         
6135         Fixes #471252.
6137 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6139         From Paolo's work, refactored, cleared up:
6140         
6141         * threadpool.c, icall.c: ifdef code that requires a working socket
6142         stack.
6144         * metadata.c (mono_metadata_field_info): Do not attempt to return
6145         a value from a function declared as void.
6147         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6148         from the console stack.
6150         * assembly.c: use strrchr instead of rindex.
6152         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6153         alloca.h on systems that have it.
6155         * environment.c: Avoid code that uses stuff from
6156         HAVE_SYS_UTSNAME_H
6157         
6158         * appdomain.c: Include sys/time.h.
6160         * console-io.c: include sys/ioctl.h if it is available.
6162 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6164         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6166         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6167         the method builder.
6169         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6170         after it was created and cached, as the later is not thread safe.
6171         
6172 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6174         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6175         called while the debugging module is not initialized. Fixes #471669.
6177 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6179         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6181         Fixes #471255.
6183 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6185         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6186         loader lock is not taken while the templates lock is held.  Fixes
6187         #471089.
6189 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6191         * metadata.c (type_in_image): Added a check to fix a monodis
6192         crash.
6194 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6196         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6197         nullable arguments.
6199         * object.c (mono_runtime_invoke_array): Ditto.
6200         
6201         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6202         freeing wrappers of dynamic methods.
6204         * loader.c (mono_free_method): Call it. Fixes #463323.
6205         
6206         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6207         methods taking vtype/byref arguments, to fix yet another bug caused by
6208         the sharing of runtime invoke wrappers. Partly fixes #471259.
6210 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6212         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6213         <first file in file table>:1 when the IL offset does not have an associated
6214         line number.
6216 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6218         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6219         variable info for a method.
6221         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6222         
6223 2009-01-30  Jb Evain  <jbevain@novell.com>
6225         * pedump.c: reuse code from monodis to make sure pedump honors
6226         MONO_PATH, which is needed to verify net_2_1 assemblies.
6228 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6230         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6231         there is no line number info.
6233 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6235         Avoid some MonoType allocations
6236         * reflection.c (mono_reflection_initialize_generic_parameter):
6237         Reuse MonoType from param->pklass rather than allocating one.
6238         (mono_dynamic_image_free): Update to changes.
6240 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6242         Rearrange some code to improve consistency
6243         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6244         (mono_reflection_initialize_generic_parameter): ... here.
6246 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6248         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6249         with type constraints as an experiment.
6251         * boehm-gc.c (on_gc_notification): Update mono_stats.
6253 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6255         Avoid some allocations
6256         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6257         pointer to tail array to avoid extra allocation.
6258         * metadata.c (free_generic_inst): Update to changes.
6259         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6260         on-stack struct.
6262 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6264         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6265         return TRUE if the two type objects are the same.
6267 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6269         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6270         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6271         klass->min_align, since klass->min_align contains the managed alignment,
6272         while the native alignment can be different, like for longs on x86.
6273         Fixes #469135.
6275         * class-internals.h (MonoMarshalType): Add a min_align field.
6277 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6279         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6280         the 1.0 format.
6282 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6284         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6285         some comments about the usage of the used_regs field.
6287         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6288         Fixes #469217.
6290 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6292         * appdomain.c: return NULL instead of throwing FileNotFoundException
6293         when LoadAssembly() fails.
6295 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6297         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6298         image if the owner is NULL.  Fixes the AOT failures.
6300 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6302         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6303         MonoGenericParam structure using memset so the image field is initialized
6304         as well.
6306 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6308         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6309         a plain store.
6311 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6313         * class.c (mono_class_setup_vtable_general): In the generic instance
6314         optimization, set method->slot for abstract virtual methods. Fixes part of
6315         #467834.
6317 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6319         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
6320         which signals that the unloading has started but all appdomain services must
6321         remain operational.
6323         * appdomain.c (mono_domain_unload): The initial state for unloading now
6324         is unloading_start and we switch to unloading after the managed call to
6325         AppDomain::DomainUnload has finished.
6327         The new unloading state has to be created because managed code in the
6328         DomainUnload event can depend on things like the threadpool still working.
6329         The domain must remain fully functional while the event executes.
6331         This shown as an issue due to Process::WaitForExit, which waits for
6332         async reads of stdout and stderr to complete. Since those are processed
6333         in the threadpool the code deadlocks because the DomainUnload callback 
6334         waits for the async read finished event, which should have been set by a
6335         threadpool job but has been discarded due to the domain been in unload
6336         state.
6338 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6340         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
6341         image must match.
6343 2009-01-21  Mark Probst  <mark.probst@gmail.com>
6345         * reflection.c (resolve_object): For fields, inflate the class and
6346         then get the field in the inflated class.
6348 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6350         * object-internals.h (struct _MonoException): Added a comment
6351         explaining the new use of trace_ips.
6353 2009-01-20  Mark Probst  <mark.probst@gmail.com>
6355         * generic-sharing.c (inflate_other_data): Inflate array methods
6356         correctly.
6358         * loader.c, class-internals.h: Rename search_in_array_class() to
6359         mono_method_search_in_array_class() and make it non-static.
6361 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6363         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
6364         Hopefully fixes #458168.
6366 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6368         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
6369         as it is performed elsewhere.
6371         Code is contributed under MIT/X11 license
6373 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
6375         * mono-perfcounters-def.h: Add counters for asp.net requests total and
6376         requests queued.
6377         * object.c (mono_raise_exception): Increment the exceptions total
6378         counter when an exception is thrown.
6379         * class-internals.h: Add a location for storing the total number of
6380         asp.net requests served.
6381         * mono-perfcounters.c: Implement update support for asp.net counters
6382         from the class libraries. Implement read support for asp.net counters
6383         and exceptions total counter.
6385 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
6387         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
6388         accessing klass->methods. Fixes #467385.
6390 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6392         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
6393         for byval arguments without an [Out] attribute. Fixes #467212.
6395         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
6396         Fix compilation under android.
6397         
6398         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
6399         processed, scan them directly after they are copied, to achieve better locality
6400         and cache usage.
6402         * socket-io.c: Applied patch from Koushik Dutta
6403         (koush@koushikdutta.com). Disable IPV6 when running under android.
6405 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
6407         * icall.c (ves_icall_InternalExecute): Add write barriers.
6409         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
6410         the GC code.
6412         * sgen-gc.c: Implement write barriers in IL code.
6414 2009-01-17  Geoff Norton  <gnorton@novell.com>
6416         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
6418 2009-01-17  Geoff Norton  <gnorton@novell.com>
6420         * image.c: When unloading the image->references table, there can be gaps
6421         in it.  Ensure that we iterate every entry to avoid leaking assembly references
6422         when unloading an appdomain.
6424 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
6426         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
6427         speed up ptr-in-nursery checks.
6429         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
6430         threads_lock () to prevent deadlocks.
6432         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
6433         does not need to be scanned during minor collections, since writes to it
6434         must use write barriers.
6436 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
6438         * metadata-verify.c: Add pe nt header verification.
6439         
6440 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6442         * gc.c: Fix a few warnings when using SGEN.
6444 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
6446         * metadata-verify.c: Add pe optional header verification.
6448 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
6450         * sgen-gc.c: Add support for user defined marker functions, used by
6451         MonoGHashTable to avoid registering a GC root for every hash node.
6453 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6455         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
6456         non-pinned roots into separate hashes to avoid having to traverse them
6457         in functions which are only interested in one kind.
6459 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6461         * metadata-verify.c: Add pe header machine field verification.
6462         
6463 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
6465         * metadata-verify.c: Add pe header size verification.
6467 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
6469         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
6470         using the GC, they don't contain references.
6472         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
6474 2009-01-13  Geoff Norton  <gnorton@novell.com>
6476         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
6477         AppDomains created on the native side can be cleaned up on the native side.
6479 2009-01-13  Geoff Norton  <gnorton@novell.com>
6481         * appdomain.c: Ensure that we call mono_context_init for the embedding api
6482         as well as the managed api.
6484 2009-01-13  Geoff Norton  <gnorton@novell.com>
6486         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
6487         with a MonoAppDomain initialized against it.
6489 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6491         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
6492         
6493         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
6495         * marshal.c: Avoid setting the exception clauses after a method has been entered 
6496         into the wrapper caches. Fixes #465700.
6498         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
6499         method builder.
6500         (mono_mb_create_method): Set the clauses from the method builder.
6502 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6504         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
6505         Patch from Makoto Kishimoto.
6507 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
6509         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
6510         encoding them as ROOT_DESC_COMPLEX.
6511         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
6513 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
6515         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
6516         no longer point to the nursery.
6518         * sgen-gc.c: Add a few comments/FIXMEs.
6519         
6520         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
6522         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
6523         initialization of the various _method variables thread safe. Fixes
6524         #465377.
6526 2009-01-12  Mark Probst  <mark.probst@gmail.com>
6528         * domain.c, domain-internals.h: Remove the shared_generics_hash
6529         and its lookup functions.
6531 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
6533         * socket-io.c:  Fixing the MSVC build. 
6535         Code is contributed under MIT/X11 license.
6537 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
6539         * metadata-verify.c: Add pe header watermark verification.
6541 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6543         * metadata-verify.c: Add lfanew verification.
6545 2009-01-12  Jb Evain  <jbevain@novell.com>
6547         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
6548         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
6550 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
6552         * socket-io.c: Fix the build.
6554         * environment.c: Fix an #ifdef.
6556 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6558         * threadpool.c (async_invoke_thread): Handle the wait function returning
6559         WAIT_IO_COMPLETION as well.
6560         (async_invoke_io_thread): Ditto.
6562 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
6564         * threads.c: Fixing the Windows build.
6566         Code is contributed under MIT/X11 license.
6568 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6570         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
6571         interrupt a wait.
6572         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
6573         the thread to wait again.
6575 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6577         * metadata-verify.c: Initial skeleton of the metadata verifier.
6579         * pedump.c: Add support for the metadata verifier.
6581         * verify-internal.h: Export the whole assembly metadata verifier function.
6583 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
6585         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
6587 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
6589         * Makefile.am: Upgrade dtrace-prelink.sh location.
6591 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6593         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
6594         well. Otherwise the shutdown deadlock that happens on unix will can happen
6595         as well.
6596         If the main thread code finishes too fast it's possible that the finalizer
6597         thread won't have executed yet, won't record itself as the finalizer thread
6598         and the shutdown sequence will wait on it forever.
6600 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
6602         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
6603         with MSVC.
6605 2009-01-08  Miguel de Icaza  <miguel@novell.com>
6607         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
6608         Robert Jordan for pointing this out.
6610 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
6612         * icall.c
6613         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
6614         ves_icall_System_IO_DriveInfo_GetDriveType.
6616 2009-01-07  Miguel de Icaza  <miguel@novell.com>
6618         * icall.c: Wrap calls to mono_strtod in CriticalSection
6619         invocations when using eglib, to work around #464316.
6621 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6623         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
6624         return value of GetCurrentDirectory to never access unitialized memory.
6626 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
6628         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
6629         return value of GetCurrentDirectory and expand the buffer if needed.
6631         Fixes #459094.
6633 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
6635         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
6636           Adding a call to mono_init_com_types.
6638         Code is contributed under MIT/X11 license.
6640 2009-01-07  Geoff Norton  <gnorton@novell.com>
6642         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
6643         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
6644         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
6645         be the value of the ip buffer.
6647 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6649         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
6650         interfaces_packed here.
6652         Fixes part of #463294.
6654 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6656         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
6658         Fixes part of #463294.
6660 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6662         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
6663         is a boxed complex as well.
6665         Fixes part of #463294.
6667 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
6669         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
6670         control if a methodspec should be created for the generic method definition from external assemblies.
6671         Caching of methodspec is done using the handleref hash table.
6673         Fixes #462592.
6675 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
6677         * loader.c (find_method): When searching the interfaces of a class
6678         check the transitive closure of implemented interfaces.
6680         Fixes #463303.
6682 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6684         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
6685         
6686 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
6688         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
6689         interfaces calculation to fill_valuetype_array_derived_types.
6691         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
6692         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
6693         for example.
6695         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
6696         interfaces for valuetypes if needed.    
6698         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
6699         for their basetype as well. Types are array expanded if rank is > 0.
6701         Fixes #400716.
6703 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
6705         * socket-io.h : Changing the signature of
6706           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
6707           the blocking state.
6709         * icall-def.h :  Changing the signature of
6710           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
6712         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
6713           For Windows only.  Avoid blocking when calling accept by
6714           querying for a connection via select.  The loop also queries
6715           the thread state every 1000 micro seconds for the thread
6716           stop state.  This will avoid the process hanging on shutdown
6717           when using a TcpChannel that is never connected to.
6719         Code is contributed under MIT/X11 license.
6721 2008-12-30  Marek Safar  <marek.safar@gmail.com>
6723         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
6725 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6727         * class.c (get_implicit_generic_array_interfaces): Extract common
6728         code to a helper function making it a lot easier on the eyes.
6730 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
6732         * class.c (get_implicit_generic_array_interfaces): If the internal
6733         enumerator is an interface inflate System.Object instead of itself.
6735         Fixes #461261.
6737 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
6739         * object.c (mono_runtime_invoke_array): Don't assert with
6740         byref nullable types.
6742         * marshal.c (mono_marshal_get_runtime_invoke): To handle
6743         byref nullables we unbox the object and store it on the
6744         stack. 
6745         We can't use the boxed object since it is the T of Nullable<T>
6746         and the boxed representation of a nullable it's underlying type
6747         or null.
6748         We could cheat and create a boxed nullable and use the same
6749         machinery of other byref VTs but this feels like a hack and
6750         using the stack has the bonus of reducing heap pressure.
6752         Fixes #461941.
6754 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
6756         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
6757         return value.
6759         Fixes #461867.
6761 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
6763         * icall-def.h : Adding an internal call definition for 
6764           System.Environment.internalBroadcastSettingChange.
6766         * icall.c : Adding a Windows only implementation to broadcast a 
6767           WM_SETTINGCHANGE when an environment variable has changed.
6769         Code is contributed under MIT/X11 license.
6771 2008-12-19  Mark Probst  <mark.probst@gmail.com>
6773         * class.c, class-internals.h: Made
6774         mono_class_has_parent_and_ignore_generics() non-static.
6776 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
6778         * image.c: deal with the mmap failing when loading an image.
6780 2008-12-17  Geoff Norton  <gnorton@novell.com>
6782         * threadpool.c: Ensure that the io_queue_lock is initialized
6783         in all circumstances, as we always attempt to cleanup against it.
6785 2008-12-17  Miguel de Icaza  <miguel@novell.com>
6787         * icall.c (ves_icall_System_Environment_get_Platform): For
6788         compatibility reasons for existing client code we will keep
6789         returning 4 for a while.   
6791         For how long will depend on the documentation being updated, and
6792         for us to give client code a chance to be updated.
6794         This reverts the original decison on #433108 since we did not
6795         catch roughly 33 instances of the broken code in our own source
6796         code base, we did not catch failures on the buildbots, and QA did
6797         not bring this as a problem.
6799         Only today I found some customer's code breaking due to our own
6800         class libraries not being fully updated and tracked it down to
6801         this change.  I am reverting it because if we could not even get
6802         our story straight in our own code base, how can we hope that our
6803         end user code be fixed?
6805         As of this morning, our Wiki page that documents how to detect
6806         Unix had not been fixed.    
6808 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
6810         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
6812         * class.c (mono_class_get_fields): Handle loading errors.
6814 2008-12-12 Mark Mason <mmason@upwardaccess.com>
6816         * 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.
6817         
6818 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6820         * mono-perfcounters.c: avoid warning.
6822 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6824         * reflection.c (ensure_runtime_vtable): Work on generic instances and
6825         make sure all interfaces have MonoClass::interface_id set.
6827         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
6828         method table is property set.
6830 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6832         * class.c: New function mono_class_setup_interface_id that setup
6833         MonoClass::interface_id if needed.
6835         * class-internals.h: Export new function.
6837 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
6839         * class.c: Add code to sanity check the vtable after setup_vtable_general
6840         has done it's work.
6842 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
6844         * icall.c: make Assembly.GetExecutingAssembly work properly when
6845         reflection is used to invoke the method.
6846         Bug #321781 fixed.
6848 2008-12-11  Mark Probst  <mark.probst@gmail.com>
6850         * metadata/generic-sharing.c: Look for constraints in all type
6851         arguments, not just the first one.
6853 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6855         * appdomain.c: return the correct CodeBase for an Assembly instance
6856         that was loaded from the shadow-copy directories.
6857         Bug #458190 fixed.
6859 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
6861         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
6863         * sgen-gc.c (check_object): New debugging helper function.
6865         * object.c: Fix calls to mono_value_copy_array ().
6867 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6869         * class.c (mono_class_setup_fields): If working on an inflated class
6870         first check if the generic definition did init with success.
6872         Fixes #445361.
6874 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6876         pedump.c (main): Fix a warning.
6878 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
6880         * object-internals.h : Adding a definition for 
6881           MonoReflectionComVisibleAttribute.
6883         * marshal.c (cominterop_com_visible) :  Method added to check the 
6884           ComVisible attribute of a class.
6886         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
6887           cominterop_raise_hr_exception added to consolidate common code 
6888           to raise hr exceptions.
6890         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
6891           if a managed class should support IDispatch.
6893         * marshal.c 
6894           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
6895           Added additional checks for managed object when getting 
6896           an IDispatch interface.
6898         Code is contributed under MIT/X11 license.
6900 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
6902         pedump.c (main): Handle mono_get_method () returning NULL. 
6904 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6906         * marshal.h: Fix a warning.
6908 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
6910         * marshal.c : Adding cominterop_release_all_rcws to release all
6911           runtime callable wrappers held by the runtime.
6913         * marshal.h : Adding declaration for cominterop_release_all_rcws.
6914           
6915         Code is contributed under MIT/X11 license.
6917 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
6919         * metadata.c (mono_image_alloc_lock): New helper function.
6920         (mono_image_alloc0_lock): Ditto.
6922         * metadata.c: Use the alloc_lock () helper functions for allocating
6923         memory from the image mempool.
6925 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
6927         * class.c (mono_class_from_generic_parameter): Document it's
6928         locking behavior. Fix double checked locking here, we stored in
6929         param->pklass a partially initialized MonoClass and no membar was used.
6931 2008-12-05  Marek Habersack  <mhabersack@novell.com>
6933         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
6934         (3) functions are present in the C library use them to do the
6935         job. If they are absent, make sure that the sum of int_part and
6936         dec_part is rounded before returning. This is necessary due to the
6937         division of dec_part by the power of 10 before the final addition
6938         is performed - if the result is not rounded in some cases it will
6939         yield invalid results.
6941 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
6943         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
6944         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
6945         instruction instead of a pointer constant.
6947 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
6949         * loader.c (mono_method_get_header): Do most of the work outside the
6950         loader lock, to avoid assembly load hook deadlocks.
6952         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
6953         (mono_metadata_parse_type_full): Ditto.
6955 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
6957         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
6958         Make the stack depth fixed. Ensure proper argument passing to the backtrace
6959         funtions. Finally, use a lock to produce well ordered output.
6961         The lock looks silly, as all calls to the corlib mempool should be guarded
6962         with the loader lock, but for some reason this fact doesn't help. 
6964         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
6966 2008-12-02  Mark Probst  <mark.probst@gmail.com>
6968         * socket-io.c: 64 bit big-endian fixes.
6970 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
6972         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
6973         targets that require strict compatibility between the types.
6975         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
6976         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
6977         Kill the strict argument and create a new one valuetype_must_be_boxed.
6979         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
6980         state that all valuetypes must be boxed.
6982         Fixes #448560.
6984 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
6986         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
6987         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
6989         Contributed under MIT/X11 license.
6991 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
6993         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
6994         the inflate_generic_type machinery should handle it.
6996         This avoids a crash when the field's flags is zero and it's type is
6997         a primitive.
6998         What happens is that mono_metadata_parse_type_full will see that opt_attrs
6999         is zero and will return one of the cached built-in primitive types. Since
7000         those types live in read-only memory, the code that copies it crashes.  
7002 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7004         * object.c: Don't put function descriptors into generalized IMT
7005         thunks.
7007 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7009         * class.c: Enable generic code sharing on PPC64.
7011 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7013         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7014         from mini/mini.c.
7016         * generic-sharing.c: Allocate the method template slists from the
7017         image mempool so it doesn't leak.
7019 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7021         * class.c (generic_array_methods): Release the linked list.
7023 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7025         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7026         invocation to g_utf16_to_utf8().
7028 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7030         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7031         arguments on big endian archs.
7033 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7035         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7036         the type name (test added in corlib).
7038 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7040         * pedump.c: initialize perf. counters. Fixes a segv.
7042 2008-11-25  Martin Baulig  <martin@ximian.com>
7044         * mono-debug-debugger.c
7045         (mono_debugger_runtime_invoke): Return the exception object if an
7046         exception was thrown.  Visual Studio displays the exception object
7047         in the locals window.
7049 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7051         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7052         ftnptr.
7054 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7056         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7057         MONO_TYPE_U are sizeof (gpointer), too.
7059 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7061         * marshal.c (mono_type_native_stack_size): Fixed size and
7062         alignment for reference types.
7064 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7066         * class.c (mono_class_generic_sharing_enabled): Disable generic
7067         code sharing for PPC64.
7069 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7071         * icall.c (mono_method_get_equivalent_method): Make sure
7072         method->klass->methods is inited before looping over it.
7074 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7076         * object.c: when calling ExecuteAssembly in a newly created domain,
7077         the configuration file and application base are already set up.
7078         Bug #446353 take 2 fixed.
7080 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7082         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7083         Fixes #444715. Fix a warning.
7085 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7087         * appdomain.c: write the full path of the assembly to the .ini file
7088         created when "shadow-copying"
7089         Bug #446353 fixed.
7091 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7093         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7094         if signature==FALSE.
7096 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7098         * marshal.h : Fix the cygwin build.
7099            marshal.c:12442: undefined reference to `_IID_IMarshal'
7100           
7101         Code is contributed under MIT/X11 license.
7103 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7105         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7106           free threaded marshaler when QueryInterface is called on a COM callable
7107           wrapper requesting the IMarshal interface.
7108           
7109         Code is contributed under MIT/X11 license.
7111 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7113         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7115         * reflection.c (mono_type_get_object): Special case the very common
7116         void type.
7118         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7119         hold typeof(void).
7121 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7123         * process.h : Adding method declaration for
7124           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7125           
7126         * process.c : Adding implementation for
7127           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7128           
7129         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7130           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7132         Code is contributed under MIT/X11 license.
7134 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7136         * appdomain.c (unload_thread_main): Clean up threadpool by
7137         calling mono_thread_pool_remove_domain_jobs.
7139         * domain-internals.h (struct _MonoDomain): Add new fields to
7140         help coordinate the cleanup of the threadpool.
7142         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7143         that cleans up the threadpool of all jobs associated with an appdomain.
7144         It does that by cleaning up the queues and making sure all active
7145         threads are accounted.
7147         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7148         unloaded or in the process of. Take this is such way that there is
7149         no race condition between another thread starting the unload and the
7150         current thread acknowledging it.
7152         * threadpool.c (async_invoke_thread): Same.
7154         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7155         firing the new thread.
7157         * threadpool.c (start_tpthread): Same.
7159         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7161         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7163 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7165         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7166         Add support for DuplicateHandle.
7167         
7168         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7169         Add support for DuplicateHandle.
7170         
7171         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7172         Add support for DuplicateHandle.
7174         Code is contributed under MIT/X11 license.
7176 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7178         * class-internals.h: Make min_align into a whole byte.
7180         * class.c: Set min_align for SIMD types to 16.
7182 2008-11-05  Geoff Norton  <gnorton@novell.com>
7184         * attach.c: Default the attacher to enabled for all cases including
7185         embedded.
7187 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7189         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7190         change r117650.
7192 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7194         * monitor.c, monitor.h: New function for querying offsets of
7195         members of MonoThreadsSync.
7197 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7199         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7200         to speed up this function and to avoid the boundless memory growth caused by
7201         the signature_dup () calls.
7203 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7205         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7206         wrapper.
7208         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7209         by 1 bit.
7211         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7213 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7215         * appdomain.c:
7216         * domain-internals.h: made mono_set_private_bin_path_from_config()
7217         "internal".
7218         * object.c: call the above function after setting the configuration
7219         file path for the root domain.
7220         Fixes bug #314478.
7222 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7224         * assembly.c: when the assembly is loaded from an absolute path, end
7225         basedir with a directory separator.
7226         Bug #440781 fixed.
7228 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7230         * monitor.c (mono_monitor_get_fast_enter_method): If
7231         CompareExchange is not available, don't create the fastpath
7232         instead of asserting.  (The method is missing in the 1.1 profile.)
7234 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7236         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7238         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7239         Monitor.Exit IL fastpaths.
7241 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7243         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7245 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7247         * class.c (mono_class_create_from_typedef): Added Vector2l.
7249 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7251         * class.c (mono_class_create_from_typedef): Added Vector2d.
7253 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7255         * appdomain.c: translate \ into / for cache_path.
7256         * domain-internals.h: new mono_is_shadow_copy_enabled().
7257         * icall.c: (fill_reflection_assembly_name) do the same path
7258         manipulations that get_code_base does.
7259         (get_code_base) use mono_is_shadow_copy_enabled.
7261 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7263         * appdomain.c: shadow-copied assemblies go to CachePath +
7264         ApplicationName when both are set. DynamicBase has nothing to do with
7265         shadow copies.
7266         Bug #406877 fixed.
7268 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7270         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7271         STANDALONESIG table.
7273         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7274         standalone signatures.
7276         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7277         comparison code: instead of comparing the signatures using a custom
7278         equals function, transform them to a common signature and compare that. This
7279         works better with AOT.
7281 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7283         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7285         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7286         call for generic instances.
7287         (mono_class_setup_properties): Call setup_properties () before accessing
7288         gklass->properties.
7290         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7291         over the virtual methods of a class using metadata if possible, avoiding the
7292         creation of MonoMethod's for non-virtual methods.
7293         
7294         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7295         get_virtual_methods () to iterate over the virtual methods of classes.
7297 2008-10-25  Martin Baulig  <martin@ximian.com>
7299         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7301 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7303         * class.c (mono_class_create_from_typedef): Added Vector4i.
7305 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7307         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7308         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7309         special-casing applies to eliminate the call completely.
7311 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7313         * class.c (mono_class_create_from_typedef): Added Vector8s.
7315 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7317         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7319 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7321         * icall.c: get rid of annoying warning.
7323 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7325         * threadpool.c: in 1.x, if you change the background status of the
7326         threadpool thread, it's not reset.
7327         Remove unnecessary calls to SetState.
7329 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7331         * threadpool.c: asynchronously create a set of idle threads upon first
7332         use of the threadpool. SetMinThreads will now start the appropriate
7333         number of idle threads if they are not already running. The default is
7334         1 threadpool thread per CPU. Increased the maximum number of threads
7335         per CPU to 10.
7337 2008-10-22  Martin Baulig  <martin@ximian.com>
7339         Revert r116521 from Zoltan, it breaks the debugger:
7341         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7342         over the virtual methods of a class using metadata if possible, avoiding the
7343         creation of MonoMethod's for non-virtual methods.
7344         
7345         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7346         get_virtual_methods () to iterate over the virtual methods of classes.
7348 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7350         * threads.c: when creating a threadpool thread, set its state to
7351         'background'.
7352         * threadpool.c: reset the background state of a threadpool thread
7353         after finishing each work item
7354         Bug #437888 fixed.
7356 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7358         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
7359         
7360         * class.c (mono_class_setup_vtable_general): Add an optimized version for
7361         generic instances which works by inflating the methods in the container
7362         class's vtable.
7364         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
7365         variant which doesn't make a copy if no inflation was done.
7366         (mono_class_setup_fields): Use it.
7368         * metadata.c (mono_metadata_get_shared_type): New helper function to
7369         return a shared instance of a given MonoType.
7371         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
7372         a copy of most non-generic types.
7374 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
7376         * threadpool.c: remove one more GetSystemInfo () call.
7378 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7380         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
7381         use the code in mono-proclib.h to get processor information.
7383 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7385         * appdomain.c: fixed the logic that determines whether assemblies in a
7386         directory are "shadow-copied" or not. Bug #433483 fixed.
7388 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
7390         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
7391         warning.
7393 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7395         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
7396         returning a vtype.
7398         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
7399         reflection.c: Use mono_field_get_name () for accessing a field's name.
7401         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
7402         class.c
7404         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
7405         field.
7407         * loader.c (find_method_in_class): Reenable the metadata optimization by
7408         not using it for generic instances.
7410         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
7411         data/def_type fields from MonoClassField into a separate structure.
7412         (struct MonoClassField): Remove data/def_type fields.
7413         (struct _MonoClass): Add a 'field_def_values' array to store the default
7414         values/RVA for fields.
7416         * class.c reflection.c: Update after the changes.
7417         
7418         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
7419         for accessing field->data.
7421         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
7423         * loader.c (find_method_in_class): Revert the last change for now as
7424         it breaks Mono.C5 unit tests.
7426         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
7427         'field_generic_types' and 'field_objects' which contain the information
7428         previously stored in MonoInflatedField.
7429         (MonoInflatedField): Delete.
7430         (struct _MonoClassField): Delete 'generic_info' field.
7432         * reflection.c: Store the information which was previously in 
7433         field->generic_info in MonoDynamicGenericClass instead.
7435         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
7436         MonoClassField changes.
7438 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
7440         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
7441         store the value inside the data array of the MonoMethodWrapper.
7442         This saves memory, is faster and fixes the lifetime issues (methods
7443         were never removed from the hash previously). May also fix bug#436996.
7445 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
7447         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
7448         generic instances, compute the type from the generic definition instead of
7449         looking in field->generic_info.
7451         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
7452         for inflated fields, the only user was get_fieldref_token () which no
7453         longer needs it.
7455         * class.c (mono_class_init): Revert the last change as it seems to cause
7456         crashes.
7458         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
7459         bytes on 64 bit platforms.
7461         * object.c (mono_class_create_runtime_vtable): Fix a warning.
7462         
7463         * object.c (mono_class_create_runtime_vtable): Don't initalize
7464         field->data/field->def_type here, it is done lazily by 
7465         mono_class_get_field_default_value ().
7467         * icall.c (ves_icall_get_enum_info): Call 
7468         mono_class_get_field_default_value () instead of directly accessing
7469         field->data and field->def_type.
7471         * object.c (get_default_field_value): Ditto.
7473         * class.c (mono_field_get_data): Ditto.
7474         
7475         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
7476         call for generic instances.
7478         * loader.c (find_method_in_class): If klass != from_class, then inflate
7479         the method with the context of from_class, since the caller assumes this.
7481 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
7483         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
7484         for accessing method->slot.
7486 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
7488         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
7490 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
7492         * class.c (mono_method_get_vtable_index): Use
7493         mono_method_get_vtable_slot () for accessing method->slot.
7495         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
7496         accessing klass->methods.
7498         * class.c (mono_method_get_vtable_slot): New helper function.
7499         (mono_class_get_vtable_entry): Ditto.
7500         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
7501         accessing method->slot.
7503         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
7504         method to get_inflated_method ().
7506         * class.c (mono_class_get_inflated_method): New helper method to obtain
7507         a method of an inflated class without calling setup_methods ().
7508         (mono_class_get_cctor): Use get_inflated_method.
7510         * generic-sharing.c (mono_class_get_method_generic): Ditto.
7511         
7512         * marshal.c image.c: Lazily create all the marshal caches.
7514         * image.c (mono_image_init): Move initialization of runtime_invoke
7515         caches to marshal.c.
7517         * marshal.c (get_cache): New helper function to lazily initialize a 
7518         wrapper cache.
7519         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
7521         * debug-helpers.c (mono_method_full_name): Include generic arguments.
7523 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
7525         * loader.c: fixed check for interface type.
7527 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
7529         * appdomain.c: check for NULL setup before it's referenced.
7532 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
7534         * class.c: remove the unused old vtable setup code.
7536 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
7538         * class.c: don't depend on interface order in
7539         setup_interface_offsets (bug #435777).
7540         * reflection.c: sort the InterfaceImpl table (patch from
7541         Jb Evain  <jbevain@novell.com>).
7543 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
7545         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
7546         the low level assemblies lock.
7548 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
7550         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
7551         object.c, reflection.c, socket-io.c, threads.c: introduced
7552         mono_framework_version () to return the major framewrok version,
7553         changed the code that was using more complex patterns to use it.
7554         Return the correct value for PlatformID for OSX.
7556 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
7558         * icall-def.h, process.h, process.c: added an icall to get info about
7559         processes using mono-proclib.
7561 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
7563         * mono-perfcounters.c: use the mono-proclib functions to
7564         access process information.
7566 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
7568         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
7569         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
7570         reflection.c: remove rawbuffer usage: mmap support is more sanely
7571         provided by utils/mono-mmap.
7573 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
7575         * gc.c: use posix semaphores when possible so that
7576         mono_gc_finalize_notify() is signal safe.
7578 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
7580         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
7581         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
7582         be #ifdef-ed out, the linker will remove the rest.
7584         * marshal.c: Implement DISABLE_COM.
7586         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
7588 2008-10-11  Miguel de Icaza  <miguel@novell.com>
7590         * locales.c (string_invariant_compare_char): Optimization: do not
7591         call g_unichar_type unless we actually need the information.
7593 2008-10-10  Mark Probst  <mark.probst@gmail.com>
7595         * object.c, class-internals.h: Also create remoting trampolines
7596         for generic methods.  Pass the domain to the remoting trampoline
7597         creation function, too.
7599 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
7601         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
7603 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7605         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
7606         Vector4ui.
7608 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7610         * assembly.c:
7611         * locales.c: remove the use of g_strdown. Fixes bug #322313.
7613 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
7615         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
7616         for the least possible amount of time (extending the fix in r113458).
7618 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
7620         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
7622 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
7624         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
7625         as possible simd intrinsic types.
7626         Optimized the test to check for the common prefix first.
7628 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
7630         * class.c: back out part of a broken optimization committed on
7631         May 23th (bug #433908).
7633 2008-10-09  Mark Probst  <mark.probst@gmail.com>
7635         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
7636         Win32.  Should fix #432388 for most cases until we have the new
7637         profiler on Win32.
7639 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
7641         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
7642         instead of using inst->id so the hash is stable for AOT.
7644 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7646         * appdomain.c:
7647         * icall.c: create a .ini file for shadow-copied assemblies that
7648         contains the location of the original assembly. Use this to return the
7649         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
7650         Also fix the number of '/' for windows when returning the CodeBase.
7651         Fixes bug #430920.
7653 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7655         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
7657         Code is contributed under MIT/X11 license.
7659 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7661         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
7662           if if the class vtable needs initialized.
7664         Code is contributed under MIT/X11 license.
7666 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
7668         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
7669           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
7670           STRING->BSTR, and CLASS->INTERFACE.
7672         Code is contributed under MIT/X11 license.
7674 2008-10-07  Marek Habersack  <mhabersack@novell.com>
7676         * sysmath.h: changed the declaration of the
7677         ves_icall_System_Math_Round2 icall by adding an extra
7678         away_from_zero parameter.
7680         * sysmath.c (ves_icall_System_Math_Round2): added support for
7681         away from zero rounding. The icall now takes an extra boolean
7682         parameter to signal that away from zero operation is requested.
7684 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
7686         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
7687         the delegate klass so it can work with full-aot.
7688         (mono_marshal_get_delegate_end_invoke): Ditto.
7689         (mono_marshal_get_delegate_invoke): Ditto.
7691 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
7693         * gc.c, attach.h, attach.c: remove a bad pattern:
7694         add_finalizer_callback () is not implemented correctly, it can't
7695         without adding more overhead to the finalizer loop and it's not
7696         even needed, since we know exactly what we need to call, so there is
7697         no need to do so through an expensive function pointer.
7699 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
7701         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
7702         for the no-gc case.
7703         * attach.c (mono_attach_init): Remove the #ifdef.
7705 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
7707         * attach.c (mono_attach_init): Don't use
7708         mono_gc_add_finalizer_thread_callback when compiling without GC.
7709         Fixes #432306.
7710         
7711         Code is contributed under MIT/X11 license.
7713 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
7715         * class.c (mono_class_create_from_typedef): Remove the 
7716         #ifndef DISABLE_SIMD stuff.
7718 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
7720         * class-internals.h (MonoClass): Added simd_type bit field.
7722         * class.c (mono_class_create_from_typedef): Check if type is a simd
7723         intrinsic.
7725 2008-10-03  Mark Probst  <mark.probst@gmail.com>
7727         * object.c (mono_method_add_generic_virtual_invocation): Only add
7728         instantiations to the thunk whose count is at least as large as
7729         the threshold.
7731 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
7733         * icall.c: changed the Type of the exception thrown when trying to
7734         invoke a constructor on an abstract class. Part of the fix for bug
7735         #324185.
7737 2008-10-02  Mark Probst  <mark.probst@gmail.com>
7739         * class.c, class-internals.h (mono_method_get_vtable_index): New
7740         function which returns the index into the vtable and properly
7741         handles inflated virtual generic methods.
7743 2008-10-01  Mark Probst  <mark.probst@gmail.com>
7745         * object.c, domain.c, object-internals.h, domain-internals.h:
7746         Generalize IMT thunk machinery to also handle thunks for virtual
7747         generic method invokes.  When a virtual generic method is invoked
7748         more than a number of times we insert it into the thunk so that it
7749         can be called without lookup in unmanaged code.
7751         * generic-sharing.c, class-internals.h: Fetching a
7752         MonoGenericInst* for a method from an (M)RGCTX.
7754 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
7756         * marshal.c (emit_marshal_string): Applied a variant of a patch by
7757         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
7758         marshalling. Fixes #431304.
7760 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
7762         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7763           handle when ref is specified without In or Out.
7765         Code is contributed under MIT/X11 license.
7767 2008-09-30  Mark Probst  <mark.probst@gmail.com>
7769         * loader.c (mono_get_method_constrained): Don't expand method with
7770         the class's context, because it's already a method of that class.
7772 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
7774         * attach.c : should be correct build fix.
7776 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
7778         * attach.c: Fix the previous change.
7780 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
7782         * attach.c : quick w32 build fix.
7784 2008-09-27  Miguel de Icaza  <miguel@novell.com>
7786         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
7787         crashes MonoDevelop: #430455.
7789 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
7791         * domain-internals.h (struct _MonoDomain): Move most fields used only by
7792         the JIT do MonoJitDomainInfo in ../mini/mini.h.
7794         * domain.c: Remove initialization/cleanup of the removed fields.
7796 2008-09-27  Mark Probst  <mark.probst@gmail.com>
7798         * class.c (mono_class_generic_sharing_enabled): Enable generic
7799         code sharing for PPC.
7801 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
7803         * attach.c : Fixing the Windows builds.
7805         Code is contributed under MIT/X11 license.
7807 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7809         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
7810         the default generic sharing mode to 'all'.
7812 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7814         * generic-sharing.c, class-internals.h: New function for checking
7815         whether a method needs a static RGCTX invoke wrapper.  A few
7816         funtions moved from mini/generic-sharing.c.
7818         * icall.c: New function used.
7820 2008-09-25  Mark Probst  <mark.probst@gmail.com>
7822         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7823         Static RGCTX invoke wrapping applies to value type methods, too.
7825         * class.c (mono_class_setup_vtable_general): In generic-shared
7826         value types, wrap methods with a static RGCTX invoke wrapper.
7828 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
7830         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
7831         osx build.
7833 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
7835         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
7836         register a callback which is called when the finalizer thread is woken
7837         up.
7838         (finalizer_thread): Call the callback if it exists.
7840         * attach.h attach.c: New files, implementing the attach mechanism.
7842         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
7843         
7844         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
7845         by the previous change.
7847 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
7849         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
7850         loader.c, marshal.c, metadata-internals.h, metadata.c,
7851         method-builder.c, object.c, reflection.c: introduced specific functions
7852         to allocate from the domain and image mempools and cleaned up most of
7853         the code to use them (still missing a few in reflection.c).
7854         Keep the loader bytes counter updated.
7856 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
7858         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
7859         loader-related counters.
7861 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
7863         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
7864         added more MS-compatible counters.
7866 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
7868         * class.c (mono_class_setup_fields): Call setup_fields before accessing
7869         class->blittable. Fixes #428217.
7871 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
7873         * reflection.c (mono_image_get_field_on_inst_token): Call 
7874         field_encode_signature () since that handles custom modifiers too.
7875         Fixes #424663.
7877 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
7879         * reflection.c (add_custom_modifiers): New helper function to merge custom
7880         modifiers stored in objects to a MonoType.
7881         (fieldref_encode_signature): Encode custom modifiers.
7882         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
7883         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
7885 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
7887         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
7888         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
7889         64-bit IL only images because imports are not resolved for IL only images.
7890         Special thanks to Bill Holmes for finding this bug and testing the patch.
7891         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
7893         Contributed under MIT/X11 license.
7895 2008-09-19  Miguel de Icaza  <miguel@novell.com>
7897         * mono-config.c (dllmap_start): Add support for the bits keyword
7898         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
7900 2008-09-19  Mark Probst  <mark.probst@gmail.com>
7902         * reflection.c (inflate_mono_method): When the class the method is
7903         to be inflated for is itself not inflated, just return the method.
7905 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
7907         * mono-perfcounters.c: use more user friendly process instance names.
7909 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
7911         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
7912           handle "[in] ref" and "[in][out] ref" cases.
7914         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
7915           to mono_mb_create_method.  This was causing problems calling native to
7916           managed passing Variants by value.
7918         Code is contributed under MIT/X11 license.
7920 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
7922         * class.c (can_access_internals): Call mono_assembly_load_friends ()
7923         before accessing the friend_assembly_names field.
7925         * assembly.c (mono_assembly_load_friends): Make this callable multiple
7926         times.
7927         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
7928         called lazily when it is needed.
7930         * metadata-internals.h (struct _MonoAssembly): Add 
7931         'friend_assembly_names_inited' flag.
7933 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
7935         * mono-perfcounters-def.h: fix the types of a few counters.
7936         * mono-perfcounters.c: implemented the instance names getter
7937         and a few bugfixes.
7939 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
7941         * culture-info-table.h : regenerated.
7943 2008-09-17  Robert Jordan  <robertj@gmx.net>
7945         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
7946         context bound objects. Fixes #415577.
7948         Code is contributed under MIT/X11 license.
7950 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
7952         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
7953         implementation (bug #423582).
7955 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
7957         * object.c (mono_object_get_virtual_method): Handle the case method->slot
7958         is not set. Fixes #426309.
7960 2008-09-16  Jb Evain  <jbevain@novell.com>
7962         * class.c (mono_class_from_name): fix the exported type look up
7963         when the type is defined in a referenced assembly.
7965 2008-09-16  Jb Evain  <jbevain@novell.com>
7967         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
7968         increment the next index counter on each iteration to make that work
7969         for more than one type forwarder. Unmanaged part to fix #422929.
7971 2008-09-15  Mark Probst  <mark.probst@gmail.com>
7973         * object-internals.h: enum ComInterfaceType in
7974         MonoInterfaceTypeAttribute is guint32, not guint16.
7976 2008-09-12  Mark Probst  <mark.probst@gmail.com>
7978         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
7979         writing code.
7981 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7983         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
7984         not gboolean.
7986 2008-09-11  Mark Probst  <mark.probst@gmail.com>
7988         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
7989         Endianness fixes for MonoSymbolFileOffsetTable.
7991 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
7993         * process.c (complete_path) : Removing quotes from the 
7994           input path.  The glib file routines do not handle file paths
7995           that have quotes around them.
7997         Code is contributed under MIT/X11 license.
7999 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8001         * socket-io.h : Adding a comment to provide locations where 
8002           changes to MonoSocketAsyncResult need to be synced.
8004         Code is contributed under MIT/X11 license.
8006 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8008         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8009         parameters as well. Fixes #425001.
8011 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8013         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8014         windows build.
8016 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8018         * console-io.c: Add support for tracking the window size if it
8019         changes.
8021         The setup is very simple: the TtySetup function will now return a
8022         pointer to a location in memory that tracks the current console
8023         size.  The managed code checks its current value every time its
8024         queried against the last value set, and updates accordingly.
8026         With this setup we can work with multiple consoles, and we do not
8027         require to poke into managed code from a signal handler.
8029         Additionally, the environment for COLUMNS and LINES is now handled
8030         in unmanaged code.
8032         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8034 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8036         * marshal.c (mono_type_native_stack_size): Treat
8037         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8039 2008-09-04  Jb Evain  <jbevain@novell.com>
8041         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8042         to nullables.
8044 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8046         * verify.c (verify_type_compatibility_full): Revert change
8047         to allow converting a native int to unmanaged pointer be verifiable
8048         under non-strict mode.
8049         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8051         * verify.c: Added some TODOs.
8053 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8055         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8056           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8057           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8059         Code is contributed under MIT/X11 license.
8061 2008-09-02  Jb Evain  <jbevain@novell.com>
8063         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8065 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8067         reflection.c (typebuilder_setup_fields): Handle classes with
8068         explicit size.
8070 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8072         class.c (mono_class_setup_events): Add memory barrier due to
8073         double checked locking.
8074         
8075         class.c (mono_class_setup_properties): Same.
8077 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8079         * class.c (mono_class_is_assignable_from): Fix the build.
8080         
8081         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8082         before accessing klass->interface_bitmap. Fixes #421744.
8084 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8086         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8087         the runtime into no-exec mode, useful when running the AOT compiler.
8089         * appdomain.c gc.c object.c: Avoid executing managed code when running
8090         in no-exec mode.
8091         
8092         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8094         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8095         special case when the mono_assembly_loaded () returns NULL because the 
8096         search hook is not installed.
8098 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8100         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8101         crashes in bstr marshalling on linux.
8103 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8105         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8106         with more than one parameter.
8108 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8110         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8111         start/stop flow control as well when turning off ICANON (allows
8112         C-s and C-q to be read by Console.ReadKey).
8114 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8116         * class.c (mono_class_init): Move the initialization of nested classes
8117         into mono_class_get_nested_types (). Fixes #418433.
8119         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8120         flag.
8122         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8123         iterating tough the nested classes of a class.
8125 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8127         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8128         on arm.
8130 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8132         * console-io.c (sigcont_handler): Support signal chaining for
8133         SIGCONT.
8135         (console_set_signal_handlers): Use best practices with sigaction,
8136         clear the structure before using it. 
8138 2008-08-22  Robert Jordan  <robertj@gmx.net>
8140         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8141         Fix the Windows build.
8143 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8145         * class.c (mono_class_generic_sharing_enabled): Make the default
8146         sharing mode 'corlib'.
8148 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8150         * console-io.c (console_set_signal_handlers): Fix a warning.
8152         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8153         method normally, the JIT will take care of avoiding recursion.
8155 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8157         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8159         Code is contributed under MIT/X11 license.
8161 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8163         * console-io.c (sigcont_handler): We need to restore the entire
8164         termios state, not only the original settings, as things like echo
8165         can be controlled after this (Booish exposes this issue with its
8166         own ReadLine implementation).
8168         Additionally, we need to set the terminal back into keypad_xmit
8169         mode.
8170         
8171         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8172         string as a paramter as well.   Otherwise we get different
8173         keyboard sequences.
8175 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8177         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8178         delegates with byref out parameter passing. Fixes #351520.
8180         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8181         a generic context.
8182         (mono_type_get_desc): Add the type arguments for GENERICINST.
8183         (mono_method_full_name): Stringify the class name using mono_type_full_name
8184         so it picks up generic arguments.
8186 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8188         * console-io.c: Removed debug output.
8190 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8192         reflection.c (mono_reflection_create_runtime_class): Alloc
8193         the nested classes linked list using the dynamic image mempool.
8194         Fixes leak in corlib compilation.
8196 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8198         * console-io.c: Fix incredibly annoying behavior on the console
8199         after resuming execution after control-z.   This affected every
8200         console application.
8202 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8204         * mempool-internals.h: Header for mono private mempool functions. The first
8205         two function are for allocating glib linked lists using pools.
8207         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8209         * Makefile.am: Added mempool-internals.h.
8211 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8213         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8214         (mono_domain_free): Ditto.
8216         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8217         be used by the JIT to store its domain-specific information, instead of putting
8218         it directly into MonoDomain.
8220         * domain.c (mono_install_create_domain_hook): New helper function to install
8221         a hook which initializes domain->runtime_info.
8223         * domain.c (mono_install_free_domain_hook): Ditto.
8224         
8225 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8227         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8228         asserting if the ares parameter is null.
8230         * mono-perfcounters.c: Fix warnings.
8232         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8233         is not needed, don't check for interruptions either.
8234         (mono_marshal_get_delegate_end_invoke): Ditto.
8236 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8238         * mono-perfcounters.c (predef_readonly_counter): added support for
8239         reading the ASP.NET Requests Queued counter from another process.
8241 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8243         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8244         MonoImage to simplify the AOT code.
8246 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8248         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8249         marshalling. Fixes #416078.
8251 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8252         
8253         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8254         it is set, looking up the icall address is deferred to the JIT, since 
8255         in embedded scenarios, the icall might not be registered in the runtime
8256         doing the AOT compilation. Backported from the 2.0 branch.
8258 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8260         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8261         Fixes #415621.
8263 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8265         * Makefile.am: added support for cross-compilation.
8267 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8269         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8271 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8273         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8275 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8277         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8278         mono-perfcounters.c: performance counters implementation.
8280 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8282         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8283         to gpointer, letting the AOT code decide what to store in it.
8285 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8287         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8288           mono_class_setup_methods if the methods are not initialized.
8290         Code is contributed under MIT/X11 license.
8292 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8294         * verify.c: Remove some debug code I commited by accident.
8296         * verify.c (mono_method_is_valid_in_context): Change the return value
8297         to make possible to distinguish between invalid and unverifiable.
8299         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8300         methods.
8302 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8304         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8305         constraints. Fixes regression in gtest-253.
8307 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8309         * verify.c (mono_verifier_verify_class): Don't allow generic types
8310         with explicit layout.
8312         * verify.c (mono_method_verify): Check locals and argument types.
8314 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8316         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8317         wait if the thread is in StopRequested state.
8319         * class.c (mono_class_from_name): Refactor the module searching code into
8320         a separate function so it can be reused in the AOT case too.
8322 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
8324         * verify.c (mono_type_is_valid_in_context): Improve the error message.
8325         Check both the type and it's generic type definition for loader errors.
8326         
8327         * verify.c (mono_method_is_valid_in_context): Don't generate another
8328         error when a type errors occur, this leads to the wrong exception been
8329         thrown.
8331 2008-07-28  Dick Porter  <dick@ximian.com>
8333         * icall-def.h
8334         * process.c
8335         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
8336         New internal calls to duplicate and close a process handle.
8338 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
8340         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
8342 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
8344         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
8346 2008-07-27  Robert Jordan  <robertj@gmx.net>
8348         * class.c (mono_class_init): Don't compute class.has_finalize for
8349         valuetypes. Fixes #412477.
8351 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
8353         * verify.c: Implement constraint equivalence checking.
8354         This is required when a generic parameter is used as
8355         argument to a constrained one.
8357         Fixes #410637.
8359 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
8361         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8363         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
8365         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
8366         synch with managed object layout.
8368 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8370         * verify.c (do_branch_op): Handle valuetypes and generic
8371         arguments properly.
8373         * verify.c (do_cmp_op): Same.
8375         Fixes #410383.
8377 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8379         * generic-sharing.c: Fix memory leaks.
8381         * class.c, class-internals.h: Make
8382         mono_class_inflate_generic_type_with_mempool() non-static.
8384 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
8386         * pedump.c (dump_verify_info): Dump full class name.
8388 2008-07-24  Mark Probst  <mark.probst@gmail.com>
8390         * generic-sharing.c: Removed some old code that didn't do anything.
8392 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
8393         * profiler.c: Added runtime_initialized_event,
8394         mono_profiler_install_runtime_initialized and
8395         mono_profiler_runtime_initialized. This new hook tells the profiler
8396         when the runtime is sufficiently initialized to be able to call
8397         mono_thread_attach on the root appdomain.
8398         * profiler.h, profiler-private.h: Likewise.
8400 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8402         * verify.c (do_cast): Do boxing for generic arguments as well.
8404         * class.c (is_nesting_type): Drop generic instantiations before
8405         checking for nesting.
8407         * class.c (can_access_instantiation): Allow access to generic
8408         arguments.
8410 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
8412         * verify.c (verify_class_for_overlapping_reference_fields):
8413         On some cases, the field size might be zero, guard against that.
8414         Fix the explicit layout check to work as expected.
8416 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
8418         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
8419         mono_thread_resume () during shutdown, since the thread we want to abort
8420         might be suspended.
8422 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
8424         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
8425         warning.
8427         * debug-mono-symfile.c: Fix a warning.
8429         * mono-perfcounters.c (get_cpu_times): Fix a warning.
8431         * object.c (mono_class_vtable): Check if exception_type is set, and return
8432         NULL as defined by the function comments.
8434 2008-07-22  Mark Probst  <mark.probst@gmail.com>
8436         * mempool.c: Use malloc for every single mempool allocation if the
8437         configure option is set.  This makes it easier to track mempool
8438         allocations with tools like Valgrind.
8440 2008-07-22  Jb Evain  <jbevain@novell.com>
8442         * reflection.c (create_dynamic_mono_image): emit the same
8443         metadata version that SL2 does when creating a SL2 image.
8445 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
8447         * icall-def.h:
8448         * icall.c: New icall System.Enum:get_hashcode. This function
8449         avoids the overhead of boxing the enum to the underlying type.
8451 2008-07-21  Mark Probst  <mark.probst@gmail.com>
8453         * reflection.c (mono_method_get_object): Don't let static RGCTX
8454         invoke wrappers get into MonoReflectionMethods.
8456 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
8458         * object-internals.h:
8459         * object.c: New mono_runtime_class_init_full function
8460         that makes throwing the exception optinal.
8462         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
8463         for the case where the exception object is supplied.
8465 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
8467         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
8468         old ld versions.
8470         Contributed under MIT/X11 license.
8472 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8474         * string-icalls.c (ves_icall_System_String_InternalSplit):
8475         Optimize array allocation by caching the MonoClass of the
8476         array type.
8478         * icall.c (ves_icall_Type_GetMethodsByName): Same.
8480         * reflection.c (mono_param_get_objects): Same.
8482 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
8484         * icall-def.h:
8485         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
8486         It inflates the given type using the class context.
8488 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
8490         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
8491         the vtable if it already exists.
8493         * object-internals.h: Add mono_class_try_get_vtable as part of the
8494         internal API.
8496         * reflection.c (mono_type_get_object): Use the MonoObject from the
8497         vtable when possible. Reduces locking contention on reflection heavy
8498         code.
8500 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
8502         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
8503         g_bit_nth_msf () since that macro is not implemented in eglib.
8505 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
8507         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
8508         on platforms which do not support it.
8510 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
8512         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
8514 2008-07-11  Martin Baulig  <martin@ximian.com>
8516         * mono-debug-debugger.h
8517         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
8519         * mono-debug-debugger.c
8520         (_mono_debugger_interruption_request): New global volatile variable.
8521         (mono_debugger_check_interruption): New public function.
8523         * threads.c
8524         (mono_thread_current_check_pending_interrupt): Call
8525         mono_debugger_check_interruption().
8526         (mono_thread_interruption_checkpoint_request): Likewise.
8528 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8530         * verify.c: Add more type checks for loaded types. Verify the result
8531         handle from ldtoken.
8533 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8535         * loader.c (field_from_memberref): Don't crash if the field
8536         wasn't found.
8538 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8540         * verify.c: Verify if type and method instantiations
8541         don't have invalid VAR or MVAR arguments.
8543 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8545         * verify.c: Fix double free of function pointer list.
8547 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
8549         * object.c (mono_string_to_utf8): Comment the new code as it
8550         breaks under eglib.
8552 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
8554         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
8556 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
8558         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
8559           is not throw too many times.
8561         Code is contributed under MIT/X11 license.
8563 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
8565         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
8566         debugging is turned off.
8568 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
8570         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
8572 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8574         * class-internals.h, class.c: Added new generic sharing option:
8575         Share only stuff in System.Collections.Generic, which is now the
8576         default.
8578 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8580         * generic-sharing.c, class-internals.h: New function for getting a
8581         generic method in a generic class given the corresponding method
8582         for a different instantiation of the class.  Partly refactored
8583         from mini-trampolines.c.
8585         * class.c: Make sure generic methods have a class_inst if they are
8586         part of a generic class.
8588         * metadata.c (mono_type_stack_size_internal): Handle type
8589         variables.
8591 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8593         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
8594         Signifies whether information on the this/vtable/mrgctx variable
8595         is available.
8597 2008-07-04  Mark Probst  <mark.probst@gmail.com>
8599         * object.c, object-internals.h, icall.c: New function
8600         mono_delegate_ctor_with_method(), which does the same as
8601         mono_delegate_ctor(), but takes an explicit method argument
8602         instead of taking the method from the jit info.
8604         * marshal.c: When creating a delegate with an inflated method take
8605         the "this" argument as the target class for the castclass.
8607 2008-07-03  Mark Probst  <mark.probst@gmail.com>
8609         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
8610         mono_jit_info_table_find() to perform very badly in some cases.
8612 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
8614         * icall.c (type_from_typename): Handle 'string'.
8616         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
8617         wrappers into the wrapper_hash, since the key is not a MonoMethod.
8619 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
8621         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
8623         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
8624         number of available managed allocator types.
8626         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
8627         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
8629 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
8631         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
8632         which is a low level lock protecting just the 'jit_code_hash' hash table.
8634         * domain.c: Initialize+cleanup jit_code_hash_lock.
8635         
8636 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8638         * coree.c (mono_load_coree): Set coree_module_handle global variable only
8639         after initialization.
8641         * coree.h: Make MonoFixupExe internal.
8643         Contributed under MIT/X11 license.
8645 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
8647         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
8648         because that is platform independent. Check NumberOfRvaAndSizes in PE32
8649         as well.
8650         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
8651         image being loaded is a CLI image and _CorValidateImage gets called.
8653         * coree.h: Add MonoLoadImage.
8655         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
8656         instead of LoadLibrary.
8658         Contributed under MIT/X11 license.
8660 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
8662         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
8663         for any primitive type.
8665 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
8667         * object.c (mono_array_new_specific): Optimize this and the other allocation
8668         functions a bit.
8669         
8670         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
8671         domains too if mono_dont_free_domains is set.
8673         * domain-internals.h (mono_dont_free_domains): New internal option controlling
8674         whenever to free appdomain data after it has been unloaded.
8676         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
8677         
8678 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
8680         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
8681         (mono_method_get_equivalent_method): Fix a warning.
8683         * object.c (mono_message_init): Avoid looking up array types for each call.
8685 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
8687         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
8688         call.
8690         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
8691         even more.
8693         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
8694         each iteration.
8696         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
8697         fields of an enum.
8699 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
8701         * object.c (mono_value_box): Fix boxing of nullables.
8703 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
8705         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
8706         mono_module_handle that is defined by the linker; no initialization required.
8707         * coree.h: Remove mono_module_handle, add __ImageBase, update
8708         mono_image_open_from_module_handle.
8709         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
8710         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
8711         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
8712         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
8713         to 4 GB away from image base address. IA64 version is not tested but was very
8714         easy to implement and should work if we ever need it.
8715         * domain.c (mono_init_internal): Avoid system error message boxes.
8716         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
8717         with has_entry_point. Handle do_mono_image_load fauilre correctly.
8718         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
8719         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
8720         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
8722         Contributed under MIT/X11 license.
8724 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8726         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
8727         as part of the private mono API.
8728         
8729         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
8730         Do proper argument checking for methods that belong to generic classes.
8731         Do proper type resolution for GMFH/2.
8732         Fixes #377324.
8733         
8734 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8736         * verify.c (do_switch): Fix a memory corruption bug with
8737         the jump index is out of bound.
8739 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8741         * verify.c: Disable debug code.
8743 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
8745         * reflection.c (mono_image_get_methodbuilder_token): Use
8746         mono_image_get_methodspec_token_for_generic_method_definition
8747         instead of mono_image_get_memberref_token. We cache more memberef
8748         entries now.
8750 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8752         * verify.c: Inflate exception clause types.
8753         Fixes #402606.
8754         
8755 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8757         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
8758         name.
8760         * reflection.c (mono_image_get_ctorbuilder_token): Same.
8762         * reflection.c (mono_image_create_method_token): Same.
8764 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
8766         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
8767         It does the same as mono_image_get_methodref_token but works on
8768         MethodBuilder.
8770         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
8771         and always generate a methodspec. This follows the old behavior and fixes
8772         the regressions in System.Core. 
8774 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
8776         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
8777         don't event mono_class_get () succeeds. Fixes #402182.
8779 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8781         * metadata-internals.h: Added MonoDynamicImage::methodspec
8782         hashtable to store methodspec tokens created for MethodBuilders.
8784         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
8785         MethodBuilders as open instantiations if a methodspec was requested.
8787         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
8789         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
8791         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
8793         Fixes bug #349190.
8795 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
8797         * loader.c (method_from_methodspec): Avoid crashing if the
8798         method lookup fails.
8800 2008-06-20  Dick Porter  <dick@ximian.com>
8802         * socket-io.c (get_socket_assembly): Cope with Moonlight network
8803         classes being in a different assembly.  Fixes bug 399184.
8805 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
8807         * loader.c (mono_loader_init): Make this callable multiple times.
8808         (mono_dllmap_insert): Call mono_loader_init () so this works even before
8809         the runtime is initialized. Fixes #401755.
8811 2008-06-19  Dick Porter  <dick@ximian.com>
8813         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
8814         Fixes bug 349688.
8816 2008-06-19  Dick Porter  <dick@ximian.com>
8818         * socket-io.c:
8819         * icall-def.h: Implement Socket generic Send() and Receive()
8820         methods.  Fixes bug 395168.
8822 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
8824         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
8826         Contributed under MIT/X11 license.
8828 2008-06-18  Martin Baulig  <martin@ximian.com>
8830         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
8831         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
8832         set to 80.0.  The debugger <-> runtime interface is now frozen as
8833         well.   
8835         * mono-debug.c
8836         (mono_debug_debugger_version): Bump to 4.
8838 2008-06-18  Martin Baulig  <martin@ximian.com>
8840         * debug-mono-symfile.c
8841         (load_symfile): Don't check the minor version.
8843         * debug-mono-symfile.h: Bump the version number to 50.0.
8845 2008-06-18  Martin Baulig  <martin@ximian.com>
8847         * debug-mono-symfile.c
8848         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
8849         minimum required version.
8851 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8853         * reflection.c (mono_custom_attrs_from_property): Fix support for
8854         retriveving cattrs of dynamic inflated generic types.
8856         * reflection.c (mono_custom_attrs_from_event): Same.
8858         * reflection.c (mono_custom_attrs_from_field): Same;
8860         * reflection.c (typebuilder_setup_events): Same cattrs of events.
8862         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
8863         Moved to metadata.c.
8865         * metadata.c: New functions to retrive the equivalent field, event
8866         of property from the generic type definition.
8868         * metadata-internals.h: Added new functions from metadata.c.
8870 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
8872         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
8873         to cached in a mempool is used.
8875         * metadata.c (free_generic_class): In some situations field generic_info type
8876         is not properly dup'ed and leads to double free'ing.
8878         Fixes #400643.
8880 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8882         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
8883         this arguments (will be needed later for generic methods).
8884         Collect stats.
8886 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8888         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8889         Create a static RGCTX invoke wrapper for methods which require it.
8891 2008-06-17  Mark Probst  <mark.probst@gmail.com>
8893         * object.c, class-internals.h: New function for checking whether
8894         an individual field is special static.
8896 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
8898         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
8899         linear search since the table is sorted.
8901         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
8902         Fixes #324180.
8904 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
8906         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
8907         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
8909         * gc.c (mono_domain_finalize): Allow an infinite timeout.
8911         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
8912         
8913         * threads.c (mono_thread_request_interruption): Get rid of locking, use
8914         InterlockedCompareExchange to query and modify 
8915         thread->interruption_requested.
8917         * object-internals.h (struct _MonoThread): Change interruption_requested
8918         to a gint32 so it can be modified by atomic operations. Add 
8919         'critical_region_level' from the managed side, change small_id to a guint32,
8920         add new set of 'unused' fields.
8922         * appdomain.c: Bump corlib version.
8924 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
8926         * class.c (mono_class_from_name): Search modules as well. Fixes
8927         #322332.
8929 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8931         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
8932         templates.  Templates are generalized with an additional type_argc
8933         argument.  RGCTX templates have type_argc==0, MRGCTX templates
8934         have type_argc>0.
8936         * domain-internals.h, domain.c: New hash table for looking up
8937         MRGCTXs.
8939         * metadata.c, metadata-internals.h: Rename hash and equal
8940         functions for MonoGenericInst's and make them public.
8942         * class-internals.h: New data structures for the MRGCTX.  Macros
8943         for distinguishing slots in the RGCTX and the MRGCTX.
8945 2008-06-13  Mark Probst  <mark.probst@gmail.com>
8947         * object.c (mono_method_get_imt_slot): Put the same methods of
8948         different instantiations of the same generic interface in the same
8949         IMT slots, to make generic sharing simpler.
8951 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8953         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
8955         * metadata.c (mono_metadata_field_info_with_mempool): Added.
8956         This function works just like mono_metadata_field_info, but
8957         accept a mempool as argument to be used allocating memory.
8959         * marshal.c (mono_marshal_load_type_info): Use new function
8960         to load marshal data into image mempool.
8962 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8964         * class.c (mono_class_inflate_generic_type_with_mempool):
8965         This function allows to inflate a generic type using
8966         a mempool.
8968         * class.c (inflate_generic_type): Take a mempool as argument
8969         and use it to do type dup'ing.
8971         * class.c (mono_class_setup_fields): Field type for generic
8972         generic classes are allocated from the image mempool.
8974         * metadata.c (free_generic_class): Inflated field type is
8975         now allocated in the image mempool.
8977 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
8979         * threads.c (thread_cleanup): Free MonoThread::name.
8981 2008-06-12  Marek Habersack  <mhabersack@novell.com>
8983         * appdomain.c (ensure_directory_exists): avoid unnecessary
8984         mkdir(2) calls when the shadow directory already exists.
8985         (mono_make_shadow_copy): copy also satellite assemblies from the
8986         private bin directories.
8988 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
8990         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
8991         
8992         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
8993         a page boundary. Fixes #396219.
8995 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
8997         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
8998         due to double-checked locking.
9000 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9002         * assembly.c (build_assembly_name): Release memory on failure.
9004         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9006 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9008         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9009         memory on failure.
9011 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9013         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9014         memory on failure.
9016 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9018         * loader.c (field_from_memberref): Check if field signature type is equal
9019         to the non-inflated type of the field. Fixes #398980.
9021 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9023         * assembly.c (mono_assembly_load_from_full): Call 
9024         mono_assembly_load_friends () outside the assemblies lock, since it can
9025         acquire the loader lock. Fixes #323696.
9027         * reflection.c (resolve_object): Inflate the inst with the context for
9028         FieldOnTypeBuilderInst. Fixes #399010.
9030 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9032         * reflection.c (mono_image_get_field_on_inst_token): Don't
9033         inflate the field to encode it's signature. If it's a
9034         VAR or MVAR it should stay that way in the signature.
9035         Fixes #399047.
9037 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9039         * reflection.c (resolve_object): Release memory of inflated types.
9041 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9043         * loader.c (mono_method_get_signature_full): Remove assert about
9044         loading a methodspec to a generic method. We have such methods, such as
9045         System.Threading.Interlocked::CompareExchange<T>.
9046         This assert was removed since it crashes the verifier when it checks
9047         methods calling CompareExchange<T>.
9049 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9051         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9052         of Type array and not MonoType.
9054 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9056         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9057         <lupus@ximian.com>
9059 2008-06-10  Martin Baulig  <martin@ximian.com>
9061         * debug-mono-symfile.h
9062         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9063         changes to the file format, but we were generating incorrect
9064         source file indices in the line number table due to a bug, which
9065         made backtraces report an incorrect source file.
9067 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9069         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9070         mini/debug-mini.c to here.
9072         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9074         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9075         use it to release structs returned by mono_debug_find_method.
9077 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9079         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9080         since it needs to set method->slot for all interface methods.
9082 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9084         * class-internals.h: Forgot to add.
9086 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9088         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9090         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9091         Lookup the custom attributes from property_hash.
9093         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9094         in property_hash. Allocate all data using the image mempool.
9096         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9097         for dynamic_custom_attrs to checks if the image is dynamic.
9099 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9101         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9102         assemblies array.
9103         
9104         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9105         runtime functions while holding the domain assemblies lock.
9107 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9109         * verify.c: Reapplied the last bit of the reverted changes.
9111 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9113         * verify.c: Reapplied more of the reverted changes.
9115 2008-06-09  Martin Baulig  <martin@ximian.com>
9117         * debug-mono-symfile.c (load_symfile): Check the major version
9118         first; if it's wrong, don't print the minor version in the error message.
9120 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9122         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9123         lock instead of the domain lock to avoid deadlocks, since the thread might
9124         already hold the loader lock.
9126         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9127         (mono_thread_attach): Ditto.
9129         * monitor.c: Use a TLS variable for holding the current thread id instead
9130         of calling pthread_self ().
9131         (mono_monitor_init_tls): New internal function to initialize the TLS
9132         variable.
9133         (mono_monitor_try_enter_internal): Put the owner == id check after the
9134         owner == 0 check.
9136         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9137         missed optimizations when using gcc-4.3.
9139 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9141         * reflection.c (mono_dynamic_image_free): Free the memory
9142         used by MonoGenericParam in MonoDynamicImage::gen_param.
9144         * reflection.c (mono_reflection_setup_generic_class): Allocate
9145         container from mempool.
9147         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9148         container from mempool.
9150 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9152         * threads.c (mono_set_pending_exception): New internal function to set the
9153         pending exception of the current thread.
9154         (mono_thread_get_and_clear_pending_exception): Check for 
9155         thread->pending_exception as well.
9157         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9159         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9160         it can trigger a collection.
9162 2008-06-06  Martin Baulig  <martin@ximian.com>
9164         Merged the `debugger-kahalo' branch.
9166         * mono-debug.h
9167         (MONO_DEBUGGER_VERSION): Bumped to 72.
9169         * debug-mono-symfile.h
9170         (MonoSymbolFileMethodIndexEntry): Removed.
9171         (MonoSymbolFileMethodEntry): New public typedef.
9172         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9173         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9174         `data_offset'.
9175         (MonoSymbolFileMethodEntry): Removed.
9176         (MonoSymbolFileLexicalBlockEntry): Removed.
9177         (MonoSymbolFileLineNumberEntry): Removed.
9178         (MonoDebugLexicalBlockEntry): Removed.
9179         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9180         removed `num_il_offsets' and `il_offsets'.
9181         (MonoSymbolFile): Replace `version' with `major_version' and
9182         `minor_version'.
9183         (MONO_SYMBOL_FILE_VERSION): Replace with
9184         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9185         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9187         * debug-mono-symfile.c
9188         (mono_debug_symfile_lookup_location): Add support for the new line
9189         number table format.
9191 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9193         * metadata.c (free_generic_class): Release the inflated
9194         MonoClass of dynamic generic classes if it's not a generic
9195         type definition.
9197 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9199         * verify.c: Reapplied more of the reverted changes.
9201 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9203         * reflection.c (lookup_custom_attr): Clean the cached flag or
9204         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9205         for SRE types.
9207 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9209         * verify.c: Reapplied a small part of the reverted changes.
9211 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9213         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9215         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9216         previously in managed code.
9217         (mono_monitor_exit): Ditto.
9218         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9220         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9221         the managed definition.
9223 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9225         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9227 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9229         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9230         
9231         * monitor.c: Add some micro optimizations.
9233         * icall.c (type_from_typename): Handle 'bool'.
9235 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9237         * verify.c: Implement constructor verification per P III 1.8.1.4.
9238         Fixes #396716.
9240 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9242         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9243         holding the assemblies lock here too.
9245 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9247         * verify.c: Kill stack_top function.
9249 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9251         * verify.c: Kill stack_get function.
9253 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9255         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9257 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9259         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9260         more reliable.
9262         * verify.c (mono_method_verify): Inflate params and locals to avoid
9263         mismatch when checking for compatibility.
9265 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9267         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9268         Length prefix should be size in bytes. Fix bug #339530.
9269         
9270         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9271         Length prefix should be size in bytes. Fix bug #339530.
9273         Code is contributed under MIT/X11 license.
9275 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9277         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9279         Contributed under MIT/X11 license.
9281 2008-06-05  Martin Baulig  <martin@ximian.com>
9283         * mono-debug-debugger.c
9284         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9286 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9288         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9289         while holding the assemblies lock to prevent deadlocks. Handle the case
9290         where the search hook returns NULL but the assembly was still loaded.
9291         Fixes #323696.
9293         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9294         modify domain state.
9296 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9298         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9299         * Makefile.am (pedump_LDADD): Post-process object files and
9300         add dtrace-generated object file, if necessary.
9302         Code is contributed under MIT/X11 license.
9304 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9306         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9308 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9310         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9312 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9314         * threads.c: Try to free everything from the delayed free table
9315         when shutting down threads, and set the variable to NULL after the
9316         table is freed so that calling
9317         mono_thread_hazardous_try_free_all() when shutting down the root
9318         domain doesn't crash.
9320 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9322         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
9323         the caller if resulting type was inflated.
9325         * class.c (mono_class_create_from_typespec): Free the MonoType if it
9326         was inflated.
9328         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
9331 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
9333         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
9334         class library tests.
9336         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
9337         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
9338         #396989.
9340 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9342         * domain.c, domain-internals.h: The JIT infos are now freed by the
9343         JIT info table code.  They are freed immediately if there only a
9344         single JIT info table in circulation.  If there is more, the free
9345         is delayed via a queue.
9347         * threads.c, threads-types.h: New hazard pointer function for
9348         freeing all freeable delayed items in one sitting.
9350 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9352         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
9354         * reflection.c (typebuilder_setup_properties): Same.
9356         * reflection.c (typebuilder_setup_events): Same.
9358 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9360         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
9361         and use it for allocating memory.
9363         * reflection.c (mono_marshal_spec_from_builder): Same.
9365         * reflection.c: Change code to use new signatures.
9367         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
9369 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9371         * decimal.c (rescale128): Put back one line which was accidently commented
9372         out.
9373         
9374         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
9375         to cause crashes.
9377 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9379         * reflection.c (mono_reflection_generic_class_initialize): Name must
9380         be always malloc'ed so we can free it later on. Do this for field, property
9381         and event.
9383         * metadata.c (free_generic_class): Free field, property and event names.
9385 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9387         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
9388         instead of g_memdup.
9390         * reflection.c (typebuilder_setup_fields): Same.
9392 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9394         * decimal.c (rescale128): Optimize this function a bit more.
9396 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9398         * metadata.c (free_generic_class): Release some memory from
9399         SRE generic classes.
9401 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
9403         * reflection.c (mono_image_get_generic_field_token): No reference
9404         to name is kept, free it.
9406         * reflection.c (mono_reflection_generic_class_initialize): Free
9407         more memory of the inflated field.
9409 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
9411         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
9412         code.
9414 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9416         * reflection.c (mono_dynamic_image_free): Release memory used by
9417         MonoDynamicImage::array_methods elements.
9419         * reflection.c (assembly_add_win32_resources): Release memory after
9420         encoding.
9422 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9424         * decimal.c (log2_32): Use an optimized version for this function too.
9425         
9426         * decimal.c (log2_64): Fix this on 32 bit machines.
9428 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
9430         * class.c (mono_dup_array_type): Implement allocation using a mempool.
9432         * class.c (mono_metadata_signature_deep_dup): Same.
9434         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
9435         a mempool.
9437         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
9439         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
9441         * metadata-internals.h: Added mono_metadata_signature_dup_full.
9443         * class-internals.h: Update signatures to take a MonoMemPool.
9445 2008-06-02  Dick Porter  <dick@ximian.com>
9447         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
9448         * icall-def.h: Add
9449         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
9450         FormatMessage API to get the error text.  Fixes bug 321827.
9452 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
9454         * decimal.c: Add some micro optimizations to make decimal operations faster.
9456 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
9458         * reflection.c (method_encode_clauses): Take a mempool
9459         as parameter and use it to allocate the clause array.
9461         * reflection.c (mono_image_get_field_on_inst_token): Free
9462         the inflated type after encoding it.
9464         * reflection.c (mono_dynamic_image_free): Free each element
9465         of MonoDynamicImage::gen_params.
9467         * reflection.c (reflection_methodbuilder_to_mono_method):
9468         Allocate the generic param array from the mempool.
9469         Allocate signature params from the mempool.
9471         * reflection.c (mono_reflection_generic_class_initialize):
9472         Free inflated fields after been used.
9474 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9476         * icall.c: Reapply the memory leak fixes as they no
9477         longer make mono crash.
9479 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
9481         * reflection.c (mono_type_get_object): Don't store the suplied
9482         MonoType with type_hash. A caller which pass a type that
9483         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
9484         might end with a pointer to freed memory.
9485         The solution is to use byval_arg or this_arg from the associated
9486         MonoClass of the supplied type.
9488 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
9490         * icall.c: Revert the rest of the last change as it breaks the build too.
9492 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9494         * icall.c: Revert a leak fix as it's breaking the build.
9496 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9498         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
9500 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9502         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
9504 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
9506         * icall.c: Fix some memory leaks.
9508 2008-05-29  Dick Porter  <dick@ximian.com>
9510         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
9511         async socket operations from the pending list when a socket
9512         closes.  Leaving it until the threadpool services the event
9513         exposes a race condition when a socket descriptor is reused.
9514         Fixes bug 377589.
9516 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9518         * object.c: Fix negative index check for array alocation.
9520 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9522         * icall.c, marshal.c: Delegate wrappers should skip visibility.
9523         This check is performed by the verifier for IL created delegates
9524         and by Delegate::CreateDelegate for programatically created ones.
9525         Fixes #372406.
9527 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9529         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
9530         Fix code to use mono_array_size_t instead of int.
9532         Based on patch by Luis F. Ortiz.
9533         Contributed under X11 license.
9534         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9536 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9538         * icall.c: Added ves_icall_System_Array_GetLongLength and
9539         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
9540         arrays.
9542         * icall.h: Export both new functions.
9544         Based on patch by Luis F. Ortiz.
9545         Contributed under X11 license.
9546         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9548 2008-05-28  Martin Baulig  <martin@ximian.com>
9550         The debugger now requires exactly r103463.
9552         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
9553         This version is not supported by the debugger, wait for 72.
9555 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9557         * object.h: Changed array related functions to use
9558         mono_array_size_t instead of guint32. Forgot to commit this file.
9560         Patch by Luis F. Ortiz.
9561         Contributed under X11 license.
9562         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9565 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
9567         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
9568         don't define it. Use the number literal instead.
9570 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9572         * icall.c: Changed array related functions to use
9573         mono_array_size_t instead of guint32.
9575         * icall.c (ves_icall_System_Array_GetLength): Check for length
9576         overflow under MONO_BIG_ARRAYS.
9578         Based on patch by Luis F. Ortiz.
9579         Contributed under X11 license.
9580         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9582 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9584         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
9586         Based on patch by Luis F. Ortiz.
9587         Contributed under X11 license.
9588         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9590 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9592         * object.c, object.h: Changed array related functions to use
9593         mono_array_size_t instead of guint32.
9595         Patch by Luis F. Ortiz.
9596         Contributed under X11 license.
9597         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9599 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
9601         * object.h: Introduced mono_array_size_t typedef. This must be used
9602         in all places an array length is expected. This is 64bits wide if
9603         MONO_BIG_ARRAYS is enabled.
9605         Patch by Luis F. Ortiz.
9606         Contributed under X11 license.
9607         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
9609 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
9611         * security-manager.c class.c: Set the class exception info by calling
9612         mono_class_set_failure ().
9614         * class.c (mono_class_get_exception_data): New accessor function.
9615         (mono_class_set_failure): Store exception_data in the property hash.
9617         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
9618         the struct as a property.
9620         * loader.c (mono_get_method_full): Store the lookup result for method
9621         tokens in method_cache, the others in methodref_cache to decrease the memory
9622         usage of hash tables.
9624         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
9625         (mono_image_init): method_cache is lazy inited now.
9627         * metadata-internals.h (struct _MonoImage): Change method_cache to
9628         a MonoValueHashTable, add a separate methodref_cache.
9630 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
9632         * number-formatter.h: Fix tables to avoid arithemtic overflow in
9633           Double.ToString as exposed by Bug #383531.
9635 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
9637         * number-formatter.h: Make some tables static.
9639         * class.c (mono_method_set_generic_container): New accessor function.
9640         (mono_method_get_generic_container): Ditto.
9642         * class-internals.h (struct _MonoMethod): Remove rarely used 
9643         'generic_container' field, store it in the property hash instead. Add 
9644         'is_generic' boolean field instead.
9646         * image.c (mono_image_init): Initialize property_hash.
9647         (mono_image_close): Destroy property_hash.
9649         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
9650         hold rarely used fields of runtime structures belonging to this image.
9652         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
9653         to get/set method->generic_container.
9655         * loader.c (mono_get_method_from_token): Avoid loading the method header for
9656         generic methods.
9658 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
9660         * class.c (mono_class_inflate_generic_method_full): Don't increase
9661         mono_stats.inflated_method_count for methods found in the cache.
9663         * threads.c (mono_thread_request_interruption): Add a comment about 
9664         QueueUserAPC ().
9666 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
9668         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
9669         interface_offsets_packed table.
9670         
9671         * class.c (mono_class_init): Remove some dead code.
9673         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
9674         mono_class_setup_vtable () when CAS is active to detect security problems.
9676 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
9678         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
9680         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
9681         parameters as it's irrelevant for delegate checking.
9683 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
9685         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
9687         * class.c (mono_class_init): Control the creation of a generic vtable using
9688         a global which is true by default, but set to false by the runtime startup code.
9689         
9690         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
9691         Disabled for now since it breaks the embedding API.
9692         Move the setup of class->methods for arrays to mono_class_setup_methods ().
9693         (mono_class_setup_methods): Add a memory barrier.
9695         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
9696         when mono_class_init () doesn't compute the generic vtable.
9697         
9698 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
9699         * profiler.c: Added mono_profiler_install_statistical_call_chain,
9700         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
9701         to support call chains (backtrace) in the stat profiler.
9702         * profiler.c, profiler-private.h: Likewise.
9704 2008-05-22  Mark Probst  <mark.probst@gmail.com>
9706         * generic-sharing.c: Init generic class when a method of it is
9707         requested via a runtime generic context.
9709 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
9711         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
9713         * reflection.c (mono_type_get_object): Add a FIXME.
9715         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
9717         * class.c (mono_class_get_method_by_index): New helper function, returning an
9718         entry in the class->methods array.
9720 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9722         * class.c (mono_class_init): Only do the array optimization for szarrays. 
9723         Avoid creating a generic vtable for generic instances as well.
9724         (mono_class_get_method_from_name_flags): Don't search in the metadata for
9725         generic instances.
9727 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
9729         * loader.c (mono_get_method_constrained): Inflate the signature
9730         with class context. Fix #325283.
9732 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
9734         * object.c (mono_class_create_runtime_vtable): Add a comment.
9736         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
9737         where needed.
9738         (setup_interface_offsets): Handle the case when this is called twice for arrays.
9739         (mono_class_setup_vtable_general): Add an assert.
9740         (mono_class_init): Avoid creating a generic vtable for arrays.
9742         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
9743         here, let mono_class_init () do that.
9745         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
9746         interfaces in mscorlib.
9748         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
9749         interfaces. Add some comments.
9750         (mono_class_init): Call mono_class_setup_methods () here since it is no
9751         longer called by mono_class_setup_vtable ().
9753         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
9754         not set in class->vtable.
9755         (mono_class_create_runtime_vtable): Reenable the disabled code.
9757         * object.c (mono_class_create_runtime_vtable): Disable the last change for
9758         now as it causes some test failures.
9760         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
9761         if using the vtable trampoline. Also remove some strange code which put the
9762         generic methods themselves into the vtable slots. Remove the AOT init_vtable
9763         stuff as it is no longer needed.
9765 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
9767         * pedump.c: Give make --verify all option check code as well.
9768         Using --verify code won't check for metadata now.
9770 2008-05-19  Martin Baulig  <martin@ximian.com>
9772         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
9774         * mono-debug.c
9775         (_mono_debug_using_mono_debugger): New global variable; it's set
9776         directly by the debugger, so mono_debug_using_mono_debugger() also
9777         works after attaching.
9779 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
9781         * object.c (mono_class_create_runtime_vtable): Use memory barriers
9782         as we do double checked locking on MonoClass::runtime_info and
9783         MonoClassRuntimeInfo::domain_vtables.
9785 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
9787         * debug-helpers.c (print_field_value): Fix a warning.
9789 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
9791         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
9792         set in the AOT case.
9794 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9796         * class.c (mono_class_setup_vtable_general): Use memory barriers
9797         as we do double checked locking on MonoClass::vtable.
9799 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
9801         * reflection.c (resolve_object): Inflate only if the generic context
9802         is not null. Fixes #389886.
9804 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
9806         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
9807         instead of g_free.
9809         Code is contributed under MIT/X11 license.
9811 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9813         * class.c: Revert unrelated change.
9815 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9817         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
9818         a generic instantiation, use mono_class_from_mono_type instead of playing
9819         with MonoType directly.
9821 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
9823         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
9824         checks must ignore generic instantiations, so mono_class_has_parent is not
9825         suitable. Fixes #390128.
9827 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
9829         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
9830         it to avoid registering tokens during metadata generation. Fixes #390023.
9832 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9834         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
9835         consistent.
9837         Contributed under MIT/X11 license.
9839 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
9841         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
9842         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
9843         to fixup the EXE image.
9844         (mono_cleanup): Use mono_close_exe_image.
9845         (mono_close_exe_image): New function.
9846         * image.c: Include "marshal.h".
9847         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
9848         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
9849         counting when the image is loaded outside of mono_image_open_full. Set status
9850         based on GetLastError.
9851         * coree.c: Include required headers. Add init_from_coree.
9852         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
9853         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
9854         (_CorExeMain): Set init_from_coree.
9855         (CorExitProcess): Only call ExitProcess for now.
9856         (CorBindToRuntimeEx): New stub implementation.
9857         (CorBindToRuntime): New function.
9858         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
9859         (MonoFixupExe): ILONLY executables require no fixups.
9860         (mono_set_act_ctx): New function to set activation context.
9861         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
9862         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
9863         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
9864         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
9865         as MONO_INTERNAL.
9866         * domain-internals.h: Add mono_close_exe_image.
9868         Contributed under MIT/X11 license.
9870 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
9872         * metadata.c (mono_metadata_compute_size): Correctly calculate field
9873         size for generic param and event tables. Fixes #388977.
9875 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
9877         * loader.c (mono_method_signature): Use memory barriers because of the double
9878         checked locking pattern.
9880         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
9881         aborting or aborted as well. Fixes #376391.
9882         
9883         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
9884         existing runtime state in the Suspend handler during shutdown.
9886 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
9888         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
9890         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
9891         which are starting up or shutting down.
9893         * threads.c (mono_threads_set_shutting_down): Don't return a value since
9894         this function never returns if the runtime is already shutting down.
9896         * icall.c (ves_icall_System_Environment_Exit): Update after 
9897         mono_threads_set_shutting_down () signature change.
9898         
9899 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
9901         * class.c: Added can_access_instantiation to verify if the instantiation
9902         is visible. Fix access check for nested types as they returned TRUE
9903         before doing type and generic instantiation visibility checks.
9905 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9907         * reflection.c (mono_reflection_create_generic_class): The created type
9908         must have a different container from its TypeBuilder. Otherwise they
9909         will end sharing generic arguments, which is wrong.
9911         Due to the sharing, making a generic instance of the created type using
9912         the TypeBuider generic arguments resulted in the generic type definition
9913         been returned, which is wrong as well.
9915         As a bonus the code was leaking the type_params array. This memory should
9916         be allocated from the image mempool.
9918         This fixes bug #354047.
9920 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
9922         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
9923         to here         as they are now used in assembly.c new code.
9924         Added a skipverification flag to MonoAssembly.
9925         New internal function mono_assembly_has_skip_verification.
9927         * assembly.c: New function mono_assembly_has_skip_verification. It checks
9928         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
9929         part of #387274.
9931 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9933         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
9934         needed. Fixes #387034.
9936         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
9938 2008-05-06  Miguel de Icaza  <miguel@novell.com>
9940         * assembly.c (mono_assembly_load_reference): Prevent crash while
9941         disassembling Silverlight 2.0 executables while we still do not
9942         have GACed libraries.
9944 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
9946         * reflection.c: Special case generic type definitions as well. Fixes #383444.
9948 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
9950         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
9951         of the dynamic case. Fixes #387404.
9953 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9955         *verify.c (mono_verifier_is_class_full_trust): If under
9956         verify_all and the verifier mode was not set, only
9957         gac and corlib types are fulltrust. This makes --verify-all
9958         usable to detect unverifiable code, which is the expected
9959         use case.
9961 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9963         * verify.h: Ops, commited the header with debug
9964         enabled.
9966 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
9968         * verify.c (merge_stack): Use the new value on unverifiable
9969         stack merges.
9971         * verify.c (verify_type_compatibility_full): Comparison
9972         of nullable types can't use mono_class_is_assignable_from.
9974         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
9975         that makes all verification errors be reported.
9977         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
9978         mono_method_verify.
9980 2008-05-05  Robert Jordan  <robertj@gmx.net>
9982         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
9983         support for value types. See #386415.
9985         * object.c: comments.
9987         Code is contributed under MIT/X11 license.
9989 2008-05-05  Martin Baulig  <martin@ximian.com>
9991         * debug-mono-symfile.h
9992         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
9993         for old pre-terrania symbol files.
9995 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
9997         * mono-config.c: Add ppc64 architecture.
9999         Code is contributed under MIT/X11 license.
10001 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10003         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10004           PPC64 uses function descriptors as well.
10006         Code is contributed under MIT/X11 license.
10008 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10010         * object.c (compute_class_bitmap): Ignore literal static fields.
10012         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10013         var has an invalid format.
10014         (describe_ptr): Add some sanity checks for the vtable.
10015         (add_nursery_frag): Clear unused nursery fragments.
10016         (major_collection): Clear all remaining nursery fragments.
10018 2008-05-03  Robert Jordan  <robertj@gmx.net>
10020         * image.c, metadata-internals.h: add thunk_invoke_cache.
10022         * marshal.c, marshal.h: implement
10023         mono_marshal_get_thunk_invoke_wrapper ().
10025         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10027         Code is contributed under MIT/X11 license.
10029 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10031         * verify.c (do_leave): Empty the stack.
10033 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10035         * class.c (mono_class_is_assignable_from): Variance
10036         doesn't work between reference and value types. For example,
10037         given type C<T+>, C<int32> is not assignable to C<object>.
10038         Break the argument checking loop on first error. 
10040 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10042         * icall.c : base64_to_byte_array() needs some more strict
10043           check for sequence of '=' characters. Patch by Santa
10044           Marta (http://deee.g.hatena.ne.jp/santamarta).
10046           Contributed under MIT/X11 license.
10047           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10049 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10051         * domain.c: Disable LoadLibrary support to fix Win32 build.
10053         Code is contributed under MIT/X11 license.
10055 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10057         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10058         to help with cache behaviour.
10060 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10062         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10063         method. 
10065 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10067         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10069 2008-05-01  Dick Porter  <dick@ximian.com>
10071         * process.c (process_get_fileversion): Only pass 16 bits of
10072         language ID to VerLanguageName.  Fixes bug 381204.
10074 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10076         * verify.c (mono_method_verify): Fix the comparison
10077         operator for code bounds check.
10079 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10081         * verify.c (mono_method_verify): Check the bounds of
10082         all access of the code array.
10084 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
10086         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10088 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10090         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10091         not valid.
10093 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
10095         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10096         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10097         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10098         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10099         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10100         mono_runtime_load.
10101         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10102         runtime initialization from metadata.
10103         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10104         (mono_set_rootdir): Use mono_get_module_file_name.
10105         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10106         handles.
10107         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10108         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10109         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10110         MonoCLIImageInfo. Add support for module handles.
10111         (load_cli_header): Update mono_cli_rva_image_map signature.
10112         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10113         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10114         (mono_image_rva_map): Add support for module handles.
10115         (mono_image_ensure_section_idx): Add support for module handles.
10116         (mono_image_close): Add support for module handles.
10117         (do_load_header): Add support for module handles.
10118         (mono_image_open_from_module_handle): New function for internal use.
10119         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10120         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10121         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10122         handles.
10123         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10124         * image.h: Add mono_image_fixup_vtable.
10125         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10126         support.
10127         * coree.h: New file.
10128         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10129         unsupported native code.
10130         (mono_marshal_set_callconv_from_modopt): New function splitted from
10131         mono_marshal_get_managed_wrapper.
10132         (mono_marshal_get_managed_wrapper): Use
10133         mono_marshal_set_callconv_from_modopt.
10134         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10135         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10136         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10137         that results in a deadlock when the runtime is loaded in _CorDllMain.
10138         * Makefile.am: Add coree.c and coree.h.
10140         Contributed under MIT/X11 license.
10142 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10144         * generic-sharing.c: Search for type arguments in array element
10145         types as well.
10147 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10149         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10151         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10153         * object.c: Don't setup the RGCTX when the vtable is created,
10154         because we're setting it up lazily now.
10156 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10158         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10159         64 bit support.
10161 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10163         * verify.c (verify_class_for_overlapping_reference_fields): 
10164         If class is under fulltrust allow reference types to overllap
10165         if they have the same RVA.
10167 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10169         * pedump.c: Added new flag valid-only, that makes the verifier
10170         behaves just like --security=validil. It won't fail type load
10171         due to unverifiable restrictions.
10173 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10175         * class-internals.h (struct MonoMethod): Added a verification_success
10176         field to cache verifier executions. Reduced MonoMethod:slot size by
10177         one bit.
10179 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10181         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10182         instead of a 'vt' argument to save an indirection and to allow these to be used
10183         for valuetypes.
10184         (scan_vtype): New helper function to scan an area using a gc descriptor.
10185         (mono_gc_wbarrier_value_copy): Implement this.
10186         (handle_remset): Add support for REMSET_VTYPE.
10187         (find_in_remset_loc): Ditto.
10188         (mono_gc_base_init): Allow some debugging options to be controlled through the
10189         use of the MONO_GC_DEBUG env variable.
10190         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10191         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10193 2008-04-23  Martin Baulig  <martin@ximian.com>
10195         * domain.c (mono_domain_create): Move the call to
10196         mono_debug_domain_create() down, after allocating the domain id.
10198 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10200         verify.c (verify_class_for_overlapping_reference_fields): Skip
10201         static fields while verifying for overlapping fields as they
10202         don't matter at all.
10204 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10206         * domain-internals.h: added a declaration of
10207         mono_make_shadow_copy.
10209         * assembly.c (mono_assembly_open_full): shadow copying of
10210         assemblies moved to here, so that all the assemblies within the
10211         application domain's private binary directories can be
10212         processed. Fixes bug #380546
10214         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10215         mono_make_shadow_copy and made non-static. The decision whether
10216         to shadow-copy an assembly is made based on its location - it's
10217         copied if it's in one of the private application domain binary
10218         directories and its different to the target file in the shadow
10219         directory. Fixes bug #380546
10221 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10223         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10225         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10226         types.
10228         * reflection.c (mono_image_create_token): Handle 
10229         Method/ConstructorOnTypeBuilderInst.
10230         (resolve_object): Ditto.
10231         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10232         so it can be called from resolve_object. Also handle the case when the inflated
10233         class already has its methods setup.
10235 2008-04-21  Martin Baulig  <martin@ximian.com>
10237         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10239 2008-04-20  Geoff Norton  <gnorton@novell.com>
10241         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10242         pointer dereference.
10244 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10246         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10247         portability API to look up the assembly file. Fixes behavior in
10248         situations when the application has a bin/ directory, but the
10249         assembly search patch refers to Bin/ (and thus the requested file
10250         name is Bin/SomeLibrary.dll). Fixes bug #379888
10252 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10254         verify.c (mono_type_is_generic_argument): Extracted this check
10255         from a dozen places to here.
10257         verify.c: Fixed all issues related to boxing generic arguments
10258         and their constraints.
10260 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10262         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10264 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10266         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10267         isn't finished yet. Fixes #363447.
10269 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10271         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10272         Fixes #346419.
10274 2008-04-13  Jb Evain  <jbevain@novell.com>
10276         * domain.c: update the 2.1 profile versions.
10277         Merged from the Moonlight 2 branch.
10279 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10281         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10282         mscorlibs for the non-refonly case as well.
10284         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10285         in mono_assembly_load_from_full (). Fixes #378924.
10287 2008-04-11  Geoff Norton  <gnorton@novell.com>
10289         * icall.c: The global extern environ doesn't exist on Mac.  We
10290         need to call NSGetEnviron instead.
10292 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10294         verify.c: Add generic method constraint verification.
10296 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10298         class.c (mono_class_inflate_generic_method_full): Add a long
10299         explanation to the is_mb_open hack. Remove the FIXME.
10301 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10303         * verify.c (mono_method_verify): Mark all unknown opcodes
10304         as invalid. Mark jmp as unverifiable.
10306 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10308         * verify.c: Add code to do type constraint verification on class instances.
10310         * verify.c (mono_verifier_verify_class): Use the type constraint 
10311         verification code.
10313 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10315         * class.c (mono_class_get_field_default_value): Don't pass cindex
10316         as hint to mono_metadata_get_constant_index. The local is not initialized
10317         and should contain garbage most of the time. This could only work
10318         with a lot of luck.
10320 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10322         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
10324 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
10326         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
10328         * class.c (mono_class_from_generic_parameter): Save the token of the
10329         generic param in MonoClass::sizes.generic_param_token.
10331         * reflection.c (mono_custom_attrs_from_class): If the class type is
10332         VAR or MVAR retrieve the attributes of the generic param.
10334 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10336         * class.c (mono_class_init): Do class verification if the verifier
10337         is enabled.
10339 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10341         * verify-internal.h: Added mono_verifier_verify_class.
10343         * verify.c: Added mono_verifier_verify_class. It checks for
10344         classes with explicit layout that have overlapping reference fields.
10346         * pedump.c: Init the verifier state prior to verification. Fixed
10347         command line arguments.
10349 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
10351         * Makefile.am: Added verify-internals.h, hopefully fix the build.
10353 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
10355         * verify-internals.h: Fix a warning.
10357 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10359         * verify-internals.h: New header with the verifier configuration
10360         extracted from mini.c.
10362         * verify.c: Implemented the new functions exported by verify-internals.h.
10364 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
10366         * verify.c: Add proper verification of ckfinite.
10368 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10370         * verify.c (do_conversion): Improved error message to something
10371         more meanfull.
10373         * verify.c (check_is_valid_type_for_field_ops): Fix to work
10374         with primitive types.
10376 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10378         * verify.c: Added tail prefix checking. Marked icall
10379         as unverifible.
10381 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
10383         * verify.c: Fix the detection of branches to the middle
10384         of an instruction.
10386 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
10388         * verify.c: Implemented verification of volatile. and
10389         unaligned. prefix. Check if a type is valid after retrieving it.
10391 2008-04-01  Dick Porter  <dick@ximian.com>
10393         * process.c (process_get_fileversion): If there's no string block,
10394         set the file language to en_US.  Fixes the other new part of bug
10395         374600.
10397 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
10399         * class.c: New functions mono_method_can_access_field_full and
10400         mono_method_can_access_method_full. They perform type visibility
10401         and type site check.
10403         * class-internal.h: Added exported functions.
10405         * verify.c: Use new functions to implement proper visibility checks.
10407 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
10409         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
10411 2008-03-28  Dick Porter  <dick@ximian.com>
10413         * process.c (process_get_fileversion): Use the first language ID
10414         we see, rather than insisting on an invariant language.  Fixes bug
10415         374600.
10417 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
10419         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
10420         the streams to fix reading of invalid memory later.
10422         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
10423         to ease debugging.
10425 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
10427         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
10428         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
10430 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
10431         * threads.h: Added MonoThreadManageCallback type and
10432         mono_thread_set_manage_callback prototype
10433         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
10434         (used to store the mono_thread_manage callback).
10435         * threads.c: Added mono_thread_set_manage_callback, and handle
10436         "MonoThread->manage_callback" in build_wait_tids.
10438 2008-03-26  Dick Porter  <dick@ximian.com>
10440         * process.c (process_get_fileversion): Set FileVersionInfo strings
10441         to Empty when the resource doesn't have the particular info.
10442         Fixes bug 355717.
10444 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
10446         * verify.c (mono_method_verify): Proper prefix validation.
10448 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
10450         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
10451         itself in a separate argument instead of throwing them. Fixes #373448.
10453         * appdomain.c: Bump corlib version.
10455 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
10457         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
10459 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
10461         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
10462         version macros.
10464 2008-03-20  Mark Probst  <mark.probst@gmail.com>
10466         * generic-sharing.c, class-internals.h: Code for putting
10467         reflection types into the runtime generic context.
10469 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
10471         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
10472         Fixes #340662. 
10475 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
10477         * verify.c (VerifyContext): Added instruction prefix data to the struct.
10479         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
10481         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
10483         * verify.c (do_cast): Let the result value keep the boxed status.
10485         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
10487 2008-03-17  Jb Evain  <jbevain@novell.com>
10489         * reflection.c: when running on a 2.0 runtime, emit
10490         unconditionally the #~ header version as 2.0, and the
10491         CLI header version as 2.5, for symmetry's sake with csc.
10493 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10495         * class.c: Remove the unused cache_interface_offsets stuff.
10497         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
10498         profiler.c: Fix warnings.
10500 2008-03-16  Mark Probst  <mark.probst@gmail.com>
10502         * generic-sharing.c, class-internals.h: Support for putting
10503         methods into the runtime generic context.
10505 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
10507         * class.c (mono_class_setup_fields): Ignore calls made to this function for
10508         classes which are generic instances of not-yet finished typebuilders. Fixes
10509         #351172.
10511         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
10513 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
10515         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
10517         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
10518         field, replace it with a hash table in MonoDynamicImage.
10520         * reflection.c (inflate_mono_method): Access the generic definition object from
10521         image->generic_def_objects instead of imethod->reflection_info.
10523         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
10525         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
10526         
10527         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
10528         function in reflection.c so it is easier to keep in sync with the dynamic image
10529         creation code.
10531         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
10532         mono_image_close ().
10534 2008-03-15  Mark Probst  <mark.probst@gmail.com>
10536         * class.c (mono_class_generic_sharing_enabled): Disable generic
10537         sharing for all architectures except AMD64 and x86 to fix build.
10539 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10541         * verify.c: Use the generic definition MonoGenericContext when available.
10542         Remove code for checking generics instance compatibility in favor of
10543         mono_class_is_assignable_from.
10545 2008-03-14  Mark Probst  <mark.probst@gmail.com>
10547         * marshal.c, marshal.h, metadata-internals.h, image.c,
10548         wrapper-types.h: New wrapper for invoking a shared static method
10549         without having to pass the runtime generic context argument.
10551 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
10553         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
10555 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
10557         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
10558         
10559         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
10560         create a token from a FieldOnTypeBuilderInst.
10561         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
10562         (resolve_object): Ditto.
10564         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
10565         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
10567 2008-03-14  Martin Baulig  <martin@ximian.com>
10569         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
10571         * debug-mono-symfile.h
10572         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
10573         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
10575 2008-03-10  Martin Baulig  <martin@ximian.com>
10577         * debug-mono-symfile.h
10578         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
10579         `lexical_block_table_offset'.
10580         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
10581         `lexical_blocks'.
10582         (MonoSymbolFile): Added `version'.
10584         * mono-debug.h
10585         (MonoDebugLexicalBlockEntry): Removed.
10586         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
10587         `lexical_blocks'.
10589         * mono-debug.c (mono_debug_add_method): Don't compute lexical
10590         blocks here; the debugger now does this internally.
10592 2008-02-27  Martin Baulig  <martin@ximian.com>
10594         * object.c (mono_runtime_exec_main): Call
10595         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
10596         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
10598 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10600         * verify.c (verify_type_compatibility_full): Allow native int to be converted
10601         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
10603 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
10605         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
10606         ldftn with a virtual method.
10608 2008-03-13  Geoff Norton  <gnorton@novell.com>
10610         * decimal.c:  Only include memory.h if the platform has it.
10612 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
10614         * assembly.c, class.c, metadata-internals.h: make sure public key
10615         tokesns are compared in a case-insensitive way. Also, all
10616         the lookups in the GAC use a lowercase public key token
10617         (gaacutil already does the lowercasing on install). Fixes
10618         bug #369541.
10620 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
10622         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
10623         and return value.
10625 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
10627         * image.c: when someone loads a mscorlib from a file, return the
10628         currently loaded mscorlib (fixes bug #369253).
10630 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10632         * class.c: handle types with no parents by forcing them to have
10633         System.Object as a parent and marking them as broken (this currently
10634         allows the first part of bug #369173 to work as well, likely because
10635         we don't check for typeload exceptions everywhere yet).
10637 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
10639         * class.c: more complete check that types belong to corlib
10640         (fixes second part of bug #369173).
10642 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
10644         * generic-sharing.c:  Including glib.h for the MSVC builds to define
10645           "inline" to "__inline" before including mono-membar.h.
10646           
10647         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
10648           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
10649           MSVC builds.
10651         Contributed under MIT/X11 license.
10653 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10655         * verify.c (do_invoke_method): Remove return type validation.
10657         * verify.c (do_ret): Do return type validation at return site instead of
10658         call site.
10660 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
10662         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
10664         * verify.c: Some todos cleaned and improved a few error messages.
10666 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
10668         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
10670 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
10672         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
10673         system types correctly.
10675         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
10676         function.
10678 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10680         * assembly.c (build_assembly_name): Fix a warning.
10682 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
10684         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
10685         the called function takes an object type argument. Fixes storing or
10686         valuetypes across remoting as well as reducing memory usage.
10687         * image.c, metadata-internals.h: remove now unused ldfld_remote and
10688         stfld_remote wrapper caches.
10690 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
10692         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
10693         is not found.
10695         * reflection.c (mono_image_register_token): New helper function to save
10696         a token->object mapping.        
10698         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
10699         managed code.
10701         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
10702         one dimension arrays. Fixes #367670.
10703         (mono_reflection_get_type_internal): Ditto.
10705 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
10707         * marshal.c: mono_load_remote_field_new() always returns object.
10708         so use the proper signature (fixes bug #366445).
10710 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10711         
10712         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
10713         add an 'inline_failure' flag instead.
10715 2008-03-04  Mark Probst  <mark.probst@gmail.com>
10717         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
10718         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
10719         contains the location of "this", used for exception handling.
10721 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
10723         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
10724         their size on all platforms for perf reasons.
10726 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10728         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
10729         object-internal.h
10731         * object-internal.h: Same.
10733 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10735         * reflection.h: Fix the build I just broke.
10737 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10739         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
10740         Test if a token is valid, this remove explicit usage of 
10741         MonoDynamicImage::tokens from the verifier code.
10743         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
10745         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
10746         instead of direct access to MonoDynamicImage::tokens.
10748 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10750         * verify.c (token_bounds_check): Fix the build I just broke.
10752 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
10754         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
10756         * verify.c (verifier_load_method): Fixed the errors message.
10758         * verify.c (mono_method_verify): Fixed a debug message.
10760 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
10762         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
10763         mono-perfcounters.h, class-internals.h: support for predefined
10764         writable counters, query of categories and counters, bugfixes.
10766 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10768         * verify.c (do_refanytype): Verify the refanytype opcode.
10770         * verify.c (mono_method_verify): Use do_refanytype.
10772 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
10774         * verify.c (do_mkrefany): Verify the mkrefany opcode.
10776         * verify.c (mono_method_verify): Use do_mkrefany.
10778 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
10780         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
10781         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
10782         implementation.
10784 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10786         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
10787         the type load exception.
10789 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
10791         * verify.c: Added a few FIXME for method signatures
10793         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
10794         of mono_method_get_signature and get vararg call working. Removed unused
10795         checks for return value.
10797         * verify.c (do_refanyval): Verify the refanyval opcode.
10799         * verify.c (mono_method_verify): Implemented verification of arglist and
10800         use do_refanyval.
10802 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
10804         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
10805         vtypes to marshal.c.
10807         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
10808         it works for AOT as well.
10810 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
10812         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
10813         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
10814         the system time is adjusted.
10816 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
10818         * icall.c, icall-def.h: use the new time functions (fixes the
10819         non-monotonic behaviour of TickCount).
10821 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
10823         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
10824         it breaks the build.
10825         
10826         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
10827         cattr is not finished yet.
10829 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10831         * verify.c: Proper token validation for field, method and type.
10833 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
10835         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
10837         * loader.c (method_from_memberref): Generate type load error instead of method missing
10838         if the type is not found.
10840 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
10842         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
10843         some of the conversions caused the generation of a marshal directive exception.
10845 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10847         verify.c: Report which exception should be thrown by the JIT.
10848         Added a lot of FIXME notes.
10850 2008-02-22  Mark Probst  <mark.probst@gmail.com>
10852         * generic-sharing.c: Runtime generic context slots are not
10853         instantiated on init anymore.  Instead, provide function to do the
10854         instantiating on demand.
10856         * class-internals.h: Added vtable to runtime generic context.
10857         Macros for encoding direct and indirect slot offsets in one
10858         guint32.
10860 2008-02-21  Mark Probst  <mark.probst@gmail.com>
10862         * object.c, generic-sharing.c: Moved some generic sharing code
10863         from object.c to generic-sharing.c.
10865         * generic-sharing.c: Added support for extensible runtime generic
10866         context.
10868         * metadata-internals.h: Two new hash tables in MonoImage for
10869         extensible runtime generic context support.
10871         * domain.c: Unregister generic vtables upon domain unloading.
10873         * image.c: Destroy new hash tables upon image unloading.
10875         * metadata.c: Unregister generic subclasses upon image unloading.
10877         * class-internals.h: New data structure for runtime generic
10878         context template.  New fields in the runtime generic context for
10879         extensible part.
10881         * Makefile.am: Added generic-sharing.c.
10883 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
10885         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
10886         there is a pending loader exception, raise it.
10888         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
10889         same.
10891         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
10892         same.
10894         Fixes #363450.
10896 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
10898         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
10900         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
10901         
10902         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
10903         ref-only requests for compatibility with MS.
10905 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10907         * reflection.c (mono_custom_attrs_from_method): Don't silently
10908         return an empty list for generic method instances.
10909         (mono_custom_attrs_from_param): Likewise.
10911 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
10912             Raja R Harinath  <harinath@hurrynot.org>
10914         Fix #354757
10915         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
10916         * class.c (mono_class_inflate_generic_method_full): Initialize it
10917         when a fully-open method is instantiated.
10918         * metadata.c (inflated_method_equal, inflated_method_hash): Update
10919         to new field.
10920         * reflection.c (inflate_mono_method): Don't create a temporary context.
10922 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
10924         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
10925         Compute correct value, to prepare for imethod->reflection_info going away.
10927 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
10929         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
10931 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10933         * verify.c: Implement skip visibility flag.
10935 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
10937         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
10938         which contains an extra field to tell the kind of exception that should be thrown.
10940         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
10942 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
10944         * loader.c (mono_method_get_param_names): Initialize 'klass' after
10945         'method' is updated.
10947 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
10949         * class.c (mono_class_layout_fields): Set class->min_align for classes using
10950         explicit layout as well. Fixes #360375.
10952 2008-02-11  Geoff Norton  <gnorton@novell.com>
10954         * loader.c: Guard and dereference against inflated generic methods
10956 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
10958         * class.c: Include Retargetable spec in assembly name.
10959         * assembly.c: Always include PublicKeyToken spec in assembly name
10960         (with value "null" if assembly is not signed), and include
10961         Retargetable spec.
10962         * icall-def.h: Added icall for Assembly.get_fullname.
10963         * icall.c: Added icall returning the fullname of an assembly.
10965 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
10967         * class.c (mono_class_setup_vtable_general): Add a missing call to
10968         mono_class_setup_methods () which is needed in the AOT case.
10970 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
10972         * verify.c (mono_type_get_stack_name): Added. Return the name for the
10973         stack type of the given MonoType.
10975         * verify.c (verify_type_compatibility_full): Handle the void type.
10977         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
10978         way stack merging works.
10980         * verify.c (store_local): Improved verification message.
10982         * verify.c (do_branch_op): If the merging is invalid, the method
10983         is unverifiable and not invalid. Improved error message.
10985         * verify.c (merge_stacks): Properly merge a boxed valuetype and
10986         a reference type diferent than System.Object. Improved error
10987         message.
10989 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
10991         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
10993         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
10994         type of an enum even if the argument is byref.
10996         * verify.c: Replace all explicit uses of enumtype and enum_basetype
10997         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
10999         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11001         *verify.c (verify_type_compatibility_full): Make enum types
11002         compatible with their base types.
11004         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11005         types are compatible for the special case of a boxed valuetype and
11006         System.Object.
11008         * verify.c (verify_stack_type_compatibility): The function
11009         is_compatible_boxed_valuetype was extracted from here.
11011         * verify.c (push_arg): Only set ctx->has_this_store if the method
11012         is not static.
11014         * verify.c (do_ldelem): Fixed a typo in an error message and added
11015         strict check for mixing int32 and native int as the array type
11016         and ldelem type.
11018         * verify.c (merge_stacks): Consider boxed valuetypes in the
11019         compatibility checks.
11021 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11022         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11024 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11025         *class.c: use_new_interface_vtable_code: renamed the env var to have
11026         a "MONO_" prefix, and fix the logic to enable it by default.
11028 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11029         *class.c:
11030         mono_class_setup_vtable_general: rewrote the way in which interface
11031         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11032         makes the code more maintainable.
11033         For now the old code is still there, and can be activated setting
11034         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11036 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11038         * verify.c: guarded some debug functions around and #ifdef.
11040         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11042 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11044         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11045         changes for now since they seem to break too many things.
11047 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11049         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11050         mono_marshal_find_nonzero_bit_offset): Added macro and function
11051         for finding the byte- and bit-offset of a bitfield within a
11052         struct.
11054 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11056         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11057         (mono_marshal_get_struct_to_ptr): Ditto.
11059         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11060         cctor_signature.
11062 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11064         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11065         between methods for non-corlib types.
11067 2008-02-02  Geoff Norton  <gnorton@novell.com>
11069         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11070         generic parameters as well. (Fixes #342536)
11072 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11074         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11076         * verify.c (do_invoke_method): Fix for calling with byref structs.
11078         * verify.c (do_cast): push a boxed value type based on the type token and not
11079         the type of stack.
11081 2008-01-31  William Holmes  <billholmes54@gmail.com>
11083         * process.c (process_module_string_read): Check the size returned form 
11084           VerQueryValue to avoid out of memory exception. 
11086 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11088         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11089         Handle properly modules which are not in the moduleref table. Fixes
11090         #356938.
11092 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11094         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11095         the dynamic case which is now in managed code.
11096         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11098         * marshal.c (mono_string_to_bstr): Fix a warning.
11099         (init_com_provider_ms): Ditto.
11101         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11103         * exception.c (mono_get_exception_out_of_memory): New helper function.
11105 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11107         * marshal.c: Add support for BSTR marshalling
11108         using other COM systems.
11110         Code is contributed under MIT/X11 license.
11112 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11114         * object.c (mono_runtime_invoke_array): reverted previous
11115         commit as it breaks the build.
11117 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11119         * object.c (mono_runtime_invoke_array): Verify arguments for
11120         invalid types. Fixes #348522.
11122 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11124         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11125         non-final virtual calls using call. 
11127         * verify.c (do_invoke): fixed some TODOs.
11129         * verify.c (push_arg): set has_this_store for "ldarga 0".
11131 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11133         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11134         which belong to an inflated class. Fixes #356531.
11136 2008-01-26  Robert Jordan  <robertj@gmx.net>
11138         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11139         which resort to FindFirstFile when a certain error condition
11140         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11141         Code is contributed under MIT/X11 license.
11143 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11145         * marshal.c (emit_marshal_string): Fix out string marshalling
11146         to use specified encoding. Fixes #323900.
11148         Code is contributed under MIT/X11 license.
11150 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11152         * class.c (mono_class_inflate_generic_method_full): Don't modify
11153         iresult->context after cache check.
11155 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11157         * class.c (mono_class_inflate_generic_method_full): Change the
11158         struct assignments to memcpy for better visibility and add some comments.
11160 2008-01-23  Dick Porter  <dick@ximian.com>
11162         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11163         procedure, and make it work on windows.
11165 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11167         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11168         a MonoReflectionTypeBuilder since it is always of that type.
11170         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11172         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11174         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11175         
11176         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11178         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11180         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11181         instantiations from the type cache.
11183 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11185         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11187         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11189 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11191         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11193         * verify.c (mono_method_verify): removed old TODO
11195 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11197         * verify.c (do_newobj): add visibility check.
11199 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11201         * verify.c (do_load_function_ptr): add visibility check.
11203 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11204         *class.c:
11205         mono_generic_class_get_class: hook profiler events.
11206         mono_field_get_offset: added to support heap-shot in the new profiler.
11207         *class.h: exported mono_field_get_offset.
11208         * reflection.c:
11209         mono_reflection_setup_internal_class: hook profiler events.
11211 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11213         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11214         argument here too and use it to avoid checking for pending exceptions if 
11215         possible.
11217 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11219         * assembly.c (build_assembly_name): add arg for passing the assembly
11220         flags. Do not consider a PublicKey with value "null" valid.
11221         (mono_assembly_name_parse_full): added boolean argument that will be
11222         set if the assembly name contains a PublicKeyToken spec. Added support
11223         for the Retargetable spec for which only Yes or No are allowed as valid
11224         value. Consider assembly name invalid if Retargetable spec is set, but
11225         either version, culture or public key (token) are not specified.
11226         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11227         with implementation in assembly.c.
11228         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11229         from MonoAssemblyName.
11230         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11231         introduced argument for mono_assembly_name_parse_full to know if the
11232         assembly name has a PublicKeyToken spec, and if it has instruct
11233         fill_reflection_assembly_name to use default value for keyToken (if
11234         PublicKeyToken is null).
11236 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11238         * verify.c (mono_method_verify): fixed ovf ops with
11239         float values. They are unverifiable now.
11241 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11243         * class.c (set_failure_from_loader_error): add BadImageException to the
11244         list of exceptions that can cause a type to fail to load.
11246         * class.c (mono_class_get_exception_for_failure): same.
11248 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11250         * verify.c (in_any_exception_block): added, check if offset
11251         is part of any exception handling clause.
11253         * verify.c (get_stack_type): added VAR and MVAR types.
11255         * verify.c (do_stobj): better error messages.
11257         * verify.c (do_cpobj): added, check cpobj.
11259         * verify.c (do_initobj): added, check initobj.
11261         * verify.c (do_sizeof): added, check sizeof.
11263         * verify.c (do_localloc): added, check localloc.
11265         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11267 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11269         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11270         save_lmf/restore_lmf opcodes.
11272         * threads.c (mono_threads_install_notify_pending_exc): New function to
11273         install a callback notifying the JIT there is a pending exception on a thread.
11274         (mono_thread_request_interruption): Call the new callback.
11275         (mono_thread_get_and_clear_pending_exception): New function to return the
11276         exception pending on a thread.
11278         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11279         to turn off checking for pending exceptions.
11280         (mono_marshal_get_native_wrapper): Ditto.
11282 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11284         * threads-types.h: Get rid of the unnecessary extern declarations.
11286 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11288         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11289         return field from parent class if not private.
11290         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11291         returns fields from parent class if they are not private.
11292         (method_nonpublic): added function to determine if a given method
11293         should be considered non-public. Returns false for private methods
11294         on parent class, and internal methods from parent on the 1.0 profile.
11295         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11296         use method_nonpublic function to determine whether method should be
11297         returned.
11298         (property_accessor_public): use newly introduced method_nonpublic
11299         function to determine whether accessor is non-public. 
11300         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11301         event from parent class if not private. Only return static event if
11302         Static flag is set, and only return static event from parent class if
11303         FlattenHierarchy flag is set.
11304         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11305         include non-private events from parent class.
11307 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11309         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11310         warning.
11312 2008-01-16  Wade Berrier <wberrier@novell.com>
11314         * security.c: Add assembly.h header to appease some warnings
11316 2008-01-16  Dick Porter  <dick@ximian.com>
11318         * process.c (process_module_string_read): Remove trailing null
11319         when saving string.
11321 2008-01-16  Mark Probst  <mark.probst@gmail.com>
11323         * class-internals.h: A new data structure describing the layout of
11324         a runtime generic context (MonoRuntimeGenericContextTemplate).
11326         * metadata-internals.h: Added a hash table to MonoDomain that maps
11327         from open generic classes to their runtime generic context
11328         templates.
11330         * object.c: Building of the runtime generic context, including
11331         proper handling of generic type arguments of superclasses.
11332         Building of the runtime generic context according to the template.
11334 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
11336         * class.c (mono_class_setup_fields): Set field.count for generic instances.
11337         Fixes #350856.
11339         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
11340         mono_portability_find_file (). Fixes #325466.
11341         (mono_image_get_public_key): Fix a warning.
11343 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
11345         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
11346         Fixes #353550.
11347         (mono_class_from_name_case): Ditto.
11349 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
11351         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
11352           common storage for the tables used in the System/NumberFormatter class.
11354 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
11356         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
11358 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
11360         * verify.c (get_boxable_mono_type): check if the token is valid.
11362         * verify.c (set_stack_value): changed to add an error if an
11363         invalid type is set on stack. Changed all callers due to signature change.
11365         * verify.c (do_stobj): implement stobj validation.
11367 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
11369         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
11370         set container->is_method, it was set earlier.
11372         * metadata.c (type_in_image): Handle MVARs which belong to not finished
11373         generic methods.
11375         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11376         is_method of the generic container to TRUE for methods.
11378 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11380         * metadata.c (type_in_image): Handle type parameters properly.
11382         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
11383         memory ownership of this structure.
11385 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
11387         * verify.c (get_boxable_mono_type): make typedref types been just
11388         unverifiable. check for void type.
11390         * verify.c (do_unbox_any): added, verify opcode unbox.any.
11392         * verify.c (do_load_function_ptr): accept method spec tokens.
11394 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
11396         * marshal.c (mono_class_native_size): Always set *align even if this is called
11397         recursively.
11399 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
11401         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
11402         out-of-date.
11404 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
11406         * verify.c: removed some old unused tables. A huge bunch of small fixes
11407         to things found while testing the verifier with mono basic.
11409         * verify.c (dump_stack_value): dump null literal flag to.
11411         * verify.c (verify_type_compatibility_full): fix comparison
11412         for types that have a generic super type.
11414         * verify.c (verify_stack_type_compatibility): fix compatibility
11415         between null literals and reference types. fix compatibility between
11416         boxed valuetypes and object. fix corner case test for enums.
11418         * verify.c (do_cmp_op): proper verification of cgt.un in case
11419         of reference types.
11421         * verify.c (do_invoke_method): fix error message.
11423         * verify.c (do_store_indirect
11425         * verify.c (check_is_valid_type_for_field_ops): proper verification
11426         of managed pointers to valuetypes and boxed valuetypes. proper verification
11427         of null literals.
11429         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
11430         allow token to be a reference type.
11432         * verify.c (do_cast): proper handling of boxes valuetypes.
11434         * verify.c (do_stelem): proper handling of storing a boxed valuetype
11435         in object[].
11437         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
11438         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
11439         fixed the decoding of unbox_any
11441 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
11443         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
11445 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
11447         * verify.c (do_newobj): do delegate verification.
11449         * verify.c (verify_delegate_compatibility): perform delegate
11450         verification.
11452         * verify.c (verify_ldftn_delegate): perform tests related to
11453         ldftn delegates.
11455         * verify.c (mono_delegate_signature_equal): perform the
11456         slightly diferent signature comparison required by delegates.
11458         * metadata.c (mono_metadata_type_equal_full): added and exported
11459         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
11460         allows signature only comparison.
11462         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
11463         as MONO_INTERNAL.
11465 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
11467         * verify.c: added a bunch of stack_slot_* functions to
11468         make access to stack slot type easier. This is required to
11469         allow optional flags, like null literal, boxed value and
11470         this pointer.
11471         All access paths to IlStackDesc::stype have been changed 
11472         to use these new funcions.
11473         Removed a bunch of unused functions and cleared all warnings.
11474         This patch introduces the usage of the this pointer and 
11475         boxed value flags.
11477 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
11479         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
11481 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
11483         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
11484         match managed version.
11486         * appdomain.c: Bump corlib version.
11487         
11488         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
11489         argument.
11491 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
11493         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
11494         Set public key token to zero-length byte array if assembly is not
11495         strongnamed.
11497 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11499         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
11500         writing a vtype array elem.
11502 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
11504         * assembly.c (build_assembly_name): return FALSE if length of token is
11505         not 16 (if not "null").
11506         (mono_assembly_name_parse_full): return FALSE if value of version,
11507         culture, token or key is 0.
11508         * icall.c (fill_reflection_assembly_name): add boolean arguments to
11509         specify whether public key and public key token must be set to default
11510         value (zero-length byte array) if not available. Set versioncompat to
11511         SameMachine. If public key is available or the default is set, then
11512         set PublicKey flag.
11513         (ves_icall_System_Reflection_Assembly_FillName): if no public key
11514         is available, use empty byte array as default value. On the 2.0
11515         profile, use default value for public key token if not set.
11516         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
11517         profile, use default value for public key if not set. On the 2.0
11518         profile, use default value for public key token if not set.
11519         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
11520         default values for public key and public key token.
11522 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
11524         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
11525         field to keep it in synch with the managed object.
11527         * marshal.c (emit_marshal_object): Add support for byref marshalling of
11528         delegates. Fixes #351520.
11530         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
11531         contains defined memory.
11532         
11533         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
11535         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
11536         
11537         * sgen-gc.c (check_consistency): New helper function to do a consistency check
11538         of the GC data structures.
11540         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
11542         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
11543         
11544         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
11545         barrier.
11546         (mono_array_clone_in_domain): Ditto.
11547         (mono_array_clone_in_domain): Ditto.
11549         * threads.c (start_wrapper): Register the thread start argument as a GC root.
11550         (cache_culture): Use a write barrier.
11552         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
11553         (ves_icall_get_property_info): Ditto.
11555         * object.h (MONO_STRUCT_SETREF): New macro.
11557         * class-internals.h (MonoStats): Add some GC statistics.
11559         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
11561 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
11563         * exception.c (mono_exception_from_name_two_strings):
11564         Break from loop after method is found.
11566 2008-01-04  Dick Porter  <dick@ximian.com>
11568         * process.c (process_module_string_read): Rename variable to
11569         reflect correct usage, after fixing bug 345972.
11571 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
11573         * verify.c (mono_type_create_fnptr_from_mono_method): 
11574         created a MonoType function pointer instance to be used during
11575         verification. The verifier releases this memory at end.
11577         * verify.c (mono_method_is_constructor): extracted repeated
11578         checks for constructor into a single class.
11580         * verify.c (do_push_field): use new extracted method
11581         for constructor check.
11583         * verify.c (do_newobj): same.
11585         * verify.c (do_ldftn): renamed to do_load_function_ptr
11586         and make it verify ldvirtftn too.
11588         * verify.c (mono_method_verify: proper verification
11589         of ldvirtftn. release created MonoMethod instances.
11591 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11593         * verify.c (token_bounds_check): added.
11595         * verify.c (do_ldftn): added.
11597         * verify.c (mono_method_verify): proper verificartion of ldftn.
11599 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
11601         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
11602         than the table row count. It's the resposibility of the caller to
11603         make the bounds check and raise the correct error.
11605         * metadata.c (mono_metadata_decode_row_col): Same.
11607         * loader.c (mono_get_method_from_token): perform bounds check
11608         on token for methoddef table.
11610 2007-12-29  Miguel de Icaza  <miguel@novell.com>
11612         * icall.c
11613         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
11614         assert into a negative result, the managed code already coped with
11615         that.
11617         Some folks on Windows reported this error. 
11619 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
11621         * appdomain.c: Bump corlib version.
11622         * icall.c:
11623         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
11624         CultureInfo.CreateCulture to create CultureInfo for name.
11625         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
11626         create CultureInfo for name. Fixes bug #347174.
11628 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11630         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
11631         flags.
11633         * verify.c (is_valid_branch_instruction): allow branching to the
11634         first instruction of the protected block.
11636         * verify.c (is_valid_cmp_branch_instruction): same.
11638         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
11639         avoid double initialization.
11641         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
11642         detect which cases the eval stack should just be copied.
11644         * verify.c (mono_method_verify): check if the eval stack
11645         is empty when entering a protected block.
11647 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
11649         * verify.c: added is_clause_in_range, is_clause_inside_range,
11650         is_clause_nested and verify_clause_relationship. They perform
11651         the verifications stated in P1 12.4.2.7.
11653         * verify.c (mono_method_verify): remove some unused variables,
11654         add the new exception clause checks, add instruction border
11655         checks for protected block start/end, improved some error 
11656         messages and fixed a bug in the way invalid instruction access
11657         is detected.
11659 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
11661         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
11662         from GC 7.0 if available.
11664         * object.c: Remove an unused define.
11665         
11666         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
11668         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
11670         * null-gc.c (mono_gc_make_descr_for_array): Implement.
11672         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
11674         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
11675         to take the same arguments as the other make_descr functions.
11677         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
11679         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
11680         directly.
11682         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
11683         mini.c.
11685         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
11686         call to boehm-gc.c.
11688         * boehm-gc.c (mono_gc_register_root): Fix a warning.
11690         * null-gc.c (mono_gc_register_root): Fix a warning.
11692         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
11694         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
11695         (mono_gc_base_init): Call GC_init ().
11697         * null-gc.c: Define mono_gc_register_root () as a no-op.
11699         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
11701 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
11703         * verify.c: add prototype for merge_stacks at top
11705         * verify.c (do_switch): added.
11707         * verify.c (merge_stacks): on some cases the stack merging
11708         was not happening properly. Unequal stack sizes at merge
11709         points should be invalid.
11711         * verify.c (mono_method_verify): added more debug info on stack state.
11712         verify switch properly.
11714 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
11716         * method-builder.h: New file, moved the mono_mb_ declarations here from 
11717         marshal.h.
11719         * boehm-gc.c marshal.c: Include method-builder.h.
11721         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
11723         * marshal.c: Remove some code which is now in method-builder.c.
11725 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
11727         * method-builder.c: New file, extraction of the method builder functionality 
11728         from marshal.c.
11730         * marshal.c: Move the mb functions into method-builder.c.
11732         * marshal.h marshal.c: Export some mono_mb_... functions.
11734         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
11736         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
11737         the caller.
11739         * class.c (mono_class_get_full): Check the token type in the dynamic case.
11741         * loader.c (mono_field_from_token): Ditto.      
11743         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
11744         type as well.
11745         
11746         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
11747         Fixes #342565.
11749         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
11750         a helper function for setting it.
11752         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
11754         
11755         * assembly.c: Significally simplify code now that referenced assemblies are 
11756         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
11758         * threads.h: Don't include  the internal threads-types.h header file. Fixes
11759         #349952.
11761 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
11763         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
11764         instructions that were target of branches or are at protected block boundaries.
11766         * verify.c (in_same_block): handle filter clauses.
11768         * verify.c (is_valid_branch_instruction): added. checks the target of
11769         instructions br or brtrue/false.
11771         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
11772         binary branch instructions such as beq and bge.
11774         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
11775         and made it pin the instruction as been part of the exception block.
11777         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
11778         of in_same_block.
11780         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
11781         of in_same_block.
11783         * verify.c (do_ret): ret from a protected block is unverifiable and
11784         not invalid.
11786         * verify.c (do_static_branch): verify br and br.s instructions.
11788         * verify.c (merge_stacks): add extra param to support detection
11789         of branches in the middle of instructions.
11790         
11791         * verify.c (mono_method_verify): verify branches and exception blocks
11792         that target the middle of instructions. Proper verification of br and br.s.
11794 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
11796         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
11797         skip_visibility field.
11798         (reflection_methodbuilder_from_dynamic_method): Ditto.
11800         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
11801         registrations. Fixes #348193.
11803         * threads.h: Move the internal mono_thread_get_pending_exception () to
11804         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
11806 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
11808         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
11809         icall registration. Fixes #348193.
11811         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
11812         for corlib classes into object. Fixes #349621.
11814 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
11816         * icall.c (property_accessor_nonpublic): new function to determine
11817         whether an accessor allows a property to be considered non-public.
11818         Returns false for private accessor(s) from parent class, and internal
11819         accessor(s) from parent on 2.0 profile (and higher).
11820         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
11821         to determine whether property should be included if NonPublic flag
11822         is set. Fixes bug #349078.
11824 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
11826         * verify.c (init_stack_with_value): added.
11828         * verify.c (mono_method_verify): extracted common
11829         code for exception initialization into init_stack_with_value.
11831         * verify.c (mono_method_verify): initialize the exception
11832         for handler clauses as well.
11834         * verify.c (mono_method_verify): fix the exception clause
11835         ordering rules, it should use handler end offset and not
11836         start offset.
11838 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
11840         * rawbuffer.c: remove useless warning.
11842 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
11844         * threads.h, threads-types.h: move functions to the correct header
11845         (fixes bug#349952).
11847 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11849         * verify.c (mono_method_verify): proper verification
11850         of exception handling clauses ranges and fallthru in
11851         and out of protected blocks.
11853 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11855         * verify.c (mono_method_verify): fixed compilation issue.
11857 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
11859         * verify.c (mono_method_verify): a printf slipped in, changed
11860         to use verifier debug macro.
11862 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
11864         * verify.c (is_correct_leave): check for filter clauses.
11866         * verify.c (do_filter): added.
11868         * verify.c (mono_method_verify): property verification of leave.
11871 2007-12-18  Mark Probst  <mark.probst@gmail.com>
11873         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
11874         Win32 build, until we figure out how to do the proper thing on
11875         Win32.
11877 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
11879         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
11880         by the previous patch.
11881         
11882         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
11883         the assembly resolve handler for refonly assemblies.
11885 2007-12-17  Mark Probst  <mark.probst@gmail.com>
11887         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
11888         Make sure only one thread is allowed to commence shutdown, and
11889         don't allow new threads to be started once shutdown is in
11890         progress.
11892 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
11894         * verify.c (is_correct_endfilter): added.
11896         * verify.c (is_unverifiable_endfilter): added.
11898         * verify.c (do_endfilter): added.
11900         * verify.c (mono_method_verify): property verification of endfilter
11901         and fixed a corner case or endfinally.
11903 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
11905         * verify.h: new flags to support fail fast of unverifiable code and
11906         do non-strict verification. Non-strict verification is required to
11907         have MS runtime compatibility. There are a huge amount of unverifiable
11908         code that it accepts as verifiable. The strict mode verifies the code
11909         as the specs says.
11910         Non-strict mode will be required in cases where code needs to be
11911         accepted as verifiable but fails under strict mode.
11913         * pedump.c: added support to fail fast and non-strict verification.
11915         * verify.c: added support for both fail fast and non-strict verification.
11917 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
11919         * verify.c (is_correct_endfinally): added.
11921         * verify.c (mono_method_verify): property verification of endfinally.
11923 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11925         * verify.c (in_any_block): check for filter clauses.
11927         * verify.c (is_correct_rethrow): added.
11929         * verify.c (mono_method_verify): property verification of rethrow.
11931         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
11933 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
11935         * verify.c (do_throw): added.
11937         * verify.c (mono_method_verify): property verification of throw
11939 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
11941         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
11942         assemblies. Fixes #346425.
11944 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
11946         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
11947         FieldBuilders.
11949         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
11951         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
11952         prevent asserts when this is called with a token which might not be valid.
11954         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
11955         lookup_dynamic_token_class with valid_token == FALSE.
11957         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
11959         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
11961         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
11962         
11963 2007-12-10  Mark Probst  <mark.probst@gmail.com>
11965         * gc.c: Don't delay threadpool thread finalization unless Mono is
11966         shutting down.
11968 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
11970         * threads.c: turn an assert into a non-fatal warning.
11972 2007-12-09  Robert Jordan  <robertj@gmx.net>
11974         * icall.c (GetVirtualMethod): Add missing argument validation.
11976 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11978         * verify.c (do_cast): added.
11980         * verify.c (mono_method_verify): property verification of castclass and isinst.
11983 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
11985         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
11987         * verify.c (do_stelem): added.
11989         * verify.c (mono_method_verify): property verification of stelem.X.
11991 2007-12-07  Mark Probst  <mark.probst@gmail.com>
11993         * class.c, class-internals.h: Introduce an environment variable
11994         (MONO_GENERIC_SHARING) through which the extent of generic code
11995         sharing can be controlled (share all classes, share only corlib
11996         classes, or share nothing).
11998         * object.c: Only create runtime generic context for classes for
11999         which sharing is enabled.
12001 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12003         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12005         * verify.c (mono_method_verify): property verification of ldelem.any.
12007 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12009         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12010         added ldelem.X opcodes.
12012         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12014         * verify.c: proper verification of ldelem.X 
12016 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12018         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12020 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12022         * verify.c (mono_method_verify): null literal requires special handling,
12023         the value pushed on stack need to be flagged as so.
12025         * verify.c (do_ldelema): Verify ldelema properly.
12027 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12029         * verify.c: Verify ldlen properly.
12031 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12033         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12034         to the target object's type. Fixes #346160.
12036 2007-12-05  Dick Porter  <dick@ximian.com>
12038         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12039         Solaris needs the same workaround as BSD-derived systems.  Fixes
12040         bug 323524, patch by Burkhard Linke
12041         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12043 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12045         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12046         handle to use when error dialog is shown; otherwise, update mask
12047         to show no error dialog when an error occurs.
12049 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12051         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12053         * class.c (mono_class_get_field_default_value): New helper function to initialize
12054         field->def_type and field->data.
12056 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12058         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12059         the general one.
12061         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12063         * marshal.c: Avoid depending on delegate->method_info being set.
12065         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12066         
12067         * object.c (mono_delegate_ctor): Set delegate->method.
12069         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12071         * appdomain.c: Bump corlib version.
12073 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12075         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12076         equality check if we're comparing canonicalized MonoGenericInsts.
12078 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12080         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12081         accessing class->methods.
12083 2007-11-22  Dick Porter  <dick@ximian.com>
12085         * threads.c: Ensure that the synch_cs is set before trying to use
12086         it.
12088 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12090         * profiler.c: r89126 broke the statistial profiler, unbreak.
12092 2007-11-22  Martin Baulig  <martin@ximian.com>
12094         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12096         * mono-debug.c
12097         (mono_debug_debugger_version): Bump to 3.
12098         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12099         -> mono_debugger_class_initialized().
12101         * mono-debug-debugger.c
12102         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12104         * class.c
12105         (mono_debugger_start_class_init_func): Removed.
12106         (mono_debugger_class_loaded_methods_func): Added.
12107         (mono_class_setup_methods): Call it here.
12109 2007-11-22  Martin Baulig  <martin@ximian.com>
12111         * mono-debug.c
12112         (mono_debug_add_delegate_trampoline): New public method.
12113         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12115         * mono-debug.h
12116         (MonoSymbolTable): Added `global_data_table'.
12117         (MonoDebuggerTypeKind): Removed.
12119 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12121         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12122         these methods.
12124         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12125         
12126 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12128         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12130 2007-11-20  Martin Baulig  <martin@ximian.com>
12132         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12134         * mono-debug-debugger.c
12135         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12136         (mono_debugger_remove_breakpoint): Likewise.
12137         (mono_debugger_check_breakpoints): Likewise.
12138         (mono_debugger_register_class_init_callback): New public method.
12139         (mono_debugger_remove_class_init_callback): Likewise.
12140         (mono_debugger_add_type): Likewise.
12142         * mono-debug-debugger.h
12143         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12145 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12147         * class.c: more interface implementations needed for the
12148         array enumerator (fixes bug #341112).
12150 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12152         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12153         fix ParamName of ArgumentNullExceptions.
12155 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12157         * reflection.c (mono_reflection_encode_sighelper): Generate the
12158         modopts and modreqs.   I have a useless test that crashes monodis,
12159         but that shows the code working.
12161 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12163         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12164         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12166 2007-11-15  Dick Porter  <dick@ximian.com>
12168         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12169         When joining a thread, it's the thread that's calling Join that
12170         gets WaitSleepJoin state not the target.  Fixes the standalone
12171         test case in bug 334740, and hopefully the whole bug too.
12173 2007-11-15  Dick Porter  <dick@ximian.com>
12175         * process.c: Read file version info from the files pointed at by
12176         process modules, not the current process.  Fixes bug 315969.
12178         Use windows typedef names in some places to fix warnings on the
12179         windows build.
12181 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12183         * image.c, metadata-internals.h: Added a generic_class_cache hash
12184         to MonoImage for looking up generic classes when sharing generics.
12186 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12188         * sgen-gc.c: warning cleanups.
12190 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12192         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12193         inherited properties.
12195 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12197         * object.c, class-internals.h: Added more information to the
12198         runtime generic context.
12200 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12202         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12203         instead of just the target method. Generalize the abstract method handling to
12204         handle any non-static method.
12206         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12207         mono_marshal_get_delegate_invoke () signature change.
12209 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12211         * class.c, class-internals.h: Made
12212         mono_type_get_basic_type_from_generic () public.  Fixed member
12213         access check for shared generics.
12215         * loader.c: Don't insert field into field cache if it's part of a
12216         non-inflated generic class.
12218         * domain.c, domain-internals.h: The generic sharing context is now
12219         part of the jit info data structure.  Added two accessor
12220         functions.
12222 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12224         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12225         the array Get/Set/Address methods, since the JIT inlines them.
12227         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12229         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12230         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12232         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12233         mono_marshal_get_delegate_invoke signature change.
12235         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12236         an additional argument. Add support for invoking abstract methods.
12238         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12240         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12242 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12244         * class.c: Do field layout for open generic classes as well.
12246 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12248         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12249         other objects, because the threadpool is still around.  Put them
12250         in a list instead and after finalizing all other objects in the
12251         root domain shut down the thread pool and then finalize the
12252         threads.  Fixes bug #337383.
12254         * threads.c, thread-types.h: New mono_thread_create_internal()
12255         function for marking a thread with the threadpool flag before it
12256         started.  Set synch_cs to NULL after freeing it.
12258         * threadpool.c: Mark threadpool threads before they start.
12260 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12262         * reflection.h, reflection.c: don't export random functions
12263         and lazy load dbnull and missing objects.
12265 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12267         * class.c: Initialize COM types if COM interfaces
12268         are present (not just COM classes).
12269         
12270         Code is contributed under MIT/X11 license.
12272 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12273         * reflection.c:
12274         create_dynamic_mono_image: hook module profiler events (dynamic case).
12275         mono_image_basic_init: hook assembly profiler events (dynamic case).
12277 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12278         * profiler.c:
12279         simple_appdomain_unload: completely terminate the profiler
12280         instead of only processing the statistical samples.
12281         simple_shutdown: make sure this is really called exactly once,
12282         even in multithreaded applications, and always listen to
12283         appdomain events.
12284         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12285         here, the "[un]load" functions will do it.
12286         Fixes bugs #333791 and #325261.
12288 2007-11-07  Geoff Norton  <gnorton@novell.com>
12290         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12291         rather than depend on __APPLE__.
12293 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12295         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12297 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12299         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12300         UTF16 MonoString. Fix the crash from bug #335488
12302 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12304         * marshal.c: Correct (for non-Win32 OS) length != size in 
12305         mono_string_from_bstr. Fix #339530.
12307 2007-11-06  Geoff Norton  <gnorton@novell.com>
12309         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12310         to succeed
12312 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
12314         * process.c: Added run-time GetProcessId API detection for Windows.
12316 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12318         * reflection.c  (mono_param_get_objects): If a parameter has the
12319         attribute [System.Runtime.InteropServices.Optional] we should
12320         set the DefaultValue of the ParameterInfo to be
12321         System.Reflection.Missing instead of DBNull.
12323         See bug #339013.
12325         (mono_get_reflection_missing_object): New method,
12326         returns the System.Reflection.Missing.Value singleton instance.
12328 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
12330         * culture-info-table.h : regenerated.
12332 2007-11-02  Jonathan Chambers <joncham@gmail.com>
12334         * icall.c: Use GetEnvironmentStrings on windows
12335         so we are using the same environment block as 
12336         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
12337         #333740.
12338         
12339         Code is contributed under MIT/X11 license.
12341 2007-10-31  Martin Baulig  <martin@ximian.com>
12343         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
12345         * mono-debug-debugger.h
12346         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
12348 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
12350         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
12351         classes.
12353 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
12355         * culture-info-table.h : regenerated.
12357 2007-10-30  Robert Jordan  <robertj@gmx.net>
12359         * icall-def.h, icall.c:
12360         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
12362         Code is contributed under MIT/X11 license.
12364 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12366         * class.c (mono_class_setup_vtable): Find the inflated methods in the
12367         inflated class instead of inflating them again.
12368         
12369         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
12370         dynamic case.
12372         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
12373         Call setup_supertypes () after klass->parent is set.
12374         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
12376         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
12377         for inflated instances of not yet created dynamic generic classes.
12378         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
12379         times from inflated_method.
12380         (methodbuilder_to_mono_method): Ditto.
12382 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
12384         * gc.c: code cleanup and removed old untested option of not creating the
12385         finalizer thread.
12387 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
12389         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
12390         creating a jump trampoline for dynamic methods.
12392 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
12394         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
12395         generic TypeBuilders when called from another method of the same type (bug #335131).
12398 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
12400         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
12401         doesn't seem to work perfectly.
12402         
12403         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
12404         called multiple times.
12405         (methodbuilder_to_mono_method): Ditto.
12406         (resolve_object): Inflate FieldBuilder's.
12408 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12410         * string-icalls.c, string-icalls.h, appdomain.c: patch from
12411         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
12412         RemoveEmptyEntries in the string.Split implementation (bug #322375).
12414 2007-10-26  Dick Porter  <dick@ximian.com>
12416         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
12417         Thread initialisation changes
12419 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
12421         * verify.c: fix compatibility check between arrays and System.Array
12423 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
12425         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
12426         too. Fixes #336999.
12428 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
12430         * object.c (mono_value_box): Use typed allocation here.
12432 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
12434         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
12435         trampoline instead of compiling the method right away.
12437         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
12439 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
12441         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
12442         related fields for dynamic classes. Fixes #334493.
12444 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
12446         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
12447         
12448         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
12450         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
12451         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
12453         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
12455         * reflection.c (create_generic_typespec): Initialize klass->generic_container
12456         if needed.
12457         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
12459 2007-10-18  Jonathan Chambers <joncham@gmail.com>
12461         * marshal.c: Use correct key when removing item
12462         from ccw_hash.
12463         
12464         Code is contributed under MIT/X11 license.
12466 2007-10-17  William Holmes  <billholmes54@gmail.com>
12468         *marshal.c: Adding a case to marshal booleans to U1
12470         Code is contributed under MIT/X11 license.
12472 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
12474         * class.c (mono_class_from_name): Search the modules compromising dynamic
12475         assemblies. Fixes #331601.
12477 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
12479         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
12480         exception if the type name contains an assembly component. Fixes #334203.
12482         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
12483         modules inside dynamic assemblies. Fixes #334200.
12484         
12485         * reflection.c: Set image->public_key and image->public_key_length;
12487         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
12488         fields.
12490         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
12491         
12492 2007-10-16  Mark Probst  <mark.probst@gmail.com>
12494         * metadata.c: Implemented correct comparing of generic classes.
12495         An inflated generic class can be equal to a non-inflated one if it
12496         is inflated with generic type variables as type arguments.  Fixes
12497         bug #333798.
12499 2007-10-15  Dick Porter  <dick@ximian.com>
12501         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
12502         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
12503         81646.
12505         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
12506         instead of a monitor lock.  This means that monitor_try_enter and
12507         co can set the thread state safely.
12508         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
12509         thread_interrupt_requested, so interrupt actually works.
12511         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
12512         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
12513         state accessor function
12515 2007-10-15  Martin Baulig  <martin@ximian.com>
12517         * mono-debug.h
12518         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
12519         the debugger with the current runtime.
12521 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
12523         * object.c, object-internals.h: added the ability to set a single
12524         trampoline for all the slots in a vtable.
12526 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12528         * marshal.c: deal with a possible race condition during multicast
12529         delegate invocation.
12531 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12533         * class.c: ensure value type methods don't have the synchronized
12534         flag set.
12536 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
12538         * string-icalls.c, string-icalls.h: reverted unapproved patch that
12539         breaks the build.
12541 2007-10-11  Joel Reed  <joelwreed@comcast.com>
12543         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
12544         to take an options parameter so that empty entries can be removed during
12545         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
12547 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12549         * marshal.c: make sure we don't store the signature from a dynamic
12550         method into the runtime invoke cache (bug #327189).
12552 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12554         * marshal.c: make sure the wrapper methods are properly initialized.
12556 2007-10-11  Mark Probst  <mark.probst@gmail.com>
12558         * metadata.c, metadata-internals.h: Generalized
12559         mono_type_stack_size() to mono_type_stack_size_internal() which
12560         takes an additional argument specifying whether it allows open
12561         types.
12563 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
12565         * verify.c (do_invoke_method): handle typedbyref params
12566         correctly and check for unverifiable return values.
12568         * verify.c (do_newobj): fix a warning.
12570 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12572         * verify.c: don't tread typedbyref as allways unverifable,
12573         so uses, like (ld/st)loc.0 are valid. verify for the cases
12574         that it matters, like boxing related operations.
12576 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
12578         * verify.c: add verification of the newobj opcode. verification
12579         of delegate instantation still missing due ldftn and virldftn not
12580         pushing the function type on stack
12582 2007-10-08  Mark Probst  <mark.probst@gmail.com>
12584         * class-internals.h: Runtime generic context data structure
12585         definition.
12587         * object.c: Initialization of runtime generic context at runtime
12588         vtable creation time.
12590 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
12591         * class.c (mono_class_create_from_typedef,
12592         mono_class_from_generic_parameter, mono_ptr_class_get,
12593         mono_fnptr_class_get, mono_bounded_array_class_get)
12594         * domain.c (mono_domain_create, mono_domain_free)
12595         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
12596         * image.c (do_mono_image_load, mono_image_close):
12597         Hooked up load-unload profiler events.
12599 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
12601         * domain.c: track statistics about the actual amount of native code
12602         allocated.
12604 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12606         * class.c: the valuetype enumerators don't have the additional
12607         supertypes interfaces.
12609 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12611         * class.c: need more interfaces setup for the IEnumerator<T>
12612         object created for arrays (tests/ienumerator-interfaces.2.cs).
12614 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
12616         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
12618 2007-10-05  Alp Toker  <alp@atoker.com>
12620         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
12621         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
12622         #315863.
12624 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12626         * verify.c (verify_type_compatibility_full): verification of
12627         compatibility improved, validates correctly non-strict checks between
12628         native int and I4 types different than (unsigned)int32.
12630         * verify.c (do_store_indirect): added, do all verification of
12631         ldind.X opcodes. 
12633         * verify.c (get_load_indirect_mono_type): renamed to
12634         get_indirect_op_mono_type, as it now returns the MonoType for 
12635         ldind.X and stind.X opcodes.
12637 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
12639         * reflection.c: Fix the encoding of generic type definition for
12640         TypeBuilders.
12642         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
12643         mono_image_typedef_or_ref but allows to specify if typespec lookups should
12644         be made. Typespec check is done prior to typeref cache lookup.
12646         * reflection.c (mono_image_typedef_or_ref): now just delegate to
12647         mono_image_typedef_or_ref_full.
12649         * reflection.c (encode_generic_class): encode the generic class
12650         directly instead of calling encode_type.
12652         * reflection.c (encode_type): encode the generic type definition
12653         MonoClass as a generic instantiation.
12655         * reflection.c (create_typespec): cache typespec tokens in
12656         the assembly->typespec cache. Don't create typespec for a generic
12657         instance MonoClass. Create typespec for the generic type defintion.
12659         * reflection.c (create_generic_typespec): encode the generic
12660         class directly instead of calling encode_type.
12662         * reflection.c (mono_image_create_token): encode the generic
12663         type definition not using a typespec for MonoType instances.
12666 2007-10-04  Raja R Harinath  <rharinath@novell.com>
12668         Fix #328812
12669         * class.c (mono_image_init_name_cache): Don't return nested
12670         'protected internal' classes.
12671         (mono_class_from_name_case): Likewise.
12673 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
12675         * icall-def.h, icall.c : get_bundled_machine_config() is now the
12676           common function used by both DefaultConfig in System.dll and
12677           InternalConfigurationHost in System.Configuration.dll.
12679 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12681         * class.c: automatically add to vectors only a few essential explicit
12682         generic interfaces. The rest of the interfaces that arrays should
12683         provide are currently implicitly added (but still not lazily, see the
12684         design in the discussion of bug#325495 for the details of what is
12685         needed for that). Additionally, implicit interfaces are assigned the
12686         same vtable slot as the explicit interfaces (as they are compatible):
12687         this enables huge memory savings since we don't need to instantiate
12688         as many memthods and as large vtables anymore. Also, Since
12689         GetEnumerator<T> returns an instance of a type that is required to
12690         support a similarly large set of interfaces as arrays, we add
12691         implicit interfaces and interface offset sharing support to those
12692         types, too. This change adds all the required interfaces so that
12693         the anonarray.cs test case in the bug report works (we don't add
12694         all the interfaces to arrays of arrays 3-level deep and more because
12695         of the memory requirements explained in the bug and since they are much
12696         less common: the lazy-loading support will enabled them to work, too).
12698 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12700         * verify.c (merge_stacks): major clean up, all type compatibility
12701         checks are done by verify_type_compatibility. This fix my earlier lack
12702         of understanding of the CLR type system and merge_stacks no longer looks
12703         scary.
12705         * verify.c: fixed some bad spelling.
12707 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
12709         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
12710         a given stack slock.
12711         
12712         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
12713         verify_type_compatibility_full. This removed a near indentical function and fixed
12714         handling of Int32 and IntPtr across all opcodes.
12716 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12718         * class.c: only vectors have the additional generic interfaces.
12720 2007-10-01  Jonathan Chambers <joncham@gmail.com>
12722         * mono-config.c: Use g_strcasecmp instead of
12723         strcasecmp like everywhere else to fix
12724         compilation with MSVC.
12725         
12726         Code is contributed under MIT/X11 license.
12728 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12730         * object.c, object-internals.h: refactored the IMT code to enable
12731         building a single slot at a time and lazily creating the IMT trampolines
12732         and thunks.
12734 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
12736         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
12738         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
12739         Fixes #328501.
12740         
12741 2007-09-29  Raja R Harinath  <harinath@gmail.com>
12743         * loader.c (method_from_methodspec): Rearrange to avoid
12744         un-necessary exposition.  Don't assert out if the method's
12745         declaring type is a generic type definition.
12747 2007-09-28  Martin Baulig  <martin@ximian.com>
12749         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
12751 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
12753         * class-internals.h: optimize field layout of MonoClass to
12754         requires less cachelines at runtime and save a few bytes on 64 bit
12755         systems.
12757 2007-09-28  Jb Evain  <jbevain@novell.com>
12759         * reflection.c: when encoding type names in custom attributes,
12760         if the type is a closed generic type, its generic arguments
12761         have to be serialized as AssemblyQualifiedName, so that when
12762         they are deserialized, it's possible to re-create them properly.
12763         Fixes #329450.
12766 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12768         * object.c, class-internals.h: added delegate-creation counter.
12770 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
12772         * class.c: cleanup of the code that synthetizes interfaces for
12773         arrays in 2.0: saves quit a bit of corlib mempool memory.
12774         Code to fix bug #325495 ifdeffed out for now until the issues
12775         with memory usage and O(n^2) behaviour are fixed.
12777 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12779         * marshal.c: when possible, do not duplicate the name of the methods
12780         in the method builder and in the generated MonoMethod.
12782 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12783         * verify.c: added support for type checking ldind_* opcodes.
12785 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
12787         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
12788         which is used to distinguish the fully open instantiation of a TypeBuilder
12789         with the rest. This temporary hack is required to restore the property that
12790         the fully open instantiation is the same type of the generic type definition.
12792         * class-internals.h (mono_generic_class_is_generic_type_definition):
12793         new function as part of the internal API.
12795         * class.c (inflate_generic_type): return NULL when the generic inst is
12796         fully open. The fully open generic type is now the same as the generic type
12797         definition for non TypeBuilder types.
12799         * class.c (mono_generic_class_get_class): removed assert since it is
12800         no longer valid, gklass->cached_class can point to the generic type definition.
12802         * class.c (mono_generic_class_is_generic_type_definition): new.
12804         * metadata.c (mono_generic_class_hash): added is_tb_open field
12805         to the hash calculation.
12807         * metadata.c (free_generic_class): if the generic class is associated
12808         with the generic type definition, its field will come from the mempool and
12809         must not be freed.
12811         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
12812         new, this function identifies the corner case of a TypeBuilder fully open
12813         instantiation.
12815         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
12816         for lookup. Set gclass->cached_class to be the container class in case of
12817         the fully open instantiation of non TypeBuilder types.
12819         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
12820         to compare generic classes.
12822         * reflection.c (method_encode_methodspec): remove assert that
12823         no longer is valid.
12825         * reflection.c (mono_reflection_generic_class_initialize): add
12826         an aditional assert to ensure the proper type is used.
12828 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
12830         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
12831         to enjoy it.
12833 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12835         * verify.c (push_arg): Fixed support for ldarga
12836         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
12837         MonoType used as first arg in case of instance calls.
12839 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
12841         * verify.c: Support for verifying VAR and MVAR types, 
12843 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
12845         * icall.c (ves_icall_get_property_info): Set the reflected type of the
12846         accessors correctly.
12848 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
12850         * threads.c: support OSX and other systems in
12851         mono_thread_get_stack_bounds (bug #328026).
12853 2007-09-25  Martin Baulig  <martin@ximian.com>
12855         * mono-debug.h
12856         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
12858 2007-09-24  Martin Baulig  <martin@ximian.com>
12860         * mono-debug.h
12861         (MonoDebugClassEntry): Moved the definition of this struct into
12862         mono-debug.c to make it private.
12864         * mono-debug.c
12865         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
12866         type table per symbol file, we don't need to store the symfile id
12867         any longer.
12869 2007-09-24  Martin Baulig  <martin@ximian.com>
12871         Create one type table per symbol file, since a `MonoClass *' gets
12872         invalid when its image is unloaded.
12874         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
12875         (MonoDebugHandle): Added `type_table'.
12877 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12879         * mempool.c, mempool.h: added mono_mempool_new_size () API
12880         to be able to specify a smaller initial size for the pool.
12881         Adjusted the code to slowly increase pool size before using
12882         the previous default size.
12883         * image.c: use a small initial size for image mempools.
12885 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
12887         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
12888         Fixes ##320990.
12890         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
12891         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
12893 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
12895         * metadata.c (mono_type_create_from_typespec): Remove an invalid
12896         free. Fixes #327438.
12898 2007-09-21  Raja R Harinath  <harinath@gmail.com>
12900         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
12901         generic instantiations, etc.
12902         <MONO_TYPE_ARRAY>: Likewise.
12904 2007-09-21  Martin Baulig  <martin@ximian.com>
12906         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
12907         these structs were never defined.
12908         (MonoDebugHandle): Removed the `_priv' field, it was never used.
12910 2007-09-21  Martin Baulig  <martin@ximian.com>
12912         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
12914 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
12916         * image.c: removed the guid hash tables: we can get the same info
12917         without the additional memory usage hit (partially fixes also bug #327052).
12919 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12921         * profiler.h, profiler-private.h, profiler.c: add a new profiler
12922         event to handle unloading methods. After the event is called, the
12923         corresponding MonoMethod* must be considered invalid.
12924         * loader.c (mono_free_method): call the new mono_profiler_method_free
12925         event.
12927 2007-09-20  Mark Probst  <mark.probst@gmail.com>
12929         * domain-internals.h: New flag in MonoJitInfo which marks shared
12930         generic methods.  New hash table (shared_generics_hash) in
12931         MonoDomain to keep track of shared generic methods.  Prototypes
12932         for functions to register and lookup shared generic methods.
12934         * domain.c: Support for registering and looking up shared generic
12935         methods via a hash table (shared_generics_hash) in MonoDomain.
12937         * class-internals.h: New exception to signal failure of shared
12938         compilation of a generic method.  New counters for generics
12939         sharing in MonoStats.
12941 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
12943         * image.c, metadata-internals.h: don't keep a file descriptor open
12944         for loaded assemblies (bug#325988).
12946 2007-09-19  Raja R Harinath  <rharinath@novell.com>
12948         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
12949         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
12950         use the corresponding datatypes.
12951         (type_in_image): Update to changes.
12952         (CleanForImageUserData): Simplify.
12953         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
12954         Avoid quadratic behaviour in handling the "stolen" list by
12955         separating the filter predicate out, and by prepending the stolen
12956         items rather than appending them.
12957         (steal_ginst_in_image): Likewise.
12958         (mono_metadata_clean_for_image): Update to changes.
12960 2007-09-19  Martin Baulig  <martin@ximian.com>
12962         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
12964 2007-09-19  Martin Baulig  <martin@ximian.com>
12966         * mono-debug.c (mono_debug_cleanup): Don't call
12967         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
12969 2007-09-19  Raja R Harinath  <harinath@gmail.com>
12971         Fix crash on 'make run-test' in mcs/errors
12972         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
12973         Avoid more potential allocations in mono_class_from_mono_type.
12974         (ginst_in_image): Update to changes.
12975         (gclass_in_image): Rearrange slightly.
12977 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
12979         * class.c (mono_class_init): Move the code that sets up class->methods to 
12980         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
12982         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
12983         canonical instance of an inflated generic signature.
12984         (mono_type_create_from_typespec): Remove an invalid free.
12986         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
12988 2007-09-18  Marek Habersack  <mhabersack@novell.com>
12990         * domain-internals.h: added a declaration of the
12991         mono_assembly_load_full_nosearch internal function.
12993         * assembly.c (mono_assembly_load_with_partial_name): use
12994         mono_try_assembly_resolve return value properly.
12995         (mono_assembly_load_full_nosearch): copied the function body from
12996         mono_assembly_load_full, without the code to invoke assembly
12997         search hooks.
12998         (mono_assembly_load_full): calls the above new function and if the
12999         assembly is not resolved, invokes the search hooks.
13001         * appdomain.c (mono_runtime_init): restore the global postload
13002         assembly search handlers.
13004 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13006         * class.c (mono_class_init): Make sure class->methods and class->properties
13007         are never NULL in the generics case.
13009         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13011 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13013         * metadata.c (free_generic_class): Disable some code to fix the build.
13015         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13017         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13018         from the image mempool.
13020         * metadata.c (free_generic_class): Free more data from the inflated class.
13022         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13024         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13025         mempool.
13026         (mono_type_create_from_typespec): Ditto.
13028         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13029         MonoImage to the caller.
13030         (mono_init_internal): Save the opened image in a global variable.
13031         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13033         * reflection.c (resolve_object): Fix a leak.
13035         * metadata.c: Fix the freeing of data in the generics caches.
13036         
13037         * metadata.c (free_generic_inst): Comment this out to fix the build.
13038         (free_generic_class): Ditto.
13040         * metadata.c: Free cached generic methods, instantinations and classes when
13041         they are removed from the caches.
13042         (mono_metadata_free_type): Free the type itself.
13044         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13045         places.
13047 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13049         * boehm-gc.c: restrict managed allocs to __thread supporting
13050         architectures.
13052 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13054         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13055         (mono_generic_class_get_class): Fix a leak.
13057         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13058         mono_metadata_free_type ().
13059         (mono_metadata_inflate_generic_inst): Fix a leak.
13061 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13063         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13065         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13066         mempool.
13068         * mono-debug.c (mono_debug_close_image): Fix call to 
13069         g_hash_table_remove ().
13071 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13073         * icall-def.h: redirect all the string ctor to the managed
13074         CreateString () methods.
13075         * string-icalls.c, string-icalls.h: removed dead code for string
13076         ctors and icalls.
13078 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13080         * mono-debug.c: Fix memory leaks.
13082 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13084         * threads-types.h: Implement mono_hazard_pointer_set and 
13085         mono_hazard_pointer_clear macros using do/while(0) to fix
13086         compilation with MSVC.
13087         
13088         Code is contributed under MIT/X11 license.
13090 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13092         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13093         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13095 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13097         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13098         icalls.
13100 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13102         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13103         managed-code allocated as well.
13105 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13107         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13109 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13111         * boehm-gc.c: fixed the build after the AOT changes.
13113 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13115         * wrapper-types.h: Add an ALLOC wrapper type.
13117         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13118         reference managed allocator methods.
13120 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13122         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13123         of Type array and not MonoType, a fix suggested by Hari.
13124         
13125 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13127         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13128         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13129         
13130         Code is contributed under MIT/X11 license.
13132 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13134         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13136 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13138         * image.c (do_mono_image_open): if assembly file fails to open and
13139         MONO_IOMAP is in effect, try to find the path in a
13140         case-insensitive way.
13142         * appdomain.c (mono_runtime_init): do not install postload hooks -
13143         tests show that MS.NET doesn't use anything of that sort to
13144         trigger the AppDomain.AssemblyResolve event.
13145         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13146         made non-static.
13147         (mono_runtime_init): init portability helpers here.
13149         * assembly.c (mono_assembly_load_with_partial_name): if other   
13150         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13151         to resolve the assembly.
13153         * domain-internals.h: added mono_try_assembly_resolve and marked
13154         it as internal.
13156 2007-09-11  Jb Evain  <jbevain@novell.com>
13158         * object-internals.h (MonoReflectionDynamicMethod): add
13159         a `MonoReflectionType *owner` field. The owner is used
13160         * reflection.c:
13161         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13162         method as the class declaring the dynamic method.
13163         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13164         dynamic method to the declaring type of the methodbuilder.
13166 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13168         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13169         rules for calling methods via reflection.
13171 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13173         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13174         Inflate MonoType's.
13176 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13178         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13179         provide a managed method that does fast allocations without needing
13180         a managed->unmanaged transition. Boehm GC implementation currently
13181         enabled for ptrfree objects on sane architectures.
13183 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13185         * marshal.c, marshal.h: exported a couple of useful functions and
13186         added mono_mb_get_label () to easily handle backward branches.
13188 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13190         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13192 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13194         * loader.c (find_method): Fixed the regression introduced while
13195         fixing bug #81466.
13197 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13199         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13200         well.
13201         
13202         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13203         icall.c reflection.c: Pass a MonoGenericContext argument to 
13204         mono_lookup_dynamic_token ().
13206         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13207         #82744.
13208         
13209 2007-09-09  Robert Jordan  <robertj@gmx.net>
13211         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13212         for generic methods.
13214         * object.c (mono_object_get_virtual_method): Handle generic methods.
13215         Fixes bug #78882.
13217         Code is contributed under MIT/X11 license.
13219 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13221         * image.c: fix locking in mono_image_load_file_for_image ().
13223 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13225         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13226         used only as a cache: added an icall to fill it.
13228 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13230         * reflection.h: exposed mono_reflection_free_type_info
13231         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13232         since mono_reflection_bind_generic_parameters makes a copy of it.
13233         * reflection.c (free_type_info): subinfos should be freed.
13234         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13235         made non static.
13236         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13237         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13238         this fixes #82695 and #81726.
13239    
13241 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13243         * process.h, process.c:  added support for user profile/info in
13244           ProcessStartInfo. For now only Windows works.
13246 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13248         * metadata.c: consider the generic arguments when comparing
13249         signatures (bug #82614).
13251 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13253         * cil-coff.h, image.c: updated assembly loader to cope with the
13254         PE32+ 64 bit file format.
13256 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13258         * assembly.c, class.c, domain.c, loader.c: remove useless
13259         inclusion of cil-coff.h.
13261 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13263         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13264         if interface is marked with CoClassAttribute. 
13265    
13266         Code is contributed under MIT/X11 license.
13268 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13270         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13271         if it's seen twice in major collections.
13273 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13275         * sgen-gc.c: big objects are not copied to the gray area, but they
13276         need to be considered for scanning, too, if they are brought alive
13277         by an object ready for finalizations or a survived one.
13279 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13281         * sgen-gc.c: properly account the number of disappearing links when
13282         they are nullified.
13284 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13286         * sgen-gc.c: share the code to scan the registered roots between the
13287         different types of collections.
13289 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13291         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13293 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13295         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13296         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13298 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13300         * security-manager.c (mono_security_manager_get_methods):
13301         LinkDemandSecurityException now has 2 arguments instead of 3.
13303 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13305         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13306         platforms which need it.
13308 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13310         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13311         dtor.
13313 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13315         * threads.c: free the thread static data on thread exit.
13317 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13319         * class.c: walk the hierarchy to find the generic definition for
13320         a class (fixes runtime part of bug #82498).
13322 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13324         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
13325         ...
13327         * image.c (mono_image_close): Here. Hopefully fixes #82510.
13329 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13331         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
13333 2007-08-24  Robert Jordan  <robertj@gmx.net>
13335         * appdomain.c: don't perform the ':'->';' substitution on Win32.
13337 2007-08-24  Jb Evain  <jbevain@novell.com>
13339         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
13340         for byref types.
13342 2007-08-24  Mark Probst  <mark.probst@gmail.com>
13344         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
13345         #82286.
13347 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
13349         * assembly.c: Fix a warning.
13350         
13351 2007-08-23  Marek Habersack  <mhabersack@novell.com>
13353         * appdomain.c: parse the <runtime> section looking for the probing
13354         element with the 'privatePath' attribute, which sets additional
13355         directories in which the runtime should look for assemblies.
13357 2007-08-23  Robert Jordan  <robertj@gmx.net>
13359         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
13360         Fixes #82499.
13362 2007-08-23  Martin Baulig  <martin@ximian.com>
13364         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
13365         _mono_debug_init_corlib() and remove it from the header file.
13367 2007-08-23  Martin Baulig  <martin@ximian.com>
13369         * mono-debug-debugger.c
13370         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
13371         don't notify the debugger about it.
13373         * mono-debug-debugger.h
13374         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
13376 2007-08-23  Robert Jordan  <robertj@gmx.net>
13378         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
13379         Code is contributed under MIT/X11 license.
13381 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13383         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
13385 2007-08-22  Martin Baulig  <martin@ximian.com>
13387         * mono-debug.c: Store debugging info on a per-domain basis and
13388         free it on domain unload.  Add support for unloading symbol files.
13390         * mono-debug.h
13391         (MonoDebugList): New typedef.
13392         (MonoSymbolTable):
13393         - add `data_tables and `type_table'.
13394         - replace 'symbol_files' and `num_symbol_files' with a
13395           `MonoDebugList *'.
13396         (mono_debug_data_table): Removed.
13397         (mono_debug_list_add): New public function.
13398         (mono_debug_list_remove): New public function.
13399         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
13400         (mono_debug_init_2_memory): Renamed into
13401         mono_debug_open_image_from_memory().
13402         (mono_debug_close_image): New public function.
13403         (mono_debug_domain_create): Likewise.
13404         (mono_debug_domain_unload): Likewise.
13405         (MONO_DEBUGGER_VERSION): Bump to 60.
13407         * mono-debug-debugger.h
13408         (MonoDebuggerEvent):
13409         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
13410         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
13411         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
13412         - rename `THREAD_CREATED' and `THREAD_EXITED' into
13413           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
13414         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
13415           meaning.
13416         (mono_debugger_add_symbol_file): Removed.
13417         (mono_debugger_add_type): Removed.
13418         (mono_debugger_lookup_type): Removed.
13419         (mono_debugger_lookup_assembly): Removed.
13421         * domain.c
13422         (mono_domain_create): Call mono_debug_domain_create().
13423         (mono_init_internal): Call mono_debug_init_corlib().
13425         * assembly.c
13426         (mono_assembly_close): Call mono_debug_close_image().
13428 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
13430         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
13431         mmap call.
13433 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13435         * sgen-gc.c: ensure section->pin_queue_end is initialized
13436         correctly when non pinning objects in the section have been found.
13438 2007-08-22  Marek Habersack  <mhabersack@novell.com>
13440         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
13441         containing a list of directories separated by ':'. MSDN docs say
13442         the directories should be separated with ';'. Part of a bugfix for
13443         bug #81446
13445 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
13447         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
13448         it should MonoType and not MonoClass.
13450 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
13452         * culture-info-table.h : regenerated.
13454 2007-08-20  William Holmes  <billholmes54@gmail.com>
13456         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
13457          to call ReplaceFile Kernel32 on windows or in io-layer.
13458         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
13459         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
13460          as an internal call.
13462         Code is contributed under MIT/X11 license.
13464 2007-08-20  Jb Evain  <jbevain@novell.com>
13466         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
13467         and MONO_EXCEPTION_FIELD_ACCESS.
13469         * debug-helpers.[c|h]: new mono_field_full_name function.
13471 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13473         * class.c: Removed class_security_level() and moved it to
13474         security-core-clr.c.
13476         * security-core-clr.c, security-core-clr.h: class_security_level()
13477         is now public and renamed to mono_security_core_clr_class_level().
13478         It also looks for security attributes in the classes a class is
13479         nested in.
13481 2007-08-20  Mark Probst  <mark.probst@gmail.com>
13483         * security-core-clr.c, security-core-clr.h: CoreCLR security
13484         utility functions.
13486         * Makefile.am: Added security-core-clr.[ch].
13488         * security-manager.c, security-manager.h: Functions and enum for
13489         setting and getting the security mode.
13491         * class.c: CoreCLR security checks.
13493 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13495         * icall-def.h, process.c, process.h: implemented icall to get
13496         user/system processor times.
13498 2007-08-17  Mark Probst  <mark.probst@gmail.com>
13500         * domain.c, threads.c, class-internals.h, domain-internals.h: New
13501         reader-lock-free jit_info_table.
13503 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
13505         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
13507         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
13509         * object-internals.h (MonoException): Add missing _data member.
13511 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13513         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
13514         checking that only methods with matching qname or fqname are picked
13515         from implemented interfaces.
13517 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13519         * verify.c (do_newarr):added, do type verification of
13520         newarr ops, push the right value on the eval stack.
13521         * verify.c (mono_method_verify): use do_newarr
13524 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13526         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
13527         factored the common code into get_boxable_mono_type, which
13528         is now using mono_type_get_full, this fixed byref related tests.
13530 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
13532         * class.c: added mono_type_get_full, this function has the same
13533         behavior of mono_class_get_full but the returned MonoType has
13534         all metadata of the associated token in case of a typespec token.
13535         * class.c: added mono_type_retrieve_from_typespec, used by 
13536         mono_type_get_full to retrieve the token type.
13537         * class.c (mono_class_create_from_typespec): changed to use
13538         mono_type_retrieve_from_typespec.
13539         * class.c (mono_ldtoken): changed to use mono_type_get_full
13540         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
13541         * class-internals.h: exported mono_type_get_full for internal use.
13543 2007-08-16  Jb Evain  <jbevain@novell.com>
13545         * domain.c (supported_runtimes): add entry for
13546         the 'moonlight' runtime version.
13548 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13550         * verify.c (mono_method_verify): small typo sliped in.  
13552 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13554         * verify.c (do_unbox_value): added, do type verification of
13555         unboxing ops
13556         * verify.c (mono_method_verify): use do_unbox_value
13559 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13561         * verify.c (dump_stack_value): fixed typo, was printing string
13562         instead of object on stack.
13563         * verify.c (do_box_value): moved the byref check up as it leads
13564         to invalid code and should be done earlier.
13565         * verify.c: improved error messages for and ldobj
13567 2007-08-15  William Holmes  <billholmes54@gmail.com>
13569         * marshal.c (emit_marshal_custom): Omit the call to 
13570           marshal_native_to_managed when calling native to managed 
13571           and the argument is specified as an out argument.
13573         Code is contributed under MIT/X11 license.
13575 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
13577         * verify.c: fixed the type checks for generics, function pointers and vectors.
13578         Added type verification for ldobj and ldtoken. The verifier
13579         would segfault if header or signature of a method contained references
13580         to non-existant types.
13582 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13584         * marshal.c (cominterop_get_ccw): Patch from
13585         Bill Holmes to no walk up interface hierarchy. 
13586         All parent methods should be present in the interface for COM.
13587    
13588         Code is contributed under MIT/X11 license.
13590 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
13592         * marshal.c (emit_marshal_com_interface): Patch from
13593         Bill Holmes to handle COM Interfaces as return values
13594         for native->managed calls.
13595    
13596         Code is contributed under MIT/X11 license.
13598 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
13600         * marshal.c (cominterop_get_idispatch_for_object): Implement
13601         for runtime callable wrappers.
13602    
13603         Code is contributed under MIT/X11 license.
13605 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
13607         * pedump.c (main): changed from mono_init to mono_init_from_assembly
13608         so 2.0 types are accessible
13611 2007-08-13  Miguel de Icaza  <miguel@novell.com>
13613         * domain.c (mono_init_internal): Call mono_assembly_load_friends
13614         once we load mscorlib.   Due to the order in which we initialize,
13615         the mono_assembly_load_full routine that loads mscorlib did not
13616         load friends.   We now load it once we load the
13617         mono_defaults.internals_visible_class class. 
13619         * assembly.c: Expose the mono_load_friend_assemblies method.
13621 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
13623         * verify.c: improved the handling of boxing, better
13624         type checking for unary ops and conversion. Fix bug
13625         regarding managed pointer compatibility checking
13627 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
13629         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
13631         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
13633 2007-08-09  Raja R Harinath  <rharinath@novell.com>
13635         * reflection.c (dup_type): Remove.
13636         * class.c (dup_type): Remove.
13637         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
13638         instead of the dodgy 'dup_type'.
13639         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
13640         handle the case where 'dup_type' needed the second argument.
13642 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
13644         * domain.c: Fix a warning.
13646 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
13648         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
13649         checking that methods with the same fqname are not overridden
13650         with a method from an ancestor.
13652 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
13654         * threads.c (free_thread_static_data_helper): Avoid a crash if
13655         thread->static_data is not yet set.
13657 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
13659         * marshal.c: Use correct image when emitting
13660         native wrapper for COM calls.
13661    
13662         Code is contributed under MIT/X11 license.
13664 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
13666         * icall-def.h, security.c, security.h :
13667           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
13669 2007-08-07  Martin Baulig  <martin@ximian.com>
13671         * mono-debug-debugger.h
13672         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
13674         * domain.c (mono_domain_free): Call
13675         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
13677 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
13679         * verify.c (check_underflow, check_overflow): error message now returns IL offset
13680         * verify.c (in_same_block): code should test if either offset is inside the clauses
13681         * verify.c (mono_method_verify): push the exception into the eval stack of exception
13682         and filter blocks
13684 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13686         * image.c (mono_image_close): Fix a leak.
13688         * object.c (mono_runtime_invoke_array): Avoid using alloca.
13690         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
13692 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
13694         * domain.c, threads.c, threads-types.h: fix memory retention issue
13695         with thread static variables not being cleared on domain unload.
13696         Reuse thread static slots after domain unload.
13698 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
13700         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
13701         nullable type.
13703         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
13704         now done in mono_runtime_invoke_array.
13706         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
13707         receiver is a nullable type.
13709         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
13710         generic parameter.
13712 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
13714         * marshal.c: Implement COM Objects as return type for 
13715         managed->unmanaged calls. Added Release calls for COM Object
13716         out/return values in managed->unmanaged calls.
13718         Code is contributed under MIT/X11 license.
13720 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
13722         * threads.h, threads-type.h: move the hazard pointer declarations
13723         to the private header.
13725 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
13727         * file-io.c, appdomain.c: memory leak fixes.
13729 2007-08-02  Dick Porter  <dick@ximian.com>
13731         * socket-io.c
13732         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
13733         SO_REUSEADDR setting into io-layer/sockets.c.
13735 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
13737         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
13738         from Object when called on a generic parameter. Fixes #82211.
13740 2007-08-01  Dick Porter  <dick@ximian.com>
13742         * file-io.c (convert_share): Test FileShare values bit-by-bit.
13743         Fixes bug 79250 yet again.
13745 2007-07-30  Martin Baulig  <martin@ximian.com>
13747         Merged the `debugger-dublin' branch.
13749         * mono-debug.h
13750         (MonoDebugDataTable): New typedef.
13751         (MonoDebugMethodAddressList): New typedef.
13752         (MonoDebugWrapperData): Removed.
13753         (MonoDebugSymbolTable): Removed `current_data_table',
13754         `current_data_table_size', `current_data_table_offset'.
13755         (MonoDebugDataItemType): Moved into mono-debug.c.
13756         (MonoDebugMethodJitInfo): Remove `address'.
13757         (mono_debug_data_table): New global variable.
13758         (mono_debug_lookup_method_addresses): New public function.
13759         (mono_debug_find_method): Take a `MonoMethod *', not a
13760         `MonoDebugMethodInfo *'.
13762         * mono-debug.c: Drop support for the old symbol tables.
13764 2007-06-28  Martin Baulig  <martin@ximian.com>
13766         * mono-debug.c (mono_debug_debugger_version): New public variable.
13768 2007-07-31  William Holmes  <billholmes54@gmail.com>
13770         * metadata.c Changed mono_type_create_from_typespec to not insert
13771           the type into the hash map until after
13772           do_mono_metadata_parse_type has completed.
13773         Fixes Bug #82194
13774         Code is contributed under MIT/X11 license.
13776 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
13778         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
13779         generic parameter. Fixes #82211.
13781 2007-07-27  Jb Evain  <jbevain@novell.com>
13783         * pedump.c (dump_metadata, dump_metadata_header): dump
13784         versions contained in the metadata header.
13786 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13788         * threads.c: register small_id_table with the GC.
13790 2007-07-27  Mark Probst  <mark.probst@gmail.com>
13792         * threads.c, threads.h, class-internals.h, object-internals.h:
13793         Hazard pointers, to be used by lock-free parallel algorithms.
13795 2007-07-26  Dick Porter  <dick@ximian.com>
13797         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
13798         routine on non-windows platforms, as I've not managed to think of
13799         a non-kludgy way of doing this.  Finishes off bug 78739.
13801 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
13803         * object.c: properly setup interface_bitmap in proxy vtables.
13805 2007-07-25  Marek Habersack  <mhabersack@novell.com>
13807         * appdomain.c (get_shadow_assembly_location): do not use TickCount
13808         to create unique shadow copy target directories, use the domain's
13809         serial number instead. Each domain gets a unique target directory
13810         that way.
13812         * domain.c (mono_domain_create): added code to increment domain
13813         shadow copy serial number and cache the value in the current
13814         domain structure.
13816         * domain-internals.h (struct _MonoDomain): added a new field -
13817         shadow_serial to hold the serial number used in generation of
13818         shadow-copy directories. This is to make sure that the directory
13819         name is unique for each and every domain created. We avoid a race
13820         condition with overriding assemblies already in use by other app
13821         domains.
13823 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
13825         * class.c (mono_bounded_array_class_get): fixed memory leak when 
13826         binding generic parameters.
13828 2007-07-24  Raja R Harinath  <rharinath@novell.com>
13830         * metadata.c (do_mono_metadata_parse_generic_class): Use
13831         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
13832         error.
13834 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
13836         * loader.c, class-internals.h, reflection.c: removed the per-method
13837         generics hashtable: we use the global one through the call of
13838         mono_class_inflate_generic_method ().
13840 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13842         * class.c, metadata.c, class-internals.h: introduce yet another
13843         generics global cache for inflated methods (fixes 98% of the perf
13844         issue in bug #81806).
13846 2007-07-23  Raja R Harinath  <rharinath@novell.com>
13848         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
13849         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
13850         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
13851         return a MonoGenericInst containing (a copy) of those types.
13852         (mono_metadata_inflate_generic_inst): Update to changes.
13853         (mono_metadata_parse_generic_inst): Likewise.
13854         (mono_get_shared_generic_inst): Likewise.
13855         * reflection.c (mono_class_bind_generic_parameters): Likewise.
13856         (mono_reflection_bind_generic_method_parameters): Likewise.
13857         * metadata-internals.h: Likewise.
13858         * icall.c (free_generic_context): Kill.
13859         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
13861         * reflection.c (reflection_methodbuilder_to_mono_method): Use
13862         mono_metadata_type_dup.
13863         * marshal.c (mono_mb_create_method): Likewise.
13865         * metadata.c (mono_metadata_type_dup): Rename from
13866         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
13867         MonoImage.  Handle a few more cases, esp. when no mempool is given.
13868         * marshal.c, metadata-internals.h: Update to changes.
13870 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13872         * class.c: fixed a small leak for array classes and removed warning.
13874 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
13876         * loader.c (mono_method_get_param_token): Make this work on generic methods.
13877         Return 0x8000000 for return parameters. Fixes #82161.
13879 2007-07-21  Marek Habersack  <grendello@gmail.com>
13881         * appdomain.c (get_shadow_assembly_location): append the current
13882         ticks value to the path. Avoids overwriting the same assemblies by
13883         several threads at the same time.
13885 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13886         and Raja R Harinath  <rharinath@novell.com>
13888         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13889         Simplify slightly.
13890         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
13891         property for testing if a method is a generic method definition.
13893 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
13895         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
13897 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13899         * verify.c: used function from private branch, reverted to the one in class.h 
13901 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13903         * verify.c: a typo slipped in and the code wont compile
13905 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13907         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
13908         disabled box instruction as it is doing the wrong thing
13909         improved stack dump messages, now it is easier to debug type related issues
13912 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
13914         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
13916 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13918         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
13919         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
13920         grouped with class and valuetype. This change will simply 
13921         the code as it should be handled just like unmanaged pointers.
13923 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13925         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
13927 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
13929         * verify.c: several stack merge issues fixed, reference comparisons now
13930         check the type size. strict type check now works correctly.
13931         added more uses of IS_MANAGED_POINTER macro.
13932         fixed issues pointed by running the test suite against .net.
13933         
13935 2007-07-19  Mark Probst  <mark.probst@gmail.com>
13937         * class.c, loader.c, class-internals.h: Removed the
13938         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
13939         defines.
13941         * icall.c: Better error checking in some internal reflection
13942         methods.
13944 2007-07-18  William Holmes  <billholmes54@gmail.com>
13946         * filewatcher.c : removed unused variable 'filename' in 
13947           ves_icall_System_IO_FSW_SupportsFSW
13949 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
13951         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
13952         obsolete, removed.
13954 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
13956         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
13957         
13958         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
13960 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
13962         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
13963         Implement generics support.
13964         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13966         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
13967         type_args and method_args arguments.
13968         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13969         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13970         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
13972 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
13974         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
13975           It adds a rootimage parameter to mono_reflection_get_type_internal,
13976           adds new function mono_reflection_get_type_with_rootimage and use
13977           the rootimage to resolve the types instead of the current image
13979 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13981         * culture-info-table.h: Forgot to update after r78304.
13983 2007-07-13  Raja R Harinath  <rharinath@novell.com>
13985         * class.c (mono_class_is_open_constructed_type)
13986         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
13988 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
13990         * class.c (mono_bounded_array_class_get):  method fails if used with
13991         an incomplete TypeBuilder enum (no basetype field), fixed it by 
13992         avoiding calculating the size for such array as it cannot be instantiated.
13993         Fix bug #82015
13995 2007-07-12  Raja R Harinath  <rharinath@novell.com>
13997         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
13998         field.
13999         * metadata.c, reflection.c: Update to changes.
14001 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14003         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14004         mono_class_is_valid_enum, they are used to valide a enum when loading.
14005         * reflection.c: used new functions to throw TypeLoadException when and
14006         invalid enum is build with TypeBuilder. Fixes #82018
14007   
14008 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14010         * object.c: forgot commit of mono_class_setup_methods () to access
14011         iface->methods.
14012         * object-internals.h: added a few more handy fields to
14013         MonoIMTCheckItem.
14015 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14017         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14018         iface->methods.
14020 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14022         * class-internals.h, object-internals.h, object.c: IMT-based
14023         interface invocation core from Massimiliano Mantione
14024         (massi@ximian.com) with a reworked arch-specific interface,
14025         bsearch implementation and a few bugfixes and memory savings by me.
14027 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14029         * class.c (mono_class_create_from_typedef): mono would segfault if 
14030         an enum did not have a __value field. It now throws a TypeLoadException
14031         for such cases. Fix bug #82022
14033 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14035         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14037 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14039         * class.c (mono_class_init): If a class is already inited but has
14040         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14042 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14044         * class.c: Properly handle the case of an unimplemented interface
14045         method.  Fixes: 81673.
14047 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14049         * class-internals.h, object.c: cleanup patch from massi: use
14050         MonoVTable->interface_bitmap since the vtable interfaces offset array
14051         is going away.
14053 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14055         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14056         GetMDStreamVersion icall instead.
14058 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14060         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14061         not use mono_dl_build_path() with a full library name: makes
14062         fallbacks to libgaim and libfam work.
14064 2007-07-06  William Holmes  <billholmes54@gmail.com>
14066         * assembly.c: Added a continue statement in probe_for_partial_name when
14067          parse_assembly_directory_name fails.  Fixes : 82002
14069 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14071         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14072         and added a verification  for TYPEDBYREF.
14073         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14074         make native int interchangeable with int32 and some small cleanup and formating.
14075         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14076         handle byref of byref.
14077         * verify.c (push_local): handle byref of byref.
14078         * verify.c (do_binop): invalid mix of values is unverifiable
14079         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14080         added visibility checks
14081         * verify.c (field related method): added visibility checks
14082         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14084 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14086         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14087         string.
14089 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14091         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14093         * marshal.c (emit_marshal_string): When returning a string from managed code,
14094         allways make a copy even for unicode strings. Fixes #81990.
14096 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14098         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14099         of byref generic inst types (bug #81997).
14101 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14103         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14104         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14106 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14108         * marshal.c (emit_marshal_string): Add support for unicode strings in
14109         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14111 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14113         * verify.c: field load/store are now verified, missing only access checks now
14115 2007-06-28  Martin Baulig  <martin@ximian.com>
14117         * mono-debug.c (mono_debug_debugger_version): New public variable.
14119 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14121         * locales.c: When constructing DateTimeFormat or NumberFormat for
14122         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14123         MonoCultureInfo contructed from the current locale is always
14124         read-only and has UseUserOverride set to true. All MonoCultureInfo
14125         instances returned for GetCultures have both IsReadOnly and
14126         UseUserOverride set to true. Fixes part of bug #81930.
14128 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14130        * icall-def.h: Update System.__ComObject icalls
14131        * marshal.c: Avoid managed transition (and object creation)
14132        when looking up COM interface in RCW.
14133        * marshal.h: Ditto.
14134        
14135        Code is contributed under MIT/X11 license.
14137 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14139         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14140         to avoid crashes during assembly unloading.
14142 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14144         Fix MethodInfo.IsGenericMethodDefinition
14145         * reflection.c (mono_reflection_bind_generic_method_parameters):
14146         Rearrange code to ensure we always uses a generic method definition.
14147         * class.c (mono_class_inflate_generic_method_full): Set
14148         'generic_container' field only for generic method definitions.
14149         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14150         Use presense of 'generic_container' field as indication of being a
14151         generic method definition.
14153 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14155         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14157         * object-internals.h: Reflect changes in the layout of the managed Delegate
14158         class.
14159         
14160         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14161         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14162         runtime memory used by the dynamic method. Fixes #77146.
14164 2007-06-21  Dick Porter  <dick@ximian.com>
14166         * file-io.h: 
14167         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14168         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14169         81767.
14171 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14173         * reflection.c (method_encode_methodspec): Add a tripwire.
14174         * class.c (inflate_generic_type): The fully open generic type is
14175         not the same as the generic type definition.
14177 2007-06-21  Martin Baulig  <martin@ximian.com>
14179         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14181         * mono-debug-debugger.h
14182         (MonoDebuggerBreakpointInfo): Removed.
14183         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14184         (mono_debugger_remove_breakpoint): Likewise.
14185         (mono_debugger_breakpoint_callback): Likewise.
14186         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14188 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14190         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14191         generic type is not the same as the generic type definition.
14192         * class.c (mono_generic_class_get_class): Likewise.
14194 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14196         * icall.c: The second argument to 
14197         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14198         is a MonoType not a MonoClass.
14200 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14202         * verify.c: support for function pointers in the verifier
14204 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14206         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14208 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14210         * assembly.c: removed Mono.Data.SqliteClient from the list of
14211         forward-compatible assemblies as it breaks the ABI (bug #81899).
14213 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14215         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14216         lookup/update with the loader lock.
14217         * reflection.c (mono_class_bind_generic_parameters): No need to
14218         protect mono_metadata_lookup_* with the loader lock.
14219         * class.c (inflate_generic_type): Likewise.
14220         
14221         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14222         on a generic instantiated type.
14224 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14226         *verify.c: produce meanfull error messages on verification error
14227         *verify.c: fixed some cases of verification errors reported as validation errors
14228         *pedump.c: fixed the error name array, now it shows validation errors properly
14229         *verify.h: fixed the contant that should be used for verification errors
14231 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14233         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14234         for bug #77596, 81858 and 80743 (generics data structures on domain
14235         unload).
14237 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14239         Avoid allocating 'MonoGenericContext' on the heap.
14240         * class-internals (_MonoMethodInflated::context): Make field
14241         inline, not a pointer.
14242         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14243         stack.  Use the context embedded within the inflated method as the
14244         hash key, rather than 'new_context'.
14245         * class.c (inflate_generic_context): Simplify.  Return a struct
14246         rather than allocating on the heap.
14247         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14248         doesn't salt away a copy of the context -- simplifying the
14249         lifetime rules of a 'MonoGenericContext *'.
14250         (mono_method_get_context): Return pointer to embedded context.
14251         (setup_generic_array_ifaces): Allocate temporary context on stack.
14252         * reflection.c (inflate_mono_method): Likewise.
14253         (mono_reflection_bind_generic_method_parameters): Likewise.
14254         Use the context embedded within the inflated method as the hash key.
14256         Avoid a source of allocation of 'MonoGenericContext'.
14257         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14258         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14259         * class.c: Update to changes.
14260         (mono_generic_class_get_context): Simplify drastically.  Now just
14261         returns a pointer to the field.
14262         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14263         argument as a const pointer.
14264         (mono_metadata_generic_context_equal): Likewise.
14265         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14266         Update to changes.
14268 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14270         * verify.c improved the handling of brtrue/brfalse, factored out common code
14272 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14274         Kill MonoGenericMethod.
14275         * class-internals.h (MonoGenericContext::method_inst): Rename from
14276         'gmethod' and convert to a MonoGenericInst.
14277         (MonoGenericMethod): Remove.
14278         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14279         * loader.c (method_from_methodspec): Update to changes.  Use a
14280         MonoGenericContext as the key to the hashtable.
14281         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14282         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14283         (mono_metadata_generic_context_hash): Likewise from
14284         'mono_metadata_generic_method_hash'.  Change hash function.
14285         (mono_metadata_load_generic_params): Update to changes.
14286         (mono_get_shared_generic_method): Remove.
14287         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14288         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14289         (inflate_generic_context): Likewise.
14290         (mono_class_inflate_generic_method_full): Likewise.
14291         (setup_generic_array_ifaces): Likewise.
14292         (mono_class_create_from_typespec): Likewise.
14293         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14294         (method_encode_methodspec): Update callsite.
14295         (reflection_methodbuilder_to_mono_method): Update to changes.
14296         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14297         MonoGenericContext as the key to the hashtable.
14298         (inflate_mono_method): Update to changes.
14300         * class-internals.h (MonoGenericMethod::container): Remove.
14301         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14303 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14305         * profiler-private.h, profiler.c, profiler.h: added API to profile
14306         exception events.
14308 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14310         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14312 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14314         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14315         Fixed overflow and underflow not aborting the verification process.
14317 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14319         * class-internals.h (MonoStats): Added stats entries for dynamic
14320         code allocations.
14322 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
14324         * loader.c (mono_free_method): Free header->locals and header->clauses.
14326         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
14327         dynamic case.
14329         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
14331         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
14333 2007-06-12  Raja R Harinath  <rharinath@novell.com>
14335         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
14336         the tables.
14338 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14340         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
14342 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14344         MonoGenericMethod on a diet
14345         * class-internals.h (_MonoMethodInflated::reflection_info): Move
14346         here ...
14347         (_MonoGenericMethod::reflection_info): ... from here.
14348         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
14349         Update to changes.
14350         * reflection.c (inflate_mono_method): Likewise.
14351         (mono_reflection_bind_generic_method_parameters): Likewise.
14353 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14355         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
14356         *verify.c: factored long ldarg forms to share code with short forms
14358 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
14360         *verify.c: fixed code formating factored some duplicate code
14361         into a new function
14363         *verify.h: fixed binary incompatibility introduced earlier
14365         *pedump.c: fixed formating
14367 2007-06-11  Raja R Harinath  <harinath@gmail.com>
14369         Fix assertion when disassembling Mono.C5.dll
14370         * loader.c (method_from_methodspec): Avoid inflating a method
14371         twice with the same context.  If the methodref is inflated, use
14372         the declaring method instead.
14374         * class.c (mono_class_from_generic_parameter): Fix case similar to
14375         bug #81830 handled below, but for method containers.
14377 2007-06-10  Raja R Harinath  <harinath@gmail.com>
14379         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
14380         get_shared_generic_class.  Directly inflate the instance.
14381         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
14382         (inflate_generic_class): Delete.
14383         (get_shared_generic_class): Delete.  Move setting of
14384         'cached_class' and 'cached_context' ...
14385         * metadata.c (mono_metadata_lookup_generic_class): ... here.
14387         * metadata.c (mono_metadata_lookup_generic_class): Change
14388         signature to take the components of a MonoGenericClass rather than
14389         an allocated MonoGenericClass.  Change semantics to be intern-like.
14390         * reflection.c (mono_class_bind_generic_parameters): Update to
14391         changes.  Make locking region tighter.
14392         * class.c (inflate_generic_class): Update to changes.
14393         (get_shared_generic_class): Likewise.
14394         * metadata-internals.h: Likewise.
14396         * reflection.c (mono_class_bind_generic_parameters): Take and
14397         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
14398         (mono_reflection_bind_generic_parameters): Use
14399         'mono_class_bind_generic_parameters' rather than duplicate the code.
14400         * class.c (mono_bounded_array_class_get): Update to changes.
14401         * object-internals.h: Likewise.
14403         * reflection.c (mono_class_bind_generic_parameters): Only support
14404         parameterizing generic type definitions.  Remove support for other
14405         open types.
14407 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
14409         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
14411         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
14412         in the dynamic case.
14414 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
14416         * threads.c: When cleaning up thread, reset the Background bit.
14417         Fixes bug #81720.
14419 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
14421        * metadata.c: Move variable declarations to top of scope.
14422        * verify.c: Move variable declarations to top of scope.
14424        Code is contributed under MIT/X11 license.
14426 2007-06-08  Raja R Harinath  <rharinath@novell.com>
14428         * reflection.c (mono_class_bind_generic_parameters): Replace
14429         open-coded loop with mono_metadata_inflate_generic_inst.
14431         * class.c (get_shared_generic_class): Don't call
14432         mono_get_shared_generic_inst.  Use the container's own
14433         'class_inst'.
14435         * metadata.c (mono_metadata_load_generic_params): Move
14436         initialization of 'context' field here from ...
14437         * class.c (mono_class_create_from_typedef): ... here, and ...
14438         * loader.c (mono_get_method_from_token): ... here.
14440         * class.c (get_shared_generic_class): Rename from
14441         mono_get_shared_generic_class and make static.
14442         (mono_get_shared_generic_inst): Move to metadata.c.
14443         * loader.c (mono_get_shared_generic_method): Likewise.
14444         * class-internals.h, metadata-internals.h: Update to changes.
14446         Fix #81830
14447         * class.c (mono_class_from_generic_parameter): Don't assume a
14448         generic container owner exists.  Generic containers from monodis
14449         don't have any.
14451 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
14453         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
14454         * verify.h: new typedefs to returns the non-verifiable status
14455         * verify.c: initial implementation of generics, stack merging and object compatibility check
14457 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14459         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14460         a MonoInternalHashTable again (fixed bug in internal hash table
14461         code).
14463 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14465         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14466         MonoInternalHashTable again (fixed bug in internal hash table
14467         code).
14469 2007-06-06  Mark Probst  <mark.probst@gmail.com>
14471         * class.c, image.c, class-internals.h, domain.c,
14472         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
14473         changes.  Have to figure out what makes them break the SWF
14474         regression.
14476 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14478         * class.c, image.c, class-internals.h (MonoImage): class_cache is
14479         a MonoInternalHashTable now.
14481 2007-06-04  Mark Probst  <mark.probst@gmail.com>
14483         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
14484         MonoInternalHashTable now.
14486 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
14488         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
14489         invoke_impl code.
14491         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
14493         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
14494         dependent trampoline.
14496         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14498         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
14500 2007-05-29  Robert Jordan  <robertj@gmx.net>
14502         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
14504 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
14506         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
14508 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
14510        * marshal.c: Fix interface lookup loops for
14511        cominterop_get_com_slot_for_method and 
14512        cominterop_get_method_interface. Only need to lookup
14513        if type is a class, else use interface type method is on.
14515        Code is contributed under MIT/X11 license.
14517 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
14519         * reflection.c: HasSecurity can be present even if no specially 
14520         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
14521         SecurityAttribute). Fix CAS regression tests on buildbot.
14523 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
14525        * appdomain.c: Add configure checks for header files.
14526        * image.c: Add configure checks for header files.
14527        * file-io.c: Add configure checks for header files.
14528        * debug-mono-symfile.c: Add configure checks for header files.
14529        * threadpool.c: Add configure checks for header files.
14530        * console-io.c: Add configure checks for header files.
14531        * profiler.c: Add configure checks for header files.
14532        * rawbuffer.c: Add configure checks for header files.
14533        * icall.c: Add configure checks for header files.
14534        * rand.c: Add configure checks for header files.
14535        * socket-io.c: Add configure checks for header files.
14537        Code is contributed under MIT/X11 license.
14539 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
14541         * reflection.c (mono_custom_attrs_from_builders): Remove the 
14542         assertion as it breaks the build.
14543         
14544         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
14546         * reflection.c (lookup_custom_attr): Make a copy here too.
14548         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
14549         dynamic images.
14551         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
14552         images.
14554         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
14555         info.
14557 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
14559         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
14560         (load_cattr_value): Ditto.
14562 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
14564         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
14566 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
14568         * threads.c: In "start_wrapper", set apartment_state to MTA if
14569         apartment_state is Unknown and we're running on 2.0 profile or
14570         higher.
14571         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
14572         to main method, then set apartment_state to Unknown on 1.0 profile,
14573         and MTA on 2.0 profile.
14575 2007-05-16  Jb Evain  <jb@nurv.fr>
14577         * class-internals.h (MonoDefaults): Add an attribute_class and
14578           customattribute_data_class.
14579         * domain.c (mono_init_internal): Populate them.
14580         * reflection.c: Use them to remove duplicates. Make a vew
14581         MonoClass variables `static'.
14583 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
14585         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
14586         step in implementing IMT, so that all isinst checks now can go
14587         through the bitmap.
14588         This was needed because vtables for TransparentProxy need to look
14589         like the vtable of the "target" class, so they need to point to
14590         its interface bitmap directly.
14592         * object.c: inside "mono_class_create_runtime_vtable" and
14593         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
14595 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14597         * object-internals.h
14598           culture-info.h : added territory field in MonoCulture and
14599           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
14600         * locales.c : fill territory field above too.
14601         * culture-info-table.h : regenerated.
14603 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
14605         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
14606         Fixes #81599.
14608 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
14610         * object.c: Always initialize apartment, even if 
14611         there is no custom attributes on entry point.
14612         
14613         Code is contributed under MIT/X11 license.
14615 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
14617         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
14618         * metadata.c: If no encoding is set, check for unicode
14619         on class.
14620         
14621         Code is contributed under MIT/X11 license.
14623 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14625         * threads.c: Handle if mono_thread_current returns NULL 
14626         
14627         Code is contributed under MIT/X11 license.
14629 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
14631         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
14632         in start_wrapper. Added mono_thread_init_apartment_state and
14633         mono_thread_cleanup_apartment_state.
14634         * object.c: Initialize thread apartment state on main thread
14635         by checking for STAThreadAttribute on entry point.
14636         * object-internals.h: Add apartment_state field to MonoThread.
14637         * threads-types.h: Add unmanaged definition of 
14638         System.Threading.ApartmentState, MonoThreadApartmentState.
14639         
14640         Code is contributed under MIT/X11 license.
14641         
14642 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
14644         * class.c: Fix windows build.
14645         * class-internals.h: Fix windows build.
14646         
14647         Code is contributed under MIT/X11 license.
14649 2007-05-08  Robert Jordan  <robertj@gmx.net>
14651         * process.c (CreateProcess_internal):
14652         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
14653         .CreateNoWindow was specified. Fixes #81496.
14655 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14657         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
14658         step in implementing IMT, replaced it with two compact arrays
14659         (interfaces_packed and interface_offsets_packed) and a bitmap that
14660         is used for isinst checks (interface_bitmap).
14662         * class.c: (compare_interface_ids): compare function to pass to
14663         bsearch when looking for an interface with a given id.
14664         (mono_class_interface_offset): reimplemented using bsearch on
14665         interfaces_packed, getting the offset from interface_offsets_packed.
14666         (print_implemented_interfaces): utility debugging function.
14667         (setup_interface_offsets): reworked to initialize interfaces_packed,
14668         interface_offsets_packed and interface_bitmap.
14670         * object.c: replaced all accesses to "MonoClass.interface_offsets"
14671         with uses of interfaces_packed and interface_offsets_packed.
14673 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
14675         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
14676         mono_class_interface_offset prototype to wrap all accesses to
14677         "MonoClass.interface_offsets".
14679         * class.c: Implemented mono_class_interface_offset, and wrapped all
14680         accesses to "MonoClass.interface_offsets".
14682         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
14683         "MonoClass.interface_offsets".
14685 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14687         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
14688         GetMethodFromHandle overloads (bug #78637).
14690 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14692         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
14693         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
14695 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
14697         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
14698         #81498.
14700         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
14701         gracefully.
14702         (mono_custom_attrs_from_index): Ditto.
14704         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
14705         Fixes #81501.
14707 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
14709         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
14710         is now allocated from a mempool.
14712 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
14714         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
14715         caller holds threads_lock, leading to deadlocks. Fixes #81476.
14717 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
14719         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
14720         mono_loader_clear_error () too late. Fixes #81463.
14722 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
14724         * culture-info-table.h : regenerated.
14726 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
14728         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
14729         is missing.
14731 2007-04-25  Dick Porter  <dick@ximian.com>
14733         * Makefile.am: Put the mingw enforced-optimisation back into the
14734         PLATFORM_WIN32 section.
14736 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
14738         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
14739         patch.
14741         * image.c (mono_image_load_module): New API function to load a module reference.
14743         * image.c (load_modules): Load modules lazily. Fixes #80812.
14745         * class.c (mono_class_from_typeref): Use mono_image_load_module.
14746         
14747         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
14749         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
14750         to mono_image_load_module_dynamic.
14752 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
14754         * marshal.c: Fix calling convention for CCW on non-windows
14755         platforms. STDCALL on windows, CDECL everywhere else to work 
14756         with XPCOM and MainWin COM.
14757         
14758         Code is contributed under MIT/X11 license.
14760 2007-04-23  Martin Baulig  <martin@ximian.com>
14762         Fix #80969.
14764         * loader.c
14765         (method_from_memberref): Added `gboolean *used_context' argument.
14766         (mono_get_method_from_token): Likewise.
14767         (mono_get_method_full): Don't insert the method in the cache when
14768         `used_context' is true.
14770 2007-04-23  Raja R Harinath  <rharinath@novell.com>
14772         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
14774         * reflection.c (mono_reflection_bind_generic_parameters): Don't
14775         create new MonoTypes for returned types.
14776         * class.c (mono_generic_class_get_class): Export mono-internal.
14777         * class-internals.h: Update to changes.
14779 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14781         * threadpool.c, threadpool.h, icall-def.h: patch from
14782         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
14784 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
14786         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
14787         
14788         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
14790         * threads.c (mono_thread_get_stack_bounds): New helper function.
14792         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
14793         Correctly compute stack bounds when attaching. Fixes #81394.
14795 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
14797         * reflection.c: fix handling of doubles in custom attributes
14798         for the arm-fpa format (bug #81368).
14800 2007-04-18  Raja R Harinath  <rharinath@novell.com>
14802         * reflection.c (assembly_add_win32_resources): Mildly relax an
14803         bounds check to let the end pointer point just past the end of the
14804         allocated buffer.  (may fix #81384)
14806 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
14808         * culture-info-table.h : regenerated.
14810 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
14812         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
14813         the thread is aborted early.
14815 2007-04-05  Dick Porter  <dick@ximian.com>
14817         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
14818         FindFirstFile()/FindNextFile() to find entries.  This lets the
14819         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
14820         81038.
14822         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
14823         the parameters of
14824         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
14826 2007-04-04  Martin Baulig  <martin@ximian.com>
14828         * debug-helpers.c
14829         (mono_method_desc_full_match): Add support for nested classes.
14831 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
14833         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
14835 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
14837         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
14838         waiting for too many threads.
14840 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
14842         * environment.c: Fix return value check on uname so we can get the 
14843         executing version on Solaris operating systems.
14845 2007-03-28  Jb Evain  <jbevain@gmail.com>
14847         * class.c (mono_type_get_name_recurse): Complete the
14848         fix for the creation of assembly qualified names for
14849         pointer types. Fixes #81208.
14851 2007-03-27  Dick Porter  <dick@ximian.com>
14853         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
14854         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
14855         changed.
14857         * threads.c
14858         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
14859         the value of ReleaseMutex().
14861 2007-03-27  Dick Porter  <dick@ximian.com>
14863         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
14864         in little-endian order, not network endian, so must be converted
14865         to host endian here.  Fixes bug 80593.
14867 2007-03-22  Jb Evain  <jbevain@gmail.com>
14869         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
14870         qualified names for pointer types. Fixes #81208.
14872 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
14874         * marshal.c: Add support for PreserveSigAttribute. 
14875         
14876         Code is contributed under MIT/X11 license.
14878 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
14880         * process.c: Fix endianness issues. Fixes #81126.
14882         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
14883         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
14885         * image.c (mono_image_lookup_resource): Make this work on big-endian
14886         machines.Change API contract so the caller needs to free the return value.
14887         
14888         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
14889         API change.
14890         
14891 2007-03-14  Martin Baulig  <martin@ximian.com>
14893         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
14894         mono_type_get_desc() as well.
14896 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
14898         * icall.c:  Fix environ access in VS.  
14899         
14900 2007-03-13  Alp Toker  <alp@atoker.com>
14902         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14903         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14904         #63841.
14906 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
14908         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
14909         circular references among dynamic methods. Fixes #81091.
14911         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
14913 2007-03-09  Martin Baulig  <martin@ximian.com>
14915         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
14917 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
14919         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
14920         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
14921         
14922         Code is contributed under MIT/X11 license.
14923         
14924 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
14926         * loader.c: Reapply patch for bug #79424.
14928 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14930         * metadata.c (mono_type_to_unmanaged): Only convert object to
14931         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
14933 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
14935         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
14936         (and incorrectly set) is_reference field from MonoGenericInst.
14938 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
14940         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
14941         a little earlier.
14943         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
14945         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
14947 2007-03-05  Miguel de Icaza  <miguel@novell.com>
14949         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
14950         FileOptions.1 value to mean "temporary", map that to
14951         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
14953         Fixes 80688
14955 2007-03-03  Marek Habersack  <mhabersack@novell.com>
14957         * appdomain.c: implement MS .Net style shadow copying. Copies of
14958         the assemblies are made in a subdirectory of the dynamic base
14959         directory, the assembly names are preserved.
14960         Copy .mdb and .config files along with the assemblies being shadowed.
14962 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14964         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
14965         (emit_marshal_handleref): Ditto.
14967         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
14968         on Visual C++. Fixes #80671.
14970 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
14972         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
14973         for clone operations.
14975 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
14977         * marshal.c: Fix warnings.
14979 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
14981         * loader.c: allow case-insensitive matching of the dll name
14982         in dllmap handling when prefixed with "i:".
14984 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
14986         * threads.c: Fix #ifdef for dummy_apc function for VS.
14988 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
14990         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
14992 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
14993         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
14994         giving precedence to the methods with a fully qualified name
14995         (InterfaceName.MethodName) when building the interface sections
14996         of the vtable.
14998 2007-02-16  Dick Porter  <dick@ximian.com>
15000         * threadpool.c (append_job): Fix fast-path array handling, so it's
15001         less likely the array will grow exponentially when the load is
15002         heavy.
15004 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15006         * metadata-internals.h, loader.c: fix dllmap lookup order
15007         for non-function maps, too, and prepare for fallback code.
15009 2007-02-12  Robert Jordan  <robertj@gmx.net>
15011         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15012         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15013         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15014         GlobalFree. Fixes a part of bug #77075.
15016 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15018         * loader.c: implemented typedef parent in field memberref.
15020 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15022         * marshal.c: Fix warnings and remember to call Release on
15023         IUnknown of RCW.
15024         
15025         Code is contributed under MIT/X11 license.
15027 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15029         * class-internals.h: Add MonoHandleRef definition, and
15030         handleref_class to mono_defaults. 
15032         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15033         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15035         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15036         (do nothing on this stage)
15037         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15038         (emit_marshal_handleref): New method, used for argument handling
15039         of HandleRefs. 
15041 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15043         * class.c (mono_class_setup_parent): Lazily init com types.
15044         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15045         init com types.
15046         * object.c (mono_remote_class_vtable): Lazily init com types.
15047         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15048         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15049         * domain-internals.h: Expose mono_init_com_types.
15050         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15051         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15052         Add support for COM Callable Wrapper marshalling.
15053         * marshal.h: Add icall definitions.
15054         * gc.c: Handle freeing of CCWs in finalizer code.
15055         
15056         Code is contributed under MIT/X11 license.
15058 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15060         * reflection.c: changed all the signature encoding code to use
15061         a variable-sized buffer.
15063 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15065         * marshal.c: locking fixes: never take the loader lock
15066         or other runtime locks when holding the marshal lock
15067         (fixes bug#80664).
15069 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15071         * marshal.c: make the delegate function pointer mapping
15072         work for the moving GC.
15074 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15076         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15077         for bug #80618.
15079 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15081         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15082         gmodule.
15084 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15086         * threadpool.c: made the code moving-GC safe.
15088 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15090         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15091         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15092         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15093         warning cleanup.
15094         * reflection.c: warning cleanup, some threading and moving GC fixes.
15096 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15098         * class.c, loader.c: create the needed Set/Get/Address array methods
15099         as well as the .ctors in mono_class_init (), fixes bug #80567.
15101 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15103         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15104         we doesn't decrease its alignment. Should fix the sparc build.
15106 2007-01-24  Dick Porter  <dick@ximian.com>
15108         * socket-io.c
15109         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15110         Create the returned object if we need to ignore an unsupported
15111         socket option.  Fixes a segfault reported by Atsushi.
15113 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15115         * class.c, object.c: restrict GC-tracked fields to
15116         UIntPtr fields used inside corlib, so we provide better
15117         type info to the GC and also allow broken packing as in
15118         bug #80580.
15120 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15122         * sgen-gc.c: removed duplicated function.
15124 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15126         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15127         value that means that the value is not supported, but that we
15128         should not return a failure, but instead report this as a
15129         successful operation.
15131 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15133         Fix tests/bug79956.2.il
15134         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15135         (mono_generic_class_get_class): If the generic definition in an
15136         enum, copy over other fields related to it.
15138 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15140         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15141         genericinst enums (bug #79215).
15143 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15144         * class.c: Fix bug 80307.
15146 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15148         * image.c: if the file table is not present, try to load
15149         all the modules, since we don't have info about them
15150         having or not metadata (bug #80517).
15151         * assembly.c: allow mono_assembly_load_references () to
15152         work for netmodules.
15154 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15156         * image.c, metadata-internals.h, object.c: execute module
15157         cctors when running on the 2 runtime if present (bug #80487).
15159 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15161         * icall.c: optimized InitializeArray() on bigendian.
15163 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15165         * icall.c: fix for the broken ARM FPA double format.
15167 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15169         * icall.c: handle endian issues for r4 and r8 types, too, in
15170         the InitializeArray() icall.
15172 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15174         * loader.c (mono_loader_error_prepare_exception): Clear the error
15175         once we have extracted the information from it, do this before we
15176         call into the JIT's class loading mechanisms.
15178         * object.c (mono_class_create_runtime_vtable): Do not clear the
15179         loader error before calling mono_class_get_exception_for_failure
15180         as the loader error is needed inside
15181         mono_class_get_exception_for_failure to throw the error (thinko).
15183         Fixes #80521
15184         
15185 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15187         * reflection.c: align fields rva data so it's faster to load at
15188         runtime.
15190 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15192         Prepare to simplify GenericMethod handling.
15193         * class-internals.h (mono_method_get_context): New accessor function.
15194         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15195         rather than directly accessing '->context' field.
15197         * class-internals.h (_MonoGenericParam.method): Move ...
15198         (_MonoGenericContainer): ... here.  Add into union with klass field.
15199         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15200         Update to changes.
15202 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15204         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15205         the wrapper type enum and reduce relocations.
15207 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15209         * reflection.c (inflate_mono_method): Reuse method instantiation
15210         from the generic method, if available.
15212 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15214         * marshal.c (emit_marshal_variant): Fix conv_arg
15215         type in last commit, based on whether parameter is byref.
15216         
15217 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15219         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15220         marshalling.
15221         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15222         MONO_TYPE_OBJECT back for VARIANT support.
15224 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15226         * marshal.c, marshal.h, icall-def.h: Implement 
15227         Marshal.ReAllocCoTaskMem.
15229 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15231         * marshal.c: memory retention fixes: use the proper
15232         image cache for runtime_invoke method lookups.
15234 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15236         * mempool.c: added code to help debug mempool allocations.
15238 2007-01-11  Dick Porter  <dick@ximian.com>
15240         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15241         support (experimenting with faking it with IP_MTU_DISCOVER for
15242         systems that don't have IP_DONTFRAGMENT.)
15243         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15244         icall.
15246         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15248         * socket-io.h: Add new fields to MonoSocketAsyncResult
15249         corresponding to the new ones in Socket.cs.
15251 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15253         Fix IronPython regression mentioned in #80249
15254         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15255         'cached_context' field, since it may have been initialized as a
15256         side-effect of metadata parsing.
15258         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15259         (_MonoGenericClass.cached_class): Move here and rename from lone
15260         remaining field of ...
15261         (_MonoInflatedGenericClass): ... this.  Remove.
15262         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15263         to changes.
15265         Fix mcs/tests/test-128.cs regression.
15266         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15267         2007-01-10 change below.
15268         [MONO_TYPE_OBJECT]: Recurse into array case.
15270 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15272         * class-internals.h (mono_get_inflated_generic_class): Remove.
15273         * class.c (mono_get_inflated_generic_class): Remove.
15274         (mono_generic_class_get_class): Rename from
15275         mono_class_create_generic.
15276         (mono_class_from_mono_type) [GENERICINST]: Use it.
15277         * reflection.c, metadata.c: Update to changes.  Use
15278         'mono_class_from_mono_type'.
15280 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15282         * reflection.c: use passed type when encoding an array element
15283         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15285 2007-01-09  Robert Jordan  <robertj@gmx.net>
15287         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15288         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15289         Fixes bug #80392.
15291 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15293         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15295         * object.c (set_value): Avoid aliasing between type->data.klass
15296         and type->data.generic_class.
15298         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15300 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15302         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15303         between type->data.klass and type->data.generic_class.
15305 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15307         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15308         value in out parameters.
15310 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15312         Simplify invariant for MonoGenericClass::klass field.
15313         * class.c (mono_class_create_generic): Verify 'klass' is null.
15314         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15315         initialize 'klass' field.
15317 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15319         Ongoing work to avoid redundant data and simplify invariants.
15320         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
15321         'generic_class', and change type to a GenericInst.
15322         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
15323         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15325 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
15327         * class.c : skip io-layer under PLATFORM_WIN32.
15329 2007-01-03  Tor Lillqvist  <tml@novell.com>
15331         Fix #80305: In a bundled executable, look in the bundled exe
15332         assembly to determine the runtime version. Add the possibility to
15333         bundle also the machine.config file.
15334         
15335         * assembly.c (mono_assembly_open_from_bundle): Make
15336         non-static. Allow being called even if we have no bundled
15337         assemblies, and return NULL right away in that case.
15339         * domain-internals.h: Declare mono_assembly_open_from_bundle()
15340         here.
15342         * domain.c (app_config_parse): Take an assembly exe file name as
15343         parameter instead of a config file name. Check for a bundled
15344         config file for that assembly by calling
15345         mono_config_string_for_assembly_file() (see below) before looking
15346         for one in the file system.
15347         (get_runtimes_from_exe): Corrsponding change to call of
15348         app_config_parse().
15349         (get_runtimes_from_exe): Check for bundled assembly exe file first
15350         by calling mono_assembly_open_from_bundle(). If no bundled
15351         assembly exe file is found, call mono_image_open() as before to
15352         look it up in the file system.
15354         * mono-config.c: Add variable bundled_machinec_onfig.
15355         (mono_config_string_for_assembly_file): New function.
15356         (mono_config_for_assembly): Move code snippet that looks for a
15357         bundled assembly .config file into the above new function. Call
15358         it.
15359         (mono_register_machine_config, mono_get_machine_config): New
15360         functions to set and retrieve
15362         * assembly.h: Declare mono_register_machine_config().
15364         * mono-config.h: Declare mono_get_machine_config() and
15365         mono_config_string_for_assembly_file().
15367         * icall.c: No declaration of environ necessary on Win32. It is
15368         declared (as a macro expanding to a function call) in stdlib.h.
15369         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
15370         New internal mono function. Returns the value of
15371         mono_get_machine_config() as a Mono string.
15373         * icall-def.h: Add get_bundled_machine_config().
15375 2007-01-04  Raja R Harinath  <rharinath@novell.com>
15377         Remove redundant field
15378         * class-internals.h (_MonoGenericContext.container): Remove field.
15379         * loader.c (mono_method_get_signature_full): Don't parse a
15380         "container" for a signature parse when the signature is inflated
15381         immediately.
15382         (method_from_methodspec): Likewise, for a generic_inst.
15383         * class.c, metadata.c, reflection.c: Update to changes.
15385 2006-01-04  Raja R Harinath  <rharinath@novell.com>
15387         * class-internals.h (_MonoGenericClass): Rename 'context' field to
15388         'cached_context', and change semantics -- it starts off NULL, and
15389         is initialized on demand.
15390         * class.c (mono_generic_class_get_context): New accessor to
15391         replace 'context' field accesses.
15392         (mono_class_get_context): New helper.
15393         (*): Update to changes.
15394         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
15396 2007-01-03  Miguel de Icaza  <miguel@novell.com>
15398         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
15399         before the memcpy.   Fixes Marshal2 regression.
15401 2007-01-02  Jb Evain  <jbevain@gmail.com>
15403         * blob.h: add a MONO_TYPE_ENUM definition
15404         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
15405         fix the encoding of arrays of enums in custom attributes.
15407         Fixes #79666.
15409 2007-01-01  Miguel de Icaza  <miguel@novell.com>
15411         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
15412         string is null terminated, but only cut the string short if it
15413         overflows the buffer.   
15414         
15415         (mono_string_to_byvalstr): Also fix this routine.   The code here
15416         was not properly terminating a string (it was only terminated
15417         because of the previous catch-all memset). 
15419         I left the memset, because I do not know if applications expect
15420         the runtime to clear this region. 
15422         Fixes #79944.
15424         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
15425         Clear the error before returning to unmanaged code to prevent the
15426         runtime from being confused later on (fixes  80420).
15427         (ves_icall_type_from_name): Always call mono_loader_clear_error
15428         after parsing a type that could have failed.
15429         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
15431         * loader.c (mono_loader_clear_error): Fix indentation.
15433 2006-12-28  Martin Baulig  <martin@ximian.com>
15435         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
15437 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
15439         * reflection.c: patch from Rolf Bjarne Kvinge to fix
15440         getting a token for an EnumBuilder.
15442 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
15444         * reflection.c: be more careful in case resource generation
15445         fails to create the data array.
15447 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
15449         * sgen-gc.c: write barrier for clone and fix unregister handles.
15451 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
15453         * reflection.c: some fixes needed in the generics code for the moving GC.
15455 2006-12-22  Robert Jordan  <robertj@gmx.net>
15457         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
15458         account. Fixes bug #80299.
15460 2006-12-21  Raja R Harinath  <rharinath@novell.com>
15462         Fix WaitHandle usage in delegates.
15463         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
15464         * object.c (mono_wait_handle_new): Use the property set method to
15465         initialize the handle.
15466         (mono_wait_handle_get_handle): New.
15467         * threadpool.c (mono_async_invoke): Use it.
15468         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
15469         Likewise.
15470         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
15472 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
15474         * marshal.c (emit_marshal): Call emit_marshal_variant and
15475         emit_marshal_com_interface when applicable.
15476         (emit_marshal_variant, emit_marshal_com_interface): Add
15477         methods for this case and remove if's from emit_marshal_object.
15478         
15479 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
15481         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
15483 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
15485         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
15486         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
15487         and GlobalFree on Windows. Remove FIXME.
15489 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
15491         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
15492         implementation for managed objects.
15494 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
15496         * object.c: implemented code to be used for checking
15497         that no reference field overlaps with non-references.
15499 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15501         * threadpool.c: fix queue code to be compatible with the
15502         moving GC.
15504 2006-12-18  Miguel de Icaza  <miguel@novell.com>
15506         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
15507         in structures by throwing ArgumentNullException.
15509         (emit_marshal_safehandle): Also when they are null parameters.
15511         (emit_marshal_safehandle): Add support for ref
15512         SafeHandles parameters
15514 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
15516         * profiler.c: updated to use the mono-dl API instead of
15517         gmodule.
15519 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15521         * profiler.c: updated to use the mono-dl dynamic loading
15522         API instead of gmodule.
15524 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
15526         * profiler.c: use readlink, older versions of glib don't have
15527         g_file_read_link ().
15529 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15531         * profiler.c: try to detect the path to mono if libc fails to provide
15532         a useful name (bug #80286).
15534 2006-12-16  Raja R Harinath  <rharinath@novell.com>
15536         Fix #80242
15537         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
15538         instance, use the generic type definition instead.
15539         (ves_icall_Type_GetNestedTypes): Likewise.
15540         * class.c (mono_class_create_generic): Always set the
15541         nested_classes of a generic instance to NULL, even if the generic
15542         type definition has nested types.
15544 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
15546         * marshal.c (mono_string_from_bstr): Revert previous Windows change
15547         and fix on Linux.
15548         
15549 2006-12-15  Miguel de Icaza  <miguel@novell.com>
15551         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
15552         my arguments were in the wrong order.   I also fixed the Windows
15553         version which seems to have had the same issue.
15555         (mono_free_bstr): On Unix, this is g_free.
15556         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
15557         conversions (for the tests in corlib to pass).
15559 2006-12-14  Miguel de Icaza  <miguel@novell.com>
15561         * marshal.c (emit_ptr_to_object_conv): For now, ignore
15562         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
15563         exception if a ref SafeHandle in a struct has changed).
15564         
15565         (emit_struct_conv): Do not perform layout checks for classes
15566         derived from SafeHandle, as those are specially handled. 
15568         (emit_object_to_ptr_conv): Add support for
15569         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
15571         (emit_marshal_safehandle): Implement conversion of return values
15572         of safehandles (MARSHAL_ACTION_CONV_RESULT).
15573         
15574         * threads.c: WaitHandle now is compiled with two different handles
15575         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
15576         for 2.0.
15577         
15578         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
15579         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
15580         these routines to cope with both kinds of fields.
15582 2006-12-12  Miguel de Icaza  <miguel@novell.com>
15584         * metadata.c (mono_type_to_unmanaged): Handle the case where
15585         type->data.klass is a SafeHandle, and in that case, return the
15586         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
15587         MONO_MARSHAL_CONV_SAFEHANDLE. 
15589 2006-12-11  Miguel de Icaza  <miguel@novell.com>
15591         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
15592         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
15593         calling emit_marshal_object.
15595         (emit_marshal_safehandle): Implement marshalling of
15596         SafeHandle parameters (no ref support yet).
15598         (MarshalAction): Document the defines as I implement
15599         them for SafeHandle.
15601         (emit_marshal_object): indentation police.
15603         * class-internals.h: Define MonoSafeHandle.
15604         Add safehandle_class to MonoDefaults type.
15606         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
15607         list of classes to check for fields. 
15609         * domain.c (mono_init_internal): Add SafeHandle to the list of
15610         mono_defaults loaded.
15612 2006-12-15  Raja R Harinath  <rharinath@novell.com>
15614         Fix #80253
15615         * reflection.c (mono_reflection_bind_generic_parameters): If the
15616         generic type definition is a type builder, ensure that it is fully
15617         initialized before instantiating it.  Kill some dead code.
15619 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
15621         * object.c: clear the loader_error () before loading
15622         more metadata stuff (bug #80258).
15624 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
15626         * icall.c, icall-defs.h: type modifiers icalls for
15627         parameters and properties.
15629 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
15631         * object.c, icall.c: fixed warnings.
15633 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15635         * marshal.c: fixed a couple of leaks and coding style in a few places.
15637 2006-12-08  Dick Porter  <dick@ximian.com>
15639         * process.c: Cope with NULL ProcessStartInfo arguments on windows
15640         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
15641         80173.
15643 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
15645         * process.c: ProcessStartInfo may have only filename set and
15646         arguments can be NULL.
15648 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
15650         * icall.c: fix leak found by Robert Jordan.
15652 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
15654         * marshal.c, marshal.h: generate managed method to access an element
15655         of a multi-dimensional array.
15657 2006-11-30  Paolo Molaro (lupus@ximian.com)
15659         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
15661 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
15663         * icall.c: back out GetFields () fix until the serialization code is
15664         fixed to not depend on the incorrect behaviour.
15666 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
15668         * profiler.c: provide defaults if none are set.
15670 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
15672         * Makefile.am, attrdefs.h: new public header file with
15673         constants for attributes for use by embedders.
15675 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
15677         * icall.c: GetFields () fix for bug #80064.
15679 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
15681         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
15682         removed long unused icalls.
15684 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
15685   
15686         * marshal.c: 
15687                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
15688                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
15689                 can be generated without a delegate class.
15690                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
15691         
15692         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15694 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15696         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
15697         #80069.
15699 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
15701         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
15702         icall-def.h: added icalls needed by System.GC.
15704 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
15706         * loader.c: ensure the class in catch clauses is handled
15707         correctly for generics methods (fixes bug#79980).
15709 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
15711         * monitor.h, monitor.c: added mono_locks_dump () function
15712         to help debug deadlocks involving managed locks.
15714 2006-11-13  Dick Porter  <dick@ximian.com>
15716         * file-io.c (get_file_attributes): If the file is a symlink try
15717         and get the stat data for the target, but also add the
15718         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
15719         the specs for the windows symlink support, but will probably have
15720         to be reworked when I have test data from a vista machine.  Fixes
15721         bug 79887.
15723 2006-11-13  Dick Porter  <dick@ximian.com>
15725         * gc.c (mono_domain_finalize): 
15726         * marshal.c (mono_delegate_begin_invoke): 
15727         * threadpool.c (socket_io_init, mono_thread_pool_init)
15728         (mono_thread_pool_finish): 
15729         * monitor.c (mono_monitor_try_enter_internal): 
15730         * threads.c (mono_thread_resume, mono_thread_init)
15731         (mono_thread_suspend_all_other_threads)
15732         (mono_thread_execute_interruption): 
15733         * appdomain.c (mono_domain_unload): Check for NULL error returns
15734         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
15735         75733.
15737 2006-11-11  Miguel de Icaza  <miguel@novell.com>
15739         * process.c
15740         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
15741         Only close the handle if the value of the handle is not
15742         INVALID_HANDLE_VALUE.  This just makes the process a bit more
15743         robust.
15745         Improvement for #75733, so that we do not run into this problem. 
15747         
15748         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
15749         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
15750         internal variables.  Fixes #79462 
15751         
15753 2006-11-09  Dick Porter  <dick@ximian.com>
15755         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15756         Use poll() not select().  Fixes bug 79397.
15758 2006-11-09  Raja R Harinath  <rharinath@novell.com>
15760         Fix #79872
15761         * assembly.c (mono_assembly_load_from_full): Check that the given
15762         image has an assembly manifest.
15764 2006-11-09  Ankit Jain  <jankit@novell.com>
15766         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
15767         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
15768         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
15770 2006-11-07  Dick Porter  <dick@ximian.com>
15772         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15773         Put the old resolver behaviour back for pre-2.0 profiles.
15775 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
15777         * threadpool.c: precise GC and locking fixes.
15779 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
15781         * class.c: don't load types that have an explicit unaligned
15782         managed reference. Provide better info in the TypeLoad exception.
15783         Part of the fix for bug #79744.
15784         * object.c: use the correct check for class type load issues.
15786 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
15788         * class.c: enforce alignment of fields with managed references
15789         even when Pack=1 is forced by the user (bug #77788).
15791 2006-11-03  Dick Porter  <dick@ximian.com>
15793         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
15794         If the address reverse lookup fails, return it as the hostname
15795         anyway.  Fixes bug 79721.
15797 2006-11-03  Dick Porter  <dick@ximian.com>
15799         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
15800         Fix build on Windows.
15802 2006-11-02  Dick Porter  <dick@ximian.com>
15804         * icall-def.h: 
15805         * object-internals.h: 
15806         * exception.c (mono_get_exception_thread_interrupted): 
15807         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
15808         Fixes bug 74525.
15810         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
15811         Check for pending Thread.Interrupt.
15813 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
15814         * loader.c: Fixed bug 79684.
15816 2006-10-27  Dick Porter  <dick@ximian.com>
15818         * file-io.c (get_file_attributes): Force symlinks to directories
15819         to be returned as a regular file.  Fixes bug 79733.
15820 2006-10-26  Dick Porter  <dick@ximian.com>
15822         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
15823         CreateFile to open a directory then we need to set the
15824         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
15826 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
15828         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
15829         friends.
15831 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15833         * sgengc.c: small cleanup of timer code.
15835 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15837         * sgen-gc.c: fix some warnings and start adding support for
15838         complete object removal on domain unload.
15840 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
15842         * assembly.c: build_assembly_name should not consider a version
15843         number without build or revision number invalid. Fixes bug #79715.
15845 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
15847         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
15848         call kernel32 function OutputDebugString directly.
15849         
15850         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
15851         
15852 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
15854         * reflection.c: small cleanup, using a function to insert a MonoString
15855         in the string heap.
15857 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
15859         * reflection.c: moving GC fixes.
15861 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
15863         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
15864         all the objects with finalizers belonging to an unloading appdomain.
15866 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
15868         * sgen-gc.c: added ability to allocate even when the nursery is fully
15869         pinned and fixed a couple of bugs.
15871 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15873         * threads.h: Revert the last change for now.
15875         * threads.h (mono_thread_get_pending_exception): Rename this to
15876         mono_thread_get_undeniable_exception ().
15878 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
15880         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
15881         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
15882         when fname does not refer to valid assembly. This result in a more
15883         meaningful error message.
15884         * exception.c: added mono_get_exception_bad_image_format2 which 
15885         constructs a BadImageFormatException using the ctor taking a custom
15886         message and the file name. Passing in a NULL msg results in a default
15887         message.
15888         * exception.h: define mono_get_exception_bad_image_format2 function.
15889         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
15890         when file name pointed to an invalid IL image. Use 
15891         mono_get_exception_file_not_found2 to construct FileNotFoundException,
15892         as this results in a more meaningful error message.
15894 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
15896         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
15897         #79465.
15899 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
15901         * metadata.c (mono_type_size): Change the align parameter to guint32 for
15902         consistency with the other _size functions.
15903         (mono_type_stack_size): Ditto.
15905         * class.c object.c icall.c: Fix warnings caused by the above change.
15907         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
15909         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
15911         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
15913 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
15915         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
15916         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
15917         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
15918         threadpool.h, threads-types.h: mark more internal functions.
15920 2006-10-11  Dick Porter  <dick@ximian.com>
15922         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
15923         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
15924         reproduce the bug even before applying the fix.)
15926 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
15928         * reflection.c: allow retrieving attributes for arguments in generic
15929         methods (bug #79241).
15931 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
15933         * debug-mono-symfile.c: properly check fopen () result (found by
15934         coverity).
15936 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
15938         * reflection.c: make error message clearer and fixed two
15939         issuelets found by Coverity.
15941 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
15943         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
15945 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15947         * object-internals.h, gc-internal.h, profiler-private.h:
15948         mark internal functions.
15950 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15952         * reflection.c: put data in the text section.
15953         * icall.c: recognize more types in type_from_typename ().
15954         * process.c, marshal.c: added some GC FIXMEs.
15956 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15958         * loader.c: check for NULL before initializing.
15960 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
15962         * gc.c (finalizer_thread): Use a non-alertable wait here.
15964         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
15965         until the correct solution is found.
15967 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15969         * reflection.c (mono_module_get_object): Avoid an assert when operating on
15970         modules with no metadata. Fixes #79596.
15972         * image.c (load_metadata_ptrs): Put back the error message when
15973         the #- heap is encountered since the support is not complete yet.
15975 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
15977         * gc.c: do not allow the user to SuppressFinalize () a
15978         delegate because it would leak the trampoline if present.
15980 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
15982         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
15983         PropertyPtr table.
15985 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
15987         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
15989         * metadata.c (mono_metadata_get_param_attrs): Ditto.
15991         * row-indexes.h: Add definitions for *Ptr tables.
15993         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
15995         * metadata.c (mono_metadata_translate_token_index): New helper function to
15996         translate table indexes used in uncompressed metadata.
15997         (mono_metadata_decode_table_row): Ditto.
15998         (mono_metadata_decode_table_row_col): Ditto.
16000         * metadata.c: Add table schema for *Ptr tables.
16002         * class.c loader.c: Use the new helper function to access the affected metadata
16003         tables.
16004         
16005         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16006         #38532.
16007         
16008 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16010         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16011         sequences which can be unbounded in size. Fixes #79583.
16013 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16015         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16016         static initialization.
16018         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16020         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16022         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16024         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16025         ctor fails, i.e. throw the same exception on subsequent accesses.
16026         
16027 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16029         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16030         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16031         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16032         Handle marshalling of interfaces and VARIANTs contained in structs.
16033         
16034         Code is contributed under MIT/X11 license.
16035         
16036 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16038         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16039         
16040         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16041         mempool.
16043 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16045         * console-io.c: ignore previous SIGINT handler.
16047 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16049         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16050         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16051         #79460, #79461, #79485.
16053         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16055         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16056         #79217.
16058 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16060         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16061         could be generated from it.
16063 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16065         * rand.c: fix read loop to correctly handle EINTR.
16067 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16069         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16070         internal calls are defined to keep methods closer to the declaring
16071         type and allow a significant reduction in runtime relocations and
16072         memory usage.
16074 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16076         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16077         exception message to have FileNotFoundException use the default
16078         assembly load error message. Fixes bug #79426.
16079         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16081 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16083         * threadpool.c: (start_thread_or_queue) use the root domain when
16084         creating the thread instead of the async object one.
16086 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16088         * class.c, object.c, class-internals.h, reflection.c:
16089         for arrays, store element_size inside MonoClass (speedup
16090         for array object creation).
16092 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16094         * icall.c: fixed CodeBase to use the file name and not the module
16095         name (bug #79365).
16097 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16099         * mono-debug.c, mono-debug.h: export find_method as
16100         mono_debug_find_method ().
16102 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16104         * debug-helpers.c, class-internals.h: added a few functions useful
16105         when debugging under gdb.
16107 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16109         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16110         characters that need special handling.
16112 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16114         * mono-config.c: make the os/cpu specification more flexible,
16115         allowing lists and negation.
16117 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16119         * marshal.c: COM Interop fixes. Handle case where method->klass.
16120         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16121         calling convention on non-windows platforms. This is for
16122         compatibility with XPCOM and MainWin COM.
16123         
16124         Code is contributed under MIT/X11 license.
16125         
16127 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16129         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16130         correctly. Fixes #79217.
16132         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16134 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16136         * mono-config.c: allow both an os and cpu attribute for dllmap
16137         and dllentry elemnets to enable a single config file to be used
16138         for multiple architectures.
16140 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16142         * loader.c: MonoLoaderError was cleared too soon on load failure.
16143         Fixes bug #79424.
16145 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16147         * icall.c: use the defining class vtable when accessing a
16148         static field, not a pobblibly derived class.
16150 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16152         * icall.c string-icalls.c: Remove references to unicode.h.
16154         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16156         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16158         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16159         indicating the image where custom marshaller types should be looked up.
16160         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16161         custom marshallers, instead of corlib. Fixes #79425.
16163 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16165         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16167 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16169         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16170         Implement Environment.ProcessorCount.
16171         
16172         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16173         Implement Environment.ProcessorCount.
16174         
16175         * icall.c: 
16176         Add Environment.ProcessorCount icall.
16177         
16178         Patch by Jason McFall.
16180 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16182         * assembly.c: don't append .exe/.dll when the filename already contains
16183         one of those extensions.
16185 2006-09-12  Martin Baulig  <martin@ximian.com>
16187         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16188         to array interfaces.
16190 2006-09-11  Martin Baulig  <martin@ximian.com>
16192         * reflection.c (mono_image_build_metadata): Create the
16193         MethodImpl's after emitting all types and methods, so we don't
16194         need another fixup pass for them.
16196 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16198         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16199         change.
16201 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16203         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16204         unload.
16206 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16208         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16209         args is not set. Fixes #78926.
16211 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16213         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16215         * image.c (load_class_names): Move this to class.c, and rename it to 
16216         'mono_image_init_name_cache'.
16217         (load_modules): Fix a warning.
16219         * class.c icall.c image.c: Initialize image->name_cache lazily.
16221         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16222         on its name using information in the AOT file.
16224         * class.c (mono_class_from_name): Use the new hook function.
16226 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16228         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16229         correctly.
16231         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16232         Fixes #79289.
16233         
16234 2006-09-06  Martin Baulig  <martin@ximian.com>
16236         * icall.c (mono_lookup_internal_call): Small fix.
16238 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16240         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16241         double g_free.
16243 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16245         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16246         when --debug is specified.
16248 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16250         * class.c (setup_generic_array_ifaces): Fix a warning.
16252 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16254         * Temporarily remove the patch to assemly.c that checks the
16255         assembly versions as it breaks our gacutil.
16257 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16259         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16261         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16262         a net 1.0 runtime.
16264         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16265         created using the default ctor. Fixes #79152.
16266         (mono_string_builder_to_utf16): Ditto.
16268 2006-09-01  Martin Baulig  <martin@ximian.com>
16270         Fix handling of the generic array interfaces.
16272         * class-internals.h
16273         (MonoDefaults): Removed `generic_array_class' and added
16274         `generic_ilist' class.
16276         * class.c
16277         (mono_bounded_array_class_get): Add the new generic array interfaces.
16278         (setup_generic_array_ifaces): New static method; create vtable
16279         entries for each method in the generic array interfaces.
16281         * metadata.c
16282         (select_container): Allow "parent-less" generic methods.
16284         * marshal.c
16285         (mono_marshal_get_generic_array_helper): New public method.
16287         * icall.c
16288         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16289         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16290         moved the interncall into System.Array.
16292 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16294         A few more cases of avoiding work on types with ->byref set.
16295         Has the real fix for #79238
16296         * icall.c (is_generic_parameter): New helper.
16297         (ves_icall_Type_GetGenericParameterPosition): Use it.
16298         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16299         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16300         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16301         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16302         reference types.
16303         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16304         reference types.
16305         (ves_icall_Type_get_IsGenericInstance): Likewise.
16306         (ves_icall_Type_get_IsGenericType): Likewise.
16308 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16310         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16311         class if possible.
16313         * mempool.h (mono_mempool_get_allocated): New helper function.
16315         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16316         change.
16318         * mempool.c: Fix warnings and the calculation of stats.
16320         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
16322         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
16324         * loader.c (mono_get_method_from_token): Update method_count stat.
16326         * class-internals.h (MonoStats): Add some stats.
16328 2006-08-31 Robert Jordan  <robertj@gmx.net>
16330         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
16331         with managed variants.
16332         All code is contributed under the MIT/X11 license.
16333         
16334 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
16336         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
16337         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
16339         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
16341         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
16342         with cycles in classes.
16344         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
16346         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
16347         missing a [MarshalAs] directive. Fixes #79203.
16349         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
16350         klass->marshal_info. Fixes #79217.
16352 2006-08-30  Martin Baulig  <martin@ximian.com>
16354         Committing a patch from Joachim Ante <joe@otee.dk>:
16355         Add support for binary data symbol stores.
16357         * debug-mono-symfile.c
16358         (mono_debug_open_mono_symbol_file): Renamed into
16359         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
16360         arguments.
16362         * mono-debug.c
16363         (mono_debug_open_image): Added `raw_contents' and `size' args.
16364         (mono_debug_init_2_memory): New public function.
16366 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
16368         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
16370 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16372         * appdomain.c: implement support for ShadowCopyFiles.
16374 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
16376         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
16377         when value is NULL (and should remove CID #51).
16379 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16381         * image.c: moved 2 functions to ../utils.
16383 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
16385         * gc.c: cope with the target object of a GC handle being NULL
16386         (bug #78877).
16388 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
16390         * class.c: recursively check parent's explicit implementations
16391         of interface methods (fixes bug #79125).
16393 2006-08-19  Miguel de Icaza  <miguel@novell.com>
16395         * filewatcher.c: Avoid warnings when building, do not redefine
16396         constants that are defined.
16398         Remove warnings.
16400 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16402         * image.c: don't fail when the link points to an absolute path.
16404 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
16406         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
16407         Fix CID #3.
16409 2006-08-17  Miguel de Icaza  <miguel@novell.com>
16411         * image.c (full_path): A new method used to obtain the actual path
16412         of an assembly even in the presence of symbolic links.  
16414         This is necessary for the case where we are running a binary that
16415         has been GACed, but we are using the "published" path name
16416         ($prefix/mono/1.0/blah.exe) which happens to point to the real
16417         file in the GAC.
16419         This was the source of the failure for the `xsp' command with the
16420         recent AppDomain changes, as far as the runtime was concerned,
16421         there were two different assemblies: $prefix/mono/1.0/blah.exe and
16422         $prefix/mono/gac/blah/version/blah.exe.
16424         (do_mono_image_open): use full path
16426 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16428         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
16430 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
16432         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
16433         domain_id is supplied. Fix CID #241 and corlib's unit tests.
16435 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16437         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
16438         small structures. Fixes #78990.
16440 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
16442         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
16444         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
16446 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16448         * appdomain.c:
16449         * marshal.c: don't load all the assemblies from a domain into newly
16450         created ones. The new domains might have different rules and load
16451         assemblies from different locations. Fixes bug #76757.
16453         Patch by Lluis. Conflicts resolved by Brian Crowell.
16455 2006-08-16  Alp Toker  <alp@atoker.com>
16457         * socket-io.c: First half of the fix for #79084.
16458         Set sa_size to the length of the content, not that of the struct.
16459         Don't add NULL suffix to the content, this should be done in
16460         managed code if needed.
16462 2006-08-14  Raja R Harinath  <rharinath@novell.com>
16464         Fix part of #79012
16465         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
16466         mono_metadata_parse_type returns NULL.
16468 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
16470         * normalization-tables.h : new file for string normalization data.
16471         * locales.c, locales.h, icall.c :
16472           added load_normalization_resource() for string normalization,
16473           and icall as well.
16474         * Makefile.am : added normalization-tables.h to the sources.
16476 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
16478         * marshal.c: Add more helper functions to reduce code duplication and use them
16479         everywhere.
16481 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
16483         * marshal.c: Fix non-x86 stdcall warnings.
16484         
16485         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
16486         them everywhere.
16488 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
16490         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
16491         type check on multi-dimensional arrays. Fixes #79000.
16493 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
16495         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
16496         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
16497         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
16498         * class-internals.h: add is_com_object to class structure.
16499         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
16500         null checks to COM object marshalling. Fix .ctor call on RCW.
16501         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
16502         
16503         All code is contributed under the MIT/X11 license.
16505 2006-08-09  Dick Porter  <dick@ximian.com>
16507         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
16508         racing mono_monitor_allocator_lock() somewhere, so don't delete
16509         the critical section for now.  Found by running and exiting
16510         monodevelop.
16512 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
16514         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
16515         (ves_icall_System_ComObject_FindInterface): Ditto.
16516         (ves_icall_System_ComObject_CacheInterface): Ditto.
16518         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
16519         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
16521 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16523         * threadpool.c: treat pipes from process asynchronous reads as sockets
16524         when reading from them, so we get select/poll or epoll to wait for
16525         data.
16527 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
16529         * loader.c: Fix a typo (CID #233) in the null check.
16531 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
16533         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
16534         Hopefully fixes #78949.
16535         
16536         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
16537         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
16538         bytes. Fixes #78972.
16540 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16542         * filewatcher.c: we need to set errno here.
16544 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16546         * filewatcher.c: let Win32Exception get the error value.
16548 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16550         * filewatcher.c: translate errno into win32 errors for Win32Exception
16551         to know what happened.
16553 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
16555         * threadpool.c: Fix more warnings.
16557         * assembly.c (search_loaded): Fix warnings.
16559         * threadpool.c (mono_thread_pool_finish): Fix warnings.
16560         (mono_async_invoke): Ditto.
16562 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
16564         * object.c (mono_remote_class_vtable): Need to create proxy vtable
16565         entries for __ComObject type in addition to ComImport types.
16566         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
16567         about hash table.
16568         
16569         All code is contributed under the MIT/X11 license.
16571 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16573         * image.c: avoid tentative loading of modulerefs that contain
16574         no metadata (P/Invoke library names).
16576 2006-07-28  Dick Porter  <dick@ximian.com>
16578         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16579         mono_loader_lock() somewhere, so don't delete the critical section
16580         for now.  Found by running and exiting monodevelop.
16582 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16584         * filewatcher.c: define the inotify syscalls when we're building on
16585         linux and have sys/syscall.h. The build system might not have support
16586         for inotify but the target system might have it.
16588 2006-07-26  Miguel de Icaza  <miguel@novell.com>
16590         * domain.c: Documentation updates.
16592         * loader.c (mono_free_method): Do not release the method
16593         information if we are being profiled, as profilers will use this
16594         information at shut down to present some data to the user.
16596         This is needed so that the profiler does not crash, as the
16597         profiler tends to keep MonoMethods around, and they might become
16598         invalid if we free these.
16600         (mono_get_method_constrained): Return the original CIL stream
16601         method as well, so verification can be performed against it.
16603 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16605         * filewatcher.[ch]: support for inotify file system watcher.
16606         * icall.c: add new internal calls for the inotify file system watcher.
16608 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16610         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
16611         #78888.
16613 2006-07-20  Dick Porter  <dick@ximian.com>
16615         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
16616         warning.
16618 2006-07-20  Dick Porter  <dick@ximian.com>
16620         * threads.c (start_wrapper): Do the thread cleanup while we still
16621         hold a reference to its object.  Fixes bug 78123.
16623 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
16625         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
16626         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
16627           "managed-to-managed".
16628         * icall.c: Redirect string constructors that take sbyte* to
16629           ves_icall_System_String_ctor_RedirectToCreateString.
16630         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
16631           to CreateString () methods with matching signature.
16632         * reflection.c: Use original security informations for
16633           MONO_WRAPPER_MANAGED_TO_MANAGED.
16634         * security-manager.c: Use original security informations for
16635           MONO_WRAPPER_MANAGED_TO_MANAGED.
16636         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
16637           that is a placeholder and only its address should be used.
16638         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
16639           that is a placeholder and only its address should be used.
16641 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
16643         Begin implementing COM Interop.
16644         * appdomain.c: Increment corlib version.
16645         * class.c: Set ComImport classes' parent to __ComObject.
16646         * loader.c: Mark cominterop methods as such.
16647         * domain.c: Add __ComObject class to MonoDefaults structure.
16648         * image.c: Add 2 hashtables to the image for COM Interop related methods
16649         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
16650         using the mempool allocator
16651         
16652         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
16653         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
16654         declaration for mono_metadata_type_dup_mp.
16655         
16656         * debug-helpers.c: Added strings for two additional wrapper types
16657         * object.c: Create proxy objects for ComImport classes
16658         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
16659         and added __ComObject class to MonoDefaults structure.
16660         
16661         * object-internals.h: Finish MonoRealProxy definition, and add definition of
16662         MonoComInteropProxy and MonoComObject.
16663         
16664         * marshal.c: Added support for COM Interop
16665         (signature_cominterop): Converts managed signature to corresponding
16666         unmanaged COM signature.
16667         (cominterop_get_function_pointer): gets unmanaged function pointer via
16668         COM object vtable
16669         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
16670         (cominterop_get_method_interface): returns interface type that method is defined on
16671         (mono_mb_emit_cominterop_call): emits native call to function pointer
16672         gotten from vtable
16673         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
16674         that matches signature of unmanaged function.
16675         (cominterop_get_native_wrapper): wrapper around adjusted method call.
16676         (cominterop_get_invoke): forwards call from proxy to __ComObject
16677         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
16678         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
16679         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
16680         
16681         * marshal.h: Added Marshal icall declarations.
16682         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
16683         so we can access them in finalizer
16684         
16685 2006-07-14  Dick Porter  <dick@ximian.com>
16687         * object.c (mono_type_initialization_cleanup): Fix a race
16688         condition by temporarily commenting out the critical section
16689         deletion.
16691 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
16693         * reflection.c (create_custom_attr): Fix some warnings.
16694         (create_custom_attr_data): Ditto.
16695         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
16696         types. Fixes #78855.
16698 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
16700         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
16702         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
16704 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
16706         * reflection.c (resolve_object): Add support for DynamicMethod.
16708         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
16709         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
16711 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
16713         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
16714         don't leak GPtrArray's pdata has we have no use (nor free) for it.
16716 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
16718         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
16719         Fixes #77888.
16721 2006-06-30  Raja R Harinath  <rharinath@novell.com>
16723         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
16724         slightly: remove a shadow local variable.
16726 2006-06-29  Raja R Harinath  <rharinath@novell.com>
16728         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
16729         definition that introduces the virtual function slot.
16730         Also fix Coverity #105.
16732 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
16734         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
16735         for dynamic assemblies. Fixes #78724.
16737 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
16739         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
16740         Fixes #78722.
16742 2006-06-21  Martin Baulig  <martin@ximian.com>
16744         * reflection.c
16745         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
16746         fixes #76484.
16748 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
16750         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
16752 2006-06-20  Raja R Harinath  <rharinath@novell.com>
16754         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
16755         nor TYPEREFs.
16756         * class.c (mono_class_create_from_typespec): Add 'context' argument.
16757         Inflate result if necessary.
16758         (mono_class_get_full): Remove old version.  Rename from
16759         'mono_class_get' and add 'context' argument.  Pass it to
16760         ..._create_from_typespec.
16761         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
16762         (mono_ldtoken): Revert change below.
16764 2006-06-20  Martin Baulig  <martin@ximian.com>
16766         * class.c (mono_ldtoken): Don't pass the generic context to
16767         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
16769 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
16771         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
16772         and later freeing it. Fixes #78638.
16774 2006-06-15  Miguel de Icaza  <miguel@novell.com>
16776         * icall.c (mono_class_get_throw): Revert over-zealous error
16777         throwing, the caller for mono_class_get_throw will cope with
16778         errors when classes are not properly initialized already.
16780         The code still copes with loader exceptions though.
16782         Fixes the regression in reftype1 and reftype3 from the CAS tests.
16783         
16784 2006-06-14  Miguel de Icaza  <miguel@novell.com>
16786         Fixes the `make run1' version of RuntimeAbort (to be commited,
16787         source is in Bugzilla).
16788         
16789         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
16790         FALSE on class loading failure instead of returning true.
16792         * class.c (mono_class_create_from_typedef): It is possible for
16793         mono_metadata_interfaces_from_typedef_full to fail if a class is
16794         not found, cope with this.
16795         
16797 2006-06-14  Dick Porter  <dick@ximian.com>
16799         * socket-io.c: 
16800         * process.c: Fix a bunch of signed/unsigned warnings from gcc
16801         4.1.1
16803 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
16805         * culture-info-table.h : oops, forgot to make it nsync with r61548.
16807 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16809         * icall.c: Another fix for building mono in Visual Studio.
16811 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16813         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
16814         
16815 2006-06-09  Martin Baulig  <martin@ximian.com>
16817         * debug-mono-symfile.c: Put this back and really fix it this
16818         time. Sorry for all the trouble.
16820 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
16822         * icall.c (mono_class_get_throw): Fix a warning.
16823         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
16824         ReflectionTypeLoadException if needed. Fixes #78606.
16826         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
16827         (mono_class_init): Ditto.
16829         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16830         ref_only exceptions.
16831         (mono_loader_clear_error): Make this work even if there is no error.
16833 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
16835         * object-internals.h marshal.c marshal.h icall.c: Implement method 
16836         Marshal.GetComSlotForMethodInfo using internal call.
16838 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
16840         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
16841         a function for signalling it.
16843         * class.c (mono_class_from_typeref): Use the new kind of loader error when
16844         a referenced assembly is not found.
16846         * loader.c (mono_loader_error_prepare_exception): Add support for 
16847         LOADER_ERROR_ASSEMBLY. Fix formatting.
16849 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16851         * domain.c appdomain.c class-internals.h marshal.c: Add support 
16852         for VARIANT marshalling on windows and increment corlib version
16853         since Variant struct was added.
16855 2006-06-03  Miguel de Icaza  <miguel@novell.com>
16857         * debug-mono-symfile.c: Revert Martin's previous patch which broke
16858         stack trace line information:
16860         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
16861         (Martin) when looking up B which is between A and C, return A not C.
16863         Bug is #78573.
16865         Thanks to Alexander Olk for tracking this down.
16867 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
16869         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
16870         
16871         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
16872         avoid clobbering its value.
16873         (mono_string_to_lpstr): Fix a warning on windows.
16875 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16877         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
16879         * reflection.c loader.c: Removed references to 'dummy' flag.
16881         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
16883         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
16884         it gets GC tracking.
16886         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
16887         GC tracking.
16888         
16889         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
16891         * marshal.c threadpool.c: Update callers of mono_async_result_new.
16893         * appdomain.c: Bump corlib version.
16895 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16897         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16898         CEE_STIND_REF when working with object references.
16900 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
16902         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
16903         Fixes #78539.
16905 2006-05-30  Miguel de Icaza  <miguel@novell.com>
16907         * loader.c (method_from_memberref): Fix argument value for
16908         mono_loader_set_error_method_load (I was passing the MonoClass
16909         instead of the class name char *).
16911 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
16913         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
16914         CEE_STIND_REF when working with object references.
16916 2006-05-30  Martin Baulig  <martin@ximian.com>
16918         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
16919         mono_method_full_name() change and replace the ':' with a '.'
16920         here.
16922 2006-05-30  Martin Baulig  <martin@ximian.com>
16924         * debug-mono-symfile.c
16925         (mono_debug_symfile_lookup_location): Fix the algorithm:
16926         when looking up B which is between A and C, return A not C.
16928 2006-05-29  Martin Baulig  <martin@ximian.com>
16930         * mono-debug.h
16931         (MonoDebugMethodInfo): Make the typedef public.
16932         (MonoDebugSourceLocation): New public struct.
16934         * mono-debug.c
16935         (mono_debug_source_location_from_address): Removed.
16936         (mono_debug_source_location_from_il_offset): Removed.
16937         (mono_debug_il_offset_from_address): Removed.
16938         (mono_debug_address_from_il_offset): Removed.
16939         (mono_debug_lookup_method): New public function.
16940         (mono_debug_lookup_source_location): New public function; replaces
16941         the old mono_debug_source_location_from_*() functions; see the
16942         inline documentation.
16943         (mono_debug_free_source_location): New public function.
16944         (mono_debug_print_stack_frame): New public function; see the
16945         inline documentation.
16947         * debug-mono-symfile.c
16948         (mono_debug_find_source_location): Renamed into
16949         mono_debug_symfile_lookup_location(); only take a
16950         `MonoDebugMethodInfo *' and an `offset' argument; added inline
16951         documentation.
16952         (mono_debug_find_method): Renamed into
16953         mono_debug_symfile_lookup_method().
16955 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
16957         * assembly.c (mono_assembly_open_full): Dont overwrite the status
16958         returned by mono_image_open_full ().
16960         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
16961         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
16962         #78517.
16964         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
16965         #78518.
16967 2006-05-27  Miguel de Icaza  <miguel@novell.com>
16969         * class.c (mono_class_from_typeref): handle missing images
16970         earlier, deals with bug #78418.   Refactor code; 
16972         Fix a warning introduced in my previous commit (some stale code
16973         from before I revisited my patch).
16975         * class.c (mono_class_create_from_typedef): On failure, remove the
16976         class from the MonoImage->class_cache as the class is not
16977         initialized;   Fixes the leak pointed out by Paolo.
16979 2006-05-25  Dick Porter  <dick@ximian.com>
16981         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
16982         DeleteCriticalSections until I figure out which one may still be
16983         sometimes locked when mono_thread_cleanup is called.
16985 2006-05-24  Dick Porter  <dick@ximian.com>
16987         * threads.c (mono_thread_cleanup): Move the threading cleanup out
16988         of mono_thread_manage and back into its own function, so it can be
16989         called after the finalizer thread has finished.
16991         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
16993 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
16995         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
16996         Fixes #78495.
16998         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
16999         with non-blittable elements.
17000         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17002 2006-05-24  Martin Baulig  <martin@ximian.com>
17004         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17005         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17007         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17008         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17009         `mono_debugger_event_handler' to NULL.
17011 2006-05-24  Martin Baulig  <martin@ximian.com>
17013         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17015 2006-05-24  Martin Baulig  <martin@ximian.com>
17017         * mono-debug-debugger.h
17018         (mono_debugger_create_notification_function): Added
17019         `MonoCodeManager *' argument.
17021 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17023         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17025 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17027         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17028         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17029         implementation.
17031 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17033         * icall.c: precise GC support: objects can't be stored in unmanaged
17034         memory anymore, even if they are kept alive by other references: since
17035         they can move the GC needs to be able to always find them.
17037 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17039         * object.c: precise GC support for static fields. Support
17040         for moving GCs: write barriers and pinned allocation for interned
17041         strings.
17043 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17045         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17046         structure.
17048 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17050         * class.c, gc.c: sgen and precise GC updates.
17052 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17054         * marshal.h, marshal.c: added write barrier wrapper and precise type
17055         fixes.
17057 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17059         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17060         support.
17062 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17064         * reflection.c: precise and sgen GC updates.
17066 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17068         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17070 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17072         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17074 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17076         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17077         MONO_TYPE_OBJECT. Fixes #78462.
17079 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17081         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17082         and blittable types.
17084 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17086         * class.c (mono_class_get_exception_for_failure): Implement parts
17087         of a TODO: if the loader error is set (instead of the class
17088         error), we return a Loader exception that can be properly thrown
17089         elsewhere.
17091         This was exposed by some Winforms 2.0 code that I tried to run
17092         (Atsushi pointed me to it).
17094 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17096         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17097         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17098         
17099         * marshal.c (emit_marshal_vtype): Add limited support for 
17100         UnmanagedType.LPStruct. Fixes #78427.
17102         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17103         Applied a patch from kangaroo to fix #77523.
17105 2006-05-17  Martin Baulig  <martin@ximian.com>
17107         * threads.c
17108         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17109         (debugger_thread_created): Removed.
17110         (debugger_thread_exited): Removed.
17112 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17114         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17116         * object-internals.h (MonoReflectionResource): Sync with managed version.
17118 2006-05-12  Wade Berrier <wberrier@novell.com>
17120         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17122 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17124         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17125         functions try to allocate from the image mempool.
17127 2006-05-12  Dick Porter  <dick@ximian.com>
17129         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17131 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17133         * object.c: The FieldGetter and FieldSetter methods require the full
17134         name of the class, not only the name. Fixes bug #78277.
17136 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17138         * loader.c (method_from_memberref): Do not pass the NULL klass to
17139         mono_loader_set_error_() methods.  Pass the non-NULL value
17140         (class). 
17142 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17144         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17145         (mono_assembly_close): Null out assembly->image->references after freeing it.
17147         * image.c (mono_image_close): Free image->references.
17148         
17149         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17151 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17153         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17154         before checking if it's NULL (g_assert).
17156 2006-05-10  Martin Baulig  <martin@ximian.com>
17158         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17159         I thought I already killed that two months ago, but now it somehow reappeared.
17161 2006-05-10  Martin Baulig  <martin@ximian.com>
17163         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17165 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17167         * reflection.c: Allocate memory for dynamically created methods in the image
17168         mempools.
17170 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17172         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17173         don't use the ad pointer before checking if it's NULL (g_assert).
17175 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17177         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17178         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17180         * marshal.c: Allocate all signatures from mempools.
17182         * marshal.c: Allocate some more signatures from mempools.
17184 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17186         * object.c (mono_load_remote_field): The code used to provide a
17187         temporary variable for returning results if the user did not
17188         provide a result pointer.  But our temporary variable was allocted
17189         on the satck.
17191         Fix calling code to always pass a result area.   Coverity ID 103.
17193 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17195         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17196         value, not the old. Fixes #78312.
17197         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17199         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17200         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17201         per-image cache.
17203         * assembly.c (mono_assembly_close): Free image->references.
17205         * assembly.c (mono_assembly_names_equal): Fix a warning.
17206         (mono_assemblies_cleanup): Cleanup more global data.
17208         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17210         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17211         ptr_cache and image->modules.
17213         * image.c (mono_image_init): Allocate array_cache lazily.
17214         
17215 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17217         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17218         behavior was changed recently and has bad side effects.
17220 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17222         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17223         
17224         * assembly.c (mono_assembly_close): Remove a debug printf.
17226         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17228         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17229         to also allow for temporary references between mono_image_open ()/close ().
17231         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17233 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17235         * marshal.c: Fix support for dynamic methods.
17237         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17239         * marshal.c (mono_marshal_cleanup): New cleanup function.
17241         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17242         image mempools.
17244         * class.c (mono_class_init): Fix leaking class->nested_classes.
17246         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17248         * image.c (mono_image_init): Initialize the new cashes.
17250         * image.c (mono_image_close): Destroy the new cashes.
17252         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17254         * mempool.c (mono_mempool_strdup): New helper function.
17256         * class-internals.h: Add prototype for mono_loader_unlock ().
17258         * domain.c (mono_jit_info_table_find): Fix a warning.
17259         (mono_debugger_check_runtime_version): Ditto.
17261         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17262         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17263         functions to these modules.
17265         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17266         metadata modules.
17267         
17268         * marshal.c (mono_free_bstr): Fix a warning.
17270         * assembly.c (mono_assembly_open_full): Fix another small leak.
17272         * object.c: Fix some unload leaks in the remoting code.
17274         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17275         function.
17277         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17279         * reflection.c: Fix some unload leaks in dynamic assemblies.
17281 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17283         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17284         * marshal.h: Add BSTR support on Win32
17285         * icall.c: Add BSTR icalls
17286         * metadata.h: Add BSTR enums
17288 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17290         Work to catch the crash from #76795 and turn it into an
17291         exception.   As I stubbed out pieces of the VisualBasic support,
17292         I found a number of places where the code was failing and I added
17293         checks to those places. 
17294         
17295         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17296         function return a status code.  If we fail to parse the signature
17297         from mono_metadata_parse_generic_inst, return FALSE.
17299         * loader.c (mono_get_method_from_token): If we fail to load the
17300         method (mono_class_get) return NULL.   
17302         * (method_from_memberref): Return NULL if we are unable to parse
17303         the method signature
17305         (mono_loader_error_prepare_exception): Since we now use the
17306         loader_error flag internally to stop processing, and obtaining
17307         exceptions that might be thrown will walk this code path the
17308         proper way of going from a MonoLoaderError into a
17309         MonoException was convoluted.   This new routine encapsulates the
17310         process of turning the error into an exception and *clearing* the
17311         error afterwards.
17312         
17313 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17315         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17316         with missing assemblies), and to cope with:
17318                 * Missing fieldref from a non-existing assembly.
17319                 * Missing methodref from a non-existing assembly.
17321         The first batch of work to address *some* of the issues from 76661.
17322         
17323         * object.c (mono_class_create_runtime_vtable): If we fail to
17324         initialize the class raise the exception here. 
17326         * metadata.c (mono_class_get_overrides_full): If any methods fail
17327         to load return the failure to the caller.
17329         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
17330         flagging assemblies that failed to load.   
17332         Do not crash if we are unable to load the assembly.
17334         (mono_assembly_close): Do nothing with REFERENCE_MISSING
17335         assemblies. 
17337         * loader.c (mono_loader_set_error_type_load): Change the
17338         convention to always pass unallocated strings, so we make our own
17339         copies (I know our own code had duplicated strings before, but
17340         this keeps the normal conventions).
17341         (method_from_memberref): Call mono_loader_set_error_method_load
17342         for all possible failures of loading the class. 
17343         Remove assert, turn into a loader error.
17345         (mono_loader_error_to_exception): Move this routine from mini
17346         (mini_loader_error_to_exception) there was no need to have that in
17347         mini. 
17349         * class.c (mono_class_from_typeref): If we were not able to load
17350         the assembly with mono_assembly_load_reference, call the
17351         mono_loader_set_error_type_load to register the problem.
17353         (mono_class_setup_fields): If we fail to load the type from
17354         mono_metadata_parse_type_full, call mono_class_set_failure and
17355         break from the loop.
17357         If class->exception_type is set, we do not layout the fields as
17358         that might crash the runtime, and instead return (from breaking
17359         from the previous loop).
17361         (mono_class_setup_vtable): This now returns a boolean indicating
17362         whether the table was properly setup.   The decision is driven by
17363         mono_class_get_overrides_full which might run into non-existing
17364         methods. 
17365         
17366         (mono_class_init): Returns TRUE on success or FALSE if there was a
17367         problem in loading the type (incorrect assemblies, missing
17368         assemblies, methods, etc).
17370         When we call mono_class_setup_fields we also check for a potential
17371         error inside this call (either a class exception or a general
17372         loader exception).
17374         (mono_class_create_from_typedef): If the parent fails to load
17375         (calling mono_class_get_full) return NULL.
17376         
17377         ** Important **
17379         calls to mono_metadata_parse_type_full should be checked
17380         everywhere and set the mono_class_set_failure
17381         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
17383         The current patch checks the places where my manually constructed
17384         tests show the errors are showing up, but we should do it
17385         everywhere. 
17387         ** Important2 **
17389         mono_class_init return values should be tested everywhere, like
17390         the previous case this is something that we should audit
17391         everywhere and not only on the cases exposed by the tests I
17392         created. 
17394 2006-04-26  Miguel de Icaza  <miguel@novell.com>
17396         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
17397         boolean parameter and instead pass the information on `options'
17398         parameter (FileOptions).
17400         * icall.c: Register the new signature for MonoIO.Open.
17402         * debug-helpers.c (dis_one): Trying to understand how coverity
17403         works.  Fix Run 5, item 78.
17405 2006-04-26  Dick Porter  <dick@ximian.com>
17407         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
17408         dereference.
17410 2006-04-25  Martin Baulig  <martin@ximian.com>
17412         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
17414         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
17415         debugger_thread_created().
17416         (debugger_gc_push_all_stacks): Don't handle the main thread in any
17417         special way.
17418         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
17419         (mono_debugger_finalize_threads): New function; undo the effects
17420         of mono_debugger_init_threads().
17421         (mono_debugger_create_all_threads): Removed.
17423 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
17425         * image.c (mono_image_close): Tidy up trace messages.
17427         * assembly.c (mono_assembly_close): Ditto.
17429         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
17430         no longer references an already freed assembly. Fixes #78168.
17432 2006-04-21  Dick Porter  <dick@ximian.com>
17434         * threads.c (mono_thread_detach): Fix reference counting when
17435         detaching threads.
17437 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
17439         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
17440         #78155.
17442 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
17444         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
17445         (mono_type_to_stind): Ditto.
17447         * marshal.c: Use the new helper functions to simplify code.
17449         * image.c (mono_image_close): Add some code for help debug assembly unloading
17450         problems.
17452         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
17453         image mempool.
17455         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
17456         assembly was already loaded in another appdomain. Fixes #78083.
17458 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
17460         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
17461         referenced assemblies.
17462         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
17464         * domain.c (mono_domain_free): Add a trace message.
17466         * appdomain.c (add_assemblies_to_domain): Ditto.        
17468         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
17469         field.  
17471 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17473         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
17475 2006-04-12  Martin Baulig  <martin@ximian.com>
17477         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
17478         `USE_INCLUDED_LIBGC'.   
17480 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
17482         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
17483         the patch contains ../ and a small directory name later. Hopefully fixes
17484         #78035.
17486 2006-04-10  Martin Baulig  <martin@ximian.com>
17488         Clean up the debugger's thread-handling code.
17490         The debugger's thread-handling code has been moved from
17491         ../mini/debug-debugger.c to threads.c.  We now iterate directly
17492         over the `threads' hash, keep track of exiting threads and also
17493         use proper locking.
17495         We can now debug XSP and XSP based applications with the debugger.
17497         * object-internals.h (MonoThread): Added `gpointer end_stack'.
17499         * threads.h
17500         (MonoThreadCallbacks): Removed; this was only used by the debugger.
17501         (mono_install_thread_callbacks): Likewise.      
17503         * threads.c (mono_thread_callbacks): Removed.
17504         (debugger_thread_created, debugger_thread_exited): New static functions.
17505         (start_wrapper): Call debugger_thread_created().
17506         (thread_cleanup): Call debugger_thread_exited().
17507         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
17508         (mono_debugger_init_threads): New public function.
17509         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
17510         iterate directly over the `threads' hash and also use proper locking.
17512         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
17514         * mono-debug-debugger.h
17515         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
17517 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
17519         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
17520         argument type=array. Fixes #78057.
17522 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
17524         * culture-info-table.h : regenerated. Fixed bug #69652.
17526 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
17528         * loader.c metadata.c: Reapply a variant r59116.
17529         
17530         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
17532         * class.c (mono_class_setup_interface_offsets): New internal function.
17534         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
17535         interfaces too. Fixes #77398.
17537         * reflection.c (encode_cattr_value): Add support for 
17538         parameter type=object, argument type=array.
17539         (load_cattr_value): Ditto. Fixes #77916.
17541         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
17542         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
17544         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
17545         a byval char array and CharSet is Ansi.
17547         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
17549 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
17551         * metadata.c: Add some locking comments.
17552         
17553         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
17554         mempool.
17555         (mono_metadata_free_method_signature): Don't free the signature itself.
17557         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
17559         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
17560         reference the same MonoImage.
17561         (mono_assembly_load_from_full): Add an assert.
17563 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
17565         * image.c (mono_image_close): Don't put the image we are about to free into the
17566         loaded_images_guid_hash.
17568         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
17569         to reduce code duplication.
17571         * marshal.c: Register the native functions called by this module as icalls, to
17572         somewhat centralize the creation of MonoMethodSignature's.
17574         * loader.c (mono_method_signature): Add a cache for method signatures.
17576         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
17577         the parameter attributes of a method.
17578         (mono_metadata_parse_method_signature_full): Refactored the computation of
17579         parameter attributes into a separate function. Also avoid one allocation in
17580         most cases.
17582         * assembly.c (mono_assembly_close): Ditto.
17584         * image.c (mono_image_close): Log trace messages with INFO level.
17586         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
17588         * image.c reflection.c: Correct reference counting of image modules.
17589         
17590         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
17591         of this function from the image mempool.
17592         
17593         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
17594         to allow more cached types to be used.
17596         * mono-debug.c (mono_debug_add_method): Appled patch from
17597         David S. Miller  <davem@sunset.davemloft.net>: Access 
17598         minfo->lexical_blocks[] entry elements using read32().
17600 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
17602         * loader.c (mono_free_method): No longer free the method header for non-dynamic
17603         methods as it is allocated from the mempool.
17605         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
17606         image mempool.
17608         * metadata-internals.h: Add comments describing the reference counting scheme
17609         used for MonoImage and MonoAssembly.
17611         * image.c assembly.c reflection.c: Rework reference counting of images and 
17612         assemblies so they are freed when the runtime is shut down. Free some 
17613         additional memory structures when an image is unloaded.
17614         
17615 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
17617         * class.c loader.c reflection.c: Allocate more data structures in
17618         the image mempool.
17620 2006-03-31  Miguel de Icaza  <miguel@novell.com>
17622         * icall.c
17623         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
17624         build on pre glib 2.4 systems.
17626 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
17628         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
17630         * icall.c: Fix some warnings.
17632 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
17634         * culture-info-table.h : regenerated.
17636 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
17638         * threads.c, object-internals.h, verify.c: changed the culture caching
17639         code to use a normal MonoArray for storage so the GC can keep track of
17640         them easily. Fixed bits of the cache logic, too and simplified the
17641         code.
17643 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
17645         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
17646         thread for non-Boehm GCs.
17648 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17650         * domain.c, object.c, domain-internals.h: reduce the amount of memory
17651         needed to keep track of the data for static fields.
17653 2006-03-29  Raja R Harinath  <rharinath@novell.com>
17655         Fix #75172
17656         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
17657         for interface classes.  Use 'num_methods' instead.
17658         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
17659         before using '->vtable_size' field.
17661 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
17663         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
17664         doesn't contain managed pointers, so use a normal hashtable.
17666 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
17668         * reflection.c, class-internals.h, domain.c: fixed handling of types
17669         used as values for objects in custom attributes (bug #77915):
17671 2006-03-24  Martin Baulig  <martin@ximian.com>
17673         * class.c (mono_class_setup_fields): Added support for generic
17674         instances; fixes #77580.
17676 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17678         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
17680 2006-03-24  Dick Porter  <dick@ximian.com>
17682         * file-io.c (get_file_attributes): More stat macro breakage.
17683         Fixes bug 77759.
17685 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
17687         * profiler.c: added the file=filename option in the default profiler
17688         to output the profile data to filename.
17690 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17692         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
17693         bug #77877.
17695 2006-03-22  Martin Baulig  <martin@ximian.com>
17697         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
17698         allocated `MonoClassField *' in `fb->handle'.
17700 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17702         * class.c, image.c, metadata-internals.h: implemented new mechanism to
17703         allocate interface ID to save memory and allow better ID reuse on
17704         appdomain unload. setup_generic_vtable () removal from Martin.
17706 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17708         * object.h, appdomain.c, domain.c, exception.c, icall.c,
17709         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
17710         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
17711         write barriers for reference stores with managed objects accessed with
17712         C structures in the runtime and in embedding programs.
17714 2006-03-20  Raja R Harinath  <rharinath@novell.com>
17716         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
17717         'interface_id' and 'max_interface_id' fields of MonoClasses
17718         representing open generic types.
17720 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
17722         * object.h, object.c, icall.c: added functions to deal with
17723         storing valuetypes that contain references in managed objects.
17724         * reflection.c, string-icalls.c, threads.c, marshal.c: small
17725         fixes and comments around uses of mono_array_addr ().
17727 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
17729         * object.h, icall.c, monitor.c: object.GetHashCode ()
17730         implementation that supports the moving garbage collector.
17732 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
17734         * icall.c, threads-types.h, threads.c: implemented finalizer for
17735         LocalDataStoreSlot.
17737 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
17739         * metadata.c (mono_type_size): Add a fixme.
17740         (mono_type_stack_size): Ditto.
17742         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
17743         'type_forwarders' field.
17745         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
17746         attribute from net 2.0.
17748         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
17749         from class.c.
17751         * class.c (mono_class_setup_fields): Fix a warning.
17752         
17753         * class.c (mono_class_from_name): Add support for assemblyref entries
17754         in the EXPORTEDTYPE table.
17756         * reflection.c: Add support for handling type forwarders under net 2.0.
17758         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
17759         
17760 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
17762         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
17763         overwriting entries in ModuleBuild->types, also clean up the code
17764         a little. Fixes #77774.
17766 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
17768         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
17769         load friend assembly info when present.
17771 2006-03-14  Raja R Harinath  <rharinath@novell.com>
17773         Fix crasher on gtest-158.cs.
17774         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
17775         the return value if the MonoClass we want is yet in an
17776         inconsistent state.
17777         * class.c (mono_class_create_from_typedef): Add an comment
17778         explaining an order dependency between mono_class_setup_parent and
17779         mono_class_setup_mono_type.
17781 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
17783         * class.c: documentation updates and events bug fix.
17785 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17787         * class.c: some cleanup, locking fixes.
17789 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
17791         * class.c: fix the generics code to setup nested
17792         type info to the instantiated type (bug #77770).
17794 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17796         * marshal.c: fixed a few type correctness issues.
17798 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17800         * loader.c: the Set/Get/Addrtess array methods should be public.
17802 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
17804         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
17805         
17806         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
17807         info->wrapper.
17809 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
17811         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
17813         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
17815         * mempool.c (mono_mempool_alloc): Speed this up a bit.
17816         (mono_mempool_alloc0): Ditto.
17818 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17820         * socket-io.c:
17821         (create_object_from_sockaddr): it was allocating 4 extra bytes
17822         for the AF_UNIX data. Fixes bug #77747.
17824 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
17826         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
17828 2006-03-09  Dick Porter  <dick@ximian.com>
17830         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
17831         Fixes bug 76966 again.
17833 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
17835         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
17836         names from r57532
17837         * appdomain.c: Bumped corlib version to 48 (due to r57532)
17839 2006-03-07  Martin Baulig  <martin@ximian.com>
17841         * object.c
17842         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
17844 2006-03-07  Martin Baulig  <martin@ximian.com>
17846         * class.c
17847         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
17848         regression introduced in r56970; see gtest-252.cs.
17850         * loader.c (mono_get_method_constrained): Correctly handle generic
17851         methods; see gtest-253.cs.
17853 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
17855         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
17857 2006-03-04  Martin Baulig  <martin@ximian.com>
17859         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
17860         compute the parent type at runtime, just like we're already doing
17861         it for interfaces.
17863         * reflection.c
17864         (mono_reflection_bind_generic_parameters): Don't compute the
17865         parent type anymore.
17867         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
17869 2006-03-04  Martin Baulig  <martin@ximian.com>
17871         * mono-debug-debugger.h
17872         (mono_debugger_create_notification_function): Allocate memory at
17873         runtime and return a pointer to it.
17875 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
17877         * assembly.c: Fix windows build.
17878         
17879         * assembly.c: Fix build.
17881         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
17883         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
17884         
17885 2006-03-03  Dick Porter  <dick@ximian.com>
17887         * process.c
17888         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17889         Check parameters before dereferencing them.  Fixes Aaron's part of
17890         bug 77393.
17892 2006-03-03  Raja R Harinath  <rharinath@novell.com>
17894         Fix performance regression.
17895         * loader.c (find_method_in_class): Add 'from_class' argument.
17896         Rename 'klass' argument to 'in_class'.  The signature is compared
17897         against the method in 'in_class', and the corresponding method is
17898         returned from 'from_class'.
17899         (find_method): Walk both 'in_class' and 'from_class' in parallel.
17900         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
17901         type definition and generic instantiation in parallel.
17902         (mono_get_method_constrained): Update to changes.
17904 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
17906         * threads.c: make sure the domain is correct, too when doing
17907         mono_thread_attach ().
17909 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
17911         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
17912         windows. Fixes #77683.
17914 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
17916         * object.h, *: introduced specific way to set elements of an array
17917         of references to be used as write barrier. Still need to audit the
17918         uses of mono_array_addr.
17920 2006-03-01  Miguel de Icaza  <miguel@novell.com>
17922         * object-internals.h: New field to cache the assmebly name, patch
17923         from Tambet Ingo (tambet@ximian.com)
17925 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
17927         * decimal.h, class-internals.h, metadata-internals.h,
17928         file-io.h: mark a few function declarations as internal, to
17929         reduce the number of PLT entries.
17931 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17933         * file-io.c: fix typo in warning message.
17935 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
17937         * loader.c: on unix, lookup the "*A" version of a function
17938         if charset is auto as a second option before failing.
17940 2006-02-28  Raja R Harinath  <rharinath@novell.com>
17942         * class.h (mono_class_inflate_generic_method): Revert to two
17943         argument version.
17944         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
17945         (mono_class_inflate_generic_method_full): Add.
17946         * class.c (mono_class_inflate_generic_method_full): Rename from
17947         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
17948         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
17949         * loader.c, reflection.c: Update to changes.
17951 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
17953         * icall.c: const fixes and small improvements.
17955 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17957         * threadpool.c: for asynchronous connect(), enable the same workaround
17958         for BSD 6 as for the Mac. Fixes bug #77637.
17960 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
17962         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
17963         formatted classes. Fixes #77524.
17965 2006-02-24  Raja R Harinath  <rharinath@novell.com>
17967         * class.c (inflate_generic_type): Add a couple more
17968         micro-optimizations.
17969         (inflate_generic_context): Don't use the 'gmethod' from
17970         'inflate_with'.
17971         (mono_class_inflate_generic_method): If the method has generic
17972         parameters, but the passed-in context doesn't have a 'gmethod',
17973         create one.  Use the possibly simplified generic instantiation
17974         from the declaring class instead of the one passed in.
17976 2006-02-24  Raja R Harinath  <harinath@gmail.com>
17978         Make generic method signature and method header handling lazy.
17979         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
17980         (inflate_generic_header): Likewise.
17981         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
17982         parameter to avoid inflating types.
17983         (mono_get_inflated_method): Empty out.
17984         * class.h (mono_class_inflate_generic_method): Update to changes.
17985         * loader.c (mono_get_method_from_token): Don't parse signature for
17986         generic methods, nor methods of generic classes.
17987         (mono_method_signature): Rename from 'mono_method_signature'.
17988         Inflate signature on demand.
17989         (mono_method_get_header): Inflate method header on demand.
17990         * reflection.c: Update to changes.
17992 2006-02-23  Raja R Harinath  <rharinath@novell.com>
17994         * metadata.c (mono_metadata_inflate_generic_inst): If the
17995         instantiation is closed, don't bother expanding it in the new
17996         context.
17997         * class.c (inflate_generic_class): If the generic instantiation
17998         doesn't change after inflation, return the argument itself.
17999         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18000         Add bounds checks.
18001         (inflate_generic_context): If neither the generic class nor the
18002         generic method instantiations change, return the original context.
18003         * reflection.c (mono_method_get_object): Do
18004         'mono_get_inflated_method' before accessing the ->klass field.
18005         (inflate_mono_method): Don't create a MonoGenericMethod unless
18006         necessary.
18007         (inflate_method): Don't pass a constructed type as the declaring
18008         type of a methodbuilder.
18010 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18012         * object.c: fix memory overwrite.
18014 2006-02-22  Dick Porter  <dick@ximian.com>
18016         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18017         it doesn't work any more.
18018         (mono_threads_request_thread_dump): Fix unused variable warnings.
18020 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18022         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18023         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18024         the public header file.
18026 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18028         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18030 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18032         * class-internals.h, object.c: reduce the size of MonoVTable
18033         and store the interface_offsets array at negative offsets.
18035 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18037         * metadata.c: tweak table descriptors data structures to reduce
18038         size and runtime relocations.
18040 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18042         * marshal.c: fix some types and opcodes to be type-safe
18043         in marshaling wrappers.
18045 2006-02-21  Ankit Jain  <jankit@novell.com>
18047         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18049 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18051         * metadata.c (get_constraints): Relax debugging checks for monodis.
18053 2006-02-21  Ankit Jain  <jankit@novell.com>
18055         * metadata.c (mono_metadata_load_generic_params): Move the code
18056         checking for ambiguous generic params from here to mono/dis/get.c
18057         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18059 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18061         Fix assertion triggered when compiling nemerle.
18062         * class.c (mono_get_shared_generic_inst): Rename from
18063         get_shared_inst and make non-static.
18064         * loader.c (mono_get_shared_generic_method): New.  Used to create
18065         the MonoGenericContext-equivalent of a MonoGenericContainer.
18066         (mono_get_method_from_token): Initialize the 'context' field of
18067         the created MonoGenericContainer.
18068         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18069         * metadata.c (get_constraints): Add sanity check.
18070         * class-internals.h: Add new internal methods.
18072         * reflection.c (verify_safe_for_managed_space): New sanity check.
18073         Currently checks that owner-less generic parameters aren't allowed
18074         in managed space.
18075         (mono_type_get_object): Use it.
18076         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18077         that are now in mono_type_get_object.
18078         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18080 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18082         * metadata.c (mono_type_create_from_typespec): Rename from
18083         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18084         argument and caching of types in the generic container.
18085         (unwrap_arrays, find_generic_param): Remove.
18086         * metadata-internals.h: Update.
18087         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18089 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18091         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18093         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18094         return values. Fixes #77581.
18096         * class.c (mono_fnptr_class_get): Switch name and name_space.
18098         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18099         classes and add support for [In, Out] attributes.
18100         (mono_marshal_free_asany): Ditto. Fixes #77524.
18102 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18104         * class.c (mono_class_from_generic_parameter): Make more robust to
18105         incomplete MonoGenericContainers from monodis.
18107 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18109         * class-internals.h: added some more exception types.
18110         * class.c, metadata.c: added a few checks to handle missing
18111         types.
18113 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18115         Use owner-less generic-params some more.
18116         * class.c (my_mono_class_from_generic_parameter): Remove.
18117         (mono_class_from_generic_parameter): Handle null image,
18118         param->name and param->owner.
18119         (mono_class_from_mono_type): Update.
18120         (mono_class_create_from_typespec): Remove 'container' parameter.
18121         If that parameter is non-null, the result is always inflated by
18122         'mono_class_get_full' anyway.
18123         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18124         parameter.
18125         (mono_class_get_full): Update.
18127         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18128         instance is not open, don't bother inflating.
18129         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18130         parse metadata for inflated classes.
18131         (_mono_class_get): Change GenericContext* parameter to
18132         GenericContainer*.
18133         (mono_class_create_from_typespec): Likewise.  Simplify, and
18134         implement trivially.  All the cases are handled in
18135         mono_class_from_mono_type.  Don't inflate returned class.
18136         (mono_class_get_full): Delegate GENERICINST optimization to
18137         inflate_generic_type.
18138         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18140 2006-02-16  Dick Porter  <dick@ximian.com>
18142         * socket-io.c (create_object_from_sockaddr): Fix typo.
18143         (create_sockaddr_from_object): Check array lengths before
18144         potentially accessing items off the end.
18145         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18146         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18147         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18148         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18149         length checks to avoid wraparound overflows.
18150         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18151         contents of the array of sockets
18152         (hostent_to_IPHostEntry2)
18153         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18154         Check return value of inet_ntop ().
18155         (addrinfo_to_IPHostEntry): Fix typo
18157 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18159         Type metadata parsing doesn't use generic-instantiation information.
18160         * metadata.c (mono_metadata_parse_array_full): Change
18161         MonoGenericContext* parameter to MonoGenericContainer*.
18162         (mono_metadata_parse_type_full): Likewise.
18163         (mono_type_create_from_typespec_full): Likewise.
18164         (mono_metadata_parse_mh_full): Likewise.
18165         (mono_metadata_parse_generic_inst): Likewise.
18166         (do_mono_metadata_parse_generic_class): Likewise.
18167         (do_mono_metadata_parse_type): Likewise.
18168         * metadata-internals.h: Update to changes.
18169         * class.c (mono_class_find_enum_basetype): Likewise.
18170         (mono_class_setup_fields): Likewise.
18171         (mono_class_create_from_typespec): Likewise.
18172         * loader.c (method_from_methodspec): Likewise.
18173         (mono_get_method_from_token): Likewise.
18174         (mono_method_get_header): Likewise.
18176 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18178         * marshal.c: handle additional GENERICINST case (patch from
18179         Thong Nguyen <tum@veridicus.com>).
18180         Fix a few cases where LDIND_I/STIND_I was used for references.
18182 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18184         * reflection.c (mono_reflection_get_token): Remove unused variable.
18186 2006-02-16  Martin Baulig  <martin@ximian.com>
18188         * reflection.c (mono_reflection_get_token): Add support for fields
18189         in instantiated generic types.
18191         * icall.c
18192         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18194 2006-02-15  Martin Baulig  <martin@ximian.com>
18196         * icall.c
18197         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18198         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18199         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18200         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18202 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18204         * class.c, metadata.c, metadata.h, object.c, icall.c,
18205         marshal.c: changed mono_type_get_underlying_type () to do
18206         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18207         Fixed handling of instantiated generic valuetypes (bug #75479).
18209 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18211         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18212         Delegate to mono_metadata_decode_value, and work on the returned value.
18214         * icall.c (ves_icall_MonoType_GetGenericArguments):
18215         Add consistency check here too.
18216         
18217 2006-02-15  Ankit Jain  <jankit@novell.com>
18219         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18220         char/short etc.
18222 2006-02-15  Ankit Jain  <jankit@novell.com>
18224         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18225         signed values, used only for representing lower bounds of arrays.
18226         (mono_metadata_parse_array_full): Use new
18227         mono_metadata_decode_signed_value to decode lower bounds.
18229 2006-02-14  Martin Baulig  <martin@ximian.com>
18231         * reflection.c
18232         (mono_reflection_get_token): Support "MonoGenericMethod" and
18233         "MonoGenericCMethod" and allow generic instances / methods.
18235 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18237         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18238         to obtain the terminal size using an ioctl.
18240         * object.c (mono_nullable_init): Revert this as nullable reference
18241         types are not valid.
18242         (mono_nullable_box): Ditto.
18244 2006-02-09  Dick Porter  <dick@ximian.com>
18246         * threads.c (mono_thread_detach): Drop a reference to the thread
18247         we're detaching.
18249 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18251         * object.c (mono_nullable_init): Handle nullable reference types.
18252         (mono_nullable_box): Ditto. Fixes #77446.
18254 2006-02-07  Martin Baulig  <martin@ximian.com>
18256         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18258 2006-02-07  Ankit Jain  <jankit@novell.com>
18260         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18261         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18262         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18263         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18264         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18265         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18267 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18269         * class.c (mono_class_create_generic): Set type_token as well.
18271         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18272         compatible with MS.
18274 2006-02-02  Martin Baulig  <martin@ximian.com>
18276         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18277         has never been used so far.
18279 2006-02-02  Martin Baulig  <martin@ximian.com>
18281         * mono-debug-debugger.h: Changed comment at the top of this file;
18282         the header is not installed, but it's safe to #include it from
18283         within the JIT.
18285         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18286         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18288 2006-02-02  Martin Baulig  <martin@ximian.com>
18290         * mono-debug.h
18291         (MonoSymbolTable): Removed the `metadata_info' field.
18293         * mono-debug.c
18294         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18296         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18297         (mono_debugger_add_builtin_types): Removed.
18298         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18299         (mono_debugger_create_notification_function): We now operate on a
18300         pre-allocated area; take a `gpointer' and return `void'.
18302         * mono-debug-debugger.c
18303         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18304         (mono_debugger_add_builtin_types): Removed.
18306 2006-02-02  Martin Baulig  <martin@ximian.com>
18308         * threads.c (mono_debugger_create_all_threads): New public method.
18310 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18312         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18313         breaks on several platforms.
18315 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18317         * assembly.c: the VS.NET build doesn't supply default values for
18318         MONO_ASSEMBLIES and MONO_CFG_DIR.
18320 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
18322         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
18323         helper function.
18325         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
18327         * loader.c (method_from_memberref): Fix a warning.
18329         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
18331         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
18332         with explicit layout. Fixes #77433.
18334 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
18336         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
18337         max_interface_id is initialized before using it. Fixes #77398.
18338         (ves_icall_Type_GetInterfaces): Ditto.
18340 2006-01-30  Raja R Harinath  <rharinath@novell.com>
18342         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18343         allocate memory for parameter attributes when parsing memberref
18344         signatures.
18345         * loader.c (mono_loader_set_error_method_load): Don't warn.
18346         (method_from_memberref): Ensure MissingMethodException gets thrown
18347         if method is not found.  Make warning more informative.
18349 2006-01-29  Raja R Harinath  <harinath@gmail.com>
18351         Fix #77397
18352         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
18353         return true if is byref.
18354         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18355         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
18356         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18358 2006-01-27  Raja R Harinath  <rharinath@novell.com>
18360         Fix tests/find-method.2.il
18361         * loader.c (find_method, find_method_in_class): Remove is_inflated
18362         argument.  Revert 2006-01-18 change.
18363         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
18364         is generic, search for method in its generic definition.
18365         * class.c (mono_class_setup_vtable_general): Print generic
18366         arguments of generic types in debugging printf.
18368 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
18370         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
18372         * threads.c (mono_threads_request_thread_dump): New helper function.
18374 2006-01-25  Raja R Harinath  <rharinath@novell.com>
18376         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
18378 2006-01-25  Ankit Jain  <jankit@novell.com>
18380         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
18381         move definition to ..
18382         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
18383         
18384 2006-01-25  Ankit Jain  <jankit@novell.com>
18385             Raja R Harinath  <rharinath@novell.com>
18387         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
18388         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
18389         as necessary.
18391 2006-01-25  Martin Baulig  <martin@ximian.com>
18393         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
18394         `MonoDebuggerThread' into debug-debugger.c.
18396 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
18398         * profiler.c: fix printing of data.
18400 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
18402         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
18403           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
18405 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
18407         * object.c: fix deadlock related to string interning.
18409 2006-01-23  Martin Baulig  <martin@ximian.com>
18411         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18413         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
18415 2006-01-23  Martin Baulig  <martin@ximian.com>
18417         * mono-debug.h: Moved the prototypes of some functions which are
18418         used by the JIT here from mono-debug-debugger.h.
18420 2006-01-21  Martin Baulig  <martin@ximian.com>
18422         * Makefile.am: Don't install mono-debug-debugger.h.
18424 2006-01-21  Martin Baulig  <martin@ximian.com>
18426         * mono-debug-debugger.h: Enforce the private status of this header
18427         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
18428         Moved some stuff from mono-debugger-jit-wrapper.h here.
18430 2006-01-20  Raja R Harinath  <rharinath@novell.com>
18432         * class.c (mono_class_from_typeref): Add a sanity test to help
18433         catch lack of assembly load/search hooks.
18435 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
18437         * marshal.c (emit_struct_conv): Relax the fields with same offset
18438         check even more. Fixes #77230.
18440 2006-01-18  Martin Baulig  <martin@ximian.com>
18442         * loader.c (find_method_in_class): Added `gboolean is_inflated'
18443         argument; if false, we compare the uninstantiated signatures.
18444         (method_from_memberref): Compare the uninstantiated signatures;
18445         fixes #76417.
18447 2006-01-18  Robert Jordan  <robertj@gmx.net>
18449         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
18450         Clear the weak link. Fixes bug #77170.
18452         * gc.c (mono_gchandle_free):
18453         Reflect *-gc.c changes (tiny optimization).
18455 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
18457         * metadata.c (mono_metadata_signature_dup): Applied patch from
18458         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
18459         Fixes #77288.
18461 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
18463         * marshal.c (emit_struct_conv): Allow fields with the same offset when
18464         marshalling from native to managed code. Fixes #77230.
18466 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18468         * threadpool.c: fix problem (Mac only) when more than one asynchronous
18469         connect. Fixes bug #77020.
18471 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
18473         * class.c: fixed id assignement for nested interfaces (bug #77275).
18474         Added also better info for --print-vtable debugging.
18476 2006-01-12  Martin Baulig  <martin@ximian.com>
18478         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
18479         interfaces on-the-fly; fixes #76625.
18481         * class-internals.h
18482         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
18483         don't need that anymore.
18485 2006-01-12  Miguel de Icaza  <miguel@novell.com>
18487         * socket-io.c
18488         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
18489         To avoid initing the nested_classes when not needed I turned the
18490         PeerCredData as a toplevel internal class, as it has to be shared
18491         anyways. 
18493         Fixes the CASA issue.
18495 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
18497         * domain.c: Accessors for MonoJitInfo
18499         * profiler-private.h: Add jitinfo to the end jit hook
18501         * profiler.[ch]: Define new hooks, called after jitting which give
18502         the MonoJitInfo that was compiled
18504 2006-01-10  Martin Baulig  <martin@ximian.com>
18506         * class.c (mono_class_setup_events): Add support for generic
18507         classes; fixes #76440.
18509 2006-01-06  Raja R Harinath  <rharinath@novell.com>
18511         Fix #77160.
18512         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
18513         on passed-in method.
18515 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18517         * object.c (mono_runtime_invoke_array): Add Nullable support.
18519         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
18521 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
18523         * file-io.c: Don't consider sockets as directory and avoid an endless
18524         loop. Fix bug #76966.
18526 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
18528         * object.c (mono_nullable_init): New helper function.
18529         (mono_nullable_box): Ditto.
18531         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
18533         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
18535         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
18536         
18537 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
18539         * class.c (mono_class_is_assignable_from): Make T assignable to 
18540         Nullable<T>.
18542 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18544         * appdomain.c: Bump corlib version to 46.
18545         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
18546         serialization purpose) and changed ves_icall_System_Reflection_
18547         Assembly_get_code_base signature to accept a boolean (to escape, or 
18548         not, the assembly code base).
18550 2005-12-23  Dick Porter  <dick@ximian.com>
18552         * icall.c: 
18553         * threads-types.h: 
18554         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
18555         CreateEvent icall now returns "created" boolean parameter.
18557 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
18559         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
18560         #76967.
18562         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
18563         when attr_klass is an interface. Fixes #77045.
18565 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
18567         * marshal.c (emit_struct_conv): Fix previous patch.
18568         
18569         * marshal.c (emit_struct_conv): Add a check for fields with the same
18570         offset.
18572 2005-12-20  Raja R Harinath  <rharinath@novell.com>
18574         Fix regression in Mono.C5.
18575         * class.c (mono_class_create_generic): If 'klass' is an interface
18576         set up the interface offsets.
18577         (mono_class_is_assignable_from): Don't throw away generic arguments.
18579 2005-12-19  Raja R Harinath  <rharinath@novell.com>
18581         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
18582         type parameters.
18584 2005-12-15  Raja R Harinath  <rharinath@novell.com>
18586         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
18587         dead store.
18588         (do_mono_metadata_parse_generic_class): Don't pass the current
18589         generic context when parsing the type being instantiated: it
18590         cannot use it, anyway.
18592         * loader.c (method_from_memberref): Don't inflate a signature if
18593         it doesn't contain any type parameters.
18595 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
18597         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
18599 2005-12-14  Martin Baulig  <martin@ximian.com>
18601         * class.c
18602         (mono_type_get_name_recurse): Don't return null for type
18603         parameters and open generic classes.
18604         (mono_class_setup_methods): Don't exclude generic instances.
18605         (mono_get_unique_iid): Use different IDs for different
18606         instantiations of the same generic type.
18607         (mono_class_setup_vtable): Only use setup_generic_vtable() for
18608         open generic instances; create a normal vtable for closed generic
18609         instances.
18610         (mono_class_setup_vtable_general): We're now also called for
18611         closed generic instances.
18613         * reflection.c
18614         (mono_reflection_bind_generic_parameters): Correctly use
18615         mono_metadata_lookup_generic_inst() everywhere.
18617 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
18619         * object.c (mono_class_create_runtime_vtable): Call 
18620         mono_class_setup_vtable ().
18622         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
18623         function.
18624         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
18625         #76959.
18627         * loader.c (mono_loader_set_error_type_load): Print the type load
18628         warnings to the console so they are more visible to the user.
18629         (mono_loader_set_error_method_load): Ditto.
18631         * reflection.c (ensure_runtime_vtable): Revert the last change as it
18632         is still broken.
18633         
18634         * reflection.c (ensure_runtime_vtable): Fix build.
18636         * reflection.c (ensure_runtime_vtable): Disable an optimization which
18637         doesn't work in all cases.
18639 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
18641         * object.c (mono_array_new_full): Treat a single dimensional array
18642         with 0 lower bounds as an szarray. Fixes #76973.
18644         * reflection.c (custom_attr_visible): Really fix this.
18646 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
18648         * reflection.c (custom_attr_visible): Allow nested public attributes
18649         as well.
18651         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
18652         interface check.
18654 2005-12-12  Raja R Harinath  <harinath@gmail.com>
18656         * class.c (set_generic_param_owner): Delete.
18657         (mono_class_create_from_typedef): Don't set ->owner field of
18658         generic parameters to "param containers" of enclosing classes.
18659         * reflection.c (mono_reflection_initialize_generic_parameter):
18660         Likewise.
18662 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
18664         * reflection.c (custom_attr_visible): Fix build.
18666 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
18668         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
18669         private attributes.
18670         
18671         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
18672         handling of null parameter defaults.
18674 2005-12-09  Raja R Harinath  <rharinath@novell.com>
18676         * class.c (mono_class_from_generic_parameter): Don't set
18677         klass->generic_container.
18678         (my_mono_class_from_generic_parameter): Likewise.
18680 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
18682         * reflection.c (load_public_key): Fix a warning.
18683         (method_encode_code): Fix unaligned accesses.
18685 2005-12-07  Martin Baulig  <martin@ximian.com>
18687         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
18689         * reflection.c
18690         (write_generic_param_entry): Encode our custom attrs.
18692         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
18694 2005-12-07  Martin Baulig  <martin@ximian.com>
18696         * reflection.c (encode_new_constraint): Removed; we don't use the
18697         `NewConstraintAttribute' anymore.
18699 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
18701         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
18702         not fire a TypeResolve event when Assembly.GetType () is called.
18704 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
18706         Beginning of support for nullable types in the runtime. Parts of
18707         this patch are from Martin.
18709         * appdomain.c (MONO_CORLIB_VERSION): Bump
18711         * domain.c (mono_init_internal): get the nullable type
18713         * class.c (mono_class_is_nullable): New method
18714         (mono_class_get_nullable_param): New mehod
18715         (mono_class_create_generic): In types T? set cast_class to T
18717         * class-internals.h (MonoDefaults): new nullable default class
18718         (mono_class_get_nullable_param, mono_class_get_nullable_param):
18719         new methods.
18721 2005-12-05  Raja R Harinath  <rharinath@novell.com>
18723         * metadata.c (select_container): New.  Refactor code to select the
18724         appropriate GenericContainer given the type of generic parameter
18725         we are looking for.
18726         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
18727         not a MonoGenericContext.  Use select_container.  Update parameters.
18728         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
18729         and MONO_TYPE_MVAR.
18730         (unwrap_arrays): Remove duplicate tests.
18731         (find_generic_param): Rename from 'has_same_context'.  Now walks a
18732         generic instantiated class to find any arguments that are generic
18733         parameters.
18734         (mono_type_create_from_typespec_full): Use find_generic_param to
18735         avoid evicting some generic instantiations from the typespec
18736         cache.
18738 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
18740         * reflection.c: fixed writing of doubles on ARM FPA.
18742 2005-12-02  Robert Jordan  <robertj@gmx.net>
18744         * icall.c: Fixed EventInfo.ReflectedType (#76829).
18746 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18748         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
18749         least on SUSE 10 they are not the same (on debian, they are just the
18750         same thing).
18752 2005-12-01  Raja R Harinath  <rharinath@novell.com>
18754         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
18755         DeclaringType for VARs and MVARs.
18756         * class.c (set_generic_param_owner): Fix initialization of owner
18757         fields.
18759 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
18761         * icall.c: fixed Enum.ToObject() to correctly convert the values.
18763 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18765         * threadpool.c: workaround for a bug that shows up on the Mac:
18766         select()+connect() on a blocking socket is not like it should
18767         be, so we proceed to connect() in that case, wasting the I/O
18768         threadpool thread until connect succeedes. Fixes bug #75436.
18770 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18772         * threadpool.c: fix typo when setting file descriptor states.
18774 2005-11-28  Raja R Harinath  <rharinath@novell.com>
18776         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
18777         * metadata.c (mono_metadata_parse_method_signature_full): Don't
18778         create a temporary signature container.
18779         (mono_metadata_parse_generic_param): Update to changes.
18780         (mono_type_create_from_typespec_full): Update to changes.
18781         * loader.c (method_from_memberref): Don't use a
18782         MonoGenericContainer while parsing a memberref signature.
18783         (method_from_methodspec): Remove dead-store of the 'container'
18784         variable.  It's overwritten before use.
18786         * metadata.c (mono_type_create_from_typespec_full): Make debugging
18787         checks tighter.
18788         (mono_metadata_parse_generic_param): Likewise.
18789         * loader.c (find_method_in_class): Does not need a
18790         MonoGenericContainer.  Use 'mono_method_signature' rather than
18791         'mono_method_signature_full'.
18792         (find_method, mono_get_method_constrained, method_from_memberref):
18793         Update to changes.
18795         * metadata.c (mono_type_create_from_typespec_full): Ensure that
18796         owner-less generic-parameters are never evicted from the typespec
18797         cache.
18799         * loader.c (method_from_memberref): Don't use the current context
18800         when parsing signatures.
18801         (method_from_methodspec, mono_get_method_from_token): Update to changes.
18803         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
18804         side-effects in g_assert.
18805         * loader.c (mono_get_method_from_token): Resolve klass earlier so
18806         that we don't potentially lose information.
18808 2005-11-26  Dick Porter  <dick@ximian.com>
18810         * icall.c:
18811         * threads.c: icalls to implement basic (ie, not named)
18812         System.Threading.Semaphore.
18814 2005-11-24  Dick Porter  <dick@ximian.com>
18816         * process.c
18817         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18818         Use GetProcessId() if it's available.
18820 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
18822         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
18824 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18825             Ankit Jain  <jankit@novell.com>
18827         * loader.c (mono_get_method_from_token): Initialize 'method' field
18828         of all generic parameters before parsing the signature.  Remove
18829         code that "fixed"-up MVAR references.
18831 2005-11-23  Ankit Jain  <jankit@novell.com>
18833         * metadata.c (mono_metadata_has_generic_params):
18834         (mono_metadata_load_generic_param_constraints):
18835         (mono_metadata_load_generic_params): Move duplicate code ...
18836         (mono_metadata_get_generic_param_row): ... here. Returns the
18837         first row-id in GenericParam table for a given owner (token).
18838         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
18839         prototype.
18841 2005-11-23  Raja R Harinath  <rharinath@novell.com>
18842             Ankit Jain  <jankit@novell.com>
18844         * metadata.c (mono_metadata_class_equal): Pass signature_only when
18845         comparing VARs too.
18846         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
18847         type->data.generic_param only if the type is an MVAR.
18848         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
18849         leak owner-less VARs and MVARs into managed space.
18851 2005-11-21  Martin Baulig  <martin@ximian.com>
18853         * class-internals.h
18854         (MonoMethod): Moved the `generic_container' here from
18855         `MonoMethodNormal' since we now also need it for
18856         `MonoMethodPInvoke';
18857         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
18858         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
18859         an union containing both `MonoMethodNormal' and
18860         `MonoMethodPInvoke'.
18862         * loader.c
18863         (mono_get_method_from_token): Allow implementing generic methods
18864         as interncalls.
18866         * threads.c
18867         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
18868         icall.
18870 2005-11-17  Dick Porter  <dick@ximian.com>
18872         * icall.c: 
18873         * process.h: 
18874         * process.c: Split the Process Start_internal icall into
18875         ShellExecuteEx_internal and CreateProcess_internal, which are
18876         called depending on whether UseShellExecute is true.  Fixes bug
18877         76670.
18879         * appdomain.c (MONO_CORLIB_VERSION): Incremented
18881 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
18883         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
18884         'msize' parameters, use the information in 'mspec' instead.
18885         (emit_object_to_ptr_conv): Ditto.
18887         * marshal.c (emit_struct_conv): Handle explicit layout structs with
18888         fields out of order. Fixes #76733.
18890 2005-11-17  Ankit Jain  <jankit@novell.com>
18892         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
18894 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
18896         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
18897           bug #76575.
18899 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18901         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
18902         for types with non-auto layout. Fixes #76717.
18904 2005-11-16  Ankit Jain  <jankit@novell.com>
18906         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
18907         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
18908         if generic_context is null.
18909           (mono_metadata_generic_param_equal): param->owner can be null.
18910           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
18911         null.
18913 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
18915         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
18916         the correct value.
18918 2005-11-15  Martin Baulig  <martin@ximian.com>
18920         * object.c (set_value): Use mono_class_from_mono_type() instead of
18921         the hack for generic instances; fixes #76136.
18923 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
18925         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
18926         fields.
18928         * image.c (load_metadata_ptrs): Initialize the new fields.
18930         * reflection.c (create_dynamic_mono_image): Ditto.
18932         * reflection.c (build_compressed_metadata): Use the new fields.
18934         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
18935         icall.
18937         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
18938         icall.
18939         
18940 2005-11-15  Ankit Jain  <jankit@novell.com>
18941             Raja R Harinath  <harinath@gmail.com>
18943         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
18944         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
18945         new per-generic_container cache if the cached MonoType's context matches
18946         the current context.
18947           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
18948         to the expected context.
18949           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
18951 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18953         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
18954         we changed the signature of an icall.
18955         * icall.c: Modify to mono_double_ParseImpl return true/false 
18956         depending on the success, instead of throwing the exception. This will
18957         help us in Double.TryParse methods.
18958         
18959 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
18961         * marshal.c (emit_marshal_object): Throw an exception when
18962         marshalling 'object' instead of crashing. Fixes #76696.
18964 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18966         * class-internals.h: Add prototype for mono_type_get_full_name ().
18968 2005-11-11  Dick Porter  <dick@ximian.com>
18970         * threads.c (mono_thread_manage): Make sure the main thread has
18971         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
18973 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
18975         * loader.c (mono_loader_set_error_type_load): Log a warning to the
18976         console about the missing type.
18977         (mono_loader_set_error_method_load): Ditto.
18979 2005-11-09  Miguel de Icaza  <miguel@novell.com>
18981         * mono-config.c (mono_get_config_dir): Set the system defaults if
18982         none is specified.
18984         * assembly.c (mono_set_dirs): New API entry point to set the
18985         assembly and the config directory in one call
18987 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
18989         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
18990         the ftnptr was created from a delegate in a domain other than the
18991         current domain. Fixes #75377.
18993         * exception.h exception.c: Add mono_get_exception_not_supported ().
18995 2005-11-08  Martin Baulig  <martin@ximian.com>
18997         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
18999 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19001         * security-manager.h: Added definitions to deal with strongname key 
19002         pairs bigger (and smaller) than 1024 bits.
19003         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19004         adjust wrt the public key length being used.
19006 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19008         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19009           Windows build (r51396-51397).
19011 2005-11-03  Martin Baulig  <martin@ximian.com>
19013         * class.c (mono_class_setup_vtable_general): Also add generic
19014         methods to the vtable; fixes #76581.
19016 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19018         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19019         sure that we lookup GetString method from the System.Text.Encoding
19020         class, not the derived class or we get an empty method.
19022         Fixed class #76612.
19024 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19026         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19027         if it has been previously set (embedders). 
19029         Make mono_set_rootdir available also on Unix.
19031 005-10-24  Robert Jordan  <robertj@gmx.net>
19033         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19035 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19037         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19038         only calls which are made to native code use this flag.
19040         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19042 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19044         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19045         Add support for FieldBuilders.
19047 2005-10-29  Martin Baulig  <martin@ximian.com>
19049         * mono-debug.c
19050         (mono_debug_using_mono_debugger): New public method; returns
19051         whether we're running inside the debugger.
19053 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19055         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19056         for Method/Constructor/FieldBuilders.
19058 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19060         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19061         and fields as well.
19063 2005-10-26  Martin Baulig  <martin@ximian.com>
19065         * mono-debug-debugger.c
19066         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19068 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19070         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19071         integer to isspace.
19073 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19075         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19076         when passing valuetypes byref. Fixes #76502.
19078 2005-10-19  Jackson Harper  <jackson@ximian.com>
19080         * profiler.c: Don't put a . in front of types that are not in a
19081         namespace.
19083 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19085         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19087 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19089         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19090         #76436.
19091         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19093 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19095         * assembly.c metadata-internals.h icall.c: Define an additional
19096         parameter for mono_assembly_name_parse_full, so we can avoid creating
19097         S.R.AssemblyName.Version when no version info wasn't passed.
19098         
19099 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19101         * class.c (mono_type_get_full_name): Reimplement method that was
19102         removed. 
19104         * image.c: Some docs
19106 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19108         * profiler.c (output_newobj_profile): Fix printing of Total memory
19109         on x86.
19111 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19113         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19115 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19117         * threads.c: remove debug output.
19119 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19121         * threads.c (mono_thread_manage): Fix crashes if more than 64
19122         threads need to be aborted. Hopefully fixes #75899.
19124         * assembly.c (mono_stringify_assembly_name): New helper function.
19126         * class.c: Use mono_stringify_assembly_name instead of the similar
19127         static function.
19129         * assembly.h assembly.c: Add support for calling a postload search 
19130         hook if an assembly cannot be loaded.
19132         * appdomain.c: Register new search hooks which call the AssemblyResolve
19133         events in AppDomain. Fixes #75231
19135 2005-10-07  Martin Baulig  <martin@ximian.com>
19137         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19138         methods without debug info.
19140 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19142         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19143         wrappers.
19145 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19147         * file-io.c: now that we return symlinks, use lstat and, when the file
19148         is a symbolic link, stat, to get the file attributes. Also avoid the
19149         conversion to/from utf16/external.
19151 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19153         * class.c (mono_class_layout_fields): Compute klass->has_references
19154         correctly if an embedded valuetype is not yet initialized. Fixes
19155         #76331.
19157 2005-10-04  Martin Baulig  <martin@ximian.com>
19159         * metadata.c
19160         (mono_metadata_load_generic_param_constraints): New public
19161         function; splitted the constraints loading out from
19162         mono_metadata_load_generic_params().
19164         * class.c (mono_class_create_from_typedef): Call
19165         mono_metadata_load_generic_param_constraints() after setting up
19166         the type and creating our parent; fixes #75329.
19168 2005-10-04  Martin Baulig  <martin@ximian.com>
19170         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19171         non-dynamic parent classes.
19173 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19175         * file-io.c : win32 build fix (ETXTBSY seems not found).
19177 2005-10-04  Martin Baulig  <martin@ximian.com>
19179         * reflection.c
19180         (mono_image_get_methodspec_token): Make the cache actually work;
19181         fixes #75974.
19183 2005-10-04  Martin Baulig  <martin@ximian.com>
19185         * class.c (mono_class_name_from_token): Removed the unneccessary
19186         `MonoGenericContext *' argument.
19188 2005-10-04  Martin Baulig  <martin@ximian.com>
19190         * loader.c
19191         (method_from_methodspec): Make the caching work again; fixes the
19192         performance regression from #76262.
19194 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19196         * file-io.c:
19197         * file-io.h:
19198         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19199         GetFileSystemEntries that performs the same work but without going
19200         into io-layer, locking, etc.
19202 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19204         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19205         ThreadState_Stopped as well. Fixes #76047.
19207 2005-09-29  Martin Baulig  <martin@ximian.com>
19209         * class.c
19210         (inflate_generic_context): If the new context has a `gmethod', set
19211         its `container' that that gmethod's `container'.
19213         * metadata.c
19214         (mono_metadata_parse_generic_param): Simplify things;
19215         `generic_container = generic_context->container;' is just fine.
19217         * loader.c (method_from_methodspec): Code cleanups.
19219 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19221         * decimal.c: fix warning (and let gcc generate correct
19222         code on ARM with optimizations).
19224 2005-09-28  Martin Baulig  <martin@ximian.com>
19226         * loader.c
19227         (method_from_memberref): Added `MonoGenericContext *class_context'
19228         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19229         (method_from_methodspec): If we're a memberref, use the enclosing
19230         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19232 2005-09-28  Martin Baulig  <martin@ximian.com>
19234         * object.c (mono_runtime_invoke_array): Added support for
19235         MONO_TYPE_GENERICINST; fixes #75917.
19237 2005-09-27  Martin Baulig  <martin@ximian.com>
19239         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19240         `k->byval_arg.type' to determine the actual type.
19242         * loader.c (method_from_methodspec): Removed some hacks.
19244 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19246         * class-internals.h (mono_field_is_deleted): Do the test for
19247         rtspecialname before we check the actual name of the field. This
19248         prevents us from dereferencing a pointer into the string table,
19249         saving us from accessing a few pages
19251         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19252         macros. This will allow a deadlock debugger to easily be plugged
19253         in.
19255 2005-09-27  Martin Baulig  <martin@ximian.com>
19257         * loader.c (method_from_methodspec): Create a "signature"
19258         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19260 2005-09-27  Martin Baulig  <martin@ximian.com>
19262         * class.c
19263         (inflate_generic_class): Correctly set the new context's
19264         container.
19266         * loader.c
19267         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19268         instead of a `MonoGenericContext *'.
19269         (mono_method_signature_full): Take a `MonoGenericContainer *'
19270         instead of a `MonoGenericContext *'.
19272         * metadata.c
19273         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19274         instead of a `MonoGenericContext *'.
19275         (mono_metadata_parse_method_signature_full): Likewise.
19277 2005-09-26  Martin Baulig  <martin@ximian.com>
19279         * class.c
19280         (mono_class_from_generic_parameter): Set `klass->generic_container'
19281         (mono_class_from_generic_parameter): Likewise.
19282         (mono_bounded_array_class_get): We inherit the generic container
19283         from the element class.
19285         * loader.c
19286         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19287         argument rather than computing it here.
19288         (method_from_memberref): Correctly set the generic context before
19289         parsing the signature.  Fixes #75681.
19291 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19293         * object.c (mono_class_has_special_static_fields): Fix warnings.
19295 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19297         * assembly.c: Add parse_public_key function, to
19298         par the public keys. Also added mono_assembly_name_parse_full,
19299         to define it the parsed key should be freed or not.
19300         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19301         to parse a long format assembly name.
19302         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19303         private, since calling it to preserve the key requires
19304         freeing it manually.
19305         
19306 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19308         * locales.c : removed HAVE_ICU part.
19310 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19312         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19313         field_is_special_static if the klass has no special static fields.
19315         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19316         (MonoCachedClassInfo): Likewise.
19318         * object.c (mono_class_has_special_static_fields): New helper function.
19320 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19322         * class.c (mono_class_create_from_typedef): Don't call 
19323         interfaces_from_typedef_full for enums.
19324         (mono_class_create_from_typedef): Compute the base types of enums directly
19325         without calling mono_class_setup_fields ().
19326         (mono_class_find_enum_basetype): New helper function.
19328         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
19329         one place inside the string heap.
19330         
19331 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
19333         * class.c: locking fixes, code cleanups, some docs added.
19334         Allocate some data structures in the image mempool.
19336 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19338         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19339         the example code.
19340         
19341 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
19343         * class-internals.h, class.c, reflection.c: reduce memory taken by
19344         MonoClass.
19346 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
19348         * metadata.c, metadata.h, loader.h: documentation updates, code and
19349         API cleanups.
19351 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
19353         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
19354         the example code.
19356         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
19357         page faults caused by the runtime while reading metadata.
19359 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19361         * socket-io.c: the field names were changed 3 months ago and no one
19362         realized until bug #76077 got filed!
19364 2005-09-20  Martin Baulig  <martin@ximian.com>
19366         * icall.c (assembly_icalls): Removed some unused debugger icalls.
19368 2005-09-20  Martin Baulig  <martin@ximian.com>
19370         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
19371         write the rank into the class entry.
19373 2005-09-20  Martin Baulig  <martin@ximian.com>
19375         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
19377 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
19379         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19381         * icall.c (custom_attrs_defined_internal): New icall.
19383         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
19384         function.
19385         (mono_custom_attrs_construct_by_type): New helper function.
19387 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
19389         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
19390         terminate the resulting string. Fixes #76123.
19392 2005-09-16  Martin Baulig  <martin@ximian.com>
19394         * mono-debug.c
19395         (mono_debug_add_method): Ignore inflated methods for the moment.
19397 2005-09-14  Martin Baulig  <martin@ximian.com>
19399         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
19401 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
19403         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
19404         return a success/failure indication.
19405         (mono_metadata_interfaces_from_typedef_full): Ditto.
19406         (get_constraints): Ditto.
19408 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
19410         * marshal.c (emit_marshal_array): Fix handling of null arrays.
19411         
19412         * marshal.c (emit_marshal_array): Add support for returning string
19413         arrays from delegates. Fixes #76063.
19415         * marshal.c: Use the emit_ldloc/stloc macros where possible.
19417 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
19419         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
19420         icall.
19422 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
19424         * reflection.c icall.c: Fix after mono_get_exception_type_load
19425         signature change.
19427         * assembly.c (mono_assembly_get_assemblyref): New helper function.
19428         (mono_assembly_load_reference): Use the new helper.
19430         * class-internals.h (MonoLoaderError): New structure containing 
19431         information about type loading errors.
19433         * class-internals.h loader.c: Add APIs to store per-thread loader
19434         error information.
19436         * loader.c class.c: Set the loader error if needed.
19438         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
19440 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
19442         * decimal.c: fixed to handle the broken ARM fp format.
19444 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
19446         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
19447         broken.
19449 2005-09-06  Martin Baulig  <martin@ximian.com>
19451         * domain.c (supported_runtimes): Added v2.0.50727.
19453 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
19455         * culture-info.h: reduce the size of some structures.
19457 2005-09-05  Martin Baulig  <martin@ximian.com>
19459         Reflect latest API changes in the August CTP.
19461         * icall.c
19462         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
19463         ("MonoType.HasGenericArguments"): Removed.
19464         ("MonoMethod.BindGenericParameters"): Renamed to
19465         "MakeGenericMethod".
19466         ("MethodBuilder.BindGenericParameters"): Renamed to
19467         "MakeGenericMethod".    
19469 2005-09-05  Martin Baulig  <martin@ximian.com>
19471         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
19473 2005-09-05  Martin Baulig  <martin@ximian.com>
19475         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19477         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
19478         generic_container is non-NULL.
19480 2005-09-05  Martin Baulig  <martin@ximian.com>
19482         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19484         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
19486 2005-08-29  Michal Moskal  <malekith@nemerle.org>
19488         * reflection.c (encode_locals,
19489         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
19490         for large generic types.
19492 2005-09-05  Martin Baulig  <martin@ximian.com>
19494         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19496         * class.c (mono_dup_array_type): New public method.
19497         (mono_metadata_signature_deep_dup): New public method.
19498         (dup_type): Correctly duplicate array and function types.
19500 2005-09-05  Martin Baulig  <martin@ximian.com>
19502         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19504         * reflection.c (get_default_param_value_blobs): Handle generic types
19505         and generic methods.
19507 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
19509         * class.c: Fixed error reporting (method/class were inversed) for 
19510         inheritance demands.
19511         * security-manager.c|h: Added the AppDomain when calling the managed
19512         System.Security.SecurityManager.InheritanceDemand method.
19514 2005-09-01  Raja R Harinath  <rharinath@novell.com>
19516         * reflection.c (encode_marshal_blob): 'marshaltype' and
19517         'marshaltyperef' are alternate sources for the custom marshaler
19518         name.
19520 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
19522         * class.c: fix creation of array classes with rank == 1
19523         (patch by Ankit Jain <jankit@novell.com>).
19525 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
19527         * object.c: fix check for creating the bound data for arrays vs
19528         szarrays.
19530 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19532         * object.c: configuration file name is now based on the executable name,
19533         not the image name. Fixes bug #75931.
19535 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
19537         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
19538         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
19540 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
19542         * rand.c: Use wincrypt.h instead of WinCrypt.h.
19544 2005-08-24  Ankit Jain  <jankit@novell.com>
19545             Raja R Harinath  <rharinath@novell.com>
19547         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
19548           called by it recursively.
19549           (mono_class_init): Remove special case in pending_init handling, since it's
19550           superseded by the fix to mono_class_from_typeref.
19552 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
19554         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
19555         BROKEN_THREAD_START stuff.
19557 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
19559         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
19560         trampoline.
19562         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
19563         
19564         * object.c (mono_delegate_ctor): Replace the original function address with
19565         a delegate trampoline.
19567 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
19569         * icall.c: add boolean argument to base64_to_byte_array and 
19570         InternalFromBase64String to control whether a whitespace-only string
19571         is allowed (or should casue a FormatException to be thrown). We need
19572         this as the behavior has changed between MS.NET 1.x and 2.0, and we
19573         to match the MS behaviour in both profiles.
19574         * appdomain.c: Bump corlib version.
19576 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19578         This patch implements a big portion of publisher policy
19579         support, used to bind assembly versions and redirect
19580         one assembly from version A to version B.
19582         * assembly.c:
19583         New GSList loaded_assembly_bindings, for storing the cached
19584         assembly bindings.
19585         (assembly_binding_maps_name): New static function for checking if a 
19586         assembly binding information maps an assembly name.
19587         (mono_assembly_binding_info_free): New function for freeing
19588         assembly binding information resources.
19589         (get_publisher_policy_info): New static function for retrieving 
19590         assembly binding information from a MonoImage.
19591         (compare_versions): New static function for comparing an assembly
19592         binding information data and the version of an assembly name.
19593         (check_policy_versions): New static function for checking if an
19594         assembly binding info mapping an assembly name is valid for it.
19595         (mono_assembly_load_publisher_policy): New static function for
19596         loading the 'policy.major.minor.MyAssembly' image for an assembly
19597         with an assembly name 'aname'.
19598         (mono_assembly_bind_version): New static function for updating
19599         assembly redirection.
19600         (mono_assembly_apply_binding): New static function for applying
19601         assembly binding.
19602         (search_binding_loaded): New static function for searching 
19603         loaded assembly binding infos in the cache domain.
19604         (mono_assembly_load_full): Don't apply assembly binding for
19605         reflection only assemblies.
19607         * metadata-internals.h: Add MonoAssemblyBindingInfo,
19608         which contains information about assembly binding. Also
19609         declare signature for mono_config_parse_publisher_policy ()
19610         function, used to retrieve pub policy info.
19611         
19612         * mono-config.c:
19613         (publisher_policy_start): New static function used to parse publisher 
19614         policy config files.
19615         (publisher_policy_parser): New static MonoParseHandler containing 
19616         the functions used when parsing config files.
19617         (mono_config_parse_publisher_policy): New function for parsing
19618         publisher policy files.
19619         
19620 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
19622         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
19624         * marshal.c (mono_delegate_free_ftnptr): Ditto.
19626         * object.c (mono_get_addr_from_ftnptr): New helper function.
19628         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
19630         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19632 2005-08-19  Dick Porter  <dick@ximian.com>
19634         * threads.c, threads.h, appdomain.c, appdomain.h,
19635         profiler-private.h, monitor.c, object.c, object-internals.h,
19636         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
19637         store the thread ID, so it can hold a 64 bit value if needed.
19639 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
19641         * reflection.c (mono_reflection_create_dynamic_method): Store the
19642         handle class into the method references as well so ldtoken works in
19643         dynamic methods.
19645         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
19646         types.
19648 2005-08-19  Ankit Jain <jankit@novell.com>
19650         Fix #75847.
19651         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
19652           here rather than using the method signature of a arbitrary function
19653           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
19654           two arguments.
19655           Hack done with Harinath.
19657 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19659         * threadpool.c: disable printing stack traces when we get a exception
19660         in a threadpool thread. I need to do more testing to figure out which
19661         cases actually print this. Fixes bug #75828.
19663 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19665         * icall.c: there might be ignored whitespace after the last '='. This
19666         fixes length computation and bug #75840.
19668 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
19670         * assembly.c (mono_assembly_load_full): Consider .exe extension as
19671         well. Fixes #75809.
19673         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
19674         #75784.
19675         
19676         * reflection.c (create_custom_attr_data): Ditto.
19678 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
19680         * locales.c, culture-info.h : removed RegionLCIDMap.
19681         * culture-info-tables.h : regenerated.
19683 2005-08-16  Martin Baulig  <martin@ximian.com>
19685         * class.c (mono_type_get_name_recurse): Small fix.
19687 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
19689         * locales.c : indentation fixie.
19691 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
19693         * object-internals.h,
19694           locales.h,
19695           locales.c,
19696           culture-info.h,
19697           icall.c : added RegionInfo table support.
19698         * culture-info-table.h : regenerated for region support.
19700 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
19702         * reflection.c (resolve_object): handle all kinds of MonoMethod
19703         including generic ones
19705 2005-08-12  Ankit Jain <jankit@novell.com>
19707         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
19708           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
19710 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
19712         * process.c: Don't close a thread handle when it's NULL. This is a
19713         workaround for bug #75733.
19715 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
19717         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
19719 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
19721         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
19723 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19725         * threadpool.c: if a work item in the thread pool has a callback that
19726         catches a exception, don't propagate it after invoking the callback.
19727         Fixes bug #75336.
19729 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
19731         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
19733         * class-internals.h (MonoCachedClassInfo): Add some new fields.
19735         * class.c (mono_class_init): Load field info lazily in the AOT case.    
19737         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
19739 2005-08-03  Ankit Jain  <jankit@novell.com>
19741         Fix #75683.
19742         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
19743           PInvoke calling convention is 0.
19745 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
19747         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
19748         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
19750 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
19752         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
19753         to handle threads not started by the GC (patch by Michael Meeks
19754         <michael.meeks@novell.com>).
19756 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
19758         * reflection.c: Make buffer used in emitting types larger for some
19759         big generic types (patch by Michal Moskal).
19761 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
19763         * mono-debug.c: Fix some (not all) alignment problems.
19765 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19767         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
19768         Invoke mono_image_load_from_data_full passing the refonly
19769         parameter.
19771         * assembly.c
19772         (mono_assembly_open_from_bundle): Add the refonly argument, 
19773         in order to pass it to other methods it calls to.
19774         (do_mono_assembly_open): Add the refonly argument, in order 
19775         to pass it to other methods it calls to.
19776         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
19777         the refonly parameter to it.
19779         * image.c: Add loaded_images_refonly_hash and
19780         loaded_images_refonly_guid_hash to cache the reflection
19781         only loaded images.
19782         (mono_images_init): Initialize the hash tables used for
19783         caching the reflection only images.
19784         (load_modules): Invoke mono_image_open_full passing the refonly
19785         parameter to load the modules the correct way.
19786         (build_guid_table): Add the refonly argument, to re-build the 
19787         correct hash table.
19788         (do_mono_image_open): Added the refonly argument, in order to
19789         define it for the loaded image.
19790         (mono_image_loaded_full): New function, which receives an
19791         additional parameter to look for the image in the refonly or
19792         non-refonly section.
19793         (mono_image_loaded): Updated, using mono_image_loaded_full.
19794         (mono_image_loaded_by_guid_full): The same case that happens
19795         with mono_image_loaded_full.
19796         (mono_image_loaded_by_guid): Likewise.
19797         (register_image): Use the ref_only variable inside MonoImage
19798         to decide in which hash table store the current image.
19799         (mono_image_open_from_data_full): Rename
19800         mono_image_open_from_data to mono_image_open_from_data_full,
19801         adding the refonly argument, to define the ref_only variable 
19802         inside MonoImage.
19803         (mono_image_open_from_data): Return 
19804         mono_image_open_from_data_full.
19805         (mono_image_open_full): Rename mono_image_open to
19806         mono_image_open_full, receiving the new refonly argument,
19807         to pass it to inner methods.
19808         (mono_pe_file_open): Update this function, to open
19809         a MonoImage as a non-refonly image.
19810         (mono_image_close): Use the refonly variable inside
19811         MonoImage to remove the image from the correct caches.
19813         * image.h: Add the signatures of mono_image_open_full,
19814         mono_image_open_from_data_full, mono_image_loaded_full,
19815         mono_image_loaded_by_guid_full.
19817         * metadata-internals.h: Add the ref_only field to 
19818         MonoImage.
19819         
19820 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19822         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
19823         Fix the last behavior, which used to load the assemblies and
19824         extract MonoReflectionAssemblyName information, instead of
19825         extract it from the metadata tables. Needed for Reflection
19826         Only assemblies.
19827         
19828 2005-07-29  Martin Baulig  <martin@ximian.com>
19830         * mono-debug-debugger.c
19831         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
19832         not initialized.
19834         * mono-debug.c
19835         (mono_debug_address_from_il_offset): Check whether we have
19836         debugging support before attempting to take the lock.
19837         (mono_debug_source_location_from_address): Likewise.
19838         (mono_debug_source_location_from_il_offset): Likewise.
19839         (mono_debug_il_offset_from_address): Likewise.
19840         (mono_debug_address_from_il_offset): Likewise.
19842 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
19844         * class.c (mono_class_from_name_case): Add support for dynamic images.
19845         Fixes #75650.
19847         * object.c (mono_class_compute_gc_descriptor): Add a workaround
19848         for #75479.
19850 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19851         
19852         * reflection.c (mono_method_get_object): Fix warning.
19854 2005-07-28  Martin Baulig  <martin@ximian.com>
19856         * mono-debug.c
19857         (mono_debug_add_wrapper): Also write the wrapper type.
19859 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
19861         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
19862         
19863         * class.c (mono_class_init): Avoid reading nested classes if the AOT
19864         data indicates the class has none.
19866 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
19868         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
19869         loader lock with the debugger lock. Prevents deadlocks for beagle.
19871         Beagle can now run on an smp box for a weekend without any
19872         issues. Woohoo!
19874 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
19876         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
19877         in a module. Fixes #75629.
19879 2005-07-26  Martin Baulig  <martin@ximian.com>
19881         * mono-debug.c (mono_debug_add_wrapper): New static method.
19882         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
19883         interncall or a wrapper.
19885         * mono-debug.h (MonoDebugWrapperData): New public typedef.
19886         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
19887         (MONO_DEBUGGER_VERSION): Bump to 51.
19889         * mono-debug-debugger.c
19890         (mono_debugger_add_type): Removed this empty function.
19891         (mono_debugger_add_method): Likewise.
19893 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
19895         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
19896         before accessing method->slot.
19898 2005-07-21  Jb Evain  <jbevain@gmail.com>
19900         * reflection.c (method_encode_clauses/class): Handle filters clauses.
19901         Fixes #75010.
19903 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
19905         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
19906         #75587.
19908 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
19910         * image.h image.c: Add mono_image_get_guid () API function.
19912 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
19914         There were issues when multiple threads tried to load
19915         assemblies. A deadlock was created between assemblies_mutex and
19916         mono_domain_assemblies_lock. This fixes the issue by making the
19917         assembly ref counting be lock free. See bug 75586.
19918         
19919         * image.c (mono_image_close): The add ref function here was using
19920         Interlocked operations while the unref was using a mutex and a
19921         --. I don't think this was ever a bug that would be exposed in a
19922         non-pendantic way (ie, by an embedder doing a ref on one thread
19923         and an unref on another), but for the sake of correctness, this is
19924         now Interlocked.
19926         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
19927         (mono_assembly_load_reference): Call mono_assembly_addref rather
19928         than touching the refcount ourselves.
19929         (mono_assembly_close): Use InterlockedDecrement to unref the
19930         assembly. Don't acquire the lock unless it is actually needed.
19932 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19934         * class.c (mono_class_layout_fields): Fix calculation of has_references
19935         for generic types.
19937 2005-07-12  Martin Baulig  <martin@ximian.com>
19939         Applying a patch from Michal Moskal <malekith@nemerle.org>.
19941         * metadata.c
19942         (mono_type_hash): Provide better hashing for generic instances.
19943         (mono_generic_inst_hash): Improve hashing.
19944         (mono_generic_class_hash): Likewise.
19946         * reflection.c (mymono_metadata_type_hash): Improve hashing for
19947         generic instances.
19949 2005-07-12  Martin Baulig  <martin@ximian.com>
19951         * reflection.c (mono_reflection_create_runtime_class): Remove the
19952         hack for generic type definitions and non-`Run' assemblies.
19953         (mono_reflection_bind_generic_parameters): Also use
19954         `klass->wastypebuilder' to check for TypeBuilders.
19956 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
19958         * class.c (mono_class_layout_fields): Fix calculation of has_references
19959         for generic types.
19961         * class.c (inflate_generic_class): Fix a leak.
19962         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
19963         for generic types.
19965 2005-07-11  Martin Baulig  <martin@ximian.com>
19967         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
19968         on error.
19970 2005-07-11  Martin Baulig  <martin@ximian.com>
19972         * loader.c (find_method): Also lookup in
19973         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
19975 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19977         * appdomain.c (mono_domain_unload): Don't free the error message
19978         before passing it to mono_get_exception_...
19980         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
19981         
19982 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
19984         * threads.c: try to better guess an available RT signal (bug #75387).
19986 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19988         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
19989         and CACHE_OBJECT.
19991 2005-07-07  Martin Baulig  <martin@ximian.com>
19993         * class.c (mono_type_get_name_full): Return NULL for
19994         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
19995         fixes #75408.
19997 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
19999         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20000         exit the appdomain as well being aborted.
20002         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20003         change back to the root domain after calling managed code. This enables
20004         appdomains using threadpools to be unloaded.
20006 2005-07-07  Martin Baulig  <martin@ximian.com>
20008         * class-internals.h
20009         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20010         into `MonoDynamicGenericClass' since we only need it for dynamic
20011         types.
20013         * reflection.c (mono_class_bind_generic_parameters): We don't need
20014         to compute the `parent' here.
20016 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20018         * culture-info-table.h : regenerated.
20020 2005-07-06  Martin Baulig  <martin@ximian.com>
20022         * icall.c
20023         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20025         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20027 2005-07-06  Martin Baulig  <martin@ximian.com>
20029         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20030         we're doing a signature-only comparision; fixes #74945.
20032 2005-07-06  Martin Baulig  <martin@ximian.com>
20034         * class-internals.h (MonoGenericClass): Moved some things out into
20035         a new `MonoInflatedGenericClass' type.  
20036         (MonoInflatedGenericClass): New type; the `klass' of a
20037         `MonoGenericClass' is now computed lazyly in
20038         mono_get_inflated_generic_class().      
20040         * class.c (mono_get_inflated_generic_class): New public function.
20041         (mono_class_inflate_generic_method): Removed the unused
20042         `MonoClass *' argument.
20043         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20044         all the methods.
20045         (mono_class_create_generic): Make this static and merge it with
20046         mono_class_create_generic_2(); we're now called automatically from
20047         mono_get_inflated_generic_class().
20049         * loader.c (mono_method_signature): Call
20050         mono_get_inflated_method() here.
20052 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20054         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20055         type of fields with RVA.
20057         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20058         for this pseudo class.
20059         (my_mono_class_from_generic_parameter): Likewise.
20060         (mono_class_init): Allow interfaces to have cctors.
20062 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20064         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20065         lazily for AOT methods.
20067 2005-07-05  Martin Baulig  <martin@ximian.com>
20069         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20070         returns FALSE for a successful match, not TRUE.
20072 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20074         * loader.c (mono_method_get_index): Optimize this a bit.
20076 2005-07-04  Martin Baulig  <martin@ximian.com>
20078         * class.c
20079         (class_compute_field_layout): Move the check for generic type
20080         definitions into mono_class_layout_fields().  Fixes #74684.
20081         (mono_class_from_generic_parameter): Correctly compute
20082         `klass->parent'; fixes #75457.
20084         * reflection.c (register_assembly, register_module): Make sure
20085         `domain->rejobject_hash' is already created.
20087 2005-07-02  Martin Baulig  <martin@ximian.com>
20089         * class-internals.h
20090         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20091         `MonoDynamicGenericClass'.      
20093 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20095         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20096         returned by a field getter is null, since null is a valid value.
20098 2005-07-01  Martin Baulig  <martin@ximian.com>
20100         * reflection.c (mono_reflection_generic_class_initialize): Update
20101         the `dgclass->fields [i].parent' to the correct class.
20102         (mono_image_get_fieldref_token): Use the declaring type, not the
20103         reflected type.
20105 2005-07-01  Martin Baulig  <martin@ximian.com>
20107         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20109 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20111         * threads.c (thread_cleanup): assert that thread != NULL
20112         (wait_for_tids_or_state_change): We were using the wrong variable
20113         when accessing wait->threads. `i' was always out of the bounds of
20114         the array.
20116 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20118         * loader.c: map user32 and kernel32 to libMonoSupportW
20120 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20122         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20124 2005-06-28  Martin Baulig  <martin@ximian.com>
20126         * loader.c (method_from_methodspec): Fix #75334.
20128 2005-06-28  Martin Baulig  <martin@ximian.com>
20130         Fix #74953 - Arrays now implement the generic IList<T> interface
20131         on the 2.0 platform.
20133         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20135         * reflection.c (mono_class_bind_generic_parameters): New public
20136         function; similar to mono_reflection_bind_generic_parameters(),
20137         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20139         * domain.c (mono_init_internal): Try to initialize.
20140         `mono_defaults.generic_array_class' here; this'll only succeed if
20141         we're using the 2.0 corlib.
20143         * icall.c
20144         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20145         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20146         (mono_lookup_internal_call): Added support for nested classes.
20148         * loader.c
20149         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20150         we're an interncall and have generic arguments.
20152         * class.c
20153         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20154         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20155         instance of System.Array.InternalArray<T> for arrays, so they
20156         implement the generic IList<T> interface.
20158 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20160         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20161         (chastamar@yahoo.com). Fixes #75374.    
20163 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20165         * culture-info-table.h: regenerated.
20167 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20169         * icall.c: handle spaces correctly for base64 strings.
20171 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20173         * *.c: Kill some warnings.
20175 2005-06-23  Duncan Mak  <duncan@novell.com>
20177         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20178         that this builds on Solaris 10 (x86).
20180 2005-06-23  Martin Baulig  <martin@ximian.com>
20182         * class.c
20183         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20184         generic type definitions.
20186 2005-06-23  Martin Baulig  <martin@ximian.com>
20188         Fix #75331.
20190         * metadata.c (mono_class_get_overrides): Renamed to
20191         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20192         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20193         pass it to mono_get_method_full().
20195 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20197         * reflection.c (mono_reflection_create_runtime_class): take the
20198         mono_domain_lock in this method. Prevents deadlocks
20200 2005-06-22  Martin Baulig  <martin@ximian.com>
20202         * loader.c (method_from_methodspec): Fix #75330.
20204 2005-06-22  Martin Baulig  <martin@ximian.com>
20206         * reflection.c (type_get_qualified_name): Use
20207         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20208         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20209         argument; use it if we don't have an assembly name.
20211 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20213         * object.c: In mono_message_init, set "copy out" flag for in
20214         parameters with the [Out] flag.
20216 2005-06-21  Martin Baulig  <martin@ximian.com>
20218         * class.c
20219         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20220         and MONO_TYPE_PTR.
20222 2005-06-21  Martin Baulig  <martin@ximian.com>
20224         * class.c (mono_class_init): Don't initialize `class->fields' for
20225         generic instances since they're initialized again in
20226         compute_field_layout(). 
20227         (compute_field_layout): Set the field's `generic_info' here; fix
20228         #75320. 
20230 2005-06-21  Martin Baulig  <martin@ximian.com>
20232         * class-internals.h
20233         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20235         * metadata.c (mono_metadata_generic_method_equal): Also
20236         distinguish the `generic_class'; fixes #75334.
20238 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20240         * domain.c:
20241         * appdomain.c:
20242         * domain-internals.h:
20243         * reflection.c: 'domain_assemblies' field is now protected by its own
20244         lock. Don't call into managed code to run the AssemblyLoad event if we
20245         now there are no registered delegates for it.
20247 2005-06-20  Martin Baulig  <martin@ximian.com>
20249         * class.c (mono_class_is_assignable_from): Use a custom version of
20250         mono_class_has_parent() to make things work for generic instances;
20251         fix #75300.
20253 2005-06-20  Martin Baulig  <martin@ximian.com>
20255         * loader.c (method_from_methodspec): Apply a patch from
20256         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20258 2005-06-20  Martin Baulig  <martin@ximian.com>
20260         * class.c (mono_class_init): Reverted Zoltan's last change; it
20261         breaks generics.
20263 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20265         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20267 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20269         * socket-io.c: fix the index in the socket array for writable/error
20270         sockets. Fixes bug #75306.
20272 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20274         * class.c (mono_class_init): Allow interfaces to have static ctors.
20276 2005-06-17  Martin Baulig  <martin@ximian.com>
20278         * loader.c (method_from_methodspec): Use `context->container' when
20279         parsing the `gmethod->inst'.
20281 2005-06-17  Martin Baulig  <martin@ximian.com>
20283         * class.c (mono_type_get_name_recurse): Don't add the assembly
20284         name for type arguments.
20286 2005-06-15  Martin Baulig  <martin@ximian.com>
20288         * reflection.c (mono_image_get_inflated_method_token): Encode
20289         correct klass; fixes #75260.
20291 2005-06-13 Michal Moskal <malekith@nemerle.org>
20293         * icall.c: Make GetCorrespondingMethod/Constructor take
20294         MonoReflectionMethod method not MonoMethod. Removed
20295         MonoType.GetCorrespondingField, and make
20296         MonoGenericType.GetCorrespondingField take name not
20297         MonoClassField.
20299 2005-06-13  Michal Moskal <malekith@nemerle.org>
20301         * reflection.c (field_encode_signature, encode_locals):
20302          Make sizes of buffers for types larger (for big generic types).
20303          (create_generic_typespec,
20304          mono_reflection_sighelper_get_signature_local,
20305          mono_reflection_sighelper_get_signature_field):
20306          Add asserts for too small buffers.
20308 2005-06-15  Martin Baulig  <martin@ximian.com>
20310         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20311         if our parent is not a dynamic type.
20313 2005-06-15  Martin Baulig  <martin@ximian.com>
20315         * class-internals.h (MonoTypeNameFormat): New enum.
20317         * class.c
20318         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20319         (mono_type_get_full_name): Removed.
20320         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
20321         argument instead of the boolean's.
20323         * icall.c (ves_icall_System_MonoType_getFullName):
20324         Added `gboolean assembly_qualified'.    
20326         * reflection.h
20327         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
20329         * reflection.c (mono_reflection_parse_type): Parse the new type
20330         name format.
20332 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20334         * icall.c: no need to convert from utf16 to utf8 and then back again
20335         after the call to GetLogicalDrives.
20337 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20339         * icall.c: frombase64. Fix problems exposed by new tests.
20341 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20343         * icall.c: added internal calls for converting char [] and strings in
20344         base64 into byte [].
20346 2005-06-10  Martin Baulig  <martin@ximian.com>
20348         * class.c (mono_class_create_generic_2): Read the nested classes
20349         from the metadata rather than from `gklass->nested_classes' since
20350         `gklass' might not be initialized yet.
20352 2005-06-09  Duncan Mak  <duncan@novell.com>
20354         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
20355         all public headers. Fixes #74919.
20357 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
20359         * domain.c: The key for proxy_vtable_hash is now a pointer
20360         array. Added new GHashFunc and GCompareFunc functions for this.
20362         * class.h: The list of interfaces in MonoRemoteClass is known in
20363         advance and can't grow (we create a new MonoRemoteClass if needed),
20364         so now the interface array can be allocated together with
20365         MonoRemoteClass.
20366         
20367         * object.c: Added a new method create_remote_class_key.
20368         Fixed mono_remote_class so it does not depend on
20369         mono_upgrade_remote_class.
20370         Removed extend_interface_array.
20371         Added new method clone_remote_class(), which makes a copy of a remote
20372         class and adds a new interface or class to it.
20373         mono_upgrade_remote_class() now creates a new remote class (or gets
20374         it from the cache) if an vtable upgrade is needed. In this way
20375         we make sure that other objects sharing the same remote class
20376         don't get the new vtable with unwanted interfaces.
20377         
20378         * object-internals.h:
20379         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
20380         
20381         * marshal.c: Track changes in mono_upgrade_remote_class().
20383 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
20384         * icall.c: Add runtime methods for obtaining members of inflated
20385         class, which were created from supplied non-inflated members. It
20386         is used in internal Get{Method,Constructor,Field} methods in
20387         System.Type
20389 2005-06-09  Martin Baulig  <martin@ximian.com>
20391         * reflection.c
20392         (mono_reflection_bind_generic_method_parameters): Fix #75169.
20394 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20395         * reflection.c (mono_image_basic_init): Define
20396         Version in MonoDynamicAssembly. 
20397         
20398 2005-06-08  Martin Baulig  <martin@ximian.com>
20400         Fix #75136.
20402         * loader.c
20403         (mono_method_signature_full): New public method; takes a
20404         `MonoGenericContext *'.
20405         (find_method): Use mono_method_signature_full() and pass the
20406         klass'es context to it.
20408         * class.c (mono_class_is_inflated_method): Use
20409         mono_method_signature_full() and pass the context to it.
20411 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
20413         * object.c: add proper locking in mono_remote_class_vtable(),
20414         fixes possible memory corruption.
20416 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20418         * marshal.c (mono_remoting_marshal_init): set
20419         initialized after initialization.
20421 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
20423         * locales.c : hush.
20425 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
20427         * object.c (extend_interface_array): fix really silly
20428         memory corrupting / comparison bug.
20430 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20432         * reflection.c: Functions added to support the creation
20433         of CustomAttributeData, which includes Attribute data
20434         used by ReflectionOnly methods.
20436         * reflection.h:  mono_reflection_get_custom_attrs_data and
20437          mono_custom_attrs_data_construct added (functions exposed).
20439          * icall.c: Added mono_reflection_get_custom_attrs_data
20440          as icall.
20441         
20442 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
20444         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
20445         lupus's request.
20447 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
20449         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
20451         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
20452         dynamic DllImportAttribute.
20454         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
20455         dynamic DllImportAttribute.
20457         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
20458         Fixes #75162.
20460 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20462         * threads.c: avoid segfault when an unstarted thread is aborted.
20464 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
20466         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
20467         Returns the name and version of the runtime for reporting.
20469 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20471         * appdomain.c: bump corlib version.
20472         * object-internals.h: new field in MonoReflectionAssembly.
20474 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20476         * object-internals.h: Carlos forgot to add this field.
20478 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20480         * icall.c: Added create_version to create instances
20481         of Version of MonoReflectionAssemblyName. This change helps
20482         the AssemblyName tests to keep running fine.
20483         
20484 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
20485   
20486         * object.c (mono_method_return_message_restore): A somehow less
20487         intrusive fix for #75138.
20489 2005-06-03  Raja R Harinath  <rharinath@novell.com>
20491         * object.c (mono_method_return_message_restore): Fix computation
20492         of expected number of out args.
20494 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20496         * reflection.c (mono_image_get_method_info): Fix the case when the
20497         charset is empty.
20499 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
20501         * object.c: Added missing null check in
20502           mono_method_return_message_restore.
20504 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
20506         * reflection.c (mono_image_get_method_info): Handle the case when
20507         dllentry is empty.
20509 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
20511         * object.c: When creating the vtable for a proxy, take into account
20512         all inherited interfaces, not only the ones registered in
20513         iclass->interfaces. This fixs bug #74996.
20514         Also, in mono_method_return_message_restore, verify that the array
20515         of out args has the expected lengh.
20517 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20519         * socket-io.c: update the timeout in Poll when the call is interrupte.
20521 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20523         * socket-io.c: support abort/suspend in Select_internal after last
20524         change.
20526 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20528         * threadpool.c: remove warning.
20530 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20532         * icall.c:
20533         * socket-io.[ch]: Select_internal uses poll() now when available, thus
20534         removing the 1024 limit from select(). Runtime part of the fix for
20535         bug #71203.
20537 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20539         * socket-io.c: when resolving the addresses for the same
20540         host returned by gethostname(), get the local IPs from the interface
20541         list. Loopback addresses are discarded if the are interfaces up with
20542         non-loopback ones. Fixes bug #63265.
20544 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
20546         * appdomain.c, verify.c, object-internals.h, reflection.c:
20547         bumped corlib number to 36, and added new extra_flags field
20548         to ReflectionMethodBuilder and friends.  Fixes #75060.
20550 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
20552         * gc.c: register a new weak link only if the object is non-null
20553         (fixes bug#75047).
20555 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20557         * culture-info.h : short time pattern too.
20559 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
20561         * culture-info.h : expand long time pattern string length.
20563 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20565         * culture-info-table.h : update (more French date format; #72788).
20567 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
20569         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
20570         the method is static. Fixes #75029.
20572 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
20574         * reflection.c: Update the table_idx field of method builders after
20575         saving the module, since it can change. This is a workaround for
20576         bug #74914. 
20578 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
20580         * culture-info-table.h : update (additional French date format).
20582 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
20584         * icall.c (ves_icall_type_Equals): Revert last change.
20585         
20586         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
20588         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
20590 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
20592         * class-internals.h: Added executioncontext_class field to 
20593         MonoDefaults structure.
20594         * domain.c: Cache System.Threading.ExecutionContext class in 
20595         mono_defaults.
20596         * object.c: Capture the ExecutionContext for asynchroneous calls in
20597          mono_async_result_new.
20598         * object-internals.h: Added execution_context and original_context 
20599         fields to MonoAsyncResult. Added execution_context to MonoThread.
20600         * security-manager.c|.h: Added mono_get_context_capture_method to 
20601         return the capture method (if required by the security manager or by
20602         the framework version used).
20603         * threadpool.c: Apply capture (if present) ExecutionContext in 
20604         mono_async_invoke and revert to original context after it completes.
20606 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
20608         * culture-info-table.h : updated (real hacky solution for zh-CHT).
20610 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
20612         * culture-info-table.h : zh-CHT related workaround.
20614 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20616         * marshal.c (emit_marshal_custom): Add some error checking and call the
20617         methods in the ICustomMarshaler interface. Fixes #74875.
20618         
20619         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
20620         native->managed wrappers.
20622 2005-05-12  Martin Baulig  <martin@ximian.com>
20624         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
20625         here and use the loader lock.
20627         * mono-debug.c: Properly lock when the debugger is not attached.
20628         (mono_debug_init): Release the initial lock if we're not running
20629         in the debugger.
20631 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
20633         * marshal.c (emit_marshal_custom): Pass through NULL values without
20634         calling the custom marshalling routines.
20636         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
20637         conversion in structures. Fixes #74882.
20639 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
20641         * culture-info-table.h : zh-* cultures were missing.
20643 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
20645         * threads.c: Added a new event background_change_event which is signaled
20646         when a thread changes its background mode.
20647         Moved here several checks previously done in managed code. The checks
20648         require the thread lock, and using the thread lock in managed code
20649         can result in deadlocks.
20650         Merged Start_internal and Thread_internal into a single method. Now 
20651         Thread_internal does all work of creating and starting a thread.
20652         Added icalls for setting and getting the state of the object. Moved from
20653         managed code to avoid locking there.
20654         Added wait_for_tids_or_state_change() which is called instad of
20655         wait_for_tids when waiting for non-backround threads to end. This method
20656         will return if one of the threads ends or the background_change_event
20657         is signaled.
20658         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
20659         the background mode. This method signals the background_change_event
20660         event.
20661         * icall.c:
20662         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
20663         removed Start_internal.
20664         
20665 2005-05-11  Martin Baulig  <martin@ximian.com>
20667         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
20668         to order of some fields to get proper alignment on 64-bit machines.
20670 2005-05-11  Martin Baulig  <martin@ximian.com>
20672         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
20673         changes as they're broken and completely fuck up the debugger.
20675         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
20677 2005-05-10  Martin Baulig  <martin@ximian.com>
20679         * reflection.c (mono_reflection_generic_class_initialize): Don't
20680         call mono_class_setup_parent() here.
20682 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20684         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
20685         send/receive timeout use an integer in milliseconds. We were using a
20686         struct timeval.
20688 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20690         * locales.c:
20691         (internal_get_cultures): reserve the first slot of the array for the
20692         InvariantCulture, which will be filled in managed code.
20694 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
20696         * reflection.c (mono_image_fill_module_table): Initialize the
20697         GENERATION field as well.
20699 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20701         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
20702         Monitor.Enter on the object.
20704 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
20706         * threads.c: Enable the wait for running threads when exiting.
20707         * icall.c: Suspend all threads before exiting.
20709 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
20711         * assembly.c (mono_assembly_load_reference): Fix warning.
20713 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20715         * threadpool.c: changed the default number of threads per cpu. From now
20716         on, the default will be 20 + (5 * number of cpus) instead of 50.
20718 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
20720         * loader.c (mono_method_get_signature_full): Add locking here.
20722 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
20724         * appdomain.c: Moved methods for parsing and freeing assembly
20725         names to assembly.c.
20726         * assembly.c, domain-internals.h: Created public methods for parsing
20727         assembly names. Fixed mono_assembly_load_with_partial_name:
20728         it now finds the best match, taking into account the version,
20729         token and culture specified in the partial name. Also return
20730         the latest version if no version information is specified.
20732 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
20734         * threadpool.c: replace check for SocketAsyncCall class.
20736 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20738         * threadpool-internals.h:
20739         * Makefile.am: added threadpool-internals.h
20741         * threadpool.c: call mono_unhandled_exception on exceptions not handled
20742         that happen in threadpool threads (tested on MS).
20743         (mono_thread_pool_remove_socket): new function that dispatch any pending
20744         AIO call on a socket that is closing. By now only epoll really needs it,
20745         as select/poll wake up when the socket closes.
20748         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
20750 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
20752         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
20754 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
20756         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
20758 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
20760         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
20761         has an abort request, convert it into a suspend request.
20763 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
20765         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
20766         warning for the usage of `UnmanagedFunctionPointerAttribute' which
20767         is not supported yet.
20769 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20771         * image.c: register assemblies loaded from data (bundles) in the loaded
20772         assemblies hash. Fixes bug #74772.
20774 2005-04-29  Martin Baulig  <martin@ximian.com>
20776         * class.c (mono_type_get_name_recurse): Update to the new naming
20777         schema from the latest .NET 2.x beta2.
20778         (mono_class_setup_vtable_general): If we're a generic instance,
20779         copy the vtable from our generic type definition and inflate all
20780         the methods in it.
20782         * loader.c (find_method): Update to the new naming schema from the
20783         latest .NET 2.x beta2.
20785 2005-04-29  Raja R Harinath  <harinath@gmail.com>
20787         * class.c (mono_class_init): Add a mono_loader_unlock to the
20788         #74734 fix.
20790 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
20792         * icall.c (ves_icall_System_Environment_Exit): Remove the 
20793         suspend_all_other_threads () call for the time being, since it can hang.
20795         * threads.c (mono_thread_manage): Similarly, disable the waiting for
20796         the background threads to exit, since it can also hang.
20798         * class.c (mono_class_init): Applied patch from Ankit Jain 
20799         (radical@gmail.com). Avoid pending init errors when a field refers
20800         to a nested class using a typeref. Fixes #74734.
20802         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
20803         this for dynamic modules.
20805 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20807         * threads.c: don't wait for threads that are in the process of aborting
20808         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
20809         and waiting for background threads to finish. This makes xsp and
20810         mod-mono-server exit without random length delays and/or hangs.
20812 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20814         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
20816 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
20818         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
20819         dynamic types to prevent infinite loops. Fixes #74727.
20821         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
20822         ..._is_assignable_to.
20824 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
20826         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
20828 2005-04-25  Martin Baulig  <martin@ximian.com>
20830         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
20832         * domain.c
20833         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
20835         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
20837         * reflection.c (build_compressed_metadata): Set metadata header
20838         version to 2.0.
20840 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
20842         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
20843         number into an integral and a decimal part. Fixes #70473.
20845         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
20847 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
20849         * culture-info-table.h : reflected the latest locale-builder output.
20851 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20853         * threadpool.c: check for SuspendRequested too when deciding if
20854         mono_thread_interruption_checkpoint should be called.
20856 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20858         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
20859         * threads.c: remove interruption_mutex and use Interlocked instead. When
20860         suspending all the threads, wait for all the suspended events at once.
20861         If we're shutting down and get an APC that is going to be queued,
20862         call mono_thread_execute_interruption immediately, as the thread might
20863         be sleeping on a pthread condition or mutex.
20865         * icall.c: call mono_runtime_set_shutting_down before suspending the
20866         threads.
20868         Fixes bug #74693. And now xsp is happier when exiting.
20870 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
20872         * loader.c (mono_stack_walk): Fix #74690.
20874 2005-04-22  Martin Baulig  <martin@ximian.com>
20876         * mono-debug.h (MonoDebugMethodJitInfo): Added
20877         `MonoDebugMethodJitInfo *jit'.
20879         * mono-debug.c (mono_debug_read_method): Cache the
20880         MonoDebugMethodJitInfo in `address->jit'.
20881         (mono_debug_free_method_jit_info): New public method.
20883 2005-04-22  Martin Baulig  <martin@ximian.com>
20885         * class.c (mono_class_is_assignable_from): Disallow
20886         type parameter -> interface.
20888 2005-04-21  Dick Porter  <dick@ximian.com>
20890         * threads.c (mono_thread_create): Turn an assertion into an error.
20892 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
20894         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
20895         
20896         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
20897         Fix some gcc 4.0 warnings.
20899 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
20901         * file-io.c: fix alt dir separator char on unix systems
20902         and cleanup (fixes bug #71214).
20904 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
20906         * marshal.c: Use CALLVIRT instead of CALL when dispatching
20907         a call to a remote domain, since the method may be an
20908         interface method in the client domain. This fixes bug #74192.
20910 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20912         * threadpool.c: recv/send are now performed before going back to managed
20913         code to save one transition.
20915 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20917         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
20919         * metadata/threadpool.c: removed hack to workaround the bug above.
20921         Fixes bug #74618.
20923 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
20925         * reflection.c reflection.h: Fix handling of parameter defaults in
20926         dynamic methods. Also fixes handling of parameter attributes.
20927         Fixes #74609.
20929         * mono-debug.c (mono_debug_close_image): Fix warning.
20931 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20933         * socket-io.h: replaced old unused field with new 'blocking'.
20934         * threadpool.c: restore socket blocking state on windows(tm).
20936 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
20938         * icall.c: don't return the codebase in the AssemblyName[] returned by
20939         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
20940         * object-internals.h: Removed FIXME (fields were presents) and fixed
20941         versioncompat declaration.
20943 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20945         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
20946         not closed, so don't cleanup when it happens.
20948 2005-04-13  Chris Toshok  <toshok@ximian.com>
20950         * mono-debug-debugger.h: change prototype for
20951         mono_debugger_lookup_type.
20953         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
20954         this function, although it should probably be named
20955         mono_debugger_init_type.
20957 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20959         * threadpool.c: fix non-AIO case.
20961 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
20963         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
20964         the built-in profiler to measure just JIT compilation times.
20966 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20968         * threadpool.c: the epollfd might be closed by another thread at
20969         any time, so ignore EBADF at treat it as a "we're closing" sign.
20971 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20973         * threadpool.c: release the semaphores with a count equals to the number
20974         of working threads in both IO and regular pools. Fixed typo that messed
20975         up the count of IO pool threads. Don't initialize the pipe handles if
20976         we're using epoll.
20978 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20980         * threadpool.c: some systems don't like a NULL when deleting the socket
20981         from epoll.
20983 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20985         * threadpool.c: fix semaphore allocation.
20987 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20989         * threadpool.c: added epoll() based implementation for asynchronous IO
20990         that is used instead of the default poll() when available.
20991         It can be disabled by setting MONO_DISABLE_AIO.
20993 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20995         * threadpool.c: windows needs 'closesocket' and instead of returning
20996         0 when the stream is closed while in select, it returns -1. Fixes bug
20997         #74573.
20999 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21001         * class.c (class_compute_field_layout): Fix the regression caused by
21002         the previous try.
21004 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21006         * threadpool.c: separate pool for socket async. IO.
21007         * threadpool.h: mono_max_worker_threads is not a global any more.
21009 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21011         * class.c (class_compute_field_layout): Fix #74549.
21013 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21015         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21016         use 2 connected sockets instead.
21018 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21020         * mono-config.c: Add new entry point for mkbundle
21021         mono_config_parse_memory. 
21023 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21025         * threadpool.c: removed another unused function.
21027 2005-04-08  Ankit Jain  <radical@corewars.org>
21029         * reflection.c (get_default_param_value_blobs): Add 'types'
21030         parameter to get the types encoded in the constant table.
21031         (mono_param_get_objects): Use the type from the constant table,
21032         not the type of the parameter, when creating default values.
21033         Handle null default values correctly.
21035 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21037         * file-io.c:
21038         * file-io.h:
21039         * threadpool.c:
21040         * threadpool.h:
21041         * icall.c:
21042         * socket-io.c: removed dead code for async IO.
21044 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21046         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21048         * threadpool.c: intercept socket async. calls and pass them to a thread
21049         that is polling and dispatching the job items to the threadpool as
21050         socket become ready. Fixes bugs #71217, #71933.
21052         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21053         between char and short/ushort arrays.
21055         * socket-io.c: remove dead code.
21057 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21059         * locales.c,
21060           icall.c : removed InternalToUpper_Comp() and
21061           InternalToLower_Comp().
21063 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21065         * char-conversions.h : The tables were incorrectly generated. Should
21066           be generated against invariant culture.
21068 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21070         * object.c (mono_runtime_invoke_array): Fix return value when 
21071         passing pre-created valuetype objects to ctors.
21073         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21074         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21075         Fixes #74338.
21077 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21079         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21080         only used with --security and hides the wrong corlib version error.
21082 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21084         * class.c: Changed mono_class_name_from_token so that types
21085         outside of a namespace don't have an initial period.  Improved
21086         the g_warning message used in _mono_class_get when loading
21087         fails.
21088         * assembly.c: In mono_assembly_load_reference, when an assembly
21089         can't be found, "No such file or directory" is misleading and
21090         unhelpful because a few paths were checked for the presence of
21091         the assembly.  When that happens (ENOENT), display a nicer
21092         message indicating the directories that were searched.  In all
21093         cases, the warning is made easier to read for non-hackers.
21095 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21097         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21098         project/solution.
21099         * appdomain.h|domain.c: Removed inline from functions.
21100         * appdomain.c: Reduced warnings when compiling on windows.
21101         * icall.c: Fixed output_debug declaration to gunichar2*.
21102         * mono-config.c: Reduced warnings when compiling on windows.
21103         * rand.c: Added missing "windows.h". Added missing return value.
21104         * rawbuffer.c: Added missing winsock2.h for windows.
21105         * sysmath.h: Added mono-compiler.h header to allow/ease 
21106         compilation with non-GCC compilers.
21107         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21108         Removed cast warnings.
21110         Adapted from the work of J Lothian (for VC6).
21112 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21114         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21115         from default_path.
21117 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21119         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21120         the 2.0 profile.
21122 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21124         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21125         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21126         stuff, and it would probably use $(prefix)/share rather than
21127         $(prefix)/lib.
21129 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21131         * console-io.c: added 2 includes that might be missing.
21133 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21135         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21136         profile.
21138         * reflection.c (create_custom_attr): Allocate the params array using
21139         alloca so it gets GC tracking.
21141 2005-03-23  Chris Toshok  <toshok@ximian.com>
21143         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21144         out some spew.
21146 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21148         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21149         changes to pick up any changes in prefix, etc.
21151 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21153         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21154         
21155         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21156         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21158 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21160         * class-internals.h object-internals.h class.c reflection.c: Extend the
21161         mono_lookup_dynamic_token () function to return the class of the
21162         token as well. 
21164         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21165         well. Fixes #73848.
21167 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21169         * security-manager.c: Skip inheritance checks for intra-corlib
21170         class inheritance and method overrides. This skips a lot of checks
21171         and (anyway) permissions cannot work until corlib is loaded.
21173 2005-03-23  Martin Baulig  <martin@ximian.com>
21175         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21176         MONO_TYPE_GENERICINST.  
21178 2005-03-23  Martin Baulig  <martin@ximian.com>
21180         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21182 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21184         * class.c: added locking comments to some functions.
21185         Cache the interface offsets arrays (saves about 20 KB
21186         of runtime memory in a typical app).
21187         Reduce the time overhead in mono_class_setup_supertypes ().
21189 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21191         * icall.c: speedup and fix leaks in GetMethodsByName and
21192         GetPropertiesByName.
21194 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21196         * reflection.c: some locking fixes.
21198 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21200         * metadata.c: added missing break in case statement.
21202 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21204         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21205         typedbyref return values. Fixes #73941.
21207 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21209         * security-manager.c|h: Added demandunmanaged method and 
21210         suppressunmanagedcodesecurity class to MonoSecurityManager.
21211         Renamed aptc class to allowpartiallytrustedcallers.
21213 2005-03-17  Martin Baulig  <martin@ximian.com>
21215         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21217 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21219         * file-io.c: disabled file async. IO using aio_*. It uses the
21220         threadpool now. Workaround for bug #73718.
21222 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21224         * assembly.h, mono-config.c: added code to deal with bundled configs
21225         for bundled assemblies.
21227 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21229         * *.c, private.h: cleanup, removing old private.h header file.
21231 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21233         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21234         and throw_on_unmappable_char attributes.
21236 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21238         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21239         _ProcessName_internal.
21241 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21243         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21244         #73631.
21246         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21247         are no longer used.
21249 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21251         * object.c (compute_class_bitmap): Add support for generics. Fixes
21252         #73527.
21254 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21256         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21258 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21260         * filewatcher.c: commented out the code for windows watcher, as we don't
21261         use it (we use the managed implementation instead).
21263 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21265         * object-internals.h (MonoThread): Remove 'unused1' field.
21267         * appdomain.c: Bump corlib version.
21269         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21271         * reflection.c (mono_reflection_create_runtime_class): Remove the
21272         AssemblyBuilder.Save optimization since it causes too many problems.
21274 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21276         * exception.c|h: Added mono_get_exception_reflection_type_load to
21277         create a ReflectionTypeLoadException object.
21278         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21279         to return NULL is a InheritanceDemand fails during reflection. Updated
21280         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21281         ReflectionTypeLoadException if an InheritanceDemand fails during 
21282         reflection. Added icall mapping for GetLinkDemandSecurity.
21283         * security-manager.c|h: Added ves_icall_System_Security_
21284         SecurityManager_GetLinkDemandSecurity internal call to return the
21285         class and methods permissions set for a LinkDemand. Removed unused
21286         fields in MonoSecurityManager.
21288 2005-03-10  Martin Baulig  <martin@ximian.com>
21290         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21291         it's a generic instance.
21293 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21295         * reflection.c (mono_get_object_from_blob): Applied patch from
21296         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21298         * class.c (mono_class_is_assignable_from): Another try at fixing 
21299         #73469 without breaking anything.
21301 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21303         * class.c: (mono_class_is_assignable_from): Revert the last changes
21304         since they don't work with generics.
21305         
21306         * class.c (mono_class_is_assignable_from): Fix build bustage.
21308         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21309         the managed IsAssignableFrom method. Fixes #73469.
21311         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21312         function.
21314 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21316         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21317         memory when the remoting callback does not sets the out arguments.
21318         Fixes #73007.
21320         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
21321         by mistake.
21323         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
21325         * object-internals.h (MonoStackFrame): Sync with managed object layout.
21327         * appdomain.c: Bump corlib version.
21329 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
21331         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
21332         function.
21334         * threads.c (mono_thread_attach): Detect threads which are not started
21335         by the GC pthread wrappers.
21337 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
21339         * icall.c: Added new icall for RNG.
21340         * rand.c|h: Added new icall to open the RNG. This allows to share a 
21341         single handle on Linux to access /dev/urandom and fix #73183.
21343 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
21345         * object.c: setting the new vtable in a transparent proxy object must
21346         not change the GC descriptor.
21348 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21350         * object.c: fixed compilation without GCJ support.
21351         * reflection.c: for runtime-created types ensure klass->has_references
21352         is correct (bug #73215).
21354 2005-03-02  Martin Baulig  <martin@ximian.com>
21356         * class.c (mono_class_is_assignable_from): Make this work if
21357         `oklass' is a generic instance; fixes #72831.
21359 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21361         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
21362         with hasthis set.
21363         
21364         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
21366         * marshal.c: Reorganize native->managed marshalling code to also use
21367         the emit_marshal_... functions.
21369 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21371         * object.c: typed allocs have issues with bitmap sizes > 30,
21372         so check for max_set >= 30.
21374 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
21376         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
21377         managed code. Fixes #73012.
21379         * metadata.h (MonoMarshalSpec): Add elem_mult field.
21381         * metadata.c reflection.c: Load/Emit elem_mult as well.
21382         
21383         * metadata.h (MonoMarshalSpec): Add comment.
21385         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
21387         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
21388         num_elem to -1 if not given.
21390         * object-internals.h (MonoReflectionMarshal): Add has_size field.
21392         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
21393         given values.
21395 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
21397         * null-gc.c (mono_gc_free_fixed): Was not compilable.
21399 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
21401         * reflection.c (encode_marshal_blob): Encode param_num field as well.
21403         * object-internals.h (MonoReflectionMarshal): Add param_num field.
21405 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
21407         * object.c: generalized the reference bitmap creation
21408         and added hooks for the new GC.
21409         * class-internals.c: removed the gc_bitmap field from MonoClass.
21411 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21413         * domain.c: help the compiler to produce better code
21414         in mono_jit_info_table_find ().
21416 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21418         * object.c: make all allocations look typed.
21420 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21422         * socket-io.c: load Mono.Posix if it's not loaded already
21423         (fixes bug#73033).
21425 2005-02-24  Martin Baulig  <martin@ximian.com>
21427         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
21428         * reflection.c (dup_type): Likewise.
21430 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
21432         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
21433         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
21435 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21437         * domain.c, threads.c, object-internals.h: make the critical thread
21438         local vars use the fast access mode (even when we're compiled in
21439         a lib). Provide accessors to be used by the jit during codegen.
21441 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21443         * appdomain.c: Changed hook functios behavior to include
21444         support for the reflection only assemblies. Some icalls were changed
21445         to support the mentioned assemblies too. Signatures of static methods
21446         try_assembly_resolve and real_load now have an additional parameter:
21447         refonly.
21449         * assembly.c: General changes to mono_assembly_ methods to support
21450         reflection only api. Functions mono_assembly_open, mono_assembly_load,
21451         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
21452         suffix, to support an additional gbool parameter to specify whether
21453         the assembli is reflection only or not. Created some new hook functions 
21454         to add support for reflection only assemblies. Signatures of static 
21455         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
21456         have now an additional parameter: refonly.
21458         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
21459         indicating whether the assembly is reflection only or not.
21461         * exception.c: Add mono_get_exception_invalid_operation.
21463         * icall.c: Throw an InvalidOperationException when trying to invoke
21464         a property/method/event, or trying to set/get the value of a field.
21465         Also add an icall to retrieve the ref_only flag to the
21466         MonoReflectionAssembly.
21468 2005-02-23  Chris Toshok  <toshok@ximian.com>
21470         Part of fix for #72827.
21471         * mono-debug.c (mono_debug_add_method): add lexical block data to
21472         the info we write.  Kind of a hack at the moment - we copy the
21473         lexical block info from the MonoDebugMethodInfo to the
21474         MonoDebugMethodJitInfo here, before writing it.
21475         (mono_debug_read_method): read the lexical block info.
21477         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
21479         * debug-mono-symfile.h: add lexical block support.
21481         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
21482         support.
21484 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21486         * loader.c (mono_lookup_pinvoke_call): Fix warning.
21488         * object.c (mono_runtime_free_method): Call mono_free_method () and
21489         put the TODOs there.
21491         * loader.c (mono_free_method): Free up most memory allocated for 
21492         dynamic methods.
21494 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21496         * reflection.c: properly flag a Type argument to a
21497         named custom attr value (bug #72248).
21499 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21501         * reflection.c: reduce code duplication in named custom
21502         attribute encoding.
21504 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
21506         * reflection.c: properly encode custom attrs of type object
21507         (bug #72649).
21509 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
21511         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
21513 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
21515         * socket-io.c: load System.dll if it's not loaded already
21516         (bug #72850 and #70477).
21518 2005-02-21  Martin Baulig  <martin@ximian.com>
21520         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21521         generic instances.
21523 2005-02-21  Martin Baulig  <martin@ximian.com>
21525         * reflection.c (mono_image_build_metadata): We also need to
21526         "fixup" the MethodImpl table after we computed the final method
21527         indices.  Call fixup_methodimpl() to do that.
21528         (fixup_methodimpl): New private method.
21530 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
21532         * assembly.c: special case mscorlib.dll (bug#72536),
21533         patch from Carlos Alberto Cortez.
21535 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
21537         * threads-types.h threads.c: Fix build bustage.
21539         * threads.c: Use a union for long<->double conversions.
21541         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
21542         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
21544         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
21545         containing the checkpoint call with NOT_TAKEN.
21546         
21547         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
21548         checkpoint before pushing the arguments, so they won't have to be
21549         spilled to stack.
21551 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21553         * domain.c, assembly.c, domain-internals.h: make some data
21554         const and relocation-free.
21556 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
21558         * object.c, appdomain.c, class-internals.h: introduce the
21559         MonoClassRuntimeInfo structure to hold the info needed to
21560         use a class at runtime. Made mono_class_vtable() lock-free
21561         for all the appdomains.
21563 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
21565         * metadata-internals.h, image.c: introduce a per-image mempool to
21566         be used for memory that has the same lifetime as the image.
21568 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
21570         * domain.c: In mono_init_internal(), instead of selecting the first
21571         runtime version supported by an executable, get a list of all
21572         supported versions and select the one for which an mscorlib exists
21573         (since even if the runtime supports a given version, it doesn't mean
21574         that the framework for that version is installed).
21575         Modified get_runtimes_from_exe to support this behavior.
21576         In supported_runtimes, added information about additional system
21577         assembly versions.
21578         
21579         * assembly.c: Added support for more than one system assembly version
21580         per runtime version. Updated the assembly list.
21581         In mono_assembly_remap_version, removed the initial version check,
21582         since we don't know to which version we need to compare until we
21583         get the version set on which the assembly is based.
21584         Moved the code for loading corlib into the new method
21585         mono_assembly_load_corlib(), so it can be used by the initialization
21586         code.
21587         
21588         * domain-internals.h: Updated data structures and added declaration
21589         for mono_assembly_load_corlib.
21591 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21593         * reflection.c (resolve_object): Fix the creation of the signature in 
21594         the SignatureHelper case.
21596         * assembly.c (mono_assembly_remap_version): Fix binary search.
21597         
21598 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
21600         * class.c: Added inheritance check when a method is overloaded (from a
21601         virtual method or when implementing an interface) and when a class is
21602         inherited. Added functions to set a failure for a class and to 
21603         retreive the exception from a failure.
21604         * class-internals.h: Added fields to MonoClass to keep the exception
21605         information status for inheritance (or other exceptions) to be thrown
21606         later (i.e. not at load time).
21607         * object.c: Throw the inheritance SecurityException when a type is to 
21608         be created with either class or method inheritance violations.
21609         * reflection.c|h: Fix when getting declsec from a class. Removed 
21610         unrequired code for class. Improved sanity in parameter naming.
21611         * security-manager.c|h: Added functions to check for class and method
21612         inheritance.
21614 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
21616         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
21617         and has_finalize in dynamic types as well.
21619 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
21621         * culture-info-table.h : fixed currency format for en-GB (and so on).
21623 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
21625         * gc.c: ensure the GC handles never have 0 as a value.
21627 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21629         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
21630         a pointer to a struct to unmanaged code. Fixes #72625.
21632 2005-02-16  Martin Baulig  <martin@ximian.com>
21634         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
21636 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
21638         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
21640 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21642         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
21644         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
21645         UnmanagedFunctionPointerAttribute, use it for determining calling convention
21646         etc. Fixes #71471.
21648         * reflection.c (mono_custom_attrs_get_attr): New helper function.
21650         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
21652 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
21654         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
21655         changes to make the current context a field in MonoThread.
21657 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
21659         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
21660         the last change.
21661         
21662         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
21663         extracted from mono_marshal_get_native_wrapper.
21665         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
21666         to create wrappers around native functions.
21668         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
21669         delegates for arbitrary function pointers. Fixes #71472.
21671 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21673         * threads.c: cleaned up the code a little.
21675 2005-02-15  Martin Baulig  <martin@ximian.com>
21677         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
21678         the data table.
21680         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
21681         allocate larger chunks if needed.
21683 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21685         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
21686         in by mistake.
21688 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
21690         * domain.c: keep the domains in an array and ensure the domain ids
21691         are kept small, so they can be used as indexes to domain-specific data
21692         with a small memory overhead.
21694 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
21696         * icall.c: Handle byref types in Type icalls. Fixes #72544.
21698 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
21700         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
21702 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
21704         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
21706         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
21707         values.
21709         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
21710         
21711 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
21713         * domain-internals.h: add the hashtable here.
21715         * class-internals.h: Remove `info' from MonoMethod
21717         * domain.c: Add a new hashtable, jit_trampoline_hash
21719 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21721         * object.c: don't set the value of static fields
21722         (fixes bug#72494).
21724 2005-02-11  Martin Baulig  <martin@ximian.com>
21726         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
21727         (mono_debug_add_method): Silently ignore the method if it's too big.
21728         (mono_debug_add_type): Likewise.
21730 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
21732         * threads.c, appdomain.c: remove #ifdefs from the code.
21734 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
21736         * metadata-internals.h: Added flags to MonoAssembly to cache the most
21737         common security informations. This allows us to stay in unmanaged code
21738         when doing LinkDemand and it's special cases (except for the first 
21739         time for initialization). The flags a very much used with --security.
21740         * reflection.c|h: Added code to get declarative security attributes 
21741         for LinkDemand and InheritanceDemand. This required to refactor the
21742         existing code for Demand.
21743         * security-manager.c|h: Added new method fields for the special cases
21744         of LinkDemand.
21746 2005-02-10  Martin Baulig  <martin@ximian.com>
21748         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
21749         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
21751 2005-02-10  Martin Baulig  <martin@ximian.com>
21753         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
21754         debugging code; this is almost a complete rewrite.
21756         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
21758 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21760         * domain.c, object.h: expose mono_string_equal () and 
21761         mono_string_hash ().
21762         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
21763         it's implemented in managed code.
21765 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21767         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
21768         lo leak objects between appdomains.
21770 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21772         * assembly.c: old compilers compilation fix from 
21773         robertj@gmx.net (Robert Jordan).
21775 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
21777         * class-internals.h: Little reminder for the future.
21779         * debug-helpers.c: Fix up wrapper_type_names
21781 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21783         * image.c, metadata-internals.h: when loading an image from a file,
21784         mmap all of it and use the same codepaths as when using a
21785         in-memory image: the code is simpler and we use less memory
21786         (both writable and readonly).
21788 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21790         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
21791         API to alloc runtime data structures that need to be tracked by the
21792         GC and contain pointers.
21793         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
21794         make the code more readable and eventually use a different GC.
21796 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
21798         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
21799         for out arguments.
21800         
21801 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
21803         * object.c: In release_type_locks(), don't release the cctor lock
21804         if it has already been released. This fixes a crash in the
21805         thread5 test.
21807 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
21809         * gc.c, marshal.c, icall.c: register a delegate for finalization
21810         only when the native function pointer has been allocated for it.
21812 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21814         * object.c: cleaned up some code, allocate objects that are
21815         pointer free with the atomic malloc variant. Allocate memory
21816         for static data from the mempool if it's pointer-free.
21817         Allocate the bounds array at the end of the array data, when needed.
21818         * object-internals.h, object.h: move a private function in a private
21819         header.
21820         * class.c: handle missing case in tracking references in fields.
21822 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
21824         * class.c, class-internals.h: keep track if a type has
21825         reference fields in either the instance or static fields.
21827 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
21829         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
21830         and renamed to MonoRuntimeInfo. Added fields to store the expected
21831         framework assembly version. Changed mono_get_framework_version and
21832         mono_get_runtime_version for a single mono_get_runtime_info method.
21833         
21834         * assembly.c: Added method to remap system assembly versions to the
21835         current executing runtime version. Removed old mapping code.
21836         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
21837         
21838         * icall.c, reflection.c: Track api changes.
21840 2005-02-06  Miguel de Icaza  <miguel@novell.com>
21842         * loader.c (method_from_memberref): Improve error reporting,
21843         produce the class name instead of the typeref/typedef index. 
21845 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
21847         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
21849 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21851         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
21852         stdcall and charset name mangling.  Reorganize the code and add
21853         some tracing stuff.
21855 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21857         * monodiet.c: More iters!
21859         * marshal.c: Iter usage.
21861         * icall.c: Iter usage.
21863         * object.c: Use iters.
21865         * debug-helpers.c: More iters
21867 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21869         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
21870         under win32.
21872 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
21874         * mono-debug-debugger.c: use iters
21876         * class.c, class-internals.h: mono_class_setup_events is static
21877         now
21879         * All callers: use iters
21881 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
21883         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
21884         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
21886 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21888         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
21890         * marshal.h: Add prototypes for ldfld/stfld_remote.
21892         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
21893         this is called during startup.
21894         
21895 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
21897         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
21898         MonoThreadsSync struct private in monitor.c. Changed the way
21899         MonoThreadsSync is allocated so it's faster and there is no
21900         need to keep track of it with a finalizer and it uses less memory.
21901         This also finally allows us to allocate mono objects as ptrfree when
21902         there are no reference fields.
21904 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
21906         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
21907         disappearing link to the GC interface and use them to simplify
21908         the gchandles code.
21910 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
21912         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
21913         stfld_remote which call mono_load/store_field_new. This allows methods
21914         calling ldfld/stfld wrappers to be AOTed.
21916         * console-io.c: Include sys/filio.h under solaris.
21917         
21918         * console-io.c: Include curses.h if needed correctly.
21920 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21921         
21922         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
21923         method->klass as well.
21925         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
21927         * class.c (mono_class_init): Switch on lazy initialization of 
21928         methods.
21930         * class.c (mono_class_get_finalizer): Handle the case when the 
21931         finalizer is inherited.
21933 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21935         * console-io.c: <curses.h> is needed by term.h on solaris.
21937 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
21939         * icall.c, class-internals.h, monodiet.c, class.c: Remove
21940         mono_class_setup_properties where possible. Remove this ftn from
21941         the header file, and make it static.
21943 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
21945         * loader.c: Add missing setup_... call.
21947         * class.c: Add missing setup_... calls.
21949         * class.c (mono_class_init): Switch on lazy initialization of 
21950         the generic vtable.
21951         
21952         * class.c (mono_class_init): Fix generics broken by the recent changes.
21954         * monodiet.c (handle_type): Add missing setup_... calls.
21956         * class.c: Back out garbage in previous patch.
21957         
21958         * class.c: Add missing setup_... calls.
21960         * class.c (mono_class_get_method_from_name_flags): Avoid calling
21961         mono_class_setup_methods () if possible.
21963         * class-internals.h (MonoClass): Add 'has_cctor' flag.
21965         * class-internals.h (MonoCachedClassInfo): New structure.
21967         * class.c: Initialize properties and events fields of MonoClass lazily.
21969         * class.c: Add infrastructure for lazily initializing the methods and
21970         vtable fields of MonoClass. Not yet used.
21972         * class.c (mono_class_get_finalizer): New helper function.
21974         * class.c: Add infrastructure for loading some class related data from
21975         an AOT file.
21977         * object.c: Add infrastructure for initializing the vtable from data
21978         in the AOT file.
21980         * gc.c (run_finalize): Use mono_class_get_finalizer ().
21982         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
21983         appropriate initialization function before accessing parts of the
21984         MonoClass structure.
21986         * marshal.c: Fix warnings.
21987         
21988         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
21990         * mono-debug-debugger.c (get_exception_message): Use 
21991         mono_class_get_method_from_name_flags ().
21993 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
21995         * reflection.c, appdomain.c: Replace a few manual searches that
21996         Zoltan missed. (Paolo approved this part of my initial patch).
21998 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22000         * profiler.c: disable recording statistical events at report time.
22002 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22004         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22005         to byteswap arrays of enum values, too (bug #72080).
22007 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22009         * appdomain.c (set_domain_search_path): Allow this to be called if
22010         domain->setup is not yet set.
22012         * loader.c (mono_method_get_index): New helper function.
22014         * loader.c reflection.c: Use mono_method_get_index ().
22016         * class.c (mono_class_get_method_from_name_flags): New helper method.
22018         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22019         this.
22021         * class.c (mono_class_get_cctor): New helper method.
22023         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22024         mono_class_get_method () to look up methods.
22026 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22028         * console-io.c: Fix the build, this should work on Windows.
22030 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22032         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22033         be set to null to keep things valid
22035 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22037         * icall.c: added Console 2.0 icalls.
22038         * Makefile.am: added console-io.[ch]
22039         * console-io.[ch]: internal calls for Console 2.0 API.
22041 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22043         * class.c: make sure we consider all the interfaces
22044         when calculating max_interface_id (bug found by
22045         Jeroen Frijters running ikvm).
22047 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22049         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22050         valuetype fields to null.
22052         * object.c (set_value): Ditto. Fixes #71669.    
22054 2005-01-31  Martin Baulig  <martin@ximian.com>
22056         * metadata.c (mono_metadata_has_generic_params): New public
22057         function; checks whether something is a generic method.
22059 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22061         * appdomain.c: fix infinite recursion when adding assemblies.
22063 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22065         * object.c: Fix small typo to return all items for Environment.
22066         GetCommandLineArgs.
22068 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22070         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22071         reflection.c: more domain and assembly-unload related fixes
22072         and memory leaks plugs.
22074 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22076         * 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.
22078 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22080         * loader.c (mono_method_signature): Make this method lazy
22081         (mono_get_method_from_token): Don't computate the signature here.
22083         Doing this saves quite a bit of memory. I got 90 kb on starting up
22084         monodoc. It should also save some disk reads on startup.
22086         * *: MonoMethod->signature might be NULL now. You *MUST* use
22087         mono_method_signature.
22089 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22091         * object.c (mono_runtime_get_main_args): Return an array from the
22092         current domain here. Fixes #71938.
22094 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22096         * monitor.c: formatting changes to comply with the
22097         mono coding style and remove #ifdefs from the code.
22099 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22101         * metadata.c, private.h: remove some unneeded data
22102         and use a more compact representation for table schemas.
22104 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22106         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22107         to get a better distribution in hash tables.
22108         * *.c: use mono_aligned_addr_hash() where appropriate.
22109         * assembly.c: make var static.
22111 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22113         * domain-internals.h: Put MonoJitInfo on a diet.
22115         * domain.c: Fix a warning.
22117 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22119         * gc.c: rework the gc handles code to reuse handles
22120         when freed.
22122 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22124         * domain.c: fixed long standing bug in mono_string_equal() which
22125         was brought to light with the ldstr changes.
22127 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22129         * reflection.c: Remove warning by adding missing include for marshal.h
22131 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22133         * domain.c, object.c: change the ldstr_table to hold
22134         MonoString* as keys: makes the runtime isinterned lookup
22135         faster and simplifies memory management.
22137 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22139         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22140         possible to add imperative security checks before calling the icall.
22141         * reflection.c: Return security attributes on the original MonoMethod
22142         (and not the wrapped one). This fix permissions on icalls.
22144 2005-01-25  Dick Porter  <dick@ximian.com>
22146         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22147         the check for mktime() support actually test the mktime() return
22148         value.  "Fixes" bug 71682, though the output is still different to
22149         MS.
22151 2005-01-25  Martin Baulig  <martin@ximian.com>
22153         * class.c (mono_class_is_assignable_from): Make this work for
22154         generic instances.
22156 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22158         * marshal.c (mono_string_utf8_to_builder)
22159         (mono_string_builder_to_utf16): We might not have ownership of the
22160         string. In thise case, we need to create a new buffer.
22162         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22163         be null, in which case, use the default capacity.
22165 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22167         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22168         GC events to the profiler.
22170 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22172         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22173         if you don't want the GC to run.
22175 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22177         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22178         start providing a GC API and keeping different implementations in
22179         their own file.
22180         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22182 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22184         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22185         mmap rather than allocating a huge buffer.
22186         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22187         above.
22189 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22191         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22192         and CheckExecutionRights.
22193         * reflection.c|h: Keep the index of the declarative security to be 
22194         used, instead of the pointer, when AOT compiler is used. Also add 
22195         class initialization when requesting demands.
22196         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22197         CheckExecutionRights. Both properties are now FALSE by default, and
22198         unmodifiable, unless the --security option is used.
22200 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22202         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22203         reflection.c: properly refcount images and assemblies, many leaks fixed.
22205 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22207         * threadpool.c: increase the timeout for threads in the thread pool to
22208         10s.  Fixes bug #67159.
22210 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22212         * class-internals.h: Sun's compiler insists on explicit
22213         signed on bit fields to handle then correctly.
22215 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22217         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22218         Make the size of the array fit only the number of invalid path
22219         chars that we have.
22221         * class.c (_mono_class_get): Improve the error reporting when a
22222         class referenced is not found, to assist debugging. 
22224 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22226         * threads.c: fix off-by-one error.
22227         * domain.c: free data allocated in the domain.
22229 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22231         * reflection.c (mono_method_body_get_object): Fill out exception info
22232         as well.
22234         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22235         structure.
22236         
22237 2005-01-19  Martin Baulig  <martin@ximian.com>
22239         * loader.c (mono_get_method_constrained): Make this work again.
22241 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22243         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22244         guint16 to match the managed side.
22246         * reflection.c (mono_reflection_body_get_object): Fill out local
22247         variables array.
22249         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22250         as well.
22252         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22253         'local_var_sig_token'.
22255 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22257         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22258         System.Drawing.
22260         * reflection.c (mono_method_body_get_object): Handle abstract and
22261         runtime methods.
22263 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22265         * marshal.c, loader.c, class-internals.h, reflection.c:
22266         store the emthod data for a wrapper in an array instead of a list.
22268 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22270         * marshal.c: change the code to allocate memory more
22271         conservatively for method wrappers.
22273 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22275         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22276         fields from MonoClass to the marshal info structure where they belong.
22278 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22280         * class.c, object.c, class-internals.h, marshal.c: rearrange
22281         some fields and tweak some types to lower memory usage.
22283 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22285         * threads.c (signal_thread_state_change): Handle the case when the
22286         target thread is the current thread.
22288         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22290         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22291         emit_ptr_to_object_conv. 
22293         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22294         marshalling. Fixes #71352.
22296 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22298         * metadata.h, blob.h: move table enum to blob.h so it can be included
22299         in any header.
22300         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22301         cut the size of MonoImage/MonoDynamicImage.
22303 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22305         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22307 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22309         * reflection.c, reflection.h, icall.c: add a function to check
22310         if an attribute type is defined for a metadata object.
22312 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22314         * object-internals.h: Added some needed fields from StringBuilder class.
22315         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22317 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22319         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
22320         threads before shutting down the runtime.
22322         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
22324 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22326         * object-internal.h, threads.c: implement stacksize and 
22327         parameterized thread start functionality (requires
22328         matching corlib). Marked broken code for later removal.
22330 2005-01-12  Martin Baulig  <martin@ximian.com>
22332         * class-internals.h (MonoGenericClass): Moved the `initialized'
22333         flag to MonoDynamicGenericClass, removed `init_pending'.
22334         (MonoGenericInst): Added `is_reference' flag.
22336 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
22338         * reflection.c (mono_image_create_pefile): Only set the pe_offset
22339         inside the MSDOS header. Fixes #71201.
22341         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
22342         gc thread.
22343         (mono_domain_finalize): Ditto.
22345 2005-01-12  Martin Baulig  <martin@ximian.com>
22347         * class.c (mono_get_shared_generic_class): Use the cache for
22348         non-dynamic generic classes.
22350         * class-internals.h (mono_class_create_generic_2): Removed
22351         function prototype, this function is now static inside class.c.
22353         * class.c (mono_class_create_generic_2): Made this static, only
22354         call it from mono_class_init() and mono_class_setup_parent().
22355         (collect_implemented_interfaces_aux): Call mono_class_init() on
22356         the interfaces we collect.
22357         (mono_class_setup_vtable): Call mono_class_init (class->parent).
22359 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22361         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
22362         it a real thread handle.
22364         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
22365         MonoJitExceptionInfo, since each catch clause needs its own variable.
22366         
22367 2005-01-11  Dick Porter  <dick@ximian.com>
22369         * image.c (mono_pe_file_open): New variant on mono_image_open()
22370         that does not set up the CLI metadata; used for FileVersionInfo so
22371         it can get the data for windows binaries too.
22372         
22373         * process.c (process_read_string_block): Don't read off the end of
22374         the StringTable block.
22376         These both fix bug 70766.
22378 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
22380         * gc.c: set some fields to NULL at GC cleanup time.
22381         * threads.c: if we quit the main thread, call exit ().
22383 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
22385         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
22387 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
22389         * threads.h, threads.c, object.c: added accessor and settor for
22390         main_thread. Handle it specially when exiting from it: wait
22391         for other foreground threads to exit.
22393 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
22395         * process.c, verify.c: remove some bloat.
22397 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
22399         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
22400         the calling convention to cdecl under win32.
22402 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
22404         * object.c (mono_object_get_size): New function to get the size of
22405         an object instance.
22407         * profiler.c (simple_allocation): Use above.
22409 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
22411         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
22412         ves_icall_System_AppDomain_getRootDomain (as it's not required to
22413         get an appdomain by it's id and we can't assume the root's id is 0).
22414         * domain-internals.h: Change the function prototype to match.
22415         * icall.c: Change the icall table for AppDomain.
22417 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
22419         * locales.c (string_invariant_compare_char): Only compute
22420         GUnicodeTypes in the case where we need them.  Test for ordinality
22421         first and return if so.
22423         From the commit:
22425                 /*
22426                  * FIXME: here we must use the information from c1type and c2type
22427                  * to find out the proper collation, even on the InvariantCulture, the
22428                  * sorting is not done by computing the unicode values, but their
22429                  * actual sort order.
22430                  */
22432 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22434         * loader.c: for P/Invoke methods, allow the "Internal" shared
22435         library name to refer to the calling process symbol namespace.
22437 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
22439         * Makefile.am: Add the security manager to the build.
22440         * security-manager.c|h: New. Initialization of the security manager.
22442 2005-01-07  Dick Porter  <dick@ximian.com>
22444         * threads.c: 
22445         * monitor.c: Update thread state during Monitor and WaitHandle
22446         waits.  Fixes bug 71031.
22448 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
22450         * reflection.c (property_encode_signature): Correctly handle when the
22451         property has no methods.
22453 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
22455         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
22456         
22457         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
22458         fields from mb, not rmb. Fixes #71017.
22460         * marshal.c (emit_ptr_to_str_conv): Add support for 
22461         ByValTStr -> string conversion. Fixes #71015.
22463         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
22465         * mempool.c (mono_mempool_contains_addr): New helper function.
22467 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22469         * metadata.c (mono_metadata_compute_size): Fix size calculation of
22470         HasSematics encoded fields.
22471         
22472         * metadata.c (mono_type_to_unmanaged): Improve error message for 
22473         invalid string marshalling.
22475         * metadata.c: Fix warnings.
22476         
22477 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22479         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
22480         profiler support.
22482 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
22484         * domain.c object.c domain-internals.h: Revert part of r38077 since the
22485         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
22486         tests.
22488 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
22490         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
22491         so methods containing these can be AOTed.
22493 2005-01-03  Martin Baulig  <martin@ximian.com>
22495         * loader.c (find_method): Removed the hack for generic instances.
22496         (method_from_memberref): If our parent is a generic instance, pass
22497         its generic type definition to find_method() and then inflate the
22498         method.
22499         (mono_get_method_constrained): Pass the generic type definition to
22500         find_method() and inflate the method later.
22502         * class-internals.h (MonoStats): Added `generic_class_count'.
22504         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
22505         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
22507         * reflection.c (mono_custom_attrs_from_params): Don't ignore
22508         generic type definitions.
22510 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
22512         * loader.c icall.c: Fix warnings.
22514 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
22516         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
22517         blittable types. Fixes #70864.
22519 2004-12-29  Martin Baulig  <martin@ximian.com>
22521         * icall.c
22522         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
22524         * reflection.c (mono_method_get_object): Create a
22525         "System.Reflection.MonoGenericMethod" for inflated methods; don't
22526         call mono_get_inflated_method().
22528         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
22530 2004-12-27  Martin Baulig  <martin@ximian.com>
22532         * class-internals.h (MonoMethod): Added `is_inflated' flag.
22533         (MonoMethodInflated): Added `inflated' field.
22535         * class.c (mono_class_inflate_generic_method): Don't really
22536         inflate the method here; just set the `is_inflated' flag in the
22537         MonoMethod.
22538         (mono_class_get_inflated_method): Actually inflate the method here
22539         if it's not already inflated; we use the MonoMethodInflated's new
22540         `inflated' field as a cache.
22542 2004-12-26  Martin Baulig  <martin@ximian.com>
22544         * class.c
22545         (inflate_generic_class): Moved some code out of inflate_generic_type().
22546         (mono_class_inflate_generic_method): If we're already inflated,
22547         inflate the context and use the declaring method; ie. make sure
22548         the declaring method of an inflated method is always the generic
22549         method definition.
22550         (mono_class_create_from_typedef): Create
22551         `class->generic_container->context->gclass'.
22553 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
22555         * metadata-internals.h, marshal.c, reflection.c: More
22556         MonoGHashTable->GHashTable.
22558         * domain-internals.h, class.c: Change MonoGHashTable's into
22559         GHashTables for some cases where no gc stuff is used
22561         All users: update apis
22563 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
22565         * metadata.c (builtin_types): Make this `const'. Makes this get
22566         put into the shareable section.
22567         (mono_metadata_init): Casts to make gcc happy.
22569 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
22571         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
22573 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
22575         * icall.c: Added an internal call to retrieve the position and length
22576         of assembly-level declarative security attributes (RequestMinimum, 
22577         RequestOptional and RequestRefuse). This is used by the Assembly class
22578         to re-create the corresponding permission sets.
22580 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
22582         * marshal.c: fix the stelemref wrapper to be type correct
22583         (and faster).
22585 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
22587         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
22588         to do key & 0x7fffffff. Hashtable already does this. It just
22589         results in longer code.
22591 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
22593         * appdomain.c: Bump corlib version.
22594         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
22595         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
22596         * reflection.c|h: Add functions to get declarative security infos
22597         (blob position and length) for assemblies, classes and methods.
22599 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
22601         * reflection.c: sort the constant table (bug #70693).
22603 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
22605         * object-internals.h, threads.c, domain.c: add accessors for
22606         the MonoThread and MonoDomain tls keys.
22608 2004-12-18  Martin Baulig  <martin@ximian.com>
22610         * class.c (inflate_generic_type): If we're inflating a generic
22611         instance, set `ngclass->context->container = context->container';
22612         ie. the container we inflated into.
22614         * metadata.c (mono_metadata_parse_generic_param): Reflect above
22615         inflate_generic_type() changes.
22617 2004-12-17  Martin Baulig  <martin@ximian.com>
22619         * class-internals.h
22620         (MonoGenericClass): Replaced `MonoType *generic_type' with
22621         `MonoClass *generic_class'.  Removed `dynamic_info'; if
22622         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
22623         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
22625 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
22627         * exception.c (mono_exception_from_token): New helper function.
22629 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
22631         * assembly.c (mono_assembly_load_with_partial_name): Call 
22632         mono_assembly_loaded before invoking the preload hooks. Fixes
22633         #70564.
22635         * object-internals.h (MonoThread): Change culture_info and 
22636         ui_culture_info into an array.
22638         * threads.c: Cache culture info objects from more than one appdomain.
22640         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
22641         current UI culture.
22643 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
22645         * threads.h threads.c appdomain.c: Clear the culture_info field of
22646         all threads during unloading if they point to an object in the dying
22647         appdomain.
22649 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
22651         * culture-info.h (TextInfoEntry): New struct
22652         * object-internals.h: sync with managed
22653         * locales.c: fill the `text_info_data' field
22654         * culture-info-tables.h: update
22656 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
22658         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
22659         collector.
22661 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
22663         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
22664         (ves_icall_ModuleBuilder_getMethodToken): Ditto
22666 2004-12-12  Martin Baulig  <martin@ximian.com>
22668         * mono-debug-debugger.c (write_type): If we're an enum and the
22669         builtin types have already been initialized, call mono_class_init().
22671 2004-12-11  Martin Baulig  <martin@ximian.com>
22673         * metadata.c (mono_metadata_load_generic_params): Added
22674         `MonoGenericContainer *parent_container' argument; automatically
22675         compute `container->is_method'; pass the correct owner to
22676         get_constraints().      
22678         * reflection.c (compare_genericparam): Sort the GenericParam table
22679         according to increasing owners. 
22681 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
22683         * profiler.c: allow disabling the default profiler.
22685 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
22687         * decimal.c, icall.c: allow disabling System.Decimal support.
22689 2004-12-09  Marek Safar <marek.safar@seznam.cz>
22691         * reflection.c: Add support for null attribute arguments.
22693 2004-12-09  Martin Baulig  <martin@ximian.com>
22695         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
22696         names to get rid of compiler warnings.
22698 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22700         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
22701         mono_marshal_load_type_info (). Fixes #69625.
22702         (mono_marshal_get_ptr_to_struct): Likewise.
22704 2004-12-08  Martin Baulig  <martin@ximian.com>
22706         * mono-debug.h: Bumped version number to 47.
22708         * mono-debug-debugger.c
22709         (mono_debugger_event_handler, mono_debugger_event): Take two
22710         guint64 arguments insteed of a gpointer and a guint32.  
22712 2004-12-08  Martin Baulig  <martin@ximian.com>
22714         * debug-mono-symfile.h
22715         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
22716         `address' to `native_offset'.
22718 2004-12-08  Martin Baulig  <martin@ximian.com>
22720         * class.c (mono_class_create_from_typespec): Only inflate if we
22721         either have `context->gclass' or `context->gmethod'.
22723 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
22725         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
22727         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
22729         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
22731         * reflection.c (mono_assembly_get_object): Remove the workaround put
22732         in for the release.
22733         
22734         * appdomain.c: Use the corlib_internal field from MonoAssembly.
22736         * appdomain.c: Bump corlib version.
22738         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
22739         be visible in other appdomains.
22741 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
22743         * threads.c: Interlocked inc and dec for longs were messed up,
22744         use a KISS based impl for this. Fixes 70234
22746 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
22748         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
22750 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
22752         * icall.c: fix to follow policy not to allow struct
22753         arguments in icalls.
22755 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22757         * process.c: make the patch that handles spaces in file paths work
22758         on mono/windows too.
22760 2004-12-06  Martin Baulig  <martin@ximian.com>
22762         * class.c (mono_class_create_generic): Call
22763         mono_class_setup_supertypes() if we're dynamic.
22764         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
22766 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
22768         * object-internals.h: Add new fields to MonoThread.
22770         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22772         * icall.c threads-types.h threads.c: Add new icalls.
22774         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
22776         * object-internals.h (MonoReflectionAssembly): Sync object layout with
22777         managed side.
22779         * appdomain.c: Bump corlib version.
22781         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
22782         internal assemblies. Fixes #69181.
22784 2004-12-05  Martin Baulig  <martin@ximian.com>
22786         * class.c (mono_class_inflate_generic_signature): Make this a
22787         no-op if `context' is NULL or we don't have any type parameters;
22788         also copy `sentinelpos'.        
22790 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
22792         * image.c: Add unbox_wrapper_cache.
22794         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
22796         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
22797         function generator.
22798         
22799         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
22800         Fixes #70173.
22802         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
22803         
22804 2004-12-04  Martin Baulig  <martin@ximian.com>
22806         * loader.c (mono_method_get_signature_full): New public function;
22807         like mono_method_get_signature(), but with an additional
22808         `MonoGenericContext *' argument.
22810         * class.c (mono_class_inflate_generic_signature): Formerly known
22811         as inflate_generic_signature(); make this public.
22813 2004-12-04  Martin Baulig  <martin@ximian.com>
22815         * metadata.c
22816         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
22817         instead of a `MonoGenericContainer *'.  
22818         (mono_metadata_parse_array_full): Likewise.
22819         (mono_metadata_parse_signature_full): Likewise.
22820         (mono_metadata_parse_method_signature_full): Likewise.
22821         (mono_metadata_parse_generic_inst): Likewise.
22822         (mono_metadata_parse_generic_param): Likewise.
22823         (mono_metadata_parse_mh_full): Likewise.
22824         (mono_type_create_from_typespec_full): Likewise.
22826 2004-12-03  Martin Baulig  <martin@ximian.com>
22828         * class-internals.h (MonoGenericContainer): Replaced the
22829         `MonoGenericContext * pointer with a `MonoGenericContext'
22830         structure and made it the first element.
22832 2004-12-03  Martin Baulig  <martin@ximian.com>
22834         * class.c
22835         (inflate_generic_type): Set the `context->container' when creating
22836         a new MonoGenericContext.
22837         (mono_class_inflate_generic_method): Likewise.
22838         (mono_class_create_from_typespec): Just use `context->container'
22839         to get the container.
22841         * loader.c (method_from_methodspec): Set `context->parent' from
22842         `context->container' - and if that's a method container, use its
22843         parent.  Also set the `context->container' when creating a new
22844         MonoGenericContext.
22845         (mono_get_method_from_token): Use just `context->container' to get
22846         the container.
22848         * metadata.c (do_mono_metadata_parse_generic_class): Also set
22849         `gclass->context->container'.
22851         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
22852         the `context->container' when creating a new MonoGenericContext.
22854 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
22856         * reflection.c (compare_genericparam): Sort params with identical
22857         owner by their number. Fixes gen-111 on sparc.
22859 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22861         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
22862         around the domain changes.
22864         * appdomain.c (mono_domain_unload): Handle the case when the thread
22865         calling Unload is itself being aborted during unloading. Fixes #70022.
22867         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
22869         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
22870         checkpoint_func as an icall so it gets a wrapper.
22871         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
22872         in the cross-appdomain wrappers too.
22874         * threads.c (mono_thread_has_appdomain_ref): Make this public.
22876         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
22878         * reflection.c: Fix some memory leaks.
22879         
22880 2004-12-02  Martin Baulig  <martin@ximian.com>
22882         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
22884         * metadata.c (generic_class_cache): New static hashtable.
22885         (mono_metadata_lookup_generic_class): New public method.
22887 2004-12-02  Martin Baulig  <martin@ximian.com>
22889         * class.c (mono_class_create_from_typedef): Call
22890         mono_class_setup_parent() and mono_class_create_mono_type() before
22891         parsing the interfaces.
22893 2004-12-02  Martin Baulig  <martin@ximian.com>
22895         * metadata.c (generic_inst_cache): New static hashtable.
22896         (mono_metadata_lookup_generic_inst): New public function.
22897         (mono_metadata_inflate_generic_inst): New public function.
22898         (mono_metadata_parse_generic_inst): New public function.
22899         (do_mono_metadata_parse_generic_class): Use the new
22900         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
22901         since this'll also use the cache.
22903         * reflection.c (mono_reflection_bind_generic_method_parameters):
22904         Use mono_metadata_lookup_generic_inst() to use the new cache.
22906         * class.c (inflate_mono_type): Use
22907         mono_metadata_inflate_generic_inst() to inflate a generic
22908         instance; this'll also use the new cache.
22910         * loader.c (method_from_methodspec): Use
22911         mono_metadata_parse_generic_inst() and
22912         mono_metadata_inflate_generic_inst() rather than parsing it
22913         manually, so we can use the new cache.
22915 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
22917         * threads.c (wait_for_tids): Do not incorrectly free threads when 
22918         the wait times out.
22920 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
22922         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
22923         iter->args based on whether parameters are passed in registers (i.e.
22924         MONO_ARCH_REGPARMS is defined)
22926 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
22928         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
22929         the exception message. Fixes #70070.
22930         (method_from_methodspec): Fix warnings.
22932 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22934         * process.c: (complete_path) return the path quoted
22936 2004-12-01  Martin Baulig  <martin@ximian.com>
22938         * class-internals.h (MonoGenericInst): New structure.
22939         (MonoGenericClass): Replaced `type_argc', `type_argv' and
22940         `is_open' with `MonoGenericInst *inst'.
22941         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
22942         `is_open' with `MonoGenericInst *inst'.
22944 2004-11-30  Martin Baulig  <martin@ximian.com>
22946         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
22948         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
22949         to `generic_class_cache'.
22951         * metadata.c
22952         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
22953         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
22954         (mono_generic_inst_is_valuetype): Renamed to
22955         mono_generic_class_is_valuetype().
22957         * class-internals.h
22958         (MonoGenericInst): Renamed to MonoGenericClass.
22959         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
22960         (MonoClass): Renamed `generic_inst' to `generic_class'.
22961         (MonoGenericContext): Renamed `ginst' to `gclass'.
22963         * object-internals.h
22964         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
22966         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
22967         mono_reflection_generic_class_initialize().
22969         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
22970         now known as "System.Reflection.MonoGenericClass".
22971         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
22973 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
22975         * class-internals.h: Added a flag field to MonoClass to cache the
22976         declarative security attributes actions associated with the class.
22977         * domain-internals.h: Added booleans to MonoJitInfo to cache the
22978         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
22979         applicable to the JITted method.
22980         * reflection.c|h: Added functions to extract (as flags) which security
22981         actions are available (declaratively) for a method, class or assembly.
22982         * metadata.c|h: Added functions to search the declarative security
22983         table in the metadata.
22984         
22985 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
22987         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
22988         EXPORTEDTYPES are already in the class name cache, so there is no
22989         need to add extra code here to look at them. Just removes a bit of
22990         cruft.
22992         (ves_icall_System_Environment_get_TickCount): No need for #if
22993         WINDOWS. We already have the code in io-layer.
22995 2004-11-28  Martin Baulig  <martin@ximian.com>
22997         * loader.c
22998         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
22999         Fixes gen-112.cs.
23001 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23003         * assembly.c (do_mono_assembly_open): Instead of having a
23004         conditional WITH_BUNDLE, incorporate support for bundles here, by
23005         having a global `bundles' variable holding a pointer to the actual
23006         bundles. 
23008         (mono_register_bundled_assemblies): New API call used by the
23009         bundle code. 
23011         See mkbundle.1 for details.
23012         
23013 2004-11-27  Martin Baulig  <martin@ximian.com>
23015         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23016         the vtable for generic methods.
23018 2004-11-26  Martin Baulig  <martin@ximian.com>
23020         * metadata.c
23021         (mono_metadata_generic_method_hash): New public function.
23022         (mono_metadata_generic_method_equal): Likewise.
23024         * class-internals.h
23025         (MonoGenericContainer): Added `GHashTable *method_hash'.
23027         * reflection.c (ReflectionMethodBuilder): Added
23028         `MonoGenericContainer *generic_container'.
23029         (reflection_methodbuilder_to_mono_method): Don't create a new
23030         MonoGenericContainer each time we're called.
23031         (mono_reflection_bind_generic_method_parameters): Use
23032         `container->method_hash' to cache the results so we don't create a
23033         different method if we're called several times with the same
23034         arguments.
23036         * loader.c (method_from_methodspec): Use the new
23037         `container->method_hash' here, too.
23039 2004-11-26  Martin Baulig  <martin@ximian.com>
23041         * class.c (inflate_generic_signature): Correctly compute
23042         `res->has_type_parameters'.
23043         (mono_class_vtable): Use the `has_type_parameters' flag to
23044         determine whether we're a generic method.
23046         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23048 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23050         * object.c (mono_runtime_run_main): Fix a small memory leak.
23052 2004-11-25  Martin Baulig  <martin@ximian.com>
23054         * class.c (set_generic_param_owner): Fixed the loop.
23056 2004-11-25  Martin Baulig  <martin@ximian.com>
23058         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23059         generic methods.
23061 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23063         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23064         names. Fixes #69787.
23066 2004-11-24  Martin Baulig  <martin@ximian.com>
23068         * class.c (mono_class_create_generic_2): If we don't have a
23069         `ginst->parent', inflate `gklass->parent' to get our parent.
23071 2004-11-24  Martin Baulig  <martin@ximian.com>
23073         * reflection.c (compare_genericparam): Correctly sort the
23074         GenericParam table; fixes #69779.
23076 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23078         * reflection.c: When writing a PE file, don't create a huge
23079         buffer in memory. Just write the arrays we have to the file.
23080         This reduces memory usage.
23082         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23083         globally.
23085 2004-11-17  Martin Baulig  <martin@ximian.com>
23087         * class.c (mono_class_init): Don't setup `class->parent' for
23088         dynamic instances; moved this to mono_class_generic_2().
23089         (mono_class_create_generic): Also set `klass->inited' for dynamic
23090         generic instances.
23091         (mono_class_create_generic_2): Don't do anything for dynamic
23092         generic instances.  Set `klass->parent' here and also call
23093         mono_class_setup_parent() here. 
23095         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23096         `MonoType *parent' argument; set `ginst->parent' before calling
23097         mono_class_create_generic_2(), so we set the correct parent.
23099 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23101         * reflection.c: allow getting attributes from ModuleBuilder
23102         (used by ikvm).
23104 2004-11-17  Martin Baulig  <martin@ximian.com>
23106         * class.c (mono_class_create_from_typedef): If a type parameter is
23107         inherited from an outer class, set its owner to that class.
23109 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23111         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23112           for (int*) written size. This fixes bug #69592.
23114 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23116         * icall.c: Added IsAuthenticodePresnet internal call.
23117         * image.c|h: New function that check a MonoImage for an Authenticode
23118         signature in the certificate PE data directory.
23119         * security.c|h: New internal call to ask the runtime if an 
23120         Authenticode signature seems referenced in the PE header.
23122 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23124         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23126         * reflection.c (mono_image_create_pefile): Free the assembly streams
23127         after writing out the assembly file.
23129         * object.c (mono_runtime_run_main): Fix small memory leak.
23131         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23132         property access modifiers. Fixes #69389.
23134 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23136         * domain.c, object.c, object-internals.h, domain-internals.h,
23137         object.h, marshal.c: keep dynamic code info per domain.
23139 2004-11-15  Martin Baulig  <martin@ximian.com>
23141         * class.c (mono_type_get_name_recurse): Put type arguments in
23142         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23143         see bug #68387.
23145 2004-11-15  Martin Baulig  <martin@ximian.com>
23147         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23148         (mono_class_setup_vtable): When computing `the_cname' for a
23149         generic instance, don't include the namespace since we'd otherwise
23150         add it twice.
23152 2004-11-15  Martin Baulig  <martin@ximian.com>
23154         * class.c (mono_class_create_generic): Changed return type to void.
23155         (mono_class_create_generic_2): New public function; setup
23156         `class->method', `class->field' and `class->interfaces' here
23157         instead of in mono_class_init().
23159         * class.h (mono_class_create_generic): Moved to class-internals.h.
23161 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23163         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23164         rather than writing to memory, write to this file. Right now,
23165         we are just writting into a buffer, and copying that. However
23166         we can avoid the buffer later.
23168         (mono_dynamic_stream_reset): new function
23170         * icall.c, object-internals.h: update for the above.
23172 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23174         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23175         have been using gc'd memory. First it is slower, unlikely
23176         the comment in the source code said, secondly, it increases
23177         our footprint to do it in the gc.
23179         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23180         the method so that it does not have to copy to managed code.
23182 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23184         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23186 2004-11-12  Martin Baulig  <martin@localhost>
23188         * reflection.c (mono_image_create_token): Allow generic method
23189         definitions here, since they may appear in an `.override'; see
23190         gen-98/gen-99 for an example.
23192 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23194         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23195         #69365.
23197         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23198         descriptive.
23200 2004-11-11  Martin Baulig  <martin@ximian.com>
23202         * class.c (mono_class_setup_vtable): In an explicit interface
23203         implementation, the method name now includes the arity.
23205 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23207         * object.c (mono_array_full_copy): Fix warning.
23209 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23211         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23212         mono_class_get_method_from_name() instead.
23213         
23214         * class-internals.h: Added two new types of wrappers. 
23215         Added MonoRemotingTarget enum. Added new trampoline function type, which
23216         takes an additional MonoRemotingTarget value as parameter, so it is
23217         possible to request a trampoline for a specific target.
23218         
23219         * class.c: Added new mono_class_get_method_from_name() method.
23220         
23221         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23222         general remoting sinks and one specific for cross domain calls.
23223         
23224         * debug-helpers.c: Added new wrapper names.
23225         
23226         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23227         of a remote class.
23228         
23229         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23230         
23231         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23232         with several other methods (mono_marshal_get_xappdomain_dispatch,
23233         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23234         and others) can generate a fast remoting wrapper for cross domain calls.
23235         More information can be found in docs/remoting.
23236         Other changes: Removed mono_find_method_by_name, and used
23237         mono_class_get_method_from_name instead.
23238         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23239         is stored in the remoting invoke hashtable.
23240         
23241         * marshal.h: published the new method for getting the xdomain wrapper,
23242         and also added a method for getting the adequate wrapper for a given
23243         method and target.
23244         
23245         * object-internals.h, object.c: Added a couple of methods for capying and
23246         cloning arrays.
23247         Modified mono_install_remoting_trampoline, which takes the new remoting
23248         trampoline that has a remoting target as parameter.
23249         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23250         will return the most suitable vtable for the target.
23251         Added mono_remote_class_vtable, which returns the vtable of a remote class
23252         (which can be the normal remoting vtable or the xdomain vtable).
23253         
23254         * threads.c: the xdomain invoke and dispatch wrappers must also be
23255         protected against interruptions.
23257 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23259         * icall.c: use memmove in BlockCopyInternal when the source and
23260         destination arrays are the same.
23262 2004-11-09  Martin Baulig  <martin@ximian.com>
23264         * class-internals.h (MonoGenericContainer): Removed `method' and
23265         `signature', replaced them with `is_method' and `is_signature'
23266         flags.  Added `context'.
23268         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23269         instead of a `MonoGenericContainer *'.
23271         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23272         for dynamic type parameters.
23273         (mono_metadata_load_generic_params): Setup `container->context'.
23275         * reflection.c (mono_reflection_setup_generic_class): Setup
23276         `tb->generic_container->context'.
23277         (do_mono_reflection_bind_generic_parameters): Use
23278         mono_class_inflate_generic_type() to correctly inflate types,
23279         rather than using our own hack just for MONO_TYPE_VAR.
23281 2004-11-09  Martin Baulig  <martin@ximian.com>
23283         * class.c (mono_class_inflate_generic_method): Small fix; don't
23284         crash here.
23286         * icall.c
23287         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23288         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23289         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23290         (ves_icall_Type_BindGenericParameters): Likewise.
23291         (ves_icall_Type_get_IsGenericInstance): Likewise.
23292         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23293         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23294         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23295         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23297 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23299         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23300         assembly versions and public key tokens. Fixes #69113.
23302 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23304         * metadata.c: fix bug introduced with the type cache changes
23305         on 2004-11-06.
23307 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23309         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23310         the MonoClass pointer instead of the token in exception clauses.
23311         * reflection.c: updates for the above and make the code not depend
23312         on the structure of MonoExceptionClause.
23314 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23316         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23317         Add support for dynamic assemblies. Fixes #69114.
23319         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
23321 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
23323         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
23324         since most only those methods use it. the code member of
23325         MonoMethodPInvoke was dead, so that can be removed too. Also,
23326         remove inline_count (again, not used), and move slot so that it
23327         can share bits with some other flags. This saves 8 bytes in the
23328         structure and gives us about 50 kb back for mcs helloworld.cs
23330         * *.[ch]: Do naming changes for the above.
23332         * loader.c (mono_method_get_header): Lazily init the header
23333         on first access.
23334         (mono_get_method_from_token): don't init the header here
23335         (mono_free_method): the header may never be allocated
23337         Overall, this saves 150 kb of unmanaged allocations
23338         for mcs helloworld.cs. That accounts for 10% of the unmanaged
23339         memory at runtime.
23340         
23341         * loader.c, loader.h (mono_method_get_header): new accessor.
23343         * *.[ch]: use the above method. Prepares us to lazily load
23344         the header.
23346         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
23347         three warnings, which are actual bugs (see 69206).
23349         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
23350         unused. Saves a cool 4 bytes / method.
23352 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
23354         * metadata.c (builtin_types): Add types for System.Object here.
23355         (mono_metadata_parse_type_full): Cache MonoType*'s that are
23356         for a class or valuetype from klass->this_arg or klass->byval_arg.
23358         On mcs for a hello world, this gets us down from 21836 MonoType's
23359         to 14560.
23361         (mono_metadata_free_type): Account for the above change.
23363 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
23365         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23366         exception instead of asserting if name is null.
23367         (ves_icall_System_AppDomain_GetData): Ditto.
23369 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
23371         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
23372         EnumBuilder.
23374         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
23375         Return NULL when the domain does not have entry_assembly set.
23377         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
23378         Add a 'resource_modules' argument.
23379         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
23381         * reflection.c (mono_reflection_create_runtime_class): Move setting
23382         of wastypebuilder here, so mono_get_type_object () returns a MonoType
23383         for enums too.
23385         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
23386         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
23387         Throw an ArgumentNullException if 'ptr' is null.
23389         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
23390         assemblies here. Fixes #69020.
23392 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
23394         * reflection.c (build_compressed_metadata): Fix the previous patch for
23395         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
23396         the stack.
23398 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
23400         * assembly.c (mono_assembly_names_equal): Allow a match if one of
23401         the cultures is false. Fixes #69090.
23403         * reflection.c (build_compressed_metadata): Fix invalid memory read 
23404         detected by valgrind.
23405         
23406         * reflection.c (mono_reflection_get_type): Avoid triggering a 
23407         TypeResolve multiple times for the same type. Fixes #65577.
23409 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
23411         * marshal.c: Avoid using ldftn to call managed functions. It is
23412         much slower than just a call.
23414         * reflection.c (mono_module_get_object): free the basename we
23415         allocate here from glib.
23416         
23417         * reflection.c (ensure_runtime_vtable): make sure to free
23418         overrides.  Also, we were allocating an array of MonoMethod not an
23419         array of MonoMethod*.
23421         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
23423         * image.c (mono_image_close): free image->guid here.
23425 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
23427         * reflection.c: Fix some spec conformance issues with the PE file
23428         structures so mcs compiled apps run on the Net 2.0 beta.
23430 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
23432         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
23433         Implement this. Fixes #67264.
23435         * debug-helpers.h debug-helpers.c marshal.c: Move 
23436         mono_find_method_by_name to debug-helpers.c.
23438 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
23440         * object.c (mono_release_type_locks): type_initialization_hash is
23441         a GHashTable.
23443         * reflection.c object.c object-internals.h: Fix warnings.
23445         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
23446         without accessors. Fixes #61561.
23448         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
23449         application base from the root domain if not set. Fixes #65641.
23450         (mono_runtime_init): Fix warning.
23452 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23454         * appdomain.c: call mono_thread_pool_init.
23455         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
23456         of worker threads based on the number of CPUs and the environment
23457         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
23458         for non-windows (windows) systems.
23460 2004-10-27  Chris Toshok  <toshok@ximian.com>
23462         * mono-debug-debugger.c (write_class): don't call mono_class_init
23463         here, as even with the check for (!klass->init_pending), we get
23464         into a situation where we're hitting cycles in class
23465         initialization.  Fixes #68816.
23467 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
23469         * image.c: Avoid overwriting values in the loaded_images_hash when an
23470         assembly is loaded multiple times. Fixes #61152.
23472         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
23473         so multiple satellite assemblies for the same name can be loaded.
23474         Fixes #68259.
23476         * mono_domain_assembly_preload: Actually return the loaded assembly, 
23477         not NULL.
23479         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
23480         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
23482         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
23483         pending finalizers are not invoked after the appdomain has been 
23484         unloaded. Fixes #67862.
23486 2004-10-22  Martin Baulig  <martin@ximian.com>
23488         * mono-debug-debugger.c
23489         (mono_debugger_runtime_invoke): Don't box valuetypes.
23491 2004-10-22  Chris Toshok  <toshok@ximian.com>
23493         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
23494         don't hide private methods.
23496 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
23498         * icall.c: Allows the runtime to "share" (when known) the public key
23499         token of an assembly. This avoid the need to recalculate the token 
23500         (from the public key) in managed code.
23502 2004-10-21  Chris Toshok  <toshok@ximian.com>
23504         * debug-helpers.c (append_class_name): argh, revert last patch.
23505         
23506 2004-10-21  Chris Toshok  <toshok@ximian.com>
23508         * debug-helpers.c (append_class_name): use '+' as the delimiter,
23509         not '/', so that it matches what the debugger uses to look up
23510         methods.
23512 2004-10-21  Martin Baulig  <martin@ximian.com>
23514         * mono-debug-debugger.c (mono_debugger_throw_exception): New
23515         public method; this is called each time an exception is thrown and
23516         allows the debugger to use exception catch points.
23518 2004-10-21  Martin Baulig  <martin@ximian.com>
23520         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
23521         the stack pointer and the exception object in some struct and pass
23522         that to the debugger.
23524 2004-10-21  Chris Toshok  <toshok@ximian.com>
23526         * mono-debug-debugger.c (do_write_class): add instance/static
23527         event support.  We don't expose "raise" or "other" yet.
23528         (event_is_static): new method.
23530 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
23532         * mono-debug-debugger.c
23533         (mono_debugger_handle_exception): Remove
23534         bogus return value for fussy compilers.
23536 2004-10-20  Martin Baulig  <martin@ximian.com>
23538         * mono-debug-debugger.c
23539         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
23540         (mono_debugger_handled_exception): Likewise.
23542 2004-10-20  Martin Baulig  <martin@ximian.com>
23544         * mono-debug-debugger.h (MonoDebuggerEvent): Added
23545         MONO_DEBUGGER_EVENT_EXCEPTION.
23547         * mono-debug-debugger.c (mono_debugger_handle_exception): New
23548         public function to send the debugger a notification for an
23549         exception and inform it about a catch/finally clause.
23551 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
23553         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
23554         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
23555         fix 2.95 build. 
23557         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
23559 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
23561         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
23562         marshalled as [In,Out]. Fixes #58325.
23564 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
23566         * reflection.c (mono_method_body_get_object): Implement some fields.
23568 2004-10-12  Martin Baulig  <martin@ximian.com>
23570         * reflection.c (mono_reflection_bind_generic_parameters): Small
23571         fix, correctly retrieve our parent from a generic instance.
23573 2004-10-12  Martin Baulig  <martin@ximian.com>
23575         * metadata.c (mono_metadata_generic_param_equal): We always have
23576         an owner.
23578         * class.c
23579         (mono_class_from_generic_parameter): We need to have an owner.
23580         (my_mono_class_from_generic_parameter): Likewise.
23582         * reflection.c (mono_reflection_setup_generic_class): Renamed to
23583         mono_reflection_create_generic_class() and added a new
23584         mono_reflection_setup_generic_class().  
23585         (mono_reflection_initialize_generic_param): If we're a nested
23586         generic type and inherited from the containing class, set our
23587         owner to the outer class.
23589 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
23591         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
23593         * reflection.c (mono_method_body_get_object): New function to create
23594         a MethodBody object.
23596         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
23598 2004-10-11  Martin Baulig  <martin@ximian.com>
23600         * metadata.c (_mono_metadata_type_equal): Renamed to
23601         do_mono_metadata_type_equal() and made static.
23603 2004-10-11  Martin Baulig  <martin@ximian.com>
23605         * appdomain.c: Bump corlib version number to 28.
23607 2004-10-10  Martin Baulig  <martin@ximian.com>
23609         * class-internals.h
23610         (MonoGenericInst): Added `MonoGenericContainer *container'.
23611         (MonoGenericMethod): Likewise.
23612         (MonoGenericContext): Likewise.
23613         (MonoGenericParam): Added `MonoGenericContainer *owner'.
23615         * metadata.c
23616         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
23617         (do_mono_metadata_parse_generic_inst): Likewise.
23618         (mono_metadata_parse_type_full): New public method.  This is the actual
23619         mono_metadata_parse_type() implementation - with an additional
23620         `MonoGenericContainer *' argument.
23621         (mono_metadata_parse_array_full): Likewise.
23622         (mono_metadata_parse_signature_full): Likewise.
23623         (mono_metadata_parse_method_signature_full): Likewise.
23624         (mono_metadata_parse_mh_full): Likewise.
23625         (mono_type_create_from_typespec): Likewise.
23626         (mono_metadata_interfaces_from_typedef_full): New public method;
23627         this is similar to the other _full() methods, but we take a
23628         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
23629         (mono_metadata_parse_generic_param): Take an additional
23630         `MonoGenericContainer *' argument and lookup the MonoGenericParam
23631         from that container.
23632         (mono_metadata_generic_param_equal): New static method to compare
23633         two type parameters.
23634         (_mono_metadata_type_equal): New static method; takes an
23635         additional `gboolean signature_only' argument - if true, we don't
23636         compare the owners of generic parameters.
23637         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
23638         with a TRUE argument - do a signature-only comparision.
23640         * loader.c: Use the new _full() methods and pass the
23641         MonoGenericContainer to them.
23643         * object-internals.h (MonoReflectionTypeBuilder): Added
23644         `MonoGenericContainer *generic_container' field.
23645         (MonoReflectionMethodBuilder): Likewise.
23647 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
23649         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
23650         case initial images of dynamic assemblies.
23652         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
23654         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
23656         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
23657         length of event->other array.
23658         (typebuilder_setup_events): Ditto.
23660         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
23661         'assembly_by_name' and add an 'assemblies' list.
23663         * assembly.h assembly.c: Add a new search hook for determining whenever
23664         an assembly is already loaded. Use this instead of searching in the
23665         loaded_assemblies list.
23667         * domain.c appdomain.c: Implement the new search hook so loaded 
23668         assemblies are now scoped by appdomain. Fixes #67727.
23670 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
23672         * threads.c (mono_thread_attach): Initialize synch_lock field so
23673         mono_thread_detach works again.
23675         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
23676         'lib' too. Fixes #63130.
23678 2004-10-06  Jackson Harper  <jackson@ximian.com>
23680         * culture-info-tables.h: regenerated.
23682 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
23684         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
23685         implemented by other interfaces in the result. Fixes #65764.
23686         
23687         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23688         Handle unloadable modules without crashing.
23690         * image.c (load_modules): Revert the previous patch since modules must
23691         have a fixed index inside the array.
23692         
23693         * image.c (load_modules): Don't include native modules in the modules
23694         array.
23696 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
23698         * reflection.h: Add param_defaults field.
23700         * reflection.c: Add support for parameter defaults in dynamic methods.
23701         Fixes #64595.
23703         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23704         an empty string when a type has no namespace. Fixes #64230.
23706 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
23708         * tabledefs.h: Added "internal" security actions to support non-CAS
23709         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
23710         Note: they do not seems to be used anymore in 2.0 (new metadata format)
23712 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
23714         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
23715         constructor of abstract class. Fixes #61689.
23717 2004-10-04  Martin Baulig  <martin@ximian.com>
23719         * class-internals.h (MonoGenericContainer): New type.
23720         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
23721         `MonoGenericContainer *generic_container'.
23722         (MonoClass): Replaced `gen_params' and `num_gen_params' with
23723         `MonoGenericContainer *generic_container'.
23725         * metadata.c (mono_metadata_load_generic_params): Return a
23726         `MonoGenericContainer *' instead of a `MonoGenericParam *';
23727         removed the `num' argument.
23729 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
23731         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
23732         for dynamic images.
23734         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
23735         machine fields.
23737         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
23739         * reflection.c: Save pe_kind and machine values into the generated
23740         image file.
23742         * appdomain.c: Bump corlib version number.
23744         * object-internals.h: Reorganize layout of LocalBuilder.
23746         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
23747         New helper function.
23749         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
23750         created MonoType for dynamic types. Fixes #66180.
23752 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
23754         * threadpool.c: the ares hashtable needs a critical section around it.
23755         this prevents some nasty segfaults
23757 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
23759         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
23760         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
23761         bug 67324).
23762         
23763 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23765         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
23766         
23767 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
23769         * image.c: Always canonicalize image file names, to avoid loading
23770         the same assembly twice when referenced using a relative path.
23772 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
23774         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
23776         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
23778         * marshal.c: Fix warnings.
23780 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
23782         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
23783         attempting to marshal the delegate_trampoline as the method_addr.
23784         This patch has a static hashtable of marshalled delegates so that 
23785         we can map delegate_trampoline addresses back to delegates.  This
23786         allows a delegate passed to managed code to be passed back into native
23787         code.  Fixes #67039
23789 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23791         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
23793         * reflection.c (method_encode_code): Align method headers properly.
23794         Fixes #66025.
23796 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23798         * marshal.c: In the runtime invoke wrapper, reset the abort
23799         exception if it is cached. This avoids the automatic rethrowal of 
23800         the exception after the catch of the wrapper. Also check for pending
23801         interruptions before calling the managed method. This is done using
23802         the new method emit_thread_force_interrupt_checkpoint, since the
23803         normal checkpoint method is ignored when running the invoke wrapper.
23804         * object.c: If the abort exception is rethrown, set the abort_exc
23805         field of the thread, so it will be rethrown aftere every catch.
23806         * threadpool.c: Only run an interruption checkpoint if what has been
23807         requested is a stop of the thread (aborts will be ignored).
23808         * threads.c: By default, a thread will now never be interrumped while
23809         running the runtime invoke wrapper (this ensures that runtime_invoke
23810         will always return to the caller if an exception pointer is provided).
23811         There is a new special method mono_thread_force_interruption_checkpoint()
23812         to force an interruption checkpoint even if running a protected
23813         wrapper, which is used by the same runtime invoke wrapper to do a check
23814         at a safe point.
23816 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
23818         * object.c, object-internals.h: Implemented mono_release_type_locks,
23819         which releases the cctor locks held by a thread.
23820         * threads.c, threads.h: In thread_cleanup, release cctor locks held
23821         by a thread. Added mono_thread_exit() method to be used to safely stop
23822         a thread.
23824 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23826         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23827         Move null check before dereference.  Avoid indexing beyond the end
23828         of the 'modules' array.
23830 2004-09-28  Raja R Harinath  <rharinath@novell.com>
23832         * metadata-internals.h (MonoImage): Add module_count field.
23833         * image.c (load_modules): Set image->module_count.
23834         (mono_image_load_file_for_image): Use image->module_count.
23835         * reflection.c (mono_image_load_module): Append to image->modules array 
23836         of dynamic assembly.
23837         (mono_module_get_object): Fix loop to actually increment index.
23838         Use image->module_count.
23839         * assembly.c (mono_assembly_load_references): Use image->module_count.
23840         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
23841         Likewise.
23843 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
23845         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
23846         Avoid assert on generic types.
23848 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
23850         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
23852         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
23854         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
23855         function to convert a MarshalSpec structure to its managed counterpart.
23857         * reflection.c: Fix warnings.
23858         
23859         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
23860         field.
23862         * icall.c (mono_create_icall_signature): Fix build.
23864 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
23866         * icall.c: Add MakePointType icall.
23868         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
23869         warnings.
23871 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23873         * threadpool.c: reuse allocated slots in the queue.
23875 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
23877         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
23879         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
23881         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
23882         previous change.
23884         * tabledefs.h: Add constants for pinvoke attributes BestFit and
23885         ThrowOnUnmappableChar.
23887         * icall.c (ves_icall_Type_GetPacking): New icall.
23889 2004-09-24  Martin Baulig  <martin@ximian.com>
23891         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
23893 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23895         * appdomain.c:
23896         (mono_domain_set): allow setting a domain that is being unloaded.
23897         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
23898         being unloaded.
23900 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23902         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
23903         the GetCustomAttributes icall.
23905 2004-09-23  Martin Baulig  <martin@ximian.com>
23907         * object-internals.h (MonoReflectionGenericParam): Replaced
23908         'has_ctor_constraint', `has_reference_type' and `has_value_type'
23909         with `guint32 attrs'.
23911 2004-09-23  Martin Baulig  <martin@ximian.com>
23913         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
23915 2004-09-23  Martin Baulig  <martin@ximian.com>
23917         * object-internals.h (GenericParameterAttributes): New enum.
23919 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
23921         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
23922         
23923         * class.c (init_events): Fill out event->other field.
23925         * class.c: Fix warnings.
23927         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
23929 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
23931         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
23932         walk which doesn't supply the IL offset.
23934 2004-09-22  Martin Baulig  <martin@ximian.com>
23936         * reflection.c (mono_reflection_setup_internal_class): If we're
23937         System.ValueType, System.Object or System.Enum, set
23938         `klass->instance_size' and create the vtable.
23939         (mono_reflection_create_internal_class): If we're an enum type,
23940         get the base class from our current corlib.
23942 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
23944         * reflection.h (MonoResolveTokenError): New type.
23946         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
23947         icall.
23949         * icall.c: Add an 'error' argument to the ResolveToken icalls.
23951 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
23953         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
23954         Support also calling constructors, but only for already allocated objects.
23956 2004-09-17  Geoff Norton <gnorton@customerdna.com>
23958         * reflection.c (type_get_qualified_name): If the klass is null
23959         return the typename to avoid a NullRefEx.
23960         (encode_cattr_value): Get the qualified name of the boxed type,
23961         not the underlying enumtype.  Fixes #62984.
23963 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
23965         * marshal.c: Fix problems with previous checkin.
23967 2004-09-21    <vargaz@freemail.hu>
23969         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
23970         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
23972         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
23974 2004-09-21  Geoff Norton <gnorton@customerdna.com>
23976         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
23977         should only return a type for pointers, arrays, and passbyref types.
23978         Fixes bug #63841.
23980 2004-09-21  Martin Baulig  <martin@ximian.com>
23982         * domain.c (mono_debugger_check_runtime_version): New public
23983         function.
23985         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
23987 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
23989         * reflection.c: Added missing sort to the declarative security 
23990         attributes table. MS implementation stops seeing the attributes if the
23991         token number regress in the table (as shown by ildasm and permview).
23993 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
23995         * object-internals.h (MonoReflectionModule): Add 'token' field.
23996         
23997         * reflection.c (mono_reflection_get_token): Add support for Module
23998         and Assembly.
23999         (mono_module_get_object): Set 'token' field.
24000         (mono_module_file_get_object): Set 'token' field.
24002         * icall.c: Add new Assembly and Module icalls.
24004         * appdomain.c: Bump corlib version.
24006 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24008         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24009         tokens of metadata objects.
24011         * reflection.h reflection.c (mono_reflection_get_token): New function
24012         to obtain the token of a metadata object.
24014         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24016 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24018         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24019         
24020         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24022 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24024         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24025         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24026         AssemblyBuilder to access the permissions set in the class lib.
24027         * reflection.c: Added security attributes encoding step in 
24028         mono_image_build_metadata.
24029         * tabledefs.h: Added new security actions defined in 2.0:
24030         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24032 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24034         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24035         macro parameter.
24037 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24039         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24040           finalized. There where random SIGSEVs at program termination, when
24041           an object being finalized was trying to do a string comparison and
24042           the current culture was already finalized.
24044 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24046         * threads.c: call thread_cleanup before finishing the thread if we get
24047         there.
24049 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24051         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24052         assemblies from the parent. Fixes #65665.
24054 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24056         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24057         modifiers.
24059 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24061         * reflection.h: add prototype for mono_get_dbnull_object
24062         * reflection.c: add prototypes for get_default_param_value_blobs 
24063         and mono_get_object_from_blob for fussier compilers
24065 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24067         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24068         false deadlock checks in class initialization.
24070 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24072         * image.c (mono_image_addref): Fix comment.
24074         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24075         possible.
24077 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24079         * reflection.c (mono_param_get_objects): Modified to return
24080         ParameterInfo.DefaultValue object.
24082         (get_default_param_value_blobs):
24083         (mono_get_object_from_blob):
24084         (mono_get_dbnull_object): New helper routines. 
24086         * object.c (mono_get_constant_value_from_blob): New helper routine
24087         carved out from get_default_field_value ()
24089         * object-internals.h (mono_get_constant_value_from_blob): Added
24090         function declaration.
24092 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24094         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24095         referenced assemblies. Fixes #62135.
24097         * exception.h exception.c (mono_get_exception_file_not_found2): New
24098         helper function.
24100 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24102         * class.h class.c: Add mono_type_get_underlying_type ().
24104 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24106         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24107         Fix GetTypes() to support dynamically created assemblies.
24109 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24111         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24112         
24113         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24114         previous patch.
24116         * reflection.h reflection.c loader.c: Allow dynamic construction of
24117         pinvoke methods. Fixes #65571.
24118         
24119         * reflection.c (mono_reflection_get_type): Revert previous change since
24120         it causes regressions.
24122 2004-09-08  Martin Baulig  <martin@ximian.com>
24124         * class.c (class_compute_field_layout): Don't call
24125         mono_class_layout_fields() for open generic instances.
24127 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24128         * threads.c appdomain.c: fix typo in GC macro
24130 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24132         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24133         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24135 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24137         * image.c (mono_image_close): Applied patch from 
24138         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24139         assembly is loaded multiple times from data.
24140         
24141         * image.c (mono_image_open): Fix warning.
24143 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24145         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24146         once. Fixes #58334.
24147         
24148         * reflection.c (mono_reflection_create_runtime_class): Initialize
24149         klass->nested_classes. Fixes #61224.
24151 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24153         * threads.c: sched_yield() on exit, to allow threads to quit.
24155 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24157         * object.c (mono_unhandled_exception): Remove leftover debug code.
24159 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24161         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24163 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24165         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24166         
24167         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24169 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24171         * marshal.c (emit_marshal_array): Null terminate string arrays.
24172         
24173         * marshal.c (raise_auto_layout_exception): Fix warning.
24175         * reflection.c (mono_param_get_objects): Initialize the default value
24176         with DBNull.Value, not null. Fixes #62123.
24178 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24180         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24181         throw an exception with a cute explanation.
24183 2004-09-06  Dick Porter  <dick@ximian.com>
24185         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24186         Close the new process's thread handle, as we don't use it.  The
24187         handle stays around forever otherwise.
24189 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24191         * object.c (arith_overflow): Fix warning.
24193         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24194         calling conventions in method refs. Fixes #65352.
24196         * reflection.c: Fix warnings.
24198 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24200         * icall.c: Add a new icall for Array.Clear
24202 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24204         * object.c: When allocating an array, we have to throw
24205         an overflow exception if any of the lengths are < 0.
24207 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24209         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24210         properly. Also move implementation of string array marshalling to 
24211         managed code. Fixes #42316.
24213 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24215         * assembly.c: provide more information when loading an assembly fails.
24217 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24219         * filewatcher.c: don't expect the development fam package to be
24220         installed.
24222 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24224         * marshal.c: Make a copy of the signature cookie since it will be
24225         freed by the caller.
24226         
24227         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24229         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24231         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24232         marshal specs.
24234         * marshal.c: More refactoring.
24235         
24236         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24237         smaller functions.
24239 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24241         * object.c: In mono_message_invoke, fill the output parameter array after
24242           calling the managed method (it was done before the call). This fixes
24243           bug #59299.
24245 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24247         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24248         as well.
24250 2004-09-02  Martin Baulig  <martin@ximian.com>
24252         * class.c (mono_class_instance_size): Don't allow generic type
24253         definitions or open generic instances.
24254         (mono_class_array_element_size): If we're a value type, call
24255         mono_class_instance_size() on the original class.
24257         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24258         handle generic instances.
24260         * mono-debug-debugger.c (write_type): Handle generic instances
24261         like classes.
24263 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24265         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24266         the allocation request fails. Fixes #65089.
24268         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24269         
24270         * object.c (mono_runtime_free_method): New function to free a dynamic
24271         method.
24273         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24274         delegate trampoline.
24276         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24277         with hasthis as dynamic,
24279         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24281         * domain.c (mono_jit_info_table_remove): New function to remove an
24282         entry from the jit info table.
24284         * class-internals.h (MonoMethod): Add 'dynamic' field.
24286         * loader.c: Fix warnings.
24288 2004-09-01  Martin Baulig  <martin@ximian.com>
24290         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24291         instead of mono_debugger_lock() because the latter one is a no-op
24292         unless running in the debugger.
24294 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24296         * class.c (class_compute_field_layout): Classes with auto-layout or
24297         reference fields are not blittable.
24298         
24299 2004-09-01  Dick Porter  <dick@ximian.com>
24301         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24302         mono_image_get_filename() to get the assembly location.
24304         * icall.c:
24305         * metadata.h: Fix compile warnings
24307 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24309         * class.c (class_compute_field_layout): System.Object is blittable.
24311         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24312         as in/out. Fixes #59909.
24314 2004-09-01  Martin Baulig  <martin@ximian.com>
24316         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24317         mono_metadata_generic_inst_is_valuetype() if we're a generic
24318         instance to check whether our underlying type is a reference type.
24320 2004-09-01  Martin Baulig  <martin@ximian.com>
24322         * metadata.c (mono_type_size): If we're a generic instance, call
24323         mono_class_value_size() for value types.
24325 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
24327         * marshal.c: Implement more custom marshalling functionality. Fixes
24328         #64915.
24330 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24332         * mono-debug.c, debug-mono-symfile.c: add some locking love.
24334 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
24336         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
24338         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
24340         * icall.c: Fix some warnings.
24342         * threads.c (abort_appdomain_thread): Fix unref errors.
24343         (mono_thread_current): Fix THREAD_DEBUG define.
24345 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
24347         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
24349         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
24351 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
24353         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
24354         string arrays.
24356 2004-08-28  Martin Baulig  <martin@ximian.com>
24358         * metadata.c
24359         (mono_metadata_generic_inst_is_valuetype): New public function.
24361         * metadata.h (MONO_TYPE_ISSTRUCT): Call
24362         mono_metadata_generic_inst_is_valuetype() if we're a generic
24363         instance to check whether our underlying type is a valuetype.
24365 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
24367         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
24368         #63768.
24370 2004-08-25  Martin Baulig  <martin@ximian.com>
24372         * loader.c (mono_get_method_from_token): Abstract methods can also
24373         be generic and thus have type parameters.
24375         * metadata-internals.h
24376         (MonoDynamicImage): Added `GPtrArray *gen_params'.
24378         * reflection.c (mono_image_get_generic_param_info): Don't create a
24379         metadata row, just add an entry to the `gen_params' array.
24380         (build_compressed_metadata): Sort the `gen_params' array and then
24381         actually create the metadata.
24383 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24385         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
24387 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
24389         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
24391 2004-08-24  Martin Baulig  <martin@ximian.com>
24393         * class.cs (mono_class_is_subclass_of): Like an interface, a
24394         generic instance also derives from System.Object.
24396 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
24398         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
24399         custom modifiers to be in any order. Fixes #61990.
24401 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
24403         * object.c: Register mono_object_new_fast icall.
24404         
24405         * object.c (mono_class_get_allocation_ftn): Return to calling
24406         mono_object_new_fast, since it seems faster to compute the object 
24407         size in unmanaged code than passing it as a parameter.
24409         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
24411         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
24412         this function with Boehm as the oom handler, so we don't have to check
24413         the result of GC_malloc.
24415         * object.c: Remove checks for oom.
24417         * object.h object.c (mono_class_get_allocation_ftn): New function to
24418         return the icall which can be used to allocate an instance of a given
24419         class. 
24421         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
24423         * class-internals.h: Add 'enabled' field.
24425 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
24427         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
24429 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
24430         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
24431         value 0x0010.
24433 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
24435         * appdomain.c: use the Tls function for appdomain too,
24436         at Zoltan's request. Actually return in mono_context_get
24438         * appdomain.c, profiler.c, threads.c: use __thread
24440 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
24442         * appdomain.c threads.c: Call GC_CreateThread on windows.
24444         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
24445         multiple libraries since this don't work on windows.
24447 2004-08-18  Martin Baulig  <martin@ximian.com>
24449         * class-internals.h
24450         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
24451         MonoMethodHeader.
24453         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
24454         MonoMethodNormal since we also need it for abstract and interface
24455         methods.
24457         * reflection.c
24458         (build_compressed_metadata): Sort the GenericParam table.
24459         (mono_image_create_token): Added `gboolean create_methodspec'
24460         argument; this is false when generating a MethodImpl token.
24461         (reflection_methodbuilder_to_mono_method): Abstract and interface
24462         methods may also have generic parameters.
24464 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
24466         * appdomain.c: thread local alloc
24468 2004-08-17  Martin Baulig  <martin@ximian.com>
24470         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
24472         * icall.c
24473         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
24474         argument.
24476         * class.c (mono_type_get_full_name): New public function.
24477         (mono_type_get_name): Don't include the type arguments.
24479 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
24481         * Makefile.am: Build static versions of libmetadata and libmonoruntime
24482         for inclusion into the mono executable.
24484 2004-08-16  Martin Baulig  <martin@ximian.com>
24486         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
24487         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
24489 2004-08-14  Martin Baulig  <martin@ximian.com>
24491         * class.c (dup_type): Also copy the `byref' field.
24493 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
24495         * reflection.c (create_dynamic_mono_image): Revert the last change 
24496         since it breaks bootstrap.
24498 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
24500         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
24502         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
24503         not free them with g_free.
24505 2004-08-11  Martin Baulig  <martin@ximian.com>
24507         * reflection.c (mono_reflection_setup_internal_class): Also call
24508         mono_class_setup_mono_type() if we already have a `tb->type.type'.
24510 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
24512         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
24513         called during default (first) AppDomain creation. Keep track of
24514         Evidence when loading assemblies.
24516 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
24518         * opcodes.c, opcodes.h: reduce runtime relocations.
24520 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
24522         * culture-info.h, locales.c: fixes and chages to sue the new
24523         optimized format of the locale data.
24524         * culture-info-tables.h: regenerated.
24526 2004-08-06  Geoff Norton <gnorton@customerdna.com>
24527         
24528         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
24530 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
24532         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
24533         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
24534         * domain-internals.h: icall declaration.
24535         * icall.c: icall registration.
24536         * object-internals.h: New fields in MonoAssembly for CAS.
24538 2004-08-05  Duncan Mak  <duncan@ximian.com>
24540         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
24541         CEE_LDELEM_ANY.
24543 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
24545         * reflection.c: fix to deal with object[] arrays in custom ctors
24546         (bug #62550).
24548 2004-08-05  Martin Baulig  <martin@ximian.com>
24550         * class.c (mono_class_array_element_size): Added support for
24551         generic instances and correctly handle "recursive" types.
24553 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
24555         * assembly.c: Fix warnings.
24557 2004-08-04  Martin Baulig  <martin@ximian.com>
24559         * class.c
24560         (mono_type_get_name_recurse): Added `gboolean include_arity'
24561         argument specifying whether or not we should include the generic
24562         arity in the type name.
24563         (_mono_type_get_name): New static function.
24564         (mono_class_setup_vtable): If we're a generic instance, don't
24565         include the generic arity in the names of explicit method
24566         implementations.        
24568 2004-08-03  Martin Baulig  <martin@ximian.com>
24570         * class.c (mono_type_get_name_recurse): Enclose the generic type
24571         arguments in `<', '>'.
24573 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24575         * gc.c: make GC warning messages use the trace API, they are just
24576         noise to most of the users.
24578 2004-08-03  Martin Baulig  <martin@ximian.com>
24580         * debug-mono-symfile.c (read_string): Correctly read the string.
24582 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
24584         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
24585         
24586         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
24587         icalls.
24588         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
24590 2004-07-30  Martin Baulig  <martin@ximian.com>
24592         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
24593         Reflect latest symbol writer changes.   
24595 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24597         * object.c: always create an object if null is passed
24598         to Invoke() where a valuetype is expected.
24600 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
24602         * marshal.c (mono_marshal_init): make managed
24603         signatures match native ones better for 64bits.
24605 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24607         * appdomain.c: hack to build correctly the private bin path on windows.
24608         Fixes bug #61991.
24610 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
24612         * assembly.c: Load mscorlib from the correct framework directory
24613           (mono/<version>/mscorlib.dll).
24614         * appdomain.h: Added prototypes for new functions.
24615         * internals.h: Added some prototypes.
24616         * domain.c: When initializing the runtime, get from the executable and
24617           the configuration files the runtime version that the app supports.
24618           Added support methods for reading app.exe.config. Added list of versions
24619           supported by the JIT. Added two new methods: mono_init_from_assembly,
24620           which initializes the runtime and determines the required version from
24621           the provided exe file, and mono_init_version, which initializes
24622           the runtime using the provided version.
24623         * icall.c: Get machine.config from version-specific directory.
24624         * reflection.c: When generating an image, embed the version number
24625           of the current runtime.
24627 2004-07-28  Dick Porter  <dick@ximian.com>
24629         * socket-io.c
24630         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
24631         returned sockaddr size before creating the remote address object.
24632         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
24633         61608.
24635 2004-07-28  Dick Porter  <dick@ximian.com>
24637         * locales.c (string_invariant_compare_char): Fix invariant char
24638         compares between upper and lower cases.  Fixes bug 61458.
24640 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
24641         
24642         * marshal.c: actually cache stelem.ref wrappers.
24643         
24644 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
24646         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
24647         sections and remove the mono_cli_rva_map () function.
24649 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24651         * debug-mono-symfile.c: fix one more endianess issue, from a patch
24652         by Geoff Norton (<gnorton@customerdna.com>).
24654 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24656         * class.c: fix class loads for pointer types (typeof(int) !=
24657         typeof(int*)).
24659 2004-07-27  Martin Baulig  <martin@ximian.com>
24661         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
24662         reading the debugging information from an external ".mdb" file.
24664 2004-07-24  Martin Baulig  <martin@ximian.com>
24666         * reflection.c (mono_image_get_type_info): Only write a class
24667         layout entry if we actually have a size or a packing size.
24669 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24671         * reflection.c (type_get_fully_qualified_name): 
24672         insert cast to get type checking of ?: with non-gcc compilers
24674 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
24676         * rand.c: use g_getenv for both lookups of
24677         MONO_EGD_SOCKET
24679 2004-07-17  Martin Baulig  <martin@ximian.com>
24681         * reflection.c (mono_reflection_bind_generic_method_parameters):
24682         Set `gmethod->reflection_info'.
24684 2004-07-17  Martin Baulig  <martin@ximian.com>
24686         * class.c (mono_class_create_from_typedef): Insert the newly
24687         created class into the hash table before computing the interfaces
24688         since we could be called recursively.
24690 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
24692         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
24693         function to implement stelem.ref in managed code
24694         * class-internals.h, debug-helpers.c: a new wrapper type
24695         for the above.
24697 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
24699         * gc.c: allow GC handles to work even when no GC is compiled in.
24700         Fix part of bug #61134 (GetAddrOfPinnedObject).
24702 2004-07-13  Peter Williams  <peter@newton.cx>
24704         * process.c (complete_path): Make sure we don't attempt to execute
24705         directories.
24707 2004-07-12  Geoff Norton <gnorton@customerdna.com>
24709         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
24710           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
24711           and will add/subtract the hour if needed
24713 2004-07-12  Martin Baulig  <martin@ximian.com>
24715         * reflection.c (mono_field_get_object): If we have
24716         `field->generic_info', take the attributes from
24717         `field->generic_info->generic_type'.    
24719 2004-07-12  Martin Baulig  <martin@ximian.com>
24721         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
24722         This function must be called before initializing the runtime.
24723         (mono_debug_init_1): New function; call this after initializing
24724         the runtime, but before loading the assembly.  It tells the
24725         debugger to load corlib and the builtin types.
24727         * mono-debug-debugger.c: Did some larger changes in the debugging
24728         code; support recursive class declarations, make sure we actually
24729         add all classes.
24731 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24733         * debug-helpers.c: undo my previous patch and fixed the real issue in
24734         ../mini/exceptions-x86.c
24736 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24738         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
24739         when no HOME env. variable was set and a NullRef was thrown in a .cctor
24740         called from other .cctors.
24742 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24744         * loader.c: Removed the mono_loader_wine_init hack now that we are
24745         doing a managed version of Windows.Forms.
24747 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
24749         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
24750         threadpool.c, threads.c: remove static data from rootset.
24752 2004-07-09  Dick Porter  <dick@ximian.com>
24754         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
24755         Don't do any more processing if the matched length was 0.  It was
24756         increasing the size of the string before.  Fixes bug 61167.
24758 2004-07-09  Dick Porter  <dick@ximian.com>
24760         * socket-io.h:
24761         * socket-io.c
24762         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
24763         Add support for SO_PEERCRED if its available.
24765 2004-07-09  Peter Bartok <pbartok@novell.com>
24766         * loader.c: winelib.exe.so error message is now only displayed if
24767         MONO_DEBUG is set. To help us avoid questions when people are trying
24768         out the new Managed.Windows.Forms.
24770 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
24772         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
24773         for isinst and castclass wrappers.
24775         * class-internals.h icall.c: Move registration and lookup of JIT icalls
24776         to libmetadata from the JIT, so they could be used by the marshalling
24777         code and the interpreter.
24779         * marshal.c: Register marshalling related JIT icalls here instead of
24780         in mini.c. Use CEE_MONO_ICALL instead of the family of 
24781         CEE_MONO_PROC<x> opcodes to call marshalling functions.
24783         * metadata.h: Remove unneeded marshalling conversions.
24785         * opcodes.c: Update for new opcodes.
24786         
24787 2004-07-08  Martin Baulig  <martin@ximian.com>
24789         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
24790         (mono_debug_get_domain_data): Make this function static.
24792 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24794         * gc.c, object.h: add nice GC handle API for embedders.
24796 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
24798         * reflection.c: more changes for the new api
24800         * object.c: When we reflect on a field w/ a constant value, it
24801         will not have a memory location, so we must access metadata. Also,
24802         allow easier reading of strings so that we can read them from
24803         the constant data.
24805         * class.c (mono_class_layout_fields): no need for literal fields here.
24807         * class-internals.h: api changes for const fields
24809         * icall.c (ves_icall_get_enum_info): use new apis for const fields
24811 2004-07-06  Martin Baulig  <martin@ximian.com>
24813         * mono-debug.h: Increment version number to 44.
24815         * mono-debug.c (mono_debug_add_wrapper): The second argument is
24816         now a gpointer, rewrote this whole method.
24818         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
24819         function.  Add information about the wrapper in a new "misc table".
24821         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
24822         for the new misc table.
24824 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
24826         * metadata-internals.h image.c: Add a cache for helper signatures.
24828         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
24830 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
24832         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
24833         delegates from a delegate. Fixes #61033.
24834         
24835         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
24836         marshalling of stringbuilder arrays. Fixes #59900.
24838 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
24840         * icall.c: Add EnumBuilder:setup_enum_type icall.
24842 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
24844         * icall.c: Added a new icall for the property version of
24845         OffsetOfStringData.
24847 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
24849         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
24850         it has a constant size across platforms.
24852         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
24853         stack trace.
24855 2004-06-29  Martin Baulig  <martin@ximian.com>
24857         * mono-debug.c (mono_debug_add_method): Protect the whole function
24858         in mono_debugger_lock(), not just parts of it.
24860 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24862         * reflection.c: make sure padding bytes in heaps are zeroed.
24864 2004-06-24  David Waite  <mass@akuma.org>
24866         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
24867         image.c, loader.c, locales.c, marshal.c, metadata.c,
24868         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
24869         string-icalls.c, threads.c: change to C90-style comments from C99 /
24870         C++ -style
24872 2004-06-24  Dick Porter  <dick@ximian.com>
24874         * threads.c
24875         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
24876         return createdNew.  Fixes bug 60412.
24878         * threads-types.h: 
24879         * icall.c: Add createdNew parameter to CreateMutex icall
24881 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
24883         * reflection.c, object-internals.h: save default value in params.
24885 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24887         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
24888         no need to build a new path combining that with the application base.
24889         Fixes bug #60442.
24891 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
24893         * reflection.c: fixed minor standard compliance issues.
24895 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
24897         * reflection.c: fixed issue with encoding some custom attributes
24898         (arrays in properties and fields, bug #60411).
24900 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24902         * reflection.c: fix start address when copying the public key token.
24904 2004-06-23  Martin Baulig  <martin@ximian.com>
24906         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
24907         the `exc' object in a static object to put it into the GC's root set.
24909 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
24911         * reflection.c: make mono_reflection_setup_internal_class ()
24912         callable a second time to setup a new parent class.
24914 2004-06-23  Dick Porter  <dick@ximian.com>
24916         * threads.c: Check for WAIT_IO_COMPLETION return values.
24918 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
24920         * appdomain.c: Removed the g_free on the public key token. Now copy 
24921         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
24922         * assembly.c: Added public key token string value when loading 
24923         assemblies. Fix bug #60439.
24924         * icall.c: Added missing informations (like public key) in 
24925         GetReferencedAssemblies. Fix #60519.
24926         * image.h: Changed definition for public key token from const char*
24927         public_tok_value to guchar public_key_token [17];
24928         * reflection.c: Updated for changes to public key token.
24930 2004-06-22  Lluis Sanchez Gual
24932         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
24933         for the field in base classes.
24935 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24937         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
24938         mark headers as not supported, they are installed only for use by the
24939         debugger.
24941 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
24943         * *.c, *.h: avoid namespace pollution in public headers.
24945 2004-06-21  Martin Baulig  <martin@ximian.com>
24947         * exception.c (mono_get_exception_security): It's in
24948         "System.Security", not in "System".
24950         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
24951         the exception classes.
24953 2004-06-21  Martin Baulig  <martin@ximian.com>
24955         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
24956         Protect the exception object from being finalized.
24958 2004-06-21  Martin Baulig  <martin@ximian.com>
24960         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
24961         public function.
24963 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
24965         * reflection.c: Load the assembly in mono_reflection_type_from_name,
24966         if it was not loaded before. Fix parts of #60439.
24968 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
24970         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
24971         code that was broken since Ben's change: wrappers are now
24972         dependent on the method signature only again.
24974 2004-06-21  Martin Baulig  <martin@ximian.com>
24976         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
24977         added interface support.
24979 2004-06-21  Martin Baulig  <martin@ximian.com>
24981         * class.c (mono_vtable_get_static_field_data): New public method.
24983 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
24985         * filewatcher.c : Windows build fix to be compliant with API changes.
24987 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24989         * class.h, class.c: more accessors.
24990         * metadata.h, metadata.c: prepare for hiding MonoType and
24991         MonoMethodSignature: people should use the accessors from now on
24992         outside of the tree.
24994 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
24996         * *.c, *.h: more API cleanups.
24998 2004-06-18  Jackson Harper  <jackson@ximian.com>
25000         * assembly.c: Trace loading assemblies.
25001         * loader.c: Trace loading native libraries.
25002         * mono-config.c: Trace loading config files.
25003         
25004 2004-06-18  Dick Porter  <dick@ximian.com>
25006         * locales.c: Tell ICU the lengths of strings, it can cope with
25007         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25009 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25011         * image.c: swapped name/filename;
25013 2004-06-18  Martin Baulig  <martin@ximian.com>
25015         * mono-debug-debugger.c (write_class): Write the parent class at
25016         the end of the header.
25018 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25020         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25022 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25024         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25025         (bundle_obj): New conditional define.
25026         (BUILT_SOURCES): Remove.
25027         ($(bundle_srcs)): Make parallel-make safe.
25028         (libmonoruntime_la_LIBADD): Make unconditional.
25029         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25030         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25032 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25034         * culture-info-tables.h: It was inconsistent with the latest
25035           supp info files.
25037 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25039         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25040         be loaded.
25042         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25043         with gcc 2.95.
25045 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25047         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25048         cleaned up public header threads.h.
25050 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25052         * Makefile.am, *.c, *.h: more API cleanups.
25054 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25056         * Makefile.am: removed monosn from compilation.
25057         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25058         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25059         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25060         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25061         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25062         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25064 2004-06-15  Jackson Harper  <jackson@ximian.com>
25066         * assembly.c: Make locales lower case when searching the GAC for
25067         assemblies. gacutil will always make locales lowercase when
25068         installing so this effectively makes them case insensitive.
25069         
25070 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25072         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25073         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25074           parameter which allows to choose whether the wait can be interrupted or 
25075           not. Also added the method mono_monitor_enter(), which locks the monitor
25076           using an infinite wait and without allowing interruption.
25077           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25078           interrupted.
25079         * object.h: Added new fields in MonoThread. suspend_event holds the event
25080           used to susped/resume the thread. synch_lock is the lock object to use for
25081           modifying the thread state.
25082         * threads.c: Use the new synch_lock object for locking, instead of "this",
25083           which can generate deadlocks.
25084           Moved thread state change in Thread.Sleep and Thread.Join from managed
25085           to unmanaged code. This avoids a deadlock when the thread was suspended
25086           just after acquiring the thread lock.
25087           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25088           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25089           which is not fully implemented in the io-layer.
25090         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25092 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25094         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25095         threads-types.h: more API cleanups.
25097 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25099         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25100         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25101         threadpool.c, threads.c: first pass at the exported API cleanup.
25103 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25105         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25107 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25109         * icall.c: added internalGetHome.
25111 2004-06-14  Dick Porter  <dick@ximian.com>
25113         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25114         possible to return successfully when '.' or '..' were the only
25115         entries in a directory, but were skipped.  The MonoIOStat was not
25116         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25117         Fixes bug 59574.
25119 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25121         * reflection.c: make binaries run on .Net 1.1 by default.
25123 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25125         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25127 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25129         * marshal.c: keep track of struct size with explicit layout
25130         (bug #59979).
25132 2004-06-12  Martin Baulig  <martin@ximian.com>
25134         * mono-debug-debugger.c: Comment out a debugging g_message().
25136 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25138         * reflection.c, reflection.h: do not free custom attrs that are cached.
25139         * icall.c: use braces to make code clearer.
25141 2004-06-11  Martin Baulig  <martin@ximian.com>
25143         * class.h (MonoInflatedField): New type.
25144         (MonoClassField): Replaced `MonoType *generic_type' with
25145         `MonoInflatedField *generic_info'.
25147         * icall.c
25148         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25150 2004-06-11  Martin Baulig  <martin@ximian.com>
25152         * reflection.c (mono_image_create_method_token): Correctly encode
25153         varargs methods.
25155 2004-06-11  Martin Baulig  <martin@ximian.com>
25157         * metadata.c (mono_metadata_parse_method_signature): When parsing
25158         a MethodDef which has VarArgs, also set sentinelpos if we don't
25159         have any parameters.
25161 2004-06-11  Martin Baulig  <martin@ximian.com>
25163         * verify.c (mono_method_verify): In CEE_CALL, use
25164         mono_method_get_signature() to get the method's signature, unless
25165         we're a PInvoke method.
25167 2004-06-10  Jackson Harper  <jackson@ximian.com>
25169         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25170         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25171         logical name as the supplied path is just a prefix to the gac not
25172         the direct path to it.
25173         
25174 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25176         * reflection.c: make the token for a created method match
25177         the token of the MethodBuilder it was created from
25178         (IKVM requires this behaviour now).
25180 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25182         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25183         reflection.c, socket-io.c: leak fixes.
25185 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25187         * icall.c: handle sentinel pos in vararg methods in position different
25188         from 0.
25190 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25192         * culture-info-tables.h: freshly generated.
25194 2004-06-09  Martin Baulig  <martin@ximian.com>
25196         * loader.c (mono_get_method_constrained): Call `mono_class_init
25197         (constrained_class)'.   
25199 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25201         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25202         any methods. Fixes #59629.
25204 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25206         * culture-info-tables.h: reflecting locale-builder updates.
25208 2004-06-08  Dick Porter  <dick@ximian.com>
25210         * object.h:
25211         * locales.c: Fixed compile warnings, including a real bug in
25212         CompareInfo_internal_compare.
25213         
25214 2004-06-08  Dick Porter  <dick@ximian.com>
25216         * locales.c
25217         (ves_icall_System_Globalization_CompareInfo_internal_index):
25218         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25219         Double-check the resuls of usearches, because ICU currently
25220         ignores most of the collator settings here.  Fixes bug 59720.
25221         
25222 2004-06-08  Dick Porter  <dick@ximian.com>
25224         * locales.c
25225         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25226         Fix memory leak and segfault-causing typo.  No idea how this one
25227         lasted so long without being noticed.
25229 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25231         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25232         any methods. Fixes #59629.
25234 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25236         * assembly.c:
25237         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25238         own the critical section before). Removed dead code (that's done
25239         in the preload hook).
25241         (mono_assembly_load_with_partial_name): call the preload hook.
25243 2004-06-08  Martin Baulig  <martin@ximian.com>
25245         * metadata.c (mono_metadata_signature_alloc): Default
25246         `sentinelpos' to -1.
25248         * reflection.c (mono_image_get_array_token): Likewise.
25250 2004-06-08  Martin Baulig  <martin@ximian.com>
25252         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25254         * metadata.c (mono_metadata_parse_method_signature): When parsing
25255         a MethodDef which has VarArgs, set sentinelpos.
25257         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25258         `gint16' since we're using -1 for non-varargs methods.
25260         * reflection.c
25261         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25262         (method_encode_signature): Added varargs support.
25263         (method_builder_encode_signature): Likewise.
25264         (mono_image_get_varargs_method_token): New static method.
25265         (mono_image_create_method_token): New public method; this is
25266         called via an icall instead of mono_image_create_token() when
25267         calling a varargs method.       
25269 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25271         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25273 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25275         * culture-info-tables.h : Reflecting the latest locale-builder that
25276           fixed empty array representation ({} to {0}).
25278 2004-06-07  Jackson Harper  <jackson@ximian.com>
25280         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25281         looking up extra gac paths. This allows MONO_GAC_PATH to act
25282         exactly like a prefix.
25283         
25284 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25286         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25287         type name before modifying it. Fixes #59405.
25289 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25291         * culture-info.h: added fields for "all datetime patterns".
25292         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25293           _construct_datetime_format ()): fill xxx_patterns fields.
25294         * object.h: added fields for "all datetime patterns" to
25295           MonoDateTimeFormatInfo.
25296         * culture-info-tables.h: reflecting locale-builder updates.
25298 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25300         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25301         the event has no add and remove methods. Fixes #59629.
25303 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25305         * object.c: Fixed possible integer overflow when allocating large
25306         strings.
25308 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25310         * culture-info-tables.h: reflecting locale-builder updates.
25312 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25314         * culture-info-tables.h: reflecting locale-builder updates.
25316 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25318         * culture-info-tables.h: reflecting locale-builder updates.
25320 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
25322         * threads.c: Made Thread.Sleep abortable.
25324 2004-06-02  Martin Baulig  <martin@ximian.com>
25326         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
25328         * debug-mono-symfile.h: Bumped symbol file version number to 37.
25330 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
25332         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
25334 2004-05-30  Jackson Harper  <jackson@ximian.com>
25336         * reflection.c: Do not hardcode assembly versions or public key
25337         tokens anymore. All of this except the corlib section was dead
25338         code anyways.
25339         
25340 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
25342         * object.c (mono_runtime_invoke_array): Automatically create boxed
25343         objects for byref valuetypes if needed. Fixes #59300.
25344         
25345         * object.c (mono_method_return_message_restore): Handle 
25346         MONO_TYPE_OBJECT as well.
25348 2004-05-28  Jackson Harper  <jackson@ximian.com>
25350         * reflection.c: The modified type encoding was causing build
25351         problems. Reverted for now.
25352         
25353 2004-05-28  Jackson Harper  <jackson@ximian.com>
25355         * reflection.c/h: Take an assembly ref so that we dont create
25356         fully qualified names when encoding types in the same assembly as
25357         the custom attribute being emitted.
25358         * appdomain.c: Increment version number.
25359         
25360 2004-05-26  Duncan Mak  <duncan@ximian.com>
25362         * icall.c
25363         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25364         Set the full version number (major, minor, build, revision).
25366 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
25368         * marshal.c (emit_struct_conv): increment src/dst after blit
25369         (mono_marshal_get_managed_wrapper,
25370         mono_marshal_get_native_wrapper): make sure we have marshalling
25371         info before marshalling params (info computation affects
25372         blittable)
25374         * class.c (class_compute_field_layout): correctly deal with
25375         blittable
25376         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
25377         value types (as per what windows dows by default)
25378         (mono_class_setup_mono_type): System.ValueType is blittable
25379         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
25380         blittable
25382         * marshal.c (mono_marshal_load_type_info): flag types  as
25383         non-blittable if the native layout doesn't match the managed
25384         layout
25386 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25388         * appdomain.c: don't add stuff in the private search path that is
25389         above the application base. If application base is not set, there's
25390         no private search path.
25392 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
25394         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
25395         byref struct arguments in native->managed marshalling.
25397 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
25399         * marshal.c (mono_marshal_get_runtime_invoke): correctly
25400         cache methods using signature (special case for methods
25401         that are value type or string class)
25402         
25403         * image.c (mono_image_close): clean up allocated GSList's
25404         in runtime_invoke_cache.
25406 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25408         * mono-config.c: set the correct path for mono_cfg_dir on windows when
25409         there's no MONO_CFG_DIR environment variable defined.
25411 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25413         * threads.c: windows version must be >= 0x0500 to include OpenThread.
25415 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
25417         * threadpool.c: Really wait for 500ms after the async call, even if the wait
25418           is interrumped.
25419         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
25420           before waiting for it, and call CloseHandle after the wait to unref it.
25421           This will make sure that handles are not disposed too early.
25423 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25425         * appdomain.c:
25426         * appdomain.h:
25427         * icall.c: removed
25428         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
25429         needed now.
25431         * object.c: se the application_base only for the domain that runs
25432         Main. Fixes bug #59216,
25434 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25436         * appdomain.c:
25437         * object.c: only the domain in which Main is run have
25438         SetupInformation.ConfigurationFile set, so moved a few lines from
25439         appdomain.c to object.c.
25441 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25443         * appdomain.c: we tried to load [name].(dll|exe), but according
25444         to bug #57710, we must also try [culture]/[name].(dll|exe) and
25445         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
25446         There's a test case attached to bug #58922.
25448 2004-05-27  Dick Porter  <dick@ximian.com>
25450         * icall.c:
25451         * file-io.c: Implemented icalls for locking and unlocking regions
25452         in a file.
25453         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
25454         FALSE on error (fixes both compiler warning and real bug.)
25456 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
25458         * culture-info-tables.h: reflecting locale-builder updates.
25460           (Added missing ChangeLog entry for 05/26)
25462 2004-05-27  Jackson Harper  <jackson@ximian.com>
25464         * locales.c: Fix some cut and paste errors.
25465         
25466 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25468         * mono-config.c: set the correct path for config. directory on windows.
25470 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25472         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
25473           on win32.
25475 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25477         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
25478         from pinvoke functions.
25479         
25480         * marshal.c (mono_ftnptr_to_delegate): Implement this.
25482 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
25484         * culture-info-tables.h: reflecting locale-builder updates.
25486 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
25488         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
25489         #59086.
25491 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
25493         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
25494         * icall.c: Modified icalls for RNG.
25495         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
25496         Windows (CryptoAPI).
25498 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25500         * locales.c: Fix build.
25502 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
25504         * culture-info-tables.h: reflecting locale-builder updates.
25506 2004-05-25  Jackson Harper  <jackson@ximian.com>
25508         * locales.c: When creating the current culture use the $LANGs
25509         specific culture. So DateTimeFormat and NumberFormat entries are created.
25510         
25511 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
25513         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
25514         a char array as parameter.
25516 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
25518         * image.c: In mono_image_open(), always use an absolute path name to
25519           look for already loaded images.
25521 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
25523         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
25524         missing in the windows build (like older cygwin include files).
25526 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
25528         * icall.c: Fixed check for possible integer overflow in Buffer_
25529         BlockCopy icall. Replaced comments style // by /* */.
25531 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
25533         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
25534         
25535         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
25536         check after MONO_VTADDR. Fixes pinvoke2.exe.
25538         * marshal.h marshal.c metadata.h: Add beginnings of support for
25539         ftnptr -> delegate marshalling.
25541 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
25543         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
25544         * threads.c: Fix warnings.
25546 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
25548         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
25549         * icall.c: Registered icalls for Suspend and Resume.
25550         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
25551           Thread.Abort.
25552         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
25553         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
25554         * process.c: Use WaitForSingleObjectEx.
25555         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
25556           checkpoints.
25557         * threads.c, threads.h: Make use of new Ex wait methods. Improved
25558           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
25559           for Suspend and Resume. Added new mono_thread_stop, used for stoping
25560           background threads. Added basic support for Abort in Windows.
25561           Start new threads using a managed delegate invoke wrapper. This wrapper
25562           has an interruption checkpoint that is needed since an interruption
25563           can be requested before the thread leaves the unmanaged code that starts 
25564           the thread.
25565         * marshal.c: Added interruption checkpoint after every native call, and
25566           also before managed calls for wrappers called from unmanaged code to
25567           go into managed code.
25568         * object.h: Added new field in MonoThread to keep track of interruption
25569           requests.
25571 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
25573         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
25574         calls.
25576 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25578         * appdomain.c:
25579         * assembly.c:
25580         * gc.c:
25581         * locales.c:
25582         * mono-config.c:
25583         * rand.c: getenv -> g_getenv (windows!)
25585         * process.c: complete_path is also used on non-windows platforms.
25587 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25589         * icall.c: new signature for Process_Start.
25591         * process.[ch]: new signature for Process_Start. If we're on windows
25592         and UseShellExecute is false, we have to search for the program by
25593         ourselves if we don't get a full path.
25595 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
25597         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
25598         marshalling and call CleanUpNativeData if needed. Fixes #58646.
25600 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25602         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
25603         Fixes bug #58373.
25605 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25607         * process.c: use double quotes to quote program name and arguments on
25608         windows. Fixes bug #58575.
25610 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25612         * file-io.c: don't return "." and ".." when using windows Find*File.
25614 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
25616         * marshal.c: Don't pass wrappers to message init because method 
25617         addressed used to lookup metadata. part of remoting[2|3] fix.
25619 2004-05-15  Jackson Harper  <jackson@ximian.com>
25621         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
25622         path is essentially the same as MONO_PATH except that it points to
25623         GACs instead of lib directories.
25624         * loader.h: The user gac is gone so we dont need function to
25625         enable/disable it.
25626         * mono-config.c: user gac option is now gone.
25627         
25628 2004-05-15  Jackson Harper  <jackson@ximian.com>
25630         * culture-info.h: Make defines more consistent, add calendar data
25631         to the culture info table.
25632         * culture-info-tables.h: Add basic calendar data. Basically
25633         everyone gets default gregorian until all the data is
25634         updated.
25635         * locales.c: Use the new consistent defines. Set calendar data for
25636         culture info objects.
25637         * object.h: add a field for calendar data to CultureInfo
25638         
25639 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
25641         * image.c: image->runtime_invoke_cache is keyed on signatures now.
25642         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
25643         a signature.
25644         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
25645         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
25646         an extra param that is the pointer of the method to invoke. The IL for
25647         the invoke method is no longer specific to the method, but to the
25648         signature of the method. Thus, we can share the same code for multiple
25649         methods. This reduces the number of methods that have to be compiled.
25651 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
25653         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
25655         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
25657         * icall.c: Optimize Buffer.BlockCopy.
25659 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25661         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
25662         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
25663         quote). Changed them to "MMMM yyyy".
25665 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
25667         * rand.c
25668         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
25670 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
25672         * reflection.h: Updated after changes to managed structures.
25674         * appdomain.c: Bump corlib version.
25676 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25678         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
25679         windows.
25681 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25683         * Makefile.am: link to ../os/libmonoos.la on windows.
25685         * assembly.c:
25686                 -If MONO_DEBUG, warn about non-existing directories in
25687                 MONO_PATH.
25688                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
25689                 compile time variable.
25690                 -Removed init_default_path and call mono_set_rootdir from
25691                 libmonoos.a instead (windows only).
25693         * assembly.h: declare mono_assembly_getrootdir().
25695         * domain.c:
25696         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
25698         * loader.c: s/getenv/g_getenv/
25700 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
25702         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
25704         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
25706         * metadata.h: Add new marshalling conversions.
25708         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
25709         function.
25711         * reflection.c (mono_reflection_get_type): Lookup the type in all
25712         modules of a multi-module assembly. Fixes #58291.
25714 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
25716         * threads.c: Before aborting a background, set the StopRequested
25717         state.  This avoids throwing the Abort exception.
25718         In mono_thread_manage, don't continue with the shutdown until all
25719         aborted threads have actually stopped.
25721 2004-05-10  Jackson Harper  <jackson@ximian.com>
25723         * locales.c: Remove the modifier from culture names.
25724         
25725 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25727         * Makefile.am: monosn is not installed any more. It has been deprecated
25728         in favor of sn.
25730 2004-05-07  Jackson Harper  <jackson@ximian.com>
25732         * locales.c
25733         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
25734         Fix array construction, add bailout if the length is 0.
25736 2004-05-07  Dick Porter  <dick@ximian.com>
25738         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
25739         machine doesn't have a DNS entry.  Patch by Urs Muff
25740         (umuff@quark.com), fixes bug 57928.
25742 2004-05-06  Jackson Harper  <jackson@ximian.com>
25744         * reflection.c: Handle null PublicTokens properly. alloc mem for
25745         assembly names culture so we dont crash when freeing it.
25746         
25747 2004-05-06  Jackson Harper  <jackson@ximian.com>
25749         * assembly.c: Check the usergac when loading with partial names.
25750         
25751 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25753         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
25754         does nothing for now (not required for Linux/Windows) but the class
25755         library can call it (and a newer or modified runtime could need it).
25756         * icall.c: Registred icall.
25758 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25760         * loader.c: prints a message on module loading error we set MONO_DEBUG
25761         environment variable.
25763 2004-05-05  Jackson Harper  <jackson@ximian.com>
25765         * appdomain.c: Handle PublicKeyToken=null properly.
25766         
25767 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
25769         * environment.c|h: Added icall ves_icall_System_Environment_
25770         GetOSVersionString to get the current OS version as a string.
25771         * icall.c: Registred icall.
25773 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
25775         * object.c: in mono_object_get_virtual_method(), take into account that
25776         non-virtual methods don't have a slot in the vtable. Check needed when
25777         the object is a proxy.
25779 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
25781         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
25782         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
25784         * object.c (mono_class_compute_gc_descriptor): Fix warning.
25786         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
25787         passed when a valuetype is expected.
25789         * object.c (mono_unhandled_exception): Only set the exit code if the
25790         exception happens in the main thread. Fixes thread5.exe.
25792         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
25793         invalid names. Fixes #58047.
25795 2004-05-03  Jackson Harper  <jackson@ximian.com>
25797         * assembly.c: This line was committed accidently and is unneeded.
25798         
25799 2004-05-03  Jackson Harper  <jackson@ximian.com>
25801         * icall.c: Add new icall for Assembly::LoadWithPartialName
25802         * assembly.c/.h: new function that probes the GAC to load partial
25803         assembly names by Paolo Molaro.
25804         
25805 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25807         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
25808         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
25809         (type_get_fully_qualified_name): Added PublicKeyToken when building a
25810         full type name.
25812 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25814         * appdomain.c: fixed check for 'neutral' culture and removed warning.
25815         * reflection.c: fix bug when parsing a full type name and Version is not
25816         the last thing in the string.
25818 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
25820         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
25821         crashes when it is freed.
25823 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25825         * assembly.c: print the compat warning to stderr.
25827 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
25829         * assembly.c (mono_assembly_load_references): Add a compatibility
25830         hack to run old applications that might be still referencing the
25831         3300-based assemblies, only do this for System.xxx.
25833 2004-05-01  Jackson Harper  <jackson@ximian.com>
25835         * appdomain.c: If the culture is neutral we set it to "".
25836         
25837 2004-04-29  Jackson Harper  <jackson@ximian.com>
25839         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
25841 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
25843         * string-icalls.c: added low overhead function for copying chars
25844         * icall.c: added needed icall for the above function
25846 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25848         * icall.c: fix return value of get_global_assembly_cache.  Implemented
25849         Environment.GetLogicalDrives.
25851 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
25853         * rand.c: try and talk to egd or prngd
25854         for random bytes if opening devices fail.
25856 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
25858         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
25859         alignment for the type using the native alignment of its members 
25860         instead of using klass->min_align.
25862         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
25864 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25866         * file-io.c:
25867         * socket-io.c: added check for sys/aio.h.
25869 2004-04-28  Dick Porter  <dick@ximian.com>
25871         * threads.c: Don't abort a thread thats already aborting, when
25872         terminating everything.
25874 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25876         * icall.c: added 2 new async calls for Socket.
25878         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
25879         IO on *nix systems.
25881         * threadpool.c: removed unused variable.
25883 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
25885         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
25887 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25889         * locales.c: put back string_invariant_tolower () and
25890         string_invariant_toupper ().
25892 2004-04-26 David Waite <mass@akuma.org>
25894         * file-io.h:
25895         * socket-io.h:
25896         * threads.h:
25897         * unicode.h: remove comma from end of enumeration declarations
25899 2004-04-26 David Waite <mass@akuma.org>
25901         * debug-mono-symfile.h:
25902         * decimal.c:
25903         * mono_debug.h:
25904         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
25907 2004-04-26  Jackson Harper  <jackson@ximian.com>
25909         * appdomain.c: Increment version number.
25910         
25911 2004-04-26  Jackson Harper  <jackson@ximian.com>
25913         * appdomain.c: Set assembly references public token value when
25914         PublicKeyToken is specified, not the hash_value. Free public token
25915         values when free assembly name data. Previously the public key
25916         token was hex decoded, however we are using hex encoded public key
25917         tokens, so this is not neccasary.
25918         * assembly.c: Lookup assemblies in the gac if their public token
25919         value is set. Add function to allow enabling user gac
25920         lookups. Specify whether or not the assembly was loaded from the
25921         GAC. Compare full assembly names when checking the cache for
25922         assemblies (Temporarily disabled see comment in code). Remove
25923         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
25924         specifies trace-loader they get extra info to stdout on the
25925         loading of assemblies.
25926         * image.h: Add a field for an assembly references public token
25927         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
25928         whether an assembly has been loaded from the GAC.
25929         * image.c: Remove a corlib -> mscorlib name mapping.
25930         * loader.h: Add function to enable/disable the user gac.
25931         * mono-config.c: Check if the usergac is enabled in the config
25932         file.
25933         * icall.c: New icall to determine whether or not an assembly has
25934         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
25935         * tabldefs.h: Add constant for assemblyref flag that specifies a
25936         full public key is used instead of a public token.
25937         * reflection.c: Remove mscorlib -> corlib mappings. Set
25938         PublicTokenValue instead of hash value. This value is a hex
25939         string so it does not need to be expanded.
25941 2004-04-26  Martin Baulig  <martin@ximian.com>
25943         * mono-debug-debugger.c (mono_debugger_initialize): Set
25944         `mono_debugger_initialized' before calling mono_debug_lock().
25946 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
25948         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
25949           InternalToUpper/InternalToLower.
25950         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
25951           removed invariant culture shortcut.  This is now done in managed code.
25952         * locales.c: (string_invariant_toupper/tolower) removed.
25954 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25956         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
25957         Added Poll internal call.
25959         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
25960         call for Poll. Select was too heavy for polling a single socket.
25962         * threadpool.[ch]: added mono_threadpool_cleanup.
25963         * threads.c: use it. Don't use Thread_Abort on windows.
25965 2004-04-23  Martin Baulig  <martin@ximian.com>
25967         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
25969 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
25971         * icall.c: Registred new icalls for key pair protection and added an
25972         icall for Environment.GetFolderPath on Windows.
25973         * security.c|h: Added new icalls for key pair protection.
25975 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25977         * socket-io.c: don't display the non-supported family warning for known
25978         families. Now this is not displayed on windows when checking support
25979         for IPv4/IPv6.
25981 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25983         * class.c: don't display the layout warning for static fields.
25985 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
25987         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
25988         * locales.c, locales.h: Added new icalls for culture-specific
25989         Char.ToLower and Char.ToUpper.
25991 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25993         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
25994         by David Waite.
25996 2004-04-20  Martin Baulig  <martin@ximian.com>
25998         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
25999         of the type name before passing it to mono_reflection_type_from_name().
26001 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26003         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26004         encodings here. Fixes #56965.
26006 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26008         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26009         fix test on strstr result not that I can see anything that
26010         relies on the result.
26012 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26014         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26015         Fixes #57081.
26017         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26019         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26020         function to determine which marshalling to use for strings. Fixes
26021         #56965.
26023         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26025         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26027 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26029         * icall.c: #include mono-config.h
26031 2004-04-15  Jackson Harper  <jackson@ximian.com>
26033         * culture-info-tables.h: Fix date formats for en-US culture.
26034         
26035 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26037         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26038         ThreadPool.SetMinThreads.
26039         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26040         ThreadPool.SetMinThreads.
26042 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26044         * mono-config.c: also load the .config file in the directory
26045         where the assembly was found.
26047 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26049         * assembly.c: load per-assembly config files.
26050         * icall.c: decrapified code to get the config dir and moved to
26051         mono-config.c.
26052         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26053         per-assembly config files. When doing a dll map lookup give precedence
26054         to the per-assembly data.
26056 2004-04-14  Martin Baulig  <martin@ximian.com>
26058         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26059         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26060         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26062         * mono-debugger-debugger.c: While the debugger is locked, remember
26063         whether the symbol tables have changes and send one single
26064         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26066 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26068         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26070         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26071         function.
26073         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26074         account when marshalling string arrays. Fixes #56965.
26076 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26078         * icall.c: Add new icalls mapping for security.
26079         * security.c|h: Add internal calls for WindowsIdentity,
26080         WindowsImpersonationContext and WindowsPrincipal.
26082 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26084         * class.c: Added comment to ensure the System.MonoDummy class
26085         is removed when no longer necessary
26087 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26089         * appdomain.c: Pass arguments to the bootstraping exceptions to
26090         minimize JITed methods at boot
26092         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26093         second string to be null.
26095         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26096         Change the protocol to minimize the JIT methods at startup.  Now
26097         it Returns the internal codepage, if the value of "int_code_page"
26098         is 1 at entry, and we can not compute a suitable code page
26099         number, returns the code page as a string.
26101 2004-04-13  Jackson Harper  <jackson@ximian.com>
26103         * culture-info-tables.h: Fix number of decimal digits for all
26104         english locales.
26106 2004-04-13  Jackson Harper  <jackson@ximian.com>
26108         * icall.c: Clairfy out of sync error message. It is not always
26109         your corlib that is out of sync.
26111 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26113         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26114         properties when only the set accessor is overriden. Fixes #55874.
26116 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26118         * assembly.c (mono_assembly_load_references): Make this thread safe.
26119         Fixes #56327.
26121 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26123         * monosn.c: Add missing initialization calls.
26125 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26127         * locales.c:
26128         ves_icall_System_Globalization_CultureInfo_construct_number_format
26129         Fix g_assert so it compiles on fussier compilers re int/ptr
26130         mismatch
26132 2004-04-08  Dick Porter  <dick@ximian.com>
26134         * socket-io.h:
26135         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26136         53992.  Also rearrange the code so that the internal calls return
26137         an error value and exceptions are thrown from managed code.
26139         * icall.c: Add type info to the socket icalls.
26141 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26143         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26144         owes me a beer.
26146 2004-04-07  Martin Baulig  <martin@ximian.com>
26148         * class.c (mono_class_from_generic_parameter): Don't default
26149         `klass->parent' to `mono_defaults.object_type'.
26151 2004-04-07  Martin Baulig  <martin@ximian.com>
26153         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26154         `param->pklass->reflection_info'.       
26156 2004-04-07  Jackson Harper  <jackson@ximian.com>
26158         * culture-info-tables.h: Fix date separator symbol.
26159         
26160 2004-04-07  Martin Baulig  <martin@ximian.com>
26162         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26163         from System.Type to System.MonoType.
26165 2004-04-07  Martin Baulig  <martin@ximian.com>
26167         * reflection.h
26168         (MonoReflectionGenericParam): Added `has_reference_type' and
26169         `has_value_type' fields.
26171         * reflection.c (mono_image_get_generic_param_info): Encode the
26172         correct flags if we have the `class' or `struct' constraint.
26174 2004-04-07  Martin Baulig  <martin@ximian.com>
26176         * reflection.h
26177         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26179 2004-04-07  Jackson Harper  <jackson@ximian.com>
26181         * appdomain.c: Revert extra patches, just wanted to bump the
26182         version number.
26183         
26184 2004-04-07  Jackson Harper  <jackson@ximian.com>
26186         * Makefile.am: Add culture-info private headers.
26187         * icall.c: Add new icalls for contructing locales.
26188         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26189         * locales.h: Declare new culture info construction methods.
26190         * object.h: Add new fields used to avoid the CultureMap to
26191         MonoCultureInfo.
26192         * culture-info.h: Definition of structs used in the culture info
26193         tables.
26194         * culture-info-tables.h: Autogenerated tables that contain culture
26195         info data. This file was generated with the locale-builder tool.
26196         * appdomain.c: Incement corlib version number.
26197         
26198 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26200         * appdomain.c: (mono_runtime_init) move mono_thread_init
26201         to before mono_object_new calls so critical sections
26202         are initialized before use.
26204 2004-04-07  Martin Baulig  <martin@ximian.com>
26206         * icall.c
26207         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26208         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26209         (ves_icall_MonoGenericParam_initialize): Removed.
26210         (monogenericparam_icalls): Removed.
26211         (generictypeparambuilder_icalls): Added new table for
26212         System.Reflection.Emit.GenericTypeParameterBuilder.
26214         * reflection.c
26215         (mono_reflection_define_generic_parameter): Removed.
26216         (mono_reflection_initialize_generic_parameter): This is now called
26217         from GenericTypeParameterBuilder's .ctor.
26219 2004-04-06  Martin Baulig  <martin@ximian.com>
26221         * class.c (mono_class_init): Don't inflate nested classes in a
26222         generic instance.
26223         (mono_type_get_name_recurse): Include the generic arguments for
26224         generic instances and generic type declarations.
26225         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26226         (_mono_class_get_instantiation_name): Removed.
26227         (mono_class_create_generic): Always use `gklass->name' as our name.
26229         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26231         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26232         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26233         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26234         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26235         closed generic methods here.
26237         * reflection.c
26238         (mono_reflection_generic_inst_get_nested_types): Removed.
26239         (inflate_mono_method): Copy the generic parameters from the
26240         MonoMethodHeader into out MonoGenericMethod.
26242 2004-04-06  Martin Baulig  <martin@ximian.com>
26244         * row-indexes.h
26245         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26247         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26249         * reflection.c (build_compressed_metadata): If we have any entries
26250         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26251         set the header version to 1.1.
26253 2004-04-06  Martin Baulig  <martin@ximian.com>
26255         * class.c (mono_class_init): If we're a generic instance,
26256         initialize our nested classes, too.
26257         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26258         suffix. 
26260 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26262         * process.c: quote the argument passed to the shell on windows.
26264 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26266         * threads.c (mono_alloc_special_static_data): Allow this to be
26267         called during startup.
26269 2004-04-02  Martin Baulig  <martin@ximian.com>
26271         * icall.c
26272         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26274 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26276         * icall.c: Fix build.
26278 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26280         * Makefile.am: Added security.c|h.
26281         * icall.c: Added icall for get_UserName;
26282         * security.c: New file for security related icalls. Added function
26283         get_UserName for System.Environment (fix #56144).
26284         * security.h: New. Header file for security.c
26286 2004-04-02  Dick Porter  <dick@ximian.com>
26288         * icall.c: Deleted the icalls that were obsoleted some time ago
26289         by the ICU string code, and which were mixed into the icall
26290         rearranging.  Fixes bug 55969.
26292         * string-icalls.h: 
26293         * string-icalls.c: Deleted the code that those icalls reference.
26295 2004-04-01  Martin Baulig  <martin@ximian.com>
26297         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26299         * class.c (mono_class_from_generic_parameter): Don't set 
26300         TYPE_ATTRIBUTE_INTERFACE.
26301         (my_mono_class_from_generic_parameter): Likewise.
26303 2004-04-01  Martin Baulig  <martin@ximian.com>
26305         * loader.c (find_method): Added an optional `MonoClass *ic'
26306         argument to search in a specific interface.
26307         (mono_get_method_constrained): New public function.
26309 2004-04-01  Martin Baulig  <martin@ximian.com>
26311         * reflection.c (mono_image_get_generic_field_token): Use the
26312         `handleref' cache here.
26314 2004-04-01  Martin Baulig  <martin@ximian.com>
26316         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26318         * reflection.c (create_generic_typespec): Use the `typespec' hash
26319         here, not the `typeref' one.    
26321 2004-04-01  Martin Baulig  <martin@ximian.com>
26323         * class.c (mono_class_inflate_generic_type): Moved the
26324         functionality into a new static inflate_generic_type() which
26325         returns NULL if it didn't do anything.  Only increment the
26326         `mono_stats.inflated_type_count' if we actually inflated
26327         something.
26328         (mono_class_get_full): Check the classes type to see whether we
26329         need to inflate it; also inflate MONO_TYPE_(M)VAR.
26331 2004-04-01  Jackson Harper  <jackson@ximian.com>
26333         * reflection.c: Set culture for assembly references.
26334         
26335 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
26337         * reflection.[ch], icall.[ch], Fix support for pinning variables.
26339 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26341         * assembly.c:
26342         (do_mono_assembly_open): the critical section also covers
26343         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
26345 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26347         * threads.c:
26348         (mono_manage_threads): abort the background threads when finishing.
26349         Fixes bug #47232.
26351 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26353         * gc.c: only close the done_event handle if there was no timeout.
26354         C-ified comments.
26356 2004-03-30  Martin Baulig  <martin@ximian.com>
26358         * icall.c (icall_entries): It's called "System.Activator", not
26359         "System.Activation".    
26361 2004-03-30  Martin Baulig  <martin@ximian.com>
26363         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
26364         (mono_class_create_from_typespec): Likewise.
26366 2004-03-30  Martin Baulig  <martin@ximian.com>
26368         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
26369         `has_ctor_constraint' and `initialized'.
26371 2004-03-30  Martin Baulig  <martin@ximian.com>
26373         * reflection.c (encode_new_constraint): New static function to add
26374         the constructor constraint attribute to a type parameter.
26375         (encode_constraints): Call encode_new_constraint() if necessary.
26377         * reflection.h
26378         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
26380         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
26381         
26382 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
26384         * reflection.c, icall.c: add support for pinning variables. 
26386 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
26388         * marshal.c (mono_marshal_get_managed_wrapper):
26389         init bool local with zero rather than null.
26391 2004-03-29  Martin Baulig  <martin@ximian.com>
26393         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
26394         the "official" behavior here.
26395         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
26397 2004-03-29  Martin Baulig  <martin@ximian.com>
26399         * icall.c: Reflect latest API changes.
26401 2004-03-29  Martin Baulig  <martin@ximian.com>
26403         * loader.c (mono_get_method_from_token): Also call
26404         mono_metadata_load_generic_params () for abstract and interface
26405         methods; replace the type arguments in the method signature with
26406         the ones which are loaded from the metadata.
26408 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
26410         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
26411         of the lock is not the current thread. MS.NET don't do it, in spite of
26412         what the documentation says. See bug #56157.
26414 2004-03-28  Martin Baulig  <martin@ximian.com>
26416         * class.c (mono_class_init): Don't call init_properties() and
26417         init_events() for generic instances; set `prop->parent' when
26418         inflating properties.
26420         * reflection.c (mono_generic_inst_get_object): Call
26421         `mono_class_init (ginst->klass)'.
26422         (mono_type_get_object): Only create a MonoGenericInst if your
26423         generic type is a TypeBuilder.
26424         (do_mono_reflection_bind_generic_parameters): Only set
26425         `ginst->is_dynamic' if our generic type is a TypeBuilder.
26427 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
26429         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
26430         Fixes #56091.
26432 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26434         * icall.c: added Kill_internal icall.
26435         * process.[ch]: added Kill_internal icall.
26437 2004-03-25  Martin Baulig  <martin@ximian.com>
26439         * class.h (MonoStats): Added `generic_instance_count',
26440         `inflated_method_count', `inflated_type_count' and
26441         `generics_metadata_size'.       
26443 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26445         * reflection.c: no warnings now.
26447 2004-03-25  Martin Baulig  <martin@ximian.com>
26449         * class.c (mono_class_get_full): New public function; does a
26450         mono_class_get(), but also takes a `MonoGenericContext *'.
26452         * loader.c (mono_field_from_memberref): Renamed to
26453         `field_from_memberref', made static and added `MonoGenericContext *'
26454         argument.
26455         (mono_field_from_token): Added `MonoGenericInst *' argument.
26456         (method_from_memberef): Likewise.
26457         (mono_get_method_from_token): Likewise.
26458         (mono_get_method_full): New public function; does a
26459         mono_get_method(), but also takes a `MonoGenericContext *'.
26461         * verify.c (mono_method_verify): Get the method's generic context
26462         and pass it to mono_field_from_token(), mono_get_method_full() and
26463         mono_class_get_full().
26465 2004-03-25  Martin Baulig  <martin@ximian.com>
26467         * class.c (mono_class_inflate_generic_type): Take a
26468         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
26469         `MonoGenericMethod *'.
26471 2004-03-25  Martin Baulig  <martin@ximian.com>
26473         * loader.h (MonoMethodInflated): Store the MonoGenericContext
26474         instead of the MonoGenericMethod here.
26476 2004-03-25  Martin Baulig  <martin@ximian.com>
26478         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
26479         each time we create a new MonoGenericInst, we also create a new
26480         context which points back to us.
26482         * class.c (inflate_method): Use `ginst->context' instead of
26483         creating a new context.
26485         * loader.c (method_from_memberref): Use
26486         `klass->generic_inst->context' instead of creating a new context.
26488 2004-03-25  Martin Baulig  <martin@ximian.com>
26490         * class.h (MonoGenericContext): New struct.
26491         (MonoGenericMethod): Removed `generic_inst'.
26493         * class.c (mono_class_inflate_generic_method): Take a
26494         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
26496 2004-03-25  Martin Baulig  <martin@ximian.com>
26498         * loader.h (MonoMethodInflated): New typedef.
26500         * metadata.h (MonoMethodSignature): Removed `gen_method', make
26501         `generic_param_count' consume just 30 bits, added `is_inflated'
26502         and `has_type_parameters' flags (one bit each).
26504         * class.c (mono_class_inflate_generic_method): Create a
26505         MonoMethodInflated instead of a MonoMethodNormal and set
26506         `is_inflated' in the method signature.
26508         * class.h (MonoGenericMethod): Removed `generic_method'.
26510 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
26512         * image.c: Make sure the name of a MonoImage is always an absolute path.
26513           This fixes bug #54415.
26515 2004-03-24  Martin Baulig  <martin@ximian.com>
26517         * class.c (mono_class_setup_vtable): If we're a generic instance,
26518         use our generic type's vtable size.
26520 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
26522         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
26523         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
26524         problems.
26526 2004-03-23  Martin Baulig  <martin@ximian.com>
26528         * class.h (MonoDynamicGenericInst): Added `int count_events' and
26529         `MonoEvent *events'.
26531         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
26532         (typebuilder_icalls): Added "get_event_info"; calls
26533         mono_reflection_event_builder_get_event_info(). 
26535         * reflection.c (mono_reflection_generic_inst_initialize): Added
26536         `MonoArray *events'.
26537         (mono_reflection_event_builder_get_event_info): New function.
26539 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
26541         * object.h: add mono_type_initialization_init
26543         * object.c (mono_runtime_class_init): 
26544         implement class constructor synchronization rules
26545         to cope with threading issues.  
26546         add mono_type_initialization_init
26548         * appdomain.c (mono_runtime_init): call 
26549         mono_type_initialization_init
26551         * class.h: removing initializing field from MonoVTable
26553 2004-03-23  Martin Baulig  <martin@ximian.com>
26555         * class.c (my_mono_class_from_generic_parameter): Use
26556         `param->name' if it's not NULL. 
26558 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
26560         * class.c: do not insert non-virtual methods in the vtable.
26561         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
26562         that means the method is non-virtual. This never would have
26563         happened before.
26565 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
26567         * profiler.c: Added lock for accessing coverage_hash.
26569 2004-03-22  Martin Baulig  <martin@ximian.com>
26571         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
26572         `method->method->signature->generic_param_count != 0' to make it
26573         work for interface methods.
26575 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26577         * process.c: quote the string passed to the shell using g_shell_quote.
26579 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26581         * threads.c:
26582         (mono_threads_manage): don't remove the finalizer thread and self
26583         from the threads hash table so that mono_thread_manage can be called
26584         more than once.
26586 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26588         * process.c: quote the arguments when UseShellExecute is true. Fixes
26589         bug #55790.
26591 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26593         * threads.c: set mono_thread_detach as a cleanup routine for every
26594         thread. This way it's always executed upon thread termination, either
26595         aborted or finished normally. No more xsp hangs!
26597 2004-03-17  Martin Baulig  <martin@ximian.com>
26599         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
26600         `int count_nested' and a `MonoType **nested'.
26602         * reflection.c (mono_reflection_bind_generic_parameters): Moved
26603         most of the functionality into a new static
26604         do_mono_reflection_bind_generic_parameters() and don't take a
26605         `MonoType *nested_in' argument any more.  Don't compute nested
26606         types here.
26607         (mono_reflection_generic_inst_get_nested_types): New public method
26608         to get nested types.
26610         * class.c (mono_class_create_generic): Set `klass->nested_in' if
26611         we're a nested class.
26613         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
26614         mono_reflection_generic_inst_get_nested_types() to compute the
26615         nested types.
26617 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26619         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
26620         descriptive error message under windows.
26621         
26622 2004-03-17  Martin Baulig  <martin@ximian.com>
26624         * class.c (dup_type): Added `const MonoType *original' argument;
26625         copy the attrs from the original type.
26627 2004-03-17  Martin Baulig  <martin@ximian.com>
26629         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
26630         `m->generic_inst_cache' here.
26632 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
26634         * exception.h exception.c: Add stack_overflow_exception.
26636 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26638         * threadpool.c:
26639         (overlapped_callback): call SetEvent *after* invoking the callback.
26640         No need to call CloseHandle.
26642 2004-03-16  Martin Baulig  <martin@ximian.com>
26644         * reflection.c (mono_image_get_fieldref_token): Take a
26645         `MonoReflectionField *' instead of a `MonoClassField *' and a
26646         `MonoClass *'; store the `MonoReflectionField *' in the hash.
26648 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26650         * appdomain.c: don't add the culture to the filename we're looking for
26651         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
26653 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26655         * locales.c: don't ignore symbols when doing case insensitive compares.
26656         Thanks Dick! Fixes bug #54046.
26658         * threads.c: surround 'threads' usage with enter/leave in
26659         mono_thread_manage.
26661 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
26663         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
26664         implicitly marshalled as [Out]. Fixes #55450.
26666         (mono_marshal_get_runtime_invoke): Zero out the result if there is
26667         an exception.
26669 2004-03-16  Martin Baulig  <martin@ximian.com>
26671         * class.c (mono_class_from_generic_parameter): Use the actual
26672         parameter name. 
26674 2004-03-16  Martin Baulig  <martin@ximian.com>
26676         * reflection.c (type_get_signature_size): New static function.
26677         Compues the size of the type in a method signature.
26678         (method_get_signature_size): New static function; calls
26679         type_get_signature_size() to compute the actual size of the
26680         method's signature.
26681         (method_encode_signature): Use method_get_signature_size() to get
26682         the signature's size rather than using `nparams * 10'.
26684 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26686         * file-io.h: define here WapiOverlapped on windows. I don't want the
26687         regular OVERLAPPED one.
26689         * file-io.c:
26690         * threadpool.c: somehow, BindIoCompletionCallback is not found.
26691         Disabling AIO on windows.
26693 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26695         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
26696         bug #55385.
26698 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26700         * appdomain.c: upgraded corlib version.
26702         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
26703         and BeginWrite. Allow opening files for asynchrnous operations.
26705         * file-io.h: new struct that maps FileStreamAsyncResult.
26706         * icall.c: added new icalls.
26707         * process.[ch]: support setting child process environment variables
26708         and use the SHELL or COMSPEC when UseShellExecute is true.
26710         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
26711         callback for async. IO is here and also BindHandle.
26713         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
26714         from here.
26716 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
26718         * reflection.c (create_custom_attr): Allow len == 0.
26720         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
26721         computation on big-endian machines.
26723 2004-03-13  Martin Baulig  <martin@ximian.com>
26725         * class.h (MonoGenericInst): Added `int count_ifaces'.
26727         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
26728         `ginst->count_ifaces' instead `klass->interface_count' since we
26729         may get called before the vtable is created.
26731         * loader.c (mono_method_get_param_names): If we're a generic
26732         instance, return and don't initialize the class.
26734         * reflection.c (mono_reflection_setup_generic_class): Don't call
26735         ensure_runtime_vtable().
26736         (mono_reflection_bind_generic_parameters): Set
26737         `ginst->count_ifaces'.
26739 2004-03-11  Jackson Harper <jackson@ximian.com>
26741         * icall.c:
26742         * unicode.c:
26743         * unicode.h: Remove unused System.Char icalls.
26744         
26745 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
26747         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
26748         code when we P/Invoke the first library in Windows.Forms, instead
26749         of when we first open the assembly.
26751         * assembly.c: Drop the lookup from here.
26753 2004-03-10  Martin Baulig  <martin@ximian.com>
26755         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
26756         class for properties, fields and events.  Finally fixes #54945.
26758 2004-03-10  Martin Baulig  <martin@ximian.com>
26760         * metadata.c (mono_metadata_class_equal): New static function;
26761         checks whether two generic instances or two generic parameters are
26762         equal.
26763         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
26764         compare classes.        
26766 2004-03-10  Martin Baulig  <martin@ximian.com>
26768         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
26770         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
26771         argument and write it into the `reflection_info' field.
26773         * icall.c
26774         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
26775         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
26777 2004-03-09  Jackson Harper  <jackson@ximian.com>
26779         * char-conversions.h: use 8 bits for numeric data its all we need
26780         * icall.c: numeric data is only 8 bits now.
26782 2004-03-09  Martin Baulig  <martin@ximian.com>
26784         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
26786         * class.c (init_properties, init_events): Initialize the new
26787         `parent' field.
26789         * reflection.c (typebuilder_setup_properties): Likewise.
26790         (typebuilder_setup_events): Likewise.
26792         * reflection.h (MonoEventInfo): Replaced `parent with
26793         `declaring_type' and `reflected_type'.
26795         * icall.c (ves_icall_get_property_info): Distinguish between
26796         declaring and reflected type.
26797         (ves_icall_get_event_info): Likewise.
26799 2004-03-09  Martin Baulig  <martin@ximian.com>
26801         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
26802         (ves_icall_Type_GetField): Correctly set field->klass.
26804 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
26806         * loader.h: Fix warning.
26808 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
26810         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
26811         library routine if present.  Notice that it will still continue
26812         executing even if its missing, for those working on the Gtk#
26813         edition of Windows.Forms.
26815         * assembly.c (do_mono_assembly_open): If loading the
26816         System.Windows.Forms call mono_loader_wini_init.
26818 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
26820         * class.h: Added MonoRemoteClass struct.
26821         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
26822         function for MonoStrings.
26823         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
26824         Added internal call for getting the proxy type.
26825         * marshal.c: Get the type of transparent proxies from its remote_class.
26826         Added methods that generate the IL for type checks and casts:
26827         mono_marshal_get_isinst, mono_marshal_get_castclass, 
26828         mono_marshal_get_proxy_cancast.
26829         * marshal.h: Declaration of the previous new methods.
26830         * object.c: Added new moethods for creating and updating MonoRemoteClass
26831         instances: mono_remote_class, mono_upgrade_remote_class, 
26832         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
26833         * verify.c: FIx transparent_proxy_fields layout.
26834         * appdomain.c: Bump corlib version.
26836 2004-03-04  Jackson Harper  <jackson@ximian.com>
26838         * icall.c: Add icall to access char conversion tables.
26839         * char-conversions.h: Character conversion tables.
26840         * Makefile.am: Add char-conversions.h private header file.
26841         
26842 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
26844         * appdomain.c (unload_thread_main): Increase unloading timeout to
26845         10 sec as a temporary workaround for Nant problems.
26847 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
26849         * gc.c: Add checks for GC_enable and GC_disable.
26851         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
26852         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
26853         (bug #54988).
26854         
26855 2004-02-27  Martin Baulig  <martin@ximian.com>
26857         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26858         `MonoReflectionType *' instead of a `MonoType *'.
26860 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
26862         * gc.c (run_finalize): Avoid finalizing the object representing the
26863         finalizer thread.
26864         (finalizer_thread): Fix warning.
26866 2004-02-25  Martin Baulig  <martin@ximian.com>
26868         * class.c (_mono_class_get_instantiation_name): Added `int offset'
26869         argument for nested types.
26870         (mono_class_create_generic): Added support for nested generictypes.
26872         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
26873         `GList *nested'.
26875         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
26877         * reflection.c (method_encode_signature): Increase the minimum
26878         value of `size' from 10 to 11.
26879         (mono_reflection_bind_generic_parameters): Take `int type_argc'
26880         and `MonoType **types' arguments instead of the `MonoArray
26881         *types'; added `MonoType *nested_in'.  Recursively instantiate
26882         nested classes. 
26884 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
26886         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
26887         stack_overflow_ex members which are used by exception handling.
26889         * appdomain.c (mono_runtime_init): Initialize the new members.
26891         * gc.c (mono_gc_enable): New helper function.
26892         * gc.c (mono_gc_disable): New helper function.
26894 2004-02-23  Martin Baulig  <martin@ximian.com>
26896         * icall.c: I must have been really stupid - make it actually work
26897         this time ;-)
26899 2004-02-23  Martin Baulig  <martin@ximian.com>
26901         * loader.c (method_from_memberref): Only inflate the method if
26902         it's in another klass.
26904 2004-02-23  Martin Baulig  <martin@ximian.com>
26906         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
26907         (mono_class_init): If we're a generic instance and an interface,
26908         compute `class->interface_id'; also create `class->interfaces'
26909         here and inflate them.
26911         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
26912         `ginst->is_open'.
26913         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
26915         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
26917 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
26919         * reflection.c (method_encode_code): Improved the error message
26920         generated by the exception.
26922 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26924         * icall.c: Martin did not do what he said in the ChangeLog for
26925         2004-02-18, but put back the changes for properties and events.
26926         Commenting those changes out again and adding comment to bug #54518.
26927         
26928         * process.c: removed warning.
26930 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
26932         * marshal.c (emit_struct_conv): Print an error message instead of
26933         asserting when a type does not have the StructLayout attribute.
26935 2004-02-20  Martin Baulig  <martin@ximian.com>
26937         * reflection.c (mono_type_get_object): Also use the cache for
26938         generic instances.
26939         (mono_reflection_bind_generic_parameters): Always compute
26940         `ginst->ifaces'.        
26942 2004-02-20  Martin Baulig  <martin@ximian.com>
26944         * class.h (MonoGenericMethod): Removed `klass'.
26946         * class.c (mono_class_inflate_generic_method): Added `MonoClass
26947         *klass' argument.
26949 2004-02-20  Martin Baulig  <martin@ximian.com>
26951         * reflection.c (method_encode_methodspec): Actually use the
26952         uninflated signature for the memberref.
26954 2004-02-20  Martin Baulig  <martin@ximian.com>
26956         * class.h (MonoGenericMethod): Removed `declaring'.
26958         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
26959         is NULL, compute it here.
26961 2004-02-20  Martin Baulig  <martin@ximian.com>
26963         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
26965         * metadata.c (mono_metadata_generic_inst_hash): New method.
26966         (mono_metadata_generic_inst_equal): New method.
26968         * reflection.c (mono_reflection_bind_generic_parameters): Use the
26969         `klass->image->generic_inst_cache' cache to avoid creating
26970         duplicate MonoGenericInst's.
26972         * class.c (mono_class_inflate_generic_type): Use the cache.
26974 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
26976         * object.c: fixed gc descriptor calculation for embedded valuetypes.
26978 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26980         * icall.c: added Socket.WSAIoctl icall.
26982         * socket-io.[ch]: implemented
26983         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
26985 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
26987         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
26989 2004-02-18  Urs C Muff  <umuff@quark.com>
26991         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
26992         this work on PPC and other big-endian architectures.
26994         * debug-mono-symfile.h: Prepended the names of all the `guint32'
26995         fields with an underscore to make sure they're only accessed by
26996         the read32() macro.
26998 2004-02-18  Martin Baulig  <martin@ximian.com>
27000         * icall.c: Put the klass->refclass changes back for methods and
27001         fields, but not for properties and events.  We're currently not
27002         distinguishing between DeclaringType and ReflectedType for
27003         properties and events, that's what caused the regressions.
27005 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27007         * object.c:
27008         (mono_async_result_new): the handle can be NULL.
27010         * threadpool.c: Use an event instead of a semaphore, don't initialize
27011         it until needed. This saves quite a few semaphores from being created
27012         when using the threadpool.
27014 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27016         * object.c (mono_string_is_interned_lookup): Fix interning of long
27017         strings. Fixes #54473.
27019         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27021         * icall.c: Revert the klass->refclass changes since they introduce
27022         regressions (bug #54518).
27024 2004-02-18  Martin Baulig  <martin@ximian.com>
27026         * class.c (mono_class_init): If we're a generic instance and don't
27027         come from a TypeBuilder, inflate our members here.
27028         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27029         (mono_class_create_generic): New public method.
27030         (mono_class_initialize_generic): Removed.
27031         (get_instantiation_name): Renamed to
27032         _mono_class_get_instantiation_name() and made it public.
27034 2004-02-18  Martin Baulig  <martin@ximian.com>
27036         * class.c (mono_class_inflate_generic_type): Clear the new
27037         instance's `nginst->klass' when inflating a generic instance.
27038         (mono_class_is_subclass_of): Added (basic) support for generic
27039         instances.
27041 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27043         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27044         MonoMempool to hold compiled native code.
27046 2004-02-17  Martin Baulig  <martin@ximian.com>
27048         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27049         `properties'.
27051         * reflection.c (mono_reflection_generic_inst_initialize): Added
27052         `MonoArray *properties' argument.
27054         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27056 2004-02-17  Martin Baulig  <martin@ximian.com>
27058         * icall.c (ves_icall_Type_GetFields): Renamed to
27059         ves_icall_Type_GetFields_internal() and added a
27060         `MonoReflectionType *rtype' argument; pass it to
27061         mono_field_get_object() to set the field's "reflected" type.
27062         (ves_icall_Type_GetConstructors): Likewise.
27063         (ves_icall_Type_GetEvents): Likewise.
27064         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27065         argument; pass it to mono_method_get_object() to set the method's
27066         "reflected" type.       
27068 2004-02-17  Martin Baulig  <martin@ximian.com>
27070         * class.h (MonoDynamicGenericInst): New type.
27071         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27073         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27074         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27075         (ves_icall_MonoGenericInst_GetFields): New interncall.
27077         * class.c (mono_class_from_generic): Don't call
27078         mono_class_initialize_generic() if this is a dynamic instance;
27079         ie. it's being created from a TypeBuilder.
27080         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27081         `class->byval_arg.type'.
27083         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27084         to `inflate_method' and made static.
27085         (mono_reflection_inflate_field): Removed.
27086         (mono_reflection_generic_inst_initialize): New public method.
27088         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27089         `ctors' and `fields'; added `initialized'.
27091 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27093         * debug-helpers.c (mono_method_full_name): Fix output for empty
27094         namespaces.
27096 2004-02-12  Martin Baulig  <martin@ximian.com>
27098         * class.h (MonoClassField): Added `MonoType *generic_type'.
27100         * reflection.c (mono_image_get_fieldref_token): Added support for
27101         instantiated generic types.
27102         (field_encode_inflated_field): Removed.
27103         (mono_image_get_inflated_field_token): Removed.
27104         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27106         * reflection.h (MonoReflectionInflatedField): Removed.
27108 2004-02-12  Martin Baulig  <martin@ximian.com>
27110         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27111         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27113         * reflection.c (mono_image_get_methodspec_token): Take a
27114         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27115         (mono_image_create_token): Check whether we have a
27116         `method->signature->gen_method' and call
27117         mono_image_get_methodspec_token() if appropriate.
27118         (inflated_method_get_object): Removed.
27119         (mono_reflection_bind_generic_method_parameters): Return a
27120         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27121         (mono_reflection_inflate_method_or_ctor): Likewise.
27123         * reflection.h (MonoReflectionInflatedMethod): Removed.
27125 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27127         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27128         for custom valuetype marshalling.
27130         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27132 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27134         * icall.c: fixed WSAGetLastError_internal name.
27136 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27138         * threads.c (mono_thread_attach): Allow this to be called multiple
27139         times for a thread.
27140         
27141         * threads.c (build_wait_tids): Do not wait for ourselves.
27143         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27144         appdomain list is empty.
27146         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27147         memory returned by mono_string_builder_to_utf16, since it points into
27148         managed memory. Thanks to Bernie Solomon for noticing this.
27150         * icall.c: Add AppDomainSetup icalls.
27152         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27154         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27155         types.
27157         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27158         custom attributes to the method_aux struct. Also fix array indexes etc.
27160         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27161         
27162 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27164         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27165         (both static and runtime) and reduce startup time.
27167 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27169         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27170         AsAny marshalling conversion instead of crashing.
27172         * marshal.c: Fix warnings.
27174 2004-02-09  Martin Baulig  <martin@ximian.com>
27176         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27178         * reflection.h (MonoReflectionInflatedMethod): Removed the
27179         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27181         * reflection.c (method_encode_methodspec): Removed the `method'
27182         argument; we get it from `gmethod->declaring'.
27183         (inflated_method_get_object): Removed the `declaring' argument.
27185 2004-02-09  Martin Baulig  <martin@ximian.com>
27187         * class.h (MonoGenericMethod): New type.
27188         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27189         `generic_method'.
27191         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27192         a `MonoGenericMethod *gen_method' one.
27194         * class.c (mono_class_inflate_generic_type): Take an additional
27195         `MonoGenericMethod * argument.  This is only non-NULL if we're
27196         inflating types for a generic method.   
27197         (mono_class_inflate_generic_signature): Renamed to
27198         inflate_generic_signature() and made static; take a
27199         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27200         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27201         instead of a `MonoGenericInst *' one.
27202         (mono_class_inflate_generic_method): Likewise.
27204         * reflection.c (encode_generic_method_sig): Take a
27205         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27206         (method_encode_methodspec): Likewise.
27207         (inflated_method_get_object): Likewise. 
27209         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27210         field with a `MonoGenericMethod *gmethod' one.  
27212 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27214         * class.h (mono_class_has_parent): add parens to expansion
27215         so you can ! this.
27217 2004-02-08  Martin Baulig  <martin@ximian.com>
27219         * image.h (MonoImage): Removed `generics_cache'.
27221         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27222         instead of a `MonoType *' argument; removed the `inflate_methods'
27223         argument.  Don't inflate methods here.
27225         * loader.c (find_method): If it's a generic instance, call
27226         mono_class_init() on the `sclass->generic_inst->generic_type'.
27228         * metadata.c (mono_type_size): Make this work on uninitialized
27229         generic instances; call it on the `ginst->generic_type's class.
27231         * reflection.c (mono_reflection_bind_generic_parameters): Call
27232         mono_class_from_generic() to create the `ginst->klass'.
27234 2004-02-08  Martin Baulig  <martin@ximian.com>
27236         * class.h (MonoClass): Changed type of `generic_inst' from
27237         `MonoType *' to `MonoGenericInst *'.
27239 2004-02-08  Martin Baulig  <martin@ximian.com>
27241         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27242         mono_type_get_object(), this is now creating a `MonoGenericInst'
27243         for MONO_TYPE_GENERICINST.
27244         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27245         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27247         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27248         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27249         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27250         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27251         and reflected type.
27253         * reflection.h (MonoReflectionInflatedMethod): Removed
27254         `declaring_type' and `reflected_type'.
27256 2004-02-08  Martin Baulig  <martin@ximian.com>
27258         * class.h (MonoGenericInst): Added `MonoType *parent' and
27259         `MonoType **ifaces'.
27261         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27262         `parent' and `interfaces'.
27264         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27265         `MonoType *' argument and return a `MonoType *'.
27267         * icall.c
27268         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27269         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27271 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27273         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27274         valuetype marshalling.
27276 2004-02-06  Martin Baulig  <martin@ximian.com>
27278         * class.c
27279         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27280         (my_mono_class_from_generic_parameter): Likewise.
27282 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27284         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27285         contents of the symbol files lazily.
27287         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27289         * threads.h threads.c icall.c: New icalls for getting and setting the
27290         threads name.
27292 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27294         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27295         Raise an exception when the domain is not found.
27297 2004-02-03  Martin Baulig  <martin@ximian.com>
27299         * reflection.c (mono_image_get_methodspec_token): Use the
27300         uninflated signature; fixes gen-33.
27302 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27304         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27305         the finalizer code can use thread functionality.
27307         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27308         the finalizer thread.
27310         * threads.c: Make some functions more robust.
27312         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27314         * metadata.h: Add new marshalling conventions.
27316         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27317         stringbuilder marshalling. Fixes #53700.
27319         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
27321         * reflection.c (mono_image_get_type_info): Save declarative security
27322         info.
27324         * reflection.c (mono_image_get_field_info): Handle uninitialized 
27325         unmanaged fields as well.
27327         * appdomain.c: Bump corlib version.
27329 2004-02-01  Martin Baulig  <martin@ximian.com>
27331         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
27332         method type arguments.  
27334 2004-01-30  Duncan Mak  <duncan@ximian.com>
27336         * marshal.h: Add prototype for
27337         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
27338         and
27339         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
27340         fix the build.
27342 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
27344         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
27345         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
27347 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27349         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27350         custom marshalling of valuetypes.
27352         * marshal.c: Fix some warnings.
27354 2004-01-29  Martin Baulig  <martin@ximian.com>
27356         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
27357         for generic method parameters.
27359         * reflection.c (method_encode_methodspec): Write the uninflated
27360         signature into the methodspec table.
27361         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
27362         is always the uninflated method.
27363         (reflection_methodbuilder_to_mono_method): Copy the generic
27364         parameters from the MethodBuilder into `header->gen_params'.
27366 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
27368         * class.c (mono_class_from_generic_parameter): Fix warning.
27370 2004-01-27  Martin Baulig  <martin@ximian.com>
27372         * class.c (mono_class_from_generic_parameter): Don't create
27373         `klass->methods' here.  
27375 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
27377         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
27378         extension since it does not work with libraries named lib<FOO>.dll.so.
27380 2004-01-25  Martin Baulig  <martin@ximian.com>
27382         * class.c (mono_class_inflate_generic_type): Added support for
27383         MONO_TYPE_GENERICINST.
27385         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
27386         inflate methods on open constructed types.      
27388 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27390         * object.c: fire ProcessExit event in the root AppDomain after running
27391         Main. Fixes bug #53299.
27393 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
27395         * socket-io.c: include the new socket-wrappers.h header.
27396         Use the wrappers instead of the unix socket functions to make the code
27397         more clear.
27399 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
27401         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
27403         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27404         Fixes #22532.
27406 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
27408         * reflection.c (mono_image_create_pefile): Handle the case when the
27409         entry point is not a MethodBuilder.
27411         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27412         field to ReflectionMethod since it is not allways a builder.
27414         * reflection.c (type_get_fully_qualified_name): New helper function to
27415         return the fully qualified name of a type.
27417         * reflection.c (encode_marshal_blob): Always emit the fully qualified
27418         type name for custom marshallers.
27420         * reflection.c (mono_marshal_spec_from_builder): Ditto.
27422         * class.c (mono_class_setup_vtable): If a parent class already 
27423         implements an interface, use the implementing methods from that class.
27424         Fixes #53148.
27426 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27428         * threadpool.c: just return instead of ExitThread to allow for thread
27429         clean up earlier.
27431 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
27433         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
27434         when closing resource modules.
27436         * reflection.c (mono_image_create_pefile): Handle the case when the
27437         entry point is not a MethodBuilder.
27439         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
27440         field to ReflectionMethod since it is not allways a builder.
27442 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
27444         * marshal.c (mono_marshal_get_managed_wrapper): 
27445         mono_marshal_alloc takes native int so CONV_I
27446         the arg for 64bits.
27448 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
27450         * reflection.c (fixup_cattrs): New function to fixup the methoddef
27451         tokens in the cattr table. Fixes #53108.
27453 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27455         * loader.c: don't trim ".dll" before looking up in the config file.
27456         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
27458 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
27460         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
27461         Return the module which contains the resource as well.
27462         (ves_icall_System_Reflection_Module_Close): New icall.
27464         * appdomain.c: Bump corlib version number.
27466         * image.c (mono_image_addref): New public function.
27468         * assembly.c: Call mono_image_addref.
27470         * reflection.c (mono_module_get_object): Increase reference count of 
27471         the image.
27473         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
27474         Fixes #22532.
27476         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
27477         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
27478         proper exceptions on DllImport problems.
27480 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
27482         * class.c, metadata.c: eliminate CSIZE macro.
27484 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
27486         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
27487         * object.h: Added async_callback field in MonoAsyncResult.
27488         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
27489         * verify.c: Added async_callback in MonoAsyncResult layout.
27491 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
27493         * reflection.c (mono_reflection_get_custom_attrs): Add support
27494         for Modules.
27496 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27498         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
27499         marshalling.
27500         (mono_marshal_method_from_wrapper): Add null pointer check.
27502 2004-01-16  Martin Baulig  <martin@ximian.com>
27504         * debug-mono-symfile.h: Set version number to 36 and reflect
27505         latest symbol writer changes.
27507 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
27509         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
27510         multi-dimensional arrays.
27511         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
27512         (mono_class_from_mono_type): Use bounded_array_class_get.
27513         
27514         * class.c (mono_bounded_array_class_get): New function which takes
27515         a 'bounded' bool argument to distinguish vectors from one dimensional
27516         arrays.
27518         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
27519         bounded_array_class_get if the array has bounds.
27521         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27522         Search modules loaded using AssemblyBuilder:AddModule as well.
27524 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27526         * appdomain.c: increased corlib version.
27527         * filewatcher.c: removed g_print.
27528         * icall.c:
27529         (get_property_info): only allocate what is actually requested.
27530         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
27532 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27534         * Makefile.am: added filewatcher.[ch]
27535         * filewatcher.[ch]: FileSystemWatcher runtime support.
27536         * icall.c: added new FSW icalls.
27538 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
27540         * string-icalls.c: fix stringbuilder regression as suggested by
27541         Iain McCoy <iain@mccoy.id.au>.
27543 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
27545         * process.c (process_read_stringtable_block): Recognize '007f' as
27546         a language neutral stringtable block.
27548 2004-01-12  Patrik Torstensson
27550         * object.h (MonoStringBuilder) : Changed layout to support our
27551         new stringbuilder class.
27552         * marshal.c: Change marshalling to support the new layout of 
27553         string builder.
27554         * appdomain.c: increased version number because new layout of
27555         string builder.
27557 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
27559         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
27560         assembly name as an string instead of an AssemblyName, since it is
27561         easier to extract info from it.
27563         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
27564         the culture subdirectories too. Fixes #52231.
27566 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27568         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
27569         It takes 2 new parameters with an optional name for the method to look
27570         for and case ignoring info.
27572         * threadpool.c: removed unused variable.
27574 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27576         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
27577         It takes 2 new parameters with an optional name for the property to look
27578         for and case ignoring info.
27579         Fixes bug #52753.
27581 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
27583         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
27584         Fix #52451.
27586 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27588         * appdomain.c:
27589         * assembly.c: escape the uri before passing it to g_filename_from_uri.
27590         Fixes bug #52630.
27592 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
27594         * reflection.c: Add support for more than one unmanaged resource.
27596         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
27597         in field->def_value, as done in all other cases.
27599         * reflection.c (mono_reflection_get_custom_attrs): Add support for
27600         TypeBuilders.
27602         * reflection.c (mono_reflection_create_runtime_class): Remove 
27603         errorneous assignment to klass->element_class, since it is already
27604         done in mono_reflection_setup_internal_class.
27606 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27608         * gc.c: added missing LeaveCriticalSection.
27609         * icall.c: indented a couple of lines.
27610         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
27611         if we call EndInvoke inside a callback. Fixes bug #52601.
27613 2004-01-07  Martin Baulig  <martin@ximian.com>
27615         * mono-debug-debugger.h
27616         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
27618 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
27620         * appdomain.c: Use messages in NotImplementedException.
27622         * exception.c (mono_get_exception_not_implemented): Now this takes
27623         a message argument.
27625         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
27626         exception instead of g_asserting an aborting when something is not
27627         implemented.
27629         Add some inline docs.
27631 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
27633         * reflection.h: Update after changes to object layout.
27635         * reflection.c: Implement saving of unmanaged aka win32 resources.
27637         * appdomain.c: Bump version number.
27639         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
27640         Handle missing domains gracefully.
27642 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
27644         * file-io.c : On Windows, there are much more invalid_path_chars.
27646 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
27648         * class.h, object.c: prepare for GetType () speedup.
27650 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
27652         * profiler.c: workaround for --profile null reference exception on
27653           cygwin. Patch by Patrik Torstensson.
27655 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
27657         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
27658         make work for unaligned access.
27660 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
27662         * class.c: small cleanup (class->fields [i] -> field).
27663         * image.c: check address of metadata is valid.
27665 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
27667         * assembly.h assembly.c (mono_assembly_loaded): New public function to
27668         search the list of loaded assemblies.
27670         * reflection.c (mono_reflection_type_from_name): Use 
27671         mono_assembly_loaded instead of mono_image_loaded.
27673         * reflection.c: Fix warnings.
27675 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
27677         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
27678         is dynamic. This is needed since an assembly can contain both dynamic and
27679         non-dynamic images.
27681         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
27682         assembly->dynamic.
27684         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
27686         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
27687         to store modules loaded using AddModule.
27689         * reflection.c (mono_image_fill_file_table): Generalize this so it works
27690         on Modules.
27692         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
27694         * reflection.c (mono_image_fill_export_table_from_module): New function to
27695         fill out the EXPORTEDTYPES table from a module.
27697         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
27698         into a separate function. Also handle loaded non-dynamic modules.
27700         * reflection.c (mono_image_basic_init): Fix memory allocation.
27702         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27704         * assembly.c (mono_assembly_load_references): Make this public.
27706 2003-12-19  Martin Baulig  <martin@ximian.com>
27708         * class.c (mono_class_initialize_generic): Made this static, take
27709         a `MonoGenericInst *' instead of a `MonoClass *'.
27710         (mono_class_from_generic): Call mono_class_initialize_generic()
27711         unless we're already initialized or being called from
27712         do_mono_metadata_parse_generic_inst().
27714         * class.h (MonoGenericInst): Added `initialized' and
27715         `init_pending' flags.
27717         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
27718         `mono_class_init (gklass)' or mono_class_initialize_generic()
27719         here; set `generic_inst->init_pending' while parsing the
27720         `type_argv'.
27722 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
27724         * locales.c: include string.h for memxxx prototypes
27726 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
27728         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
27729         constructor when accessing literal fields.
27731 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
27733         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27735         * reflection.c (assembly_add_resource_manifest): New function to fill
27736         the MANIFESTRESOURCE table.
27738         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
27740         * reflection.h: Update to changes in class layout.
27742         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
27743         Reenable call to mono_runtime_is_shutting_down ().
27745         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
27746         determine if the runtime is shutting down.
27748 2003-12-16  Jackson Harper <jackson@ximian.com>
27750         * icall.c: comment out call to mono_runtime_is_shutting_down to
27751         fix build.
27752         
27753 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
27755         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
27756         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
27758 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
27760         * reflection.c: move definition of swap_with_size
27761         to before its first call
27763 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
27765         * appdomain.c (mono_runtime_is_shutting_down): New public function.
27767         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
27768         icall.
27770         * object.c: Fix warnings.
27772         * icall.c (ves_icall_Type_Get...): Only consider inherited static
27773         members if FlattenHierarchy is set.
27775         * reflection.c (mono_image_add_decl_security): New function to emit
27776         declarative security.
27778         * reflection.h reflection.c: Add support for declarative security.
27780         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27781         
27782 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
27784         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
27785         
27786         * appdomain.c verify.c: Moved corlib version checking into its own
27787         function in appdomain.c since it needs to create vtables etc.
27789 2003-12-13  Patrik Torstensson <p@rxc.se>
27791         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
27792         instead of unwrapped server.
27794 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
27796         * verify.c (check_corlib): Fix field index.
27798 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
27800         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
27801         GetGacPath icall.
27803 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
27805         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
27806         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
27807         cope with sizeof(size_t) != sizeof(guint32).
27809 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27811         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
27812         in case of failure.
27814 2003-12-10  Mark Crichton <crichton@gimp.org>
27816         * icall.c: removed the GetNonZeroBytes.  We now handle this case
27817         in managed code.
27819         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
27821 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
27823         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
27824         marked as deleted.
27826 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
27828         * verify.c (check_corlib): Handle the case when the version field is 
27829         initialized by a static constructor.
27831 2003-12-08  Patrik Torstensson  <p@rxc.se>
27833     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
27835 2003-12-08  Martin Baulig  <martin@ximian.com>
27837         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
27838         a MonoReflectionGenericParameter, also take the parameter index
27839         and name as arguments.
27840         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
27841         (ves_icall_MonoGenericParam_initialize): New interncall.
27842         (ves_icall_Type_make_byref_type): New interncall.
27844         * reflection.h (MonoReflectionGenericParam): Derive from
27845         MonoReflectionType, not just from MonoObject.  Added `refobj' and
27846         `index' fields.
27848         * reflection.c (mono_reflection_define_generic_parameter): Create
27849         and return a new MonoReflectionGenericParam; don't initialize the
27850         constraints here.
27851         (mono_reflection_initialize_generic_parameter): New public method;
27852         initializes the constraints and creates the `param->pklass'.
27854 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
27856         * reflection.h reflection.c: Use the new fields 'num_types', 
27857         'num_fields' and 'num_methods' to track the number of types etc.
27859         * verify.c (check_corlib): Check corlib version number.
27861 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
27863         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
27864         function works on all methods.
27866 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
27868         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
27869         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
27870         the custom_type_info flag of the transparent proxy.
27871         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
27872         objects that supports IRemotingTypeInfo.
27873         * object.h: Added custom_type_info field in transparent proxy.
27875 2003-12-06  Martin Baulig  <martin@ximian.com>
27877         * class.c (mono_class_create_from_generic): Removed.
27878         (mono_class_from_generic): Check `ginst->klass' before doing
27879         anything else.  This is important to fully support "recursive"
27880         generic types.
27882         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
27883         empty `generic_inst->klass' before doing anything else.
27885 2003-12-06  Dick Porter  <dick@ximian.com>
27887         * verify.c: 
27888         * object.h:
27889         * icall.c:
27890         * locales.c: Use C structs to access class fields.  Don't do a
27891         conversion between MonoString and UChar because both are
27892         platform-endian UTF-16.  Compare now takes startindex and count
27893         parameters.  Add a char overload for IndexOf.  Speed up the
27894         invariant string IndexOf.
27896 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
27898         * Makefile.am (monosn_LDADD): Fix parallel build.
27900 2003-12-04  Martin Baulig  <martin@ximian.com>
27902         * icall.c
27903         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27904         (ves_icall_Type_make_array_type): New interncall.       
27906 2003-12-04  Martin Baulig  <martin@ximian.com>
27908         * locales.c: also change it in the !HAVE_ICU case.
27910 2003-12-04  Dick Porter  <dick@ximian.com>
27912         * icall.c:
27913         * locales.c: construct_compareinfo is now in CompareInfo, not
27914         CultureInfo.
27916 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
27918         * image.c (mono_image_load_file_for_image): Cache loaded images in the
27919         image->files array.
27921         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
27922         table as well.
27924         * assembly.c (mono_assembly_load_references): Only load references
27925         once.
27927         * class.c (mono_class_from_name): Avoid linear search of the 
27928         EXPORTEDTYPE table.
27930         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
27932 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
27934         * image.h (MonoImage): Add 'field_cache' field.
27936         * loader.c (mono_field_from_token): Cache field lookups.
27937         
27938         * reflection.c (mono_module_get_object): Fix name property.
27940         * icall.c (ves_icall_get_enum_info): Update after changes to 
27941         mono_metadata_get_constant_index ().
27943         * icall.c: Get rid of get_type_info icall, use a separate icall for
27944         each type property to avoid needless memory allocations. Fixes #51514.
27946         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
27947         to avoid needless binary searches.
27949         * class.c (class_compute_field_layout): Move the initialization of
27950         field->def_value to mono_class_vtable ().
27952         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
27953         non-corlib types.
27955         * object.c (mono_object_allocate): Make it inline.
27957         * object.c (mono_object_allocate_spec): Make it inline.
27958         
27959 2003-12-02  Dick Porter  <dick@ximian.com>
27961         * locales.c (create_NumberFormat): NumberFormatInfo construction.
27962         Patch by Mohammad DAMT (mdamt@cdl2000.com).
27964 2003-12-01  Dick Porter  <dick@ximian.com>
27966         * threads.c: Fix signature and call in CreateMutex and
27967         CreateEvent.
27969 2003-12-01  Dick Porter  <dick@ximian.com>
27971         * icall.c: 
27972         * locales.c: Implement string compares and searching
27974         * object.h: Add extra Thread field
27976 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
27978         * reflection.c (fixup_method): Add support for MonoCMethod.
27980 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
27982         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
27984         * reflection.c (assembly_name_to_aname): Allow extra characters in
27985         assembly names. Fixes #51468.
27987 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
27989         * exception.c (mono_exception_from_name_domain): New helper function.
27991         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
27992         exception object in the correct domain.
27994         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
27995         formatting + make a copy a the input data.
27997         * loader.c (mono_get_method_from_token): Methods which contain
27998         native code do not have entries in the ImplMap.
28000         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28001         Thanks to Gonzalo for spotting this.
28002         
28003         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28004         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28006         * assembly.h (mono_assembly_load_from): Split the second part of 
28007         assembly loading into a new public function.
28009         * exception.h (mono_get_exception_bad_image_format): New function.
28011 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28013         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28014         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28015         
28016         * icall.c: Add new icall for creating dynamic methods.
28018         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28020         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28022         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28023         create a dynamic method.
28025         * reflection.c (resolve_object): New helper function.
28027         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28028         which manipulate it so they can also work on dynamic methods.
28030         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28031         creating the MonoReflectionMethodAux structure if it is not needed.
28032         
28033         * reflection.h verify.c: Update after changes to object layout.
28035         * reflection.c (method_builder_encode_signature): Fix compilation on
28036         gcc 2.95.x.
28038 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28040         * appdomain.h: Added support for context static fields. Added static_data
28041           field to MonoAppContext and renamed thread_static_fields to a more
28042           generic special_static_fields in MonoAppDomain, since it can now contain
28043           context static fields.
28044         * domain.c: Updated hashtable name.
28045         * object.c: Replaced field_is_thread_static() for a more generic
28046           field_is_special_static() which also checks for context static attribute.
28047           In mono_class_vtable(), added support for static context fields.
28048         * threads.c: Changed methods that manage thread static fields to more
28049           generic methods so they can be reused both for thread and context static
28050           data.
28051         * threads.h: Declared some new methods.
28053 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28055         * reflection.h: Update after changes to the managed types.
28057         * reflection.c (encode_custom_modifiers): New helper function.
28059         * reflection.c (method_encode_signature): Emit custom modifiers.
28061         * reflection.c (field_encode_signature): Emit custom modifiers.
28063 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28065         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28067         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28068         implementation.
28070         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28071         icall.
28073         * object.c (mono_field_get_value_object): New function.
28075         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28076         specific.
28078 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28080         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28081         return a preallocated out-of-memory exception instance.
28083         * object.c (out_of_memory): Use the new function.
28085         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28086         flag is before the custom modifiers. Fixes #49802.
28088 2003-11-16  Martin Baulig  <martin@ximian.com>
28090         * class.c (mono_class_is_open_constructed_type): Implemented the
28091         MONO_TYPE_GENERICINST case.
28093 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28095         * assembly.c (mono_assembly_fill_assembly_name): New function to
28096         fill out the MonoAssemblyName structure.
28097         (mono_assembly_open): Use the new function.
28099         * icall.c (fill_reflection_assembly_name): New helper function.
28101         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28102         new function.
28104         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28106 2003-11-15  Martin Baulig  <martin@ximian.com>
28108         * class.c (mono_class_is_open_constructed_type): New public
28109         function; checks whether a type is an open constructed type,
28110         ie. whether it still contains type parameters.
28111         (mono_class_inflate_generic_type): If we're a type parameter and
28112         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28113         type.
28115         * class.h (MonoGenericInst): Added `guint32 is_open'.
28117         * loader.c (method_from_methodspec): Check whether we're an open
28118         or closed constructed type and set `ginst->is_open'.
28120         * reflection.c (mono_reflection_bind_generic_parameters): Check
28121         whether we're an open or closed constructed type and set
28122         `ginst->is_open'.
28123         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28124         from open constructed types.
28126 2003-11-15  Martin Baulig  <martin@ximian.com>
28128         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28129         a generic instance (instead of a generic type declaration) with
28130         unbound generic parameters, bind them to our actual types.
28132 2003-11-14  Martin Baulig  <martin@ximian.com>
28134         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28136         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28137         an interface type, populate `res->interfaces' with instantiated
28138         versions of all the interfaces we inherit.
28140 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28142         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28143         when MONO_PATH is set but doesn't contain the install dir.
28145 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28147         * icall.c:
28148         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28149         it's also implemented in base classes. Fixes bug #50927.
28151 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28153         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28154         if this method is called from a finalizer. Fixes #50913.
28156 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28158         * threads.c: Implement VolatileRead/VolatileWrite
28160         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28162 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28164         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28165         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28166         2.95.3.
28168         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28169         from Peter Ross (pro@missioncriticalit.com).
28170         
28171 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28173         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28175 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28177         * assembly.c (mono_assembly_load_references): Disable check because it
28178         triggers on older corlibs which lots of people have.
28180 2003-11-12  Jackson Harper  <jackson@ximian.com>
28182         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28183         load corlib.dll if mscorlib.dll is not found.
28184         * assembly.h: Remove corlib name define.
28185         * class.c:
28186         * domain.c:
28187         * image.c: Change corlib name to mscorlib.
28188         
28189 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28191         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28193 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28195         * appdomain.h: Added loader_optimization here to sync with the C#
28196         code, and add disallow_binding_redirects field.
28198 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28200         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28202         * reflection.c (mono_image_build_metadata): Fix crash on modules
28203         with no types.
28205         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28207         * icall.c (ves_icall_get_method_info): Return callingConvention as
28208         well.
28210         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28211         namespaces from the EXPORTEDTYPE table as well.
28213         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28214         from all modules inside the assembly.
28215         
28216 2003-11-11  Martin Baulig  <martin@ximian.com>
28218         * reflection.c (mono_reflection_bind_generic_parameters): Make
28219         this work for interfaces.
28221 2003-11-11  Martin Baulig  <martin@ximian.com>
28223         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28225 2003-11-11  Martin Baulig  <martin@ximian.com>
28227         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28228         "MonoInflatedMethod" and "MonoInflatedCtor".
28230 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28232         * reflection.c (resolution_scope_from_image): Use the assembly table
28233         from the manifest module, since other modules don't have it.
28235         * debug-helpers.c (mono_type_full_name): New helper function.
28237         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28239         * image.c (mono_image_load_file_for_image): New public function which
28240         is a replacement for the load_file_for_image in class.c.
28242         * assembly.c (mono_assembly_load_module): A wrapper for the function
28243         above which does assembly association and reference loading too.
28245         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28247 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28249         * appdomain.c: not all of the attributes for the full assembly name
28250         are required and the order doesn't matter. Fixes bug #50787.
28252 2003-11-10  Dick Porter  <dick@ximian.com>
28254         * locales.c: Use platform-endian UTF16
28256 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28258         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28259         
28260 2003-11-10  Martin Baulig  <martin@ximian.com>
28262         * metadata.c
28263         (mono_metadata_load_generic_params): Make this actually work.
28265         * reflection.c (mono_reflection_bind_generic_parameters): If our
28266         parent is a generic instance, pass all the `types' to it, no
28267         matter whether it has the same number of type parameters or not.
28269 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28271         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28273         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28274         assignment code to this function so it gets called recursively for all
28275         modules.
28277         * image.c (load_modules): Remove the assembly assignment since it is
28278         now done by mono_assembly_load_references.
28279         
28280         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28281         Add 'module' argument.
28282         (mono_module_get_types): New helper function.
28283         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28285 2003-11-08  Martin Baulig  <martin@ximian.com>
28287         * class.c (mono_class_inflate_generic_method): Interface method
28288         don't have a header.
28290         * reflection.c (mono_image_get_methodspec_token): Take an
28291         additional `MonoGenericInst *' argument instead of reading it from
28292         the header; this is necessary to support interfaces.
28293         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28294         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28295         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28296         argument.
28298         * reflection.h (MonoReflectionInflatedMethod): Added
28299         `MonoGenericInst *ginst'.
28301 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28303         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28305 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28307         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28309 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28311         * reflection.c 
28312         (reflection_methodbuilder_from_method_builder):
28313         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28314         initialize a ReflectionMethodBuilder structure.
28315         (mono_image_get_methodbuilder_token):
28316         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28317         tokens which point to types in another module inside the same assembly.
28319         * reflection.c: Use the new helper functions.
28320         
28321         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
28323         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
28324         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
28326         * reflection.c (resolution_scope_from_image): Emit a moduleref if
28327         neccesary.
28329         * reflection.c (mono_image_build_metadata): Emit metadata only for the
28330         current module. Emit the manifest only for the main module.
28332         * reflection.c (mono_image_create_token): Add assertion when a 
28333         memberref needs to be created.
28335         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
28337         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
28338         larger buffer for the custom attribute blob. Fixes #50637.
28339         
28340 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28342         * threadpool.c: notify listener on async processing handles after
28343         invoking the async callback. Thanks to Zoltan.
28345 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28347         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
28348         avoid code duplication.
28350         * reflection.h (MonoDynamicImage): New type which is currently unused,
28351         but will be used through the ref.emit code in place of 
28352         MonoDynamicAssembly.
28354         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28355         object layout.
28357         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
28358         a MonoDynamicImage instead of just a MonoImage.
28359         
28360         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
28361         icalls to ModuleBuilder but keep their semantics, so they will work
28362         with moduleb->assemblyb. This will change later.
28363         
28364 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28366         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
28367         object layout.
28369         * reflection.c (mono_image_build_metadata): Avoid creation of a default
28370         main module, since it is now done by the managed code.
28372 2003-11-03  Martin Baulig  <martin@ximian.com>
28374         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
28375         `ginst->klass' here.
28376         (method_encode_methodspec): Don't use the `ginst->generic_method's
28377         klass if it's a generic instance, use `ginst->klass' in this case.
28379 2003-11-03  Martin Baulig  <martin@ximian.com>
28381         * reflection.c (mono_image_get_generic_method_param_info):
28382         Removed, use mono_image_get_generic_param_info() instead.
28383         (mono_image_get_type_info): Write the GenericParam table before
28384         the Method table.  This is neccessary because in the GenericParam
28385         table, type parameters of the class (ie. '!0' etc.) must come
28386         before the ones from its generic methods (ie. '!!0' etc).
28388 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
28390         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
28392 2003-11-02  Martin Baulig  <martin@ximian.com>
28394         * reflection.c (create_generic_typespec): Take a
28395         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
28396         the generic parameters from it.
28398 2003-11-02  Martin Baulig  <martin@ximian.com>
28400         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
28401         instead of a `MonoClassField *' since we just need the type.
28402         (create_generic_typespec): New static function.  Creates a
28403         TypeSpec token for a generic type declaration.
28404         (mono_image_get_generic_field_token): New static function.
28405         (mono_image_create_token): If we're a FieldBuilder in a generic
28406         type declaration, call mono_image_get_generic_field_token() to get
28407         the token.
28409 2003-11-02  Martin Baulig  <martin@ximian.com>
28411         * reflection.h
28412         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
28413         `MonoReflectionGenericInst *declaring_type' and
28414         `MonoReflectionGenericInst *reflected_type' fields.
28416         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
28417         `MonoReflectionGenericInst *declaring_type' and a
28418         `MonoReflectionGenericInst *reflected_type' argument instead of a
28419         single `MonoReflectionGenericInst *type' one.  Set
28420         `res->declaring_type' and `res->reflected_type' from them.
28421         (mono_reflection_inflate_field): Likewise.      
28423 2003-11-02  Martin Baulig  <martin@ximian.com>
28425         * class.c (mono_class_setup_vtable): Don't store generic methods
28426         in the vtable.  
28428 2003-11-02  Martin Baulig  <martin@ximian.com>
28430         * reflection.h (MonoReflectionGenericInst): Added
28431         `MonoReflectionType *declaring_type'.
28433         * reflection.c (mono_reflection_bind_generic_parameters): Use
28434         `if (tb->parent)' instead of `klass->parent'.
28436 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
28438         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
28439         with an empty ASSEMBLY table.
28441         * reflection.c (mono_image_build_metadata): Avoid using the same loop
28442         variable in the inner and outer loops.
28444 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
28446         * metadata.h (mono_metadata_make_token): Put parentheses around macro
28447         argument.
28449         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
28450         
28451         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
28452         icalls. Instead, do everything in managed code. This is needed since
28453         it is hard to restore the original domain etc. in unmanaged code in the
28454         presence of undeniable exceptions.
28456         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
28457         New icalls to push and pop appdomain refs.
28459 2003-10-31  Martin Baulig  <martin@ximian.com>
28461         * class.c (inflate_generic_type): Renamed to
28462         mono_class_inflate_generic_type() and made it public.
28464         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
28465         New interncall.
28467         * loader.c (mono_field_from_memberref): Also set the retklass for
28468         typespecs.
28470         * fielder.c (mono_image_get_inflated_field_token): New static
28471         method; creates a metadata token for an inflated field.
28472         (mono_image_create_token, fixup_method): Added support for
28473         "MonoInflatedField".
28474         (fieldbuilder_to_mono_class_field): New static function.
28475         (mono_reflection_inflate_field): New public function.
28477         * reflection.h
28478         (MonoReflectionGenericInst): Added `MonoArray *fields'.
28479         (MonoReflectionInflatedField): New typedef.     
28481 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
28483         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
28484         for Solaris and other platforms without s6_addr16
28486 2003-10-30  Martin Baulig  <martin@ximian.com>
28488         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
28489         argument instead of two.
28490         (mono_class_inflate_generic_signature): Likewise.
28491         (inflate_generic_header): Likewise.
28492         (mono_class_inflate_generic_method): Likewise.  In addition, if
28493         `ginst->klass' is set, it becomes the new `method->klass'.
28495         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
28496         field.
28498         * reflection.c (encode_generic_method_sig): Write a 0xa as the
28499         first byte. [FIXME]
28500         (method_encode_methodspec): If we have generic parameters, create
28501         a MethodSpec instead of a MethodRef.
28502         (fixup_method): Added support for "MonoInflatedMethod" and
28503         "MonoInflatedCtor".
28504         (mono_image_create_token): Added support for "MonoInflatedMethod"
28505         and "MonoInflatedCtor".
28506         (inflated_method_get_object): New static function; returns a
28507         managed "System.Reflection.MonoInflatedMethod" object.
28508         (mono_reflection_bind_generic_method_parameters): Return a
28509         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
28510         (mono_reflection_inflate_method_or_ctor): Likewise.
28511         (mono_image_get_generic_method_param_info): Initialize unused
28512         fields to zero.
28513         (mono_image_get_generic_param_info): Likewise.
28515         * reflection.h (MonoReflectionInflatedMethod): New public
28516         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
28517         "S.R.MonoInflatedCtor" classes.
28519         * loader.c (method_from_memberref): If we're a TypeSpec and it
28520         resolves to a generic instance, inflate the method.
28522 2003-10-28  Dick Porter  <dick@ximian.com>
28524         * object.c (mono_runtime_run_main): Convert command-line arguments
28525         into utf8, falling back to the user's locale encoding to do so.
28527 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
28529         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
28530         at this time.
28532         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
28534         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
28535         up icalls at method definition time. Partially fixes #33569.
28537 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
28539         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
28540         marshalling of arrays. Fixes #50116.
28542         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
28544         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
28545         points to a vtable in the dying appdomain.
28547         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
28548         listeners into unmanaged code inside the lock.
28550         * object.c (mono_class_vtable): Turn off typed allocation in non-root
28551         domains and add some comments.
28553 2003-10-25  Martin Baulig  <martin@ximian.com>
28555         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
28557         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
28559         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
28560         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
28561         currently parsing.  Create the generic class and store it in
28562         `generic_inst->klass' before parsing the type arguments.  This is
28563         required to support "recursive" definitions; see mcs/tests/gen-23.cs
28564         for an example.
28565         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
28566         to support recursive typespec entries.
28568         * class.c (mono_class_setup_parent): If our parent is a generic
28569         instance, we may get called before it has its name set.
28570         (mono_class_from_generic): Splitted into
28571         mono_class_create_from_generic() and mono_class_initialize_generic().
28573 2003-10-25  Martin Baulig  <martin@ximian.com>
28575         * icall.c (ves_icall_Type_BindGenericParameters): Return a
28576         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
28577         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
28578         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
28580         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
28581         (create_typespec): Likewise.
28582         (mono_reflection_bind_generic_parameters): Return a
28583         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
28584         (mono_reflection_inflate_method_or_ctor): New public function.
28586         * reflection.h (MonoReflectionGenericInst): New typedef.        
28588 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
28590         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
28591         inside the domain lock. Fixes #49993.
28592         
28593         * object.c (mono_class_vtable): When typed allocation is used, 
28594         allocate vtables in the GC heap instead of in the mempool, since the
28595         vtables contain GC descriptors which are used by the collector even
28596         after the domain owning the mempool is unloaded.
28598         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
28600         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
28601         reflect what it does. Also invalidate mempools instead of freeing
28602         them if a define is set.
28604         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
28605         of the appdomain.
28606         
28607         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
28608         hold the finalizable objects in this domain.
28610         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
28611         appdomain.
28613         * appdomain.c (mono_domain_set): New function to set the current
28614         appdomain, but only if it is not being unloaded.
28616         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
28617         appdomain which is being unloaded.
28618         
28619         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
28620         unloading of the root appdomain.
28622         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
28623         icall to execute a method in another appdomain. Intended as a 
28624         replacement for InternalSetDomain, which can confuse the code 
28625         generation in the JIT.
28627         * appdomain.c (mono_domain_is_unloading): New function to determine
28628         whenever an appdomain is unloading.
28630         * appdomain.c (mono_domain_unload): New function to correctly unload
28631         an appdomain.
28633         * assembly.c (mono_assembly_load_references): Check that an assembly
28634         does not references itself.
28636         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
28637         domain manually, it asks the finalizer thread to do it, then waits for
28638         the result. Also added a timeout.
28640         * icall.c: Register the new icalls.
28642         * threads.h threads.c: Export the mono_gc_stop_world and 
28643         mono_gc_start_world functions.
28644         
28645         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
28646         function to fill out the mempool with 0x2a.
28648 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
28650         * reflection.h (MonoReflectionMethodAux): New structure to store
28651         information which is rarely used, thus is not in the MonoMethod
28652         structure.
28654         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
28655         store the aux info.
28657         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
28658         and marshalling info into the aux structure.
28660         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
28661         from the aux structure.
28663         * loader.c (mono_method_get_param_names): Retrieve the param names from
28664         the aux structure.
28665         
28666 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
28668         * exception.h exception.c: Add AppDomainUnloadedException && fix 
28669         warning.
28671 2003-10-21  Dick Porter  <dick@ximian.com>
28673         * socket-io.c
28674         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
28675         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
28677 2003-10-21  Martin Baulig  <martin@ximian.com>
28679         * reflection.c (mono_reflection_bind_generic_parameters):
28680         `klass->parent' is NULL for interfaces.
28682 2003-10-21  Martin Baulig  <martin@ximian.com>
28684         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28686 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
28688         * exception.c (mono_exception_from_name_msg): New helper function for
28689         creating exceptions and initializing their message field.
28691         * exception.c: Simplify functions using the new helper.
28693         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
28694         New function.
28696         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
28697         mono_raise_exception, since otherwise gcc doesn't generate the function
28698         epilog for raise_exception, confusing the stack unwinding in the JIT.
28699         Fixes #45043.
28701         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
28702         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
28703         Fixes #49499.
28705 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28707         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
28708         utf8.
28710 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
28712         * icall.c: Removed GetUninitializedObject method because
28713           AllocateUninitializedClassInstance does the same.
28715 2003-10-18  Martin Baulig  <martin@ximian.com>
28717         * class.c (inflate_generic_signature): Renamed to
28718         mono_class_inflate_generic_signature() and made it public.
28719         (my_mono_class_from_generic_parameter): New static function; if we
28720         don't already have the generic parameter's MonoClass, create a
28721         very simple one which is just used internally in the runtime and
28722         not passed back to managed code.
28724         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
28726         * metadata.h (MonoMethodSignature): Moved the
28727         `MonoGenericParam *gen_params' to the MonoMethodHeader.
28728         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
28730         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
28731         ves_icall_MonoMethod_GetGenericArguments(); this is now an
28732         interncall on the MonoMethod class, not on MethodInfo.
28733         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
28734         calling mono_reflection_bind_generic_method_parameters() directly.
28736         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28737         return the already computed `method->signature'.
28738         (method_from_methodspec): New static function to load a method
28739         from a MethodSpec entry.
28740         (mono_get_method_from_token): Call the new method_from_methodspec()
28741         for MethodSpec tokens.  
28742         (mono_get_method_from_token): If we're a generic method, load the
28743         type parameters.
28745         * reflection.c (mono_image_get_memberref_token): Allow
28746         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
28747         table.
28748         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
28749         (mono_image_create_token): First check whether it's a generic
28750         method (so we'd need to create a MethodSpec), then do the other
28751         two alternatives.
28752         (mono_reflection_bind_generic_method_parameters): Return a
28753         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
28754         called directly from the interncall.
28756 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
28758         * reflection.c (load_public_key): Move loading of the public key
28759         into managed code.
28761         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
28763         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
28764         fields.
28766         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
28767         culture, hash_alg and public_key. Fixes #49555.
28769 2003-10-17  Martin Baulig  <martin@ximian.com>
28771         * class.h (MonoGenericInst): Moved this declaration here and added
28772         `MonoMethod *generic_method'.
28774         * icall.c
28775         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
28776         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
28778         * metadata.c (mono_metadata_type_equal): Two types of
28779         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
28780         index; ie. don't compare the address of the `MonoGenericParam'
28781         structure.
28782         (mono_metadata_load_generic_params): Removed the `MonoMethod
28783         *method' argument.
28785         * metadata.h (MonoGenericInst): Moved declaration to class.h.
28786         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
28788         * reflection.c (method_encode_signature): Encode the number of
28789         generic parameters.
28790         (encode_generic_method_sig): New static function.
28791         (method_encode_methodspec): New static function; creates an entry
28792         in the MethodSpec table for a generic method.
28793         (mono_image_get_methodspec_token): New static function.
28794         (mono_image_create_token): Call mono_image_get_methodspec_token()
28795         for generic methods.
28796         (mono_reflection_bind_generic_method_parameters): New public
28797         function.  Instantiates a generic method.
28799 2003-10-16  Martin Baulig  <martin@ximian.com>
28801         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
28802         *gen_params' here from MonoMethodHeader.
28804         * metadata.c (mono_metadata_parse_method_signature): If we have
28805         generic parameters, initialize `method->gen_params' and then set
28806         the correct `type->data.generic_param' in all the parameters.
28808 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
28810         * threads.c (mono_threads_get_default_stacksize): New function to 
28811         return the default stacksize.
28813         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
28814         termination of the finalizer thread, since the previous method had
28815         race conditions. Fixes #49628.
28817         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
28818         as for the other managed threads.
28820 2003-10-16  Martin Baulig  <martin@ximian.com>
28822         * class.c (inflate_generic_signature): Copy `generic_param_count'
28823         and `gen_params'.
28825         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
28826         New interncall.
28828         * metadata.c (mono_metadata_parse_method_signature): Actually set
28829         the `method->generic_param_count' here.
28830         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
28832 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
28834         * object.h: Add a new field to TypedRef to simplify the implementation
28835         of the REFANY opcodes in the JIT.
28837         * icall.c: Make use of the new field.
28839         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
28840         dynamically.
28842 2003-10-15  Martin Baulig  <martin@ximian.com>
28844         * class.c (mono_class_from_gen_param): Renamed to
28845         mono_class_from_generic_parameter() and moved most of the
28846         functionality from mono_reflection_define_generic_parameter()
28847         here; ie. we create a "real" class here.
28848         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
28849         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
28850         previously been called.
28852         * class.h (MonoGenericParam): Moved the declaration of this struct
28853         here from metadata.h and added `MonoMethod *method'.
28855         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
28856         interncall.
28858         * loader.c (mono_get_method_from_token): If we have any generic
28859         parameters, call mono_metadata_load_generic_params() to read them
28860         from the MONO_TABLE_GENERICPAR.
28862         * metadata.c (mono_metadata_load_generic_params): Added
28863         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
28865         * metadata.h (MonoMethodSignature): Replaced
28866         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
28867         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
28869         * reflection.c (mono_reflection_define_generic_parameter): Moved
28870         most of the functionality into the new
28871         mono_class_from_generic_parameter(); set the `method' field if
28872         we're a method parameter.       
28874 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
28876         * marshal.c (emit_struct_conv): if native size is 0
28877         emit no code.
28879 2003-10-14  Martin Baulig  <martin@ximian.com>
28881         * icall.c: The generics API has changed in the spec since it was
28882         added to System.Type; these modifications make it match the spec
28883         again.
28884         (ves_icall_Type_GetGenericParameters): Renamed to
28885         `ves_icall_Type_GetGenericArguments'.
28886         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
28887         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
28888         `ves_icall_MonoType_get_HasGenericArguments'.
28889         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
28890         `ves_icall_MonoType_get_IsGenericParameter'.
28891         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
28892         this is no interncall anymore.
28893         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
28894         `ves_icall_TypeBuilder_get_IsGenericParameter'.
28896 2003-10-14  Martin Baulig  <martin@ximian.com>
28898         * reflection.c (mono_reflection_bind_generic_parameters): Also
28899         inflate generic methods if we're reading the class from IL.
28901 2003-10-13  Martin Baulig  <martin@ximian.com>
28903         * reflection.c (mono_reflection_define_generic_parameter): This
28904         method isn't called directly from the icall anymore; take a
28905         `MonoReflectionAssemblyBuilder *' so we can use this for type and
28906         method generic parameters.
28907         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
28908         (method_builder_encode_signature): Encode generic parameters.
28909         (mono_image_get_method_info): Write generic params to the
28910         MONO_TABLE_GENERICPARAM table.
28912         * reflection.h (MonoReflectionMethodBuilder): Added
28913         `MonoArray *generic_params'.
28915         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
28917         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
28918         wrapper for mono_reflection_define_generic_parameter().
28919         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
28921 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
28923         * marshal.h: Add missing function to fix build.
28925         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
28926         the SetLastError pinvoke attribute.
28928         * marshal.c (mono_marshal_set_last_error): New helper function called
28929         by the generated code.
28930         
28931         * marshal.c (mono_mb_emit_branch): New helper function.
28933         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
28935         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
28936         classes as parameters and return values of delegates. Fixes #29256. 
28938 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
28940         * locales.c: use gint32 in non HAVE_ICU case
28942 2003-10-11  Martin Baulig  <martin@ximian.com>
28944         * mono-debug.c (mono_debug_add_method): Added a workaround for
28945         bug #48591.
28947 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
28949         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
28950         delegates passed to native code must use the STDCALL calling 
28951         convention. Fixes #35987.
28953 2003-10-10  Martin Baulig  <martin@ximian.com>
28955         * class.c (inflate_generic_type): If we're inflating for a generic
28956         type instance (and not for a generic method), return
28957         MONO_TYPE_MVAR unchanged.
28959 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28961         * string-icalls.c: Join ignores null strings in the source array.
28962         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
28963         * threads.c: GetAvailableTheads is slightly more accurate.
28965 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
28967         * threads.h threads.c : add mono_threads_set_default_stacksize
28968         and pass default to CreateThread calls.
28970 2003-10-09  Dick Porter  <dick@ximian.com>
28972         * icall.c:
28973         * locales.h:
28974         * locales.c: Internal calls for constructing CultureInfo and
28975         related objects from libicu (if its available.)
28977 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
28979         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
28981 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28983         * threadpool.c: added an argument to async_invoke_thread that is the
28984         item to process, pass the MonoAsyncResult to the thread start function
28985         when creating a new thread. This way we don't need to acquire any lock
28986         when we're creating a new thread. Readded a semaphore for faster
28987         response times (instead of that Sleep i added).
28989 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
28991         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
28992         get daylight change dates better on Windows, fix handling
28993         of platforms without tm_gmtoff.
28995 2003-10-06  Martin Baulig  <martin@ximian.com>
28997         * class.c (inflate_generic_method): Renamed to
28998         mono_class_inflate_generic_method() and made public.
28999         (mono_class_init): Don't inflate the generic methods here.
29000         (mono_class_from_generic): Added `gboolean inflate_methods'
29001         argument.  Inflate the methods here.
29003         * loader.c (mono_method_get_param_names): Ignore instances of
29004         generic types for the moment.
29006         * reflection.c (fixup_method): Added support for inflated methods.
29007         (mono_image_create_token): Use mono_image_get_methodref_token()
29008         for inflated methods.
29009         (mono_custom_attrs_from_param): Ignore instances of generic types
29010         for the moment.
29011         (mono_reflection_bind_generic_parameters): New public function.
29012         Moved all the functionality from
29013         ves_icall_Type_BindGenericParameters() here and added support for
29014         dynamic types.
29015         (mono_reflection_define_generic_parameter): Initialize
29016         `klass->methods' here.
29018         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29019         functionality into mono_reflection_define_generic_parameter().
29020         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29021         TypeBuilder, return that TypeBuilder.
29023 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29025         * appdomain.c: removed mono_delegate_semaphore.
29027         * threadpool.c:
29028         (mono_thread_pool_add): moved hash table creation inside and the thread 
29029         creation outside of the critical region.
29030         (mono_thread_pool_finish): removed obsolete code.
29031         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29032         continue or exit the thread depending on the queue.
29034 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29036         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29037         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29038         handle more bool marshalling options
29040 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29042         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29043         arrays of structs. Also add a more descriptive error message when
29044         a structure member is marshalled as LPArray.
29046 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29048         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29049         marshalling arrays of complex types. Fixes #29098. Also remove an
29050         usused and incomplete function.
29052 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29054         * gc.c: report heap_size - free_bytes as total memory allocated
29055         (bug#49362).
29057 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29059         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29060         fix timezone handling problems on Windows.
29061         
29062         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29063         asserts when the year is outside the range handled by ms the functions.
29065         * class.c (setup_interface_offsets): If the class is an interface,
29066         fill out its interface_offsets slot.
29068 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29070         * threadpool.c: mark threadpool threads as background.
29072 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29074         * decimal.c - define DECINLINE to nothing if not using GCC
29076 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29078         * assembly.c: More refcount fixes.
29080 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29082         * string-icalls.c: if we're not trimming, return the same string.
29083         When not splitting, don't create a new string.
29085 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29087         * image.c:
29088         (mono_image_open): increment the ref_count inside the critical section.
29090 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29092         * image.c (mono_image_open): Fix reference counting bug.
29094 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29096         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29097         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29098         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29099         mono_lookup_pinvoke_call throws.        
29101 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29103         * reflection.c (mono_reflection_parse_type): Fix #49114.
29105         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29106         temporary workaround for cygwin header problem.
29108         * object.c (mono_object_isinst): Synchronize this with the code
29109         generated by the JIT for casts.
29111 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29113         * reflection.c (encode_type): Fix #38332.
29115 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29117         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29118         the original method from the wrapper method.
29120 2003-09-25  Martin Baulig  <martin@ximian.com>
29122         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29123         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29124         (ves_icall_Type_get_IsGenericInstance): New interncall.
29126 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29128         * object.c: fix cast warning in big endian code.
29130 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29132         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29133         
29134 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29136         * assembly.c: don't call check_env from mono_assembly_load. It's
29137         already done once in mono_assemblies_init and may cause headaches when
29138         multiple threads are loading assemblies.
29140 2003-09-19  Martin Baulig  <martin@ximian.com>
29142         * reflection.c (mono_reflection_define_generic_parameter): Don't
29143         allocate `klass->methods', set `klass->flags' to
29144         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29146 2003-09-18  Martin Baulig  <martin@ximian.com>
29148         * class.c (mono_class_init): Don't create `class->methods' if it's
29149         already initialized.
29151         * metadata.c (mono_metadata_load_generic_params): Make this
29152         actually work.
29154         * reflection.c (mono_reflection_define_generic_parameter): Set
29155         parent class and interfaces from the constraints.
29157         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29158         to keep this struct in sync with the declaration in TypeBuilder.cs.
29160 2003-09-17  Martin Baulig  <martin@ximian.com>
29162         * metadata.h (MonoType): Replaced the data's `int type_param'
29163         field with `MonoGenericParam *generic_param'.
29164         (MonoGenericParam): Added `MonoClass *klass'.
29166         * class.c (mono_class_from_gen_param): Removed the
29167         `MonoImage *image' and `int type_num' arguments.
29169         * metadata.c (mono_metadata_parse_generic_param): New static
29170         method; creates a MonoGenericParam which just contains the index.
29171         (do_mono_metadata_parse_type): Call
29172         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29173         MONO_TYPE_MVAR.
29175         * reflection.c (mono_image_typedef_or_ref): Generic type
29176         parameters may be in the same assembly, but never use a typedef
29177         for them.
29178         (mono_reflection_define_generic_parameter): We're now creating a
29179         "real" class for the type parameter; it's now safe to call
29180         mono_class_from_mono_type() on the class'es type, it'll do the
29181         right thing.
29183 2003-09-16  Martin Baulig  <martin@ximian.com>
29185         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29186         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29187         the `symfile' data structure must be fully initialized before it
29188         gets added to the table.
29190 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29192         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29194         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29195         class init trampolines.
29197 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29199         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29200         to the built-in profiler to turn off time and allocation profiling
29201         respectively.
29203 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29205         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29206         g_direct_equal.
29208         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29209         in human readable form.
29211 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29213         * reflection.c icall.c: Fixed warnings.
29215         * image.c (load_class_names): Use a temporary hash table to hold the
29216         namespaces in order to avoid doing many string comparisons.
29218         * image.h: Fix typo.
29220         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29221         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29222         since the NULL case is short-circuited inside g_hash_table_lookup, 
29223         leading to better performance.  
29225         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29226         obtain the first custom attribute for a given index. Depends on the
29227         CustomAttribute table being sorted by the parent field.
29229         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29230         for better performance.
29232 2003-09-07  Martin Baulig  <martin@ximian.com>
29234         * class.c (mono_class_init): If we're a generic instance, inflate
29235         all our methods instead of loading them from the image.
29236         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29238 2003-09-07  Martin Baulig  <martin@ximian.com>
29240         * mono-debug-debugger.c: Added support for constructors.
29242 2003-09-06  Martin Baulig  <martin@ximian.com>
29244         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29245         New interncall.
29247         * reflection.c (mono_reflection_setup_generic_class): Call
29248         ensure_runtime_vtable() to create the vtable.
29250 2003-09-05  Martin Baulig  <martin@ximian.com>
29252         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29253         MONO_TYPE_MVAR.
29255 2003-09-04  Martin Baulig  <martin@ximian.com>
29257         * reflection.c (mono_reflection_define_generic_parameter): Generic
29258         parameters start with zero.
29260 2003-09-04  Martin Baulig  <martin@ximian.com>
29262         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29264         * reflection.h (MonoReflectionGenericParam): New typedef.
29265         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29266         the generic parameters from the managed TypeBuilder.
29268         * reflection.c (mono_reflection_define_generic_parameter): New function.
29269         (mono_reflection_create_runtime_class): Encode generic parameters.
29270         (mono_reflection_setup_generic_class): New function; this is
29271         called after adding adding all generic params to the TypeBuilder.
29272         (encode_type): Added MONO_TYPE_VAR.
29274 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29276         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29277         here from the JIT.
29279         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29280         load hook.
29282 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29284         * reflection.h reflection.c class.h class.c: Delete duplicate 
29285         definition of mono_type_get_name () from reflection.c and export the
29286         one in class.c.
29288         * class.c: Class loading fixes from Bernie Solomon 
29289         (bernard@ugsolutions.com).
29291         * reflection.c: Endianness fixes from Bernie Solomon 
29292         (bernard@ugsolutions.com).
29293         
29294 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29296         * assembly.h assembly.c: Define a file format version for AOT
29297         libraries.
29298         
29299         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29301         * appdomain.h (MonoJitInfo): New field to determine whenever the
29302         code is domain neutral.
29303         
29304 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29306         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29308 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29310         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29311         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29312         Avoid caching the result since strings must be domain specific. Fixes
29313         #48050.
29315 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29317         * marshal.c (mono_marshal_init): Make this callable multiple times
29318         since it is hard to find a correct place to call it.
29320         * object.c (mono_runtime_class_init): Execute static constructors in
29321         the correct appdomain.
29323         * image.c (build_guid_table): Handle the case when multiple images have
29324         the same GUID.
29326 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29328         * icall.c: added a couple of icalls for System.Web.
29330 2003-08-28  Martin Baulig  <martin@ximian.com>
29332         * icall.c (ves_icall_Type_BindGenericParameters): Use
29333         `klass->generic_inst' instead of `&klass->byval_arg' in the
29334         mono_type_get_object() call.  The returned type must be
29335         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
29337 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
29339         * NOTES: New file.
29341         * object.c (mono_class_proxy_vtable): Make it thread safe.
29343         * pedump.c: Fix warning.
29345         * object.c appdomain.h: Get rid of metadata_section. 
29346         It is no longer needed and it was causing deadlocks with domain->lock.
29348         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
29350 2003-08-26  Martin Baulig  <martin@ximian.com>
29352         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
29354 2003-08-26  Martin Baulig  <martin@ximian.com>
29356         * pedump.c (main): Call mono_metadata_init(),
29357         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
29358         and mono_loader_init().
29360 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
29362         * loader.h: Add missing include to fix build.
29364         * image.h: mono_image_load_references is no more.
29366         * assembly.c: Reworked assembly loading to make it really thread safe.
29367         After these changes, the assembly returned by mono_assembly_open is
29368         fully initialized, i.e. all its references assemblies are loaded.
29370         * assembly.c (mono_image_load_references): Renamed to 
29371         mono_assembly_load_references, and made private, since clients no
29372         longer need to call it.
29374         * class.c: Removed calls to mono_assembly_load_references, since it was
29375         a source of deadlocks.
29377         * loader.h loader.c class.h class.c: Protect data structures using a 
29378         new lock, the loader lock.
29380         * class.c (mono_class_setup_vtable): Create temporary hash tables and
29381         GPtrArrays only when needed.
29383         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
29384         into empty structures by mcs. Fixes pinvoke7.cs.
29385         
29386         * domain.c (mono_init): Call a new initialization function.
29388         * appdomain.c (mono_runtime_init): Call the new initializer function
29389         of the marshal module.
29391         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
29392         inserted into empty structures by mcs. Fixes pinvoke7.cs.
29394         * marshal.h marshal.c: Added locks around the wrapper caches to make
29395         this module thread safe.
29397         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
29398         this argument. Fixes pinvoke1.exe.
29400 2003-08-25  Lluis Sanchez <lluis@ximian.com>
29402         * object.h: Added call_type field to MonoMethodMessage and the corresponding
29403         enumeration of values. Removed fields to store remote call output values in
29404         MonoAsyncResult. Not needed any more.
29405         * object.c: Initialize call_type and async_result fields in mono_message_init.
29406         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
29407         dispatching the message.
29408         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
29409         async call to finish. To do it use a message with EndInvoke call type.
29411 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
29413         * loader.h loader.c (mono_method_hash_marhal_info): New function which
29414         determines whenever a method has marshalling info.
29416 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29418         * assembly.c: fix the build on windows.
29420 2003-08-22 Lluis Sanchez <lluis@ximian.com>
29422         * object.cs: Fixed bug #47785.
29424 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
29426         * string-icalls.c (StringReplace): If their are no occurances of
29427         the old string found return a reference to the supplied
29428         string. This saves some memory and matches MS behavoir.
29429         
29430 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29432         * socket-io.c: fixed compilation for systems that define AF_INET6
29433         and don't define SOL_IP/SOL_IPV6.
29435 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
29437         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
29438         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
29440         * rawbuffer.c rawbuffer.h: Make this module thread safe.
29442         * domain.c: Make this module thread safe.
29444         * domain.c (mono_init): Call new initialization function.
29446         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
29447         reference types too. Fixes #38812.
29449         * image.c (mono_image_init): Fixed warnings.
29451         * class.c (mono_class_from_typeref): Handle assembly load failure
29452         correctly.
29454         * appdomain.c (add_assemblies_to_domain): Handle the case when
29455         the references of an assembly are not yet loaded.
29457         * metadata.c image.c assembly.c: Moved initialization of global
29458         variables to a separate function called at startup since lazy 
29459         initialization of these variables is not thread safe.
29460         
29461         * image.c assembly.c: Made this module thread safe by adding locks in 
29462         the appropriate places.
29464         * domain.c (mono_init): Call the new initialization functions of the
29465         three modules.
29467 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
29469         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
29470           make a direct call. It is proxy's work to make the call asynchronous.
29471           mono_delegate_end_invoke(): If the targe is a proxy, just collect
29472           the return values.
29473         * object.cs: mono_method_call_message_new(): read AsyncResult and
29474           state object from parameters list, if this info is requested.
29475         * object.h: Added fields to store remote call output values in
29476           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
29478 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29480         * object.h: add needed fields to MonoThread.
29481         * threads.c, threads.h: allow registering a function to cleanup data
29482         allocated per thread by the JIT.
29484 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29486         * loader.h: portability fix by Bernie Solomon
29487         * <bernard@ugsolutions.com>.
29489 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
29491         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
29492         return a MonoArray. This simplifies the code and also ensures that
29493         the cache allways contains an object reference as a value.
29495         * icall.c (ves_icall_get_parameter_info): Simplified using the new
29496         function.
29498 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29500         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
29501         fixes a problem with byte ordering when getting the address family for
29502         a socket.
29504 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
29506         * .cvsignore: Added monosn.
29508         * reflection.h reflection.c loader.c: Added support for parameter
29509         marshalling to dynamically created types. Fixes #47295.
29511 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
29513         * rand.c: remove useless warnings.
29515 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29517         * class.c: implemented ldtoken for methods and fieldrefs.
29519 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29521         * threadpool.c: when mono_async_invoke was called, no one took care of
29522         monitoring the queue. So if the method invoked took some time and we
29523         got new async invoke requests after 500 ms (the thread created waited
29524         that long in WaitForSingleObject), the new async invoke was not called
29525         until the previous one finished.
29527         This is fixed now. Thanks to Totte for helping with it.
29529 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29531         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
29533 2003-08-11  Martin Baulig  <martin@ximian.com>
29535         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
29537 2003-08-06  Martin Baulig  <martin@ximian.com>
29539         * mono-debug-debugger.c: Added support for static fields,
29540         properties and methods.
29542 2003-08-06  Martin Baulig  <martin@ximian.com>
29544         * mono-debug-debugger.c: Don't store the MonoString's vtable to
29545         make this work for applications with multiple application domains.
29547 2003-08-04  Martin Baulig  <martin@ximian.com>
29549         * mono-debug-debugger.c: Completely reworked the type support; the
29550         most important thing is that we're now just using one single
29551         `MonoType' instance per type.
29553 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
29555         * mono-endian.h, mono-endian.c, icall.c: Added icall
29556         ves_icall_System_Double_AssertEndianity to assert double word endianity
29557         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
29559 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29561         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
29562         support, icalls and fixes.
29564 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
29566         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
29567         classes that are a punctuation character in .NET is not the same a
29568         g_unichar_ispunct.
29570 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29572         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
29574 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
29576         * icall.c: Add new MemCopy internalcall.
29577         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29578         Simplified code; It is not necessary to handle all the cases here,
29579         as the C# code takes care of it.  Only handle the case of the name
29580         resource embedded into the assembly.
29582         Changed signature to return the data pointer and the size of the
29583         data. 
29585 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
29587         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
29588         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
29590 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29592         * socket-io.c: ignore EINTR error in select.
29594 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29596         * class.h, class.c: removed unused subclasses field in MonoClass.
29598 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
29600         * icall.c: improve fix of get_base_definition(). If the parent class
29601           doesn't have the mehod, look at the parent of the parent.
29602         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
29603           to check if a parameter is an in or out parameter
29604           (PARAM_ATTRIBUTE_IN is not set by default).
29605           mono_method_return_message_restore(): Use mono_class_value_size to
29606           get the size of a value type. mono_type_stack_size (parameterType)
29607           does not return the correct value if parameterType is byRef.
29608           mono_load_remote_field(), mono_load_remote_field_new(),
29609           mono_store_remote_field(), mono_store_remote_field_new():
29610           raise exception if the remote call returns an exception.
29612 2003-07-28  Martin Baulig  <martin@ximian.com>
29614         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
29615         method.  This is a wrapper around mono_runtime_invoke() which
29616         boxes the instance object if neccessary.
29618 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29620         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
29621         metadata.h, row-indexes.h, verify.c: first cut of generics support.
29623 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29625         * icall.c: disable mcs bug workaround.
29627 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
29629         * object.c (mono_runtime_class_init): Take the metadata_section
29630         mutex before obtaining the domain mutex.
29632         * appdomain.h: Added definition of metadata_section mutex here. 
29634         * object.c: define metadata_mutex here.
29636 2003-07-24  Ravi Pratap  <ravi@ximian.com>
29638         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
29639         fixed.
29641 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
29643         * reflection.c: Fix bug #46669
29645 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29647         * exception.c:
29648         * exception.h:
29649         * icall.c:
29650         * object.h: fill in the type name for TypeLoadException.
29652 2003-07-23  Ravi Pratap  <ravi@ximian.com>
29654         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
29655         relationship between TypeBuilders while compiling corlib) and bug
29656         45993 (Array types returned from the runtime while compiling
29657         corlib were from the loaded corlib).
29659 2003-07-22  Martin Baulig  <martin@ximian.com>
29661         * mono-debug-debugger.c: Reworked the type support a bit more;
29662         distinguish between types and classes.
29664 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
29666         * icall.c: add IsArrayImpl icall.
29668 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
29670         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
29671         initializing real_size only once. Also fix bug #46602.
29673 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
29675         * object.c: Renamed mono_metadata_section to metadata_section.
29677 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
29679         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
29680           empty array if the type is an array. Fixed.
29681           ves_icall_MonoMethod_get_base_definition: if the base method
29682           is abstract, get the MethodInfo from the list of methods of
29683           the class.
29684         * reflection.c: ParameterInfo.PositionImpl should be zero-based
29685           and it was 1-based. Fixed in mono_param_get_objects.
29687 2003-07-20  Martin Baulig  <martin@ximian.com>
29689         * mono-debug.h: Set version number to 31.
29690         (mono_debug_init): Added `MonoDomain *' argument.
29692         * mono-debug-debugger.c: Reworked the type support; explicitly
29693         tell the debugger about builtin types; pass the `klass' address to
29694         the debugger.
29696 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
29698         * image.c: Allow new metadata tables to be loaded without a
29699         warning. Also update the warning message to give the new constant value.
29700                 
29701 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
29703         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
29704         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
29705         array type representation changes.
29707 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29709         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
29710         on Environment.Exit () call.
29712 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
29714         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
29715         requires a matching corlib.
29717 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29719         * Changelog: My editor decided to add a CR to each line. Sorry about that.
29720           Committed again without the CRs.
29721         
29722 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
29724         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
29725           getting it from the "this" socket instance. Did not work
29726           if the socket is a subclass of Socket.
29727           Also fixed bug #35371.
29729 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29731         * metadata.c: fixed size for TypedByRef.
29732         * loader.c: when searching for a method, consider the vararg amrker.
29733         * unicode.c, decimal.c: constify some arrays.
29735 2003-07-15  Dick Porter  <dick@ximian.com>
29737         * socket-io.c: Fixed compilation for gcc < 3.2.
29739         Fixed compilation for machines that don't have AF_INET6 (thanks to
29740         Bernie Solomon <bernard@ugsolutions.com> for that part.)
29742         Fixed compile warnings.
29743         
29744         Fixed formatting and line endings.
29746 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
29748         * socket-io.h:
29749         * socket-io.c: Added IPv6 support.
29751 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
29753         * class.c (mono_class_is_assignable_from): New function to implement
29754         the is_assignable_from logic. Used by mono_object_isinst, 
29755         Type::IsAssignableFrom () and the interpreter.
29757         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
29758         Object, even interfaces.
29759         
29760         * object.c (mono_object_isinst): Implement in terms of 
29761         is_assignable_from.
29763         * icall.c (ves_icall_type_is_assignable_from): New icall.
29765 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
29767         * domain.c (foreach_domain): fix compiler warning.
29769 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
29771         * image.c (load_metadata_ptrs): use g_strndup because strndup is
29772         not available on all plattforms
29774 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
29776         * image.h image.c: Store the metadata version string in MonoImage.
29777         * icall.c: New icall to retrieve the image version.
29778         * reflection.c (create_dynamic_image): Fill in the image version field
29779         * reflection.c (build_compressed_metadata): Use the image version
29780         from the image structure.
29782 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29784         * appdomain.c: modified comment.
29785         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
29786         That will be its last iteration when mono_gc_cleanup is called from
29787         mono_runtime_cleanup and before the domain is unloaded.
29789         Fixes bug #45962.
29791 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
29793         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
29794         attributes.
29796 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29798         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
29799         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
29800         Bernie Solomon <bernard@ugsolutions.com>.
29802 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
29804         * object.c, object.h: provide mono_object_new_fast() for faster
29805         allocation in some special cases.
29807 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
29809         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
29810         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
29812 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
29814         * threadpool.c: fix leaks.
29816 2003-07-01  Dick Porter  <dick@ximian.com>
29818         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
29819         using MonoGHashTables.  Fixes threadpool bug posted to list.
29821 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29823         * image.h, image.c: added support to load an assembly from a byte array.
29824         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
29825         assembly bundle support.
29827 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
29829         * threadpool.c (mono_thread_pool_add): keep a reference to the
29830         AsyncResult to prevent GC
29832 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29834         * class.c: leak fix.
29836 2003-06-25  Dick Porter  <dick@ximian.com>
29838         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
29839         for the async object, the WaitHandle object will close the handle.
29840         Fixes bug 45321.
29842 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
29844         * class.c: in mono_array_class_get (), lookup from the hash with the
29845         same type we insert: this works around a bug in
29846         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
29847         lluis. The real fix will have to wait for after the release.
29849 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29851         * icall.c: fix memory leak when getting type members.
29853 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29855         * reflection.c: added more pubtoken special cases.
29857 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
29859         * class.c: handle field offset correctly when class size
29860         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
29862 2003-06-20  Martin Baulig  <martin@ximian.com>
29864         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
29865         *image' field.
29867 2003-06-20  Martin Baulig  <martin@ximian.com>
29869         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
29871 2003-06-20  Martin Baulig  <martin@ximian.com>
29873         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
29874         just distinguish between variables in registers and variables at
29875         an offset relative to a register.
29877 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29879         * icall.c: #ifdef out latest changes until mcs is fixed.
29881 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29883         * icall.c: return members in metadata order.
29885 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
29887         * icall.c: avoid infinite loop in GetTimeZoneData.
29889 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
29891         * icall.c: added Marshal.Prelink/All icalls.
29893 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
29895         * object.c, object.h: fix warnings and do some overflow checking
29896         when creating arrays.
29898 2003-06-17  Dick Porter  <dick@ximian.com>
29900         * file-io.h:
29901         * file-io.c: File attributes need to be tweaked slightly when
29902         passed from the managed to the w32 world.
29904 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29905         * profiler.h profiler-private.h profiler.c: Rework last patch
29906         based on suggestion by Paolo.
29907         
29908 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
29910         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
29911         instruction level coverage data collection.
29912         * profiler.h profiler.c (: Added new callback function which can be
29913         used by the profiler to limit which functions should have coverage
29914         instrumentation.
29915         * profiler.c (mono_profiler_load): Call g_module_build_path to
29916         generate the file name of the profiler library.
29918 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
29920         * profiler.c, profiler.h, profiler-private.h: added basic block 
29921         coverage profiling API.
29923 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
29925         * reflection.c (mono_reflection_create_runtime_class): Add support
29926         for events in dynamically generated code.
29928         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
29929         not allocated.
29931 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
29933         * icall.c: when getting timezone info, return reasonable values if we
29934         can't get the actual data.
29936 2003-06-14  Dick Porter  <dick@ximian.com>
29938         * threads.c (start_wrapper): Remove the reference to the thread
29939         object in the TLS data, so the thread object can be finalized.
29940         This won't be reached if the thread threw an uncaught exception,
29941         so those thread handles will stay referenced :-( (This is due to
29942         missing support for scanning thread-specific data in the Boehm GC
29943         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
29945 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
29947         * reflection.c: ensure streams and tables are first allocated with
29948         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
29950 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
29952         * icall.c: fixed GetElementType for byrefs (bug# 44792).
29954 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
29956         * reflection.c (mono_reflection_create_runtime_class): Add support for
29957         properties to dynamically created classes.
29958         * reflection.c: Fix a few places where non-MonoObjects were inserted
29959         into the tokens hashtable.
29961 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29963         * object.c: some support to handle out of memory exceptions.
29965 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
29967         * marshal.c (mono_marshal_get_native_wrapper): support reference
29968         return types
29970 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
29972         * object.h, object.c: more portability stuff from Bernie Solomon.
29973         Unexport mono_object_allocate(). Added mono_object_unbox ().
29974         Set exitcode when an unhandled exception is thrown.
29976 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
29978         * marshal.c (mono_marshal_get_native_wrapper): use custom
29979         marshaler for return types.
29981 2003-06-10  Dick Porter  <dick@ximian.com>
29983         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
29984         ip_mreq is available
29986 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
29988         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
29989         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
29990         by Bernie Solomon <bernard@ugsolutions.com>.
29992 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
29994         * gc.c (mono_gc_init): Avoid error message on shutdown when
29995         GC_DONT_GC=1 is used.
29997         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
29998         New icall to return the GUID of a module.
30000 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30002         * class.c: ensure instance size always includes the parent's size
30003         even whem class size is set explicitly (fixes bug#44294).
30005 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30007         * profiler.h, profiler.c: made the simple profiler thread-safe,
30008         get more accurate timing info. Allow the loading of an
30009         externally-developed profiler module.
30011 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30013         * marshal.c (mono_marshal_get_native_wrapper): improved
30014         class/byref arguments.
30015         (mono_marshal_get_native_wrapper): better string marshaling support.
30017 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30019         * class.c: ensure .pack and .size are handled correctly and
30020         simplified layout of static fields.
30022 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30024         * appdomain.c
30025         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30027         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30028         current directory (fix bug 44008)
30030 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30032         * marshal.c (mono_marshal_get_native_wrapper): started support for
30033         custom marshalers.
30034         (mono_delegate_to_ftnptr): consider marshalling specifications
30036 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30038         * reflection.c, reflection.h: emit custom marshal info.
30040 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30042         * object.c: free the GError.
30043         * icall.c: added CloseEvent_internal.
30044         * threads.[ch]:
30045         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30046         call.
30048 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30050         * loader.c (mono_method_get_signature): Add support for dynamic
30051         assemblies.
30053 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30055         * reflection.c: fixed bug #43905.
30057 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30059         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30060         handling TypedReference and ArgIterator.
30061         * loader.c, loader.h: added function to get signature at call site.
30063 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30065         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30066         data readonly. Buglets and warning fixes. Some MethodSpec support.
30068 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30070         * class.h, class.c, object.c: remove relative numbering support.
30072 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30074         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30075         free the string, until we get a chance to fix Gtk#
30077 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30079         * marshal.c: revert last patch.
30081 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30083         * icall.c: updates for new mono_class_vtable() not calling
30084         the type constructor anymore.
30086 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30088         * object.h, object.c: separate vtable creation from type
30089         initialization. Make running the .cctor thread safe.
30091 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30093         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30095 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30097         * loader.c (mono_get_method): consider calling convention
30099 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30101         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30102         to return the invisible global type for a module.
30104         * reflection.c (mono_image_build_metadata): Emit global fields too.
30106 2003-05-20  Peter Williams  <peterw@ximian.com>
30108         * loader.c (mono_lookup_internal_call): Add a few newlines.
30110 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30112         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30113         literal strings.
30115         * appdomain.c (set_domain_search_path): Recalculate search path when
30116         AppDomainSetup.PrivateBinPath changes.
30118         * object.c (mono_class_compute_gc_descriptor): It turns out some
30119         parts of the class libs (like System.Thread) holds pointers to
30120         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30121         to treat native int a pointer type here.
30122         
30123 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30125         * appdomain.h, domain.c: add hashtable for jump target resolution.
30127 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30129         * reflection.h reflection.c icall.c: Added new icalls 
30130         GetManifestResourceInfoInternal, GetModulesInternal and support
30131         infrastructure.
30133 2003-05-16  Dick Porter  <dick@ximian.com>
30135         * icall.c:
30136         * file-io.h:
30137         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30139 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30141         * object.c: mono_store_remote_field: little fix to previous patch.
30143 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30145         * class.c: add constructors to array classes.
30146         * icall.c: special case array construction for InternalInvoke (),
30148 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30150         * class.h class.c reflection.c object.c: Added support for field
30151         defaults in dynamically generated classes.
30153 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30155         * reflection.c: properly encode charset for ddlimport.
30157 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30159         * threads.c: allow compiling without GC.
30161 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30163         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30164         handling of thread static data.
30166 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30168         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30170 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30172         * class.c (mono_array_class_get): always set the serializable flags
30173         (mono_array_class_get): always set the SEALED attribute for array types
30175 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30177         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30178         attributes (fix for bug 42021).
30180 2003-05-12  Dick Porter  <dick@ximian.com>
30182         * gc.c: Don't run finalizers when the finalizer thread is
30183         finishing up, because the default domain has already been
30184         destroyed.
30186 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30188         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30189         value is null, we should throw an exception.   This is slightly
30190         different than the other conventions used for the constructor.
30192 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30194         * socket-io.c: fixed windows build.
30196 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30198         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30200 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30202         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30203         compilers.
30205 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30207         * class.c (mono_class_layout_fields): Add experimental GC aware
30208         auto layout facility. Requires class library changes to work correctly.
30210         (mono_class_setup_vtable): Avoid overriding explicit interface
30211         method implementations. Fixes iface3.exe test.
30213         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30214         object reference.
30215         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30216         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30218         * metadata.h: Add new type classification macro which determines
30219         whenever the type holds an object reference.
30221 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30223         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30225 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30227         * gc.c (finalizer_thread): Work around a GC bug.
30229 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30231         * marshal.c (emit_struct_conv): allow unions
30233         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30235 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30237         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30239 2003-05-06  Martin Baulig  <martin@ximian.com>
30241         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30243 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30245         * socket-io.c:
30246         (Select_internal): allow NULLs, don't create arrays if not needed.
30247         Coupled with Socket.cs changes.
30249         * threadpool.c:
30250         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30251         register a finalizer for it that will close the semaphore handle. This
30252         fixes the leak and make Lupus' test run with > 4080 loops.
30254 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30256         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30257         Jerome Laban (bug #42287)
30259 2003-05-02  Martin Baulig  <martin@ximian.com>
30261         * debug-mono-symfile.h
30262         (MonoSymbolFile): Moved declaration into mono-debug.h.
30263         (MonoDebugMethodJitInfo): Likewise.
30264         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30265         argument.
30266         (_mono_debug_address_from_il_offset): Take a
30267         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30269         * mono-debug.h
30270         (MonoDebugDomainData): New struct.
30271         (mono_debug_get_domain_data): New function.
30272         (mono_debug_add_method): Take an additional `MonoDomain *'
30273         argument.
30274         (mono_debug_source_location_from_address): Likewise.
30275         (mono_debug_il_offset_from_address): Likewise.
30276         (mono_debug_address_from_il_offset): Likewise.
30278 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30280         * reflection.c: one more check for null type in custom attrs.
30282 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30284         * reflection.c: avoid warning (comparison is always false due to limited
30285         range of data type).
30287 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30289         * icall.c: throw an exception in Type.GetField if the argument 'name'
30290         is NULL.
30292 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30294         * reflection.c: fixed handling of enums in named arguments to custom
30295         attributes (bug #42123).
30297 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30299         * reflection.c: use the right array element type and handle
30300         a null for a Type argument, too.
30302 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30304         * reflection.c: handle arrays as arguments to custom attributes.
30306 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30308         * reflection.c: handle a string value in a custom attr
30309         ctor that takes an object.
30311 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30313         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30314         (fix bug #42063)
30316 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30318         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
30320 2003-04-27  Martin Baulig  <martin@ximian.com>
30322         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
30323         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
30324         MONO_DEBUGGER_EVENT_BREAKPOINT.
30325         (mono_breakpoint_trampoline_code): Removed.
30326         (mono_debugger_event_handler): The last argument is now a
30327         `guint32'.
30328         (mono_debugger_insert_breakpoint_full): Removed the
30329         `use_trampoline' argument.
30330         (mono_debugger_method_has_breakpoint): Likewise.
30331         (mono_debugger_trampoline_breakpoint_callback): Renamed to
30332         mono_debugger_breakpoint_callback(); take the method and
30333         breakpoint number as arguments.
30335 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
30337         * metadata.c: fix off by one when loading parameters attributes.
30339 2003-04-24  Martin Baulig  <martin@ximian.com>
30341         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
30343 2003-04-24  Martin Baulig  <martin@ximian.com>
30345         * mono-debug-debugger.c: Moved all code which interacts with the
30346         Mono Debugger here.
30348         * debug-mono-symfile.c: This code now just deals with the symbol
30349         file itself, the debugger code is now in mono-debug-debugger.c.
30351 2003-04-23  Martin Baulig  <martin@ximian.com>
30353         * mono-debug.c (mono_debug_source_location_from_il_offset):
30354         New method; like mono_debug_source_location_from_address(), but
30355         takes an IL offset instead of a machine address.
30357 2003-04-23  Martin Baulig  <martin@ximian.com>
30359         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
30360         `line' field; this is now computed by the debugger.
30362 2003-04-23  Martin Baulig  <martin@ximian.com>
30364         * mono-debug.[ch]: New files.  This is the new debugging interface.
30366         * mono-debug-debugger.[ch]: New files.  Moved all code which
30367         interacts with the Mono Debugger here.
30369 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
30371         * domain.c (mono_init): initialize mono_defaults.monitor_class
30373 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
30375         * reflection.c (method_encode_code): Add a spicy exception to help
30376         future compiler authors.
30378 2003-04-21  Martin Baulig  <martin@ximian.com>
30380         * icall.c
30381         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30382         Make this work with relative pathnames; g_filename_to_uri() needs
30383         an absolute filename.
30385 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
30387         * icall.c: Track name changes in Object and ValueType.
30389 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
30391         * metadata.c (mono_type_stack_size): size should be a multiple of
30392         sizeof (gpointer)
30394 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30396         * gc.c:
30397         (internal_domain_finalize): moved into mono_domain_finalize. No need
30398         to create another thread because the finalizers will be run in the
30399         finalizer thread.
30400         
30401         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
30402         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
30403         to be run (MS does this too).
30405 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
30407         * object.c (mono_class_compute_gc_descriptor): Update comment.
30409         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
30411         * image.h: Add synchronized wrapper cache.
30413         * image.c (do_mono_image_open): Initialize cache.
30415         * reflection.c (create_dynamic_mono_image): Initialize cache.
30417 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30419         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
30420         ves_icall_System_Buffer_ByteLengthInternal.
30422 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30424         * reflection.c: setup klass->nested_in earlier. Allow
30425         a dash in the assembly name.
30427 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
30429         * metadata.c (mono_type_to_unmanaged): dont access
30430         type->data.klass for MONO_TYPE_OBJECT
30431         (mono_type_to_unmanaged): consider System.Delegate class
30433 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
30435         * class.c: just setup supertypes in the proper place instead of
30436         initializing the full element class for arrays.
30438 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30440         * class.c: ensure the element class of arrays is initialized.
30441         Setup the supertype info for array classes, too.
30443 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
30445         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
30447 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30449         * Makefile.am: re-added -m option when running cygpath. This way,
30450         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
30451         separator.
30452         * mono-config.c: same codepath for locating mono config file for WIN32
30453         and the rest.
30454         * assembly.c: if mono_assembly_setrootdir is called, don't override
30455         the value set.
30457 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30459         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
30460         MONO_ASSEMBLIES variable.
30462 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
30464         * icall.c: added Assembly::GetNamespaces() icall.
30466 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30468         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
30470 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
30472         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
30473         * object.c: fixed bug in the construction of vtable for proxies
30475 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
30477         * object.c (mono_array_new): Mark mono_array_new as an icall.
30479 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30481         * class.c: fixed test for public method when overriding interfaces.
30482         Closes bug #40970.
30484 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30486         * appdomain.h, domain.c: added mono_domain_foreach() to
30487         be able to access the currently loaded appdomains.
30488         * object.c: make string interning work across sppdomains.
30489         Mark some functions for use as icalls.
30491 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
30493         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
30495         * reflection.h reflection.c: Allocate long living data using 
30496         GC_MALLOC_ATOMIC so the collector does not need to scan it.
30498         * reflection.c: Double the allocation size in streams instead of
30499         increasing it, to prevent unneccesary copying on large assemblies.
30500         
30501         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
30502         creation if the assembly does not have the Run flag set.
30504 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
30506         * class.h: avoid the C++ keywords in header files (Jerome Laban
30507         spotted and fixed this).
30509 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30511         * object.c:
30512         (mono_unhandled_exception): fill in the arguments for the
30513         UnhandledException event. Only trigger that event for the default
30514         domain (as MS does).
30516 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
30518         * object.c: Improve typed allocation stuff based on suggestions from
30519         Paolo. Also turn it on if the GC library supports it.
30521 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30523         * object.c object.h class.h: Added experimental typed allocation
30524         facility using the interfaces in gc_gcj.h.
30526         * os/gc_wrapper.h: Added new include files.
30527         
30528 2003-04-03  Martin Baulig  <martin@ximian.com>
30530         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
30531         which is not yet enabled by default.
30533         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
30534         functions.
30535         (mono_gc_lock, mono_gc_unlock): New static functions.
30537         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
30538         functions; stop/start the world for the garbage collector.  This
30539         is using the windows API; we need to complete the SuspendThread()/
30540         ResumeThread() implementation in the io-layer to make this work on Unix.
30541         (mono_gc_push_all_stacks): New public function; tells the garbage
30542         collector about the stack pointers from all managed threads.
30544 2003-04-03  Martin Baulig  <martin@ximian.com>
30546         * object.h (MonoThread): Added `gpointer stack_ptr'.
30548         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
30550 2003-04-03  Martin Baulig  <martin@ximian.com>
30552         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
30554 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
30556         * reflection.c (typebuilder_setup_fields): Initialize field.first and
30557         field.last.
30559 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
30561         * loader.c (mono_lookup_internal_call): Report the corlib that is
30562         out of sync.
30564 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
30566         * icall.c (ves_icall_type_GetTypeCode): fixed check for
30567         System.DBNull (it's class not valuetype).
30569 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30571         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
30572         if the array method was already assigned a token (fixes bug#40646).
30574 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
30576         * reflection.c (mono_reflection_get_type): Attempt type resolve even
30577         if no assembly is given.
30579 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
30581         * metadata.h: Added the new tables.
30583         * row-indexes.h: Added definitions for new tables.
30585         * metadata.c: Add schemas for new tables, and add support for
30586         computing the sizes of them.
30588         * class.c: Update for handling the new type cases.
30590 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
30592         * metadata.h (MONO_TYPE_IS_VOID): new macro
30594 2003-03-31  Martin Baulig  <martin@ximian.com>
30596         * threads.h (MonoThreadCallbacks): Added `thread_created'.
30598         * threads.c (mono_thread_new_init): Call `thread_created' in the
30599         mono_thread_callbacks.
30601 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
30603         * loader.h: added marshalbyrefobject_class to mono_defaults
30604         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
30605         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
30606           generation of output parameters.
30607           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
30608         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
30609           contextbound and the target object belongs to the context of the caller.
30610         * object.h: added context and unwrapped_server variables in MonoRealProxy.
30611         * object.c: Implemented support for interfaces and abstract classes
30612           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
30613           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
30615 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
30617         * class.h class.c (mono_class_is_subclass_of): New function.
30618         
30619         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
30620         routines for most common case (calls from ArrayList::ToArray).
30622         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
30623         routine so programs which call Environment::Exit() can be profiled.
30625         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
30626         Added MONO_ARCH_SAVE_REGS.
30628         * icall.c (ves_icall_type_is_subtype_of): Use new function.
30630 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
30632         * blob.h: Add a couple of new MonoType types definitions.
30634         * tabledefs.h: Add a couple of new call convs.
30636 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
30638         * reflection.h (MonoReflectionDynamicAssembly): track changes in
30639         the layout of the class.
30641         * reflection.c (alloc_table): double the size on overflow to avoid
30642         unnecessary copying.
30644         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
30645         avoid filling out metadata tables and blobs. Also set mb->ilgen to
30646         null so it can be garbage collected.
30647         
30648 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
30650         * reflection.c (mono_reflection_get_type): Return the resolved type
30651         only if it is in the assembly we searched.
30653         * reflection.c (ensure_runtime_vtable): Initialize method slots.
30655         * class.c (mono_class_setup_vtable): Set the slot of the overriding
30656         method.
30658 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30660         * appdomain.c:
30661         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
30662         the right one is 'file:///blah', but MS allows it.
30663         * assembly.c:
30664         (mono_assembly_open): allow 'file://blah'
30666         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
30668 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
30670         * socket-io.c: fixes bug #40310.
30672 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
30674         * reflection.c (mono_reflection_parse_type): handle deeply nested
30675         types correctly.
30677         * reflection.c (mono_image_create_token): Use unique token values
30678         since they will be put into a hash table.
30680         * class.c (mono_class_setup_vtable): If a method occurs in more than
30681         one place in the vtable, and it gets overriden, then change the
30682         other occurances too.
30684         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30685         object as return type.
30687 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30689         * icall.c: Deleted "ToString" implementation for double and float
30690         because they are full implemented in managed code.
30692 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30694         * reflection.c, reflection.h: implemented and exported functions
30695         to retrieve info about custom attributes.
30697 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30699         * appdomain.c: moved Uri handling to assembly.c
30700         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
30701         work when using a file Uri in *nix and windows.
30703         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
30704         GetReferencedAssemblies.
30706 2003-03-18  Dick Porter  <dick@ximian.com>
30708         * icall.c: Rename a couple of internal calls
30710         * threads.c: Set the thread state to Stopped when a thread exits.
30711         Fixes bug 39377.
30713 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
30715         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
30716         New icall.
30718         * object.c (mono_class_vtable): fix warning.
30720 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
30722         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
30724         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
30725         memory.
30726         (method_encode_clauses): Create exception info structures in the right
30727         order.
30728         (mono_reflection_setup_internal_class): Initialize supertypes field.
30730         * class.c object.c: Handle interfaces which implement other interfaces 
30731         correctly.
30733         * class.h class.c: Move the supertypes array initialization code into 
30734         a separate function so it can be used for dynamic types too. Also call
30735         it earlier, in mono_class_init(), since it can be used before the
30736         type is initialized.
30738 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30740         * Makefile.am:
30741         * assembly.c:
30742         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
30744         * appdomain.c:
30745         * appdomain.h:
30746         * marshal.c:
30747         * object.c: remove warnings.
30749 2003-03-13  Martin Baulig  <martin@ximian.com>
30751         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
30752         (MonoDebugLexicalBlockEntry): New types.
30754         * debug-mono-symfile.c
30755         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
30757 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30759         * process.c: ret can be any non-zero value accroding to MS doc.
30761 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
30763         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
30764         fixing a warning for a miss-used prototype, would have cause
30765         random memory corruption.
30767 2003-03-07  Martin Baulig  <martin@ximian.com>
30769         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
30770         getting really annoying ....
30772 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
30774         * reflection.c (fixup_method): added support for array methods.
30776 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
30778         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
30779         (pointed out by Michael Adams).
30781 2003-03-04  Dick Porter  <dick@ximian.com>
30783         * icall.c: Temporarily reverted the Double and Single ToString()
30784         change, because it broke nunit.
30786 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
30788         * object.h, threads.h: make include files compatible with C++
30789         (patch by Jerome Laban <jlaban@wanadoo.fr>).
30791 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
30793         * icall.c: Erased ToString helper functions for Double and Single.
30794         Now, that implementations ar all in managed code (Double and Single
30795         Formatters).
30797 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
30799         * appdomain.c: Added method for initializing the default context of
30800         a domain. Added internal call for getting the default context.
30801         * appdomain.h: Added context variable in MonoDomain struct.
30802         * domain.c: mono_domain_set also sets the default context of the domain
30803         * icall.c: Mapped internal method InternalGetDefaultContext.
30804         * object.c: mono_object_get_virtual_method returns always a remoting
30805         wrapper if the object is a transparent proxy.
30806         mono_runtime_invoke_array: when creating an object by calling the
30807         constructor, if the created object is a proxy, then the constructor should
30808         be called using the a remoting wrapper.
30810 2003-03-03  Dick Porter  <dick@ximian.com>
30812         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
30813         variable so it compiles on solaris.  Problem spotted by
30814         Christopher Taylor <ct@cs.clemson.edu>
30816 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30818         * appdomain.c:
30819         (get_info_from_assembly_name): don't leak value.
30821         * icall.c:
30822         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
30823         result.
30825 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
30827         * assembly.c: export mono_image_load_references ().
30828         * class.c: handle function pointers. mono_class_from_name() now
30829         supports nested type names directly.
30831 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
30833         * reflection.h reflection.c: Encode already created dynamic methods 
30834         and fields correctly as a DEF instead of a REF.
30836         * reflection.c: Get rid of the force_ref argument to 
30837         mono_image_typedef_or_ref since it was wrong in the first place.
30839         * string-icalls.c: add error checking to string constructors according
30840         to the MSDN docs.
30842         * reflection.c: Emit types in the order their TypeBuilders were 
30843         created. Previously, a new table index was assigned to each type before
30844         the tables were emitted. This was wrong because the signature blob
30845         might already refer to a type by its original table index.
30847 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
30849         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
30850         change.
30851         
30852 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30854         * Makefile.am: make assemblies dir have \ instead of / on windows.
30856 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
30858         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
30859         iterate over the NESTEDCLASS table using a linear search since the
30860         table is not guaranteed to be sorted by the secondary key.
30862         * class.c (mono_class_create_from_typedef): fixed up call to
30863         mono_metadata_nesting_typedef.
30864         
30865 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
30867         * marshal.c (mono_string_to_byvalstr): clear the memory as
30868         suggested by Jerome Laban <jlaban@wanadoo.fr>
30870 2003-02-26  Dick Porter  <dick@ximian.com>
30872         * process.c: Cope with padding in .rsrc blocks
30874 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30876         * metadata.h: reverted the filter_len change, it breaks reflection
30877         
30878 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
30880         * metadata.h: added a new field to store the filter_len
30881         
30883 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
30885         * reflection.c: handle custom attributes for types and members
30886         created with Reflection.Emit (bug#38422).
30888 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
30890         * reflection.c: define RTSpecialName automatically for constructors for
30891         compatibility with MS.NET.
30893         * reflection.c (mono_reflection_create_runtime_class): initialize
30894         nested_in field of dynamically created classes.
30896 2003-02-22  Martin Baulig  <martin@ximian.com>
30898         * debug-mono-symfile.h: Incremented version number.
30900 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30902         * object.h icall.c process.c: fix warnings.
30904 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
30906         * appdomain.h appdomain.c:
30907         (mono_domain_try_type_resolve): split the 
30908         name_or_tb argument into a name and a tb argument.
30909         (mono_domain_has_type_resolve): new function to check whenever the
30910         application has registered a TypeResolve event handler.
30911         
30912         * icall.c reflection.h reflection.c: move the type resolve logic into
30913         mono_reflection_get_type () so it will be invoked when 
30914         Assembly::GetType () is called.
30916         * reflection.c:
30917         (mono_reflection_get_type): renamed to get_type_internal.
30918         (mono_reflection_get_type): fixed type name generation so it works 
30919         for nested types too.
30920         (mono_reflection_get_type): call has_type_resolve () to avoid the 
30921         costly type name generation if there is no resolve event handler.
30923 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30925         * class.c, image.c: load exported types from file references.
30927 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
30929         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
30930           used to cache the managed methods used to create proxies and make 
30931           remote invocation of methods.
30932         * class.h: Added in MonoVTable a flag to indicate that a class needs 
30933           to be remotely created.
30934         * object.c: Modified the method mono_class_vtable(). It now initializes 
30935           the remote flag of the vtable. Modified mono_object_new_specific(), 
30936           so now it checks the remote flag.
30937         * icall.c: Added a couple of internal methods, one for enabling instance 
30938           creation interception for a type, and one for creating objects bypassing
30939           the remote check.
30941 2003-02-18  Martin Baulig  <martin@ximian.com>
30943         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
30944         New interncall to get a method's metadata token.
30946         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
30947         New interncall for the debugger.
30949 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
30951         * class.c (mono_class_setup_vtable): allocate supertype array
30953 2003-02-18  Martin Baulig  <martin@ximian.com>
30955         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
30957 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30959         * reflection.c:
30960         (assembly_name_to_aname): jump over unknown properties (i've found
30961         something like: 'type, assembly, version=xxx, custom=null, public...',
30962         so now will ignore custom=null and still get the rest of the values).
30964 2003-02-17  Dick Porter  <dick@ximian.com>
30966         * threads.c: Have Thread.Start() wait for a semaphore to signal
30967         that the thread has set up all its local data.  This fixes bug
30968         34323, where Abort() raced the new thread's TLS data.
30970         Also removes the handle_store() call from start_wrapper, because
30971         threads are now always created suspended and there is no longer a
30972         race between the parent and child threads to store the info.
30974 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
30976         * image.c: explain the #- heap issue in a message, hopefully
30977         avoiding FAQs on mono-list.
30979 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30981         * icall.c:
30982         (GetEntryAssembly): if the domain has not invoked
30983         AppDomain.ExecuteAssembly yet, return the assembly of the default
30984         AppDomain.
30986 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
30988         * class.c (mono_ldtoken): make it work in dynamic assemblies.
30990 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
30992         * metadata.c, reflection.c: simple speedup to type hash
30993         and equals code.
30995 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
30997         * image.c, image.h, class.c, assembly.c: move module loading
30998         to MonoImage. When loading metadata, consider alignemnet from
30999         the start of metadata, not from the metadata address in memory.
31001 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31003         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31004         AssemblyBuilder objects. Factored out custom attribute creation into
31005         a separate function.
31006         (create_custom_attr): new function to create custom attributes.
31008 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31010         * Makefile.am: Got tired of typing the full pathname to pedump.
31011         Until there is another option, am installing this.
31013 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31015         * class.c (class_compute_field_layout): always set field->parent 
31016         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31018 2003-02-11  Dick Porter  <dick@ximian.com>
31020         * threads-types.h:
31021         * monitor.c: Rewrote Monitor, making lock much faster and
31022         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31023         creates them as needed.
31025         * exception.c: Added SynchronizationLockException
31027         * threads.c: Deleted old Monitor implementation.  The new one is
31028         in a new file.
31030 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31032         * class.c: handled TypedReference type code. Set the correct size for
31033         class data. Setup interface_offsets for interface classes, too.
31035 2003-02-09  Martin Baulig  <martin@ximian.com>
31037         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31039 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31041         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31042         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31043         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31044         * verify.c: check for code that runs after the end of the method.
31046 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31048         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31049         "System.Math::Round2".
31050         * sysmath.h: Added Floor, Round and Round2 definitions.
31051         * sysmath.c: Modified certain functions that were not 100% compliant
31052         with MS.NET (math precision) and added the implementation of Floor,
31053         Round and Round2.
31055 2003-02-07  Martin Baulig  <martin@ximian.com>
31057         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31059 2003-02-07  Martin Baulig  <martin@ximian.com>
31061         * debug-mono-symfile.c: Reflected latest symwriter changes.
31062         (mono_debug_create_mono_symbol_file): Removed.
31063         (mono_debug_open_mono_symbol_file): Take an argument which
31064         specifies whether to create a dynamic symbol file.
31066 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31068         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31070 2003-02-05  Martin Baulig  <martin@ximian.com>
31072         * reflection.c (mono_image_build_metadata): Make this public,
31073         protect it against being called multiple times, don't create
31074         resources and don't build the compressed metadata here.
31075         (mono_image_create_pefile): Do this here.
31077         * icall.c
31078         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31080 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31082         * socket-io.c: fixed bug #36322.
31084 2003-02-06  Piers Haken <piersh@friskit.com>
31086         * appdomain.[ch]:
31087         * class.h:
31088         * debug-mono-symfile.c:
31089         * icall.c:
31090         * loader.c:
31091         * mono-config.c:
31092         * monosn.c:
31093         * reflection.c:
31094         * socket-io.c: warning cleanups
31096 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31098         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31099         function. works like remoting invoke, but does a check for the Proxy first.
31101 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31103         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31105 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31107         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31108         array of pointers.
31109         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31110         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31112         * object.c (mono_store_remote_field_new): used by the new jit
31113         instead of mono_store_remote_field
31114         (mono_load_remote_field_new): used by the new jit
31115         instead of mono_load_remote_field
31117 2003-02-05  Patrik Torstensson
31119         * appdomain.c: changed unload to take the domain id instead
31120         of domain
31121         
31122         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31125 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31127         * appdomain.c: don't look for assemblies in ApplicationBase if
31128         PrivateBinPathProbe is set.
31130 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31132         * object.c: make the first argument in main_args contain the absolute
31133         path to the assembly. Fixes bug #37511.
31135 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31137         * icall.c: get correct UTC offset for countries not using daylight
31138         time saving. Fixes bug #30030.
31140 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31142         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31143         and 1 are the family).
31145 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31147         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31149         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31151 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31153         * reflection.c: added support for SignatureHelper tokens, which is
31154         needed by the Calli opcode.
31156         * reflection.h: track changes to SignatureHelper class.
31158         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31160 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31162         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31164 2003-02-03  Patrik Torstensson
31165         * appdomain.[c|h], domain.c : 
31166          - Added support for getting a domain via domain id
31167          - Support for setting and getting domain from System.AppDomain 
31168            (used in cross appdomain channel)
31169          - Added support for get/set for a MonoAppContext on a thread 
31170            (Context class in System.Runtime.Remoting.Contexts),
31171          - Removed hack in Get/SetData and ExecuteAssembly.
31172         
31173         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31174         the managed world to get control when a proxy is created.
31176         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31177         
31178 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31180         * icall.c
31181         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31182         Populate the codebase field as well.
31184 2003-02-02  Martin Baulig  <martin@ximian.com>
31186         * debug-mono-symfile.c
31187         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31188         (mono_debug_symfile_add_method): Allow interncalls.
31190 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31192         * icall.c: throw parse exception if strtod fails or the string is empty.
31194 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31196         * marshal.c: handle object type separately from defined
31197         class types.
31199 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31201         * marshal.c: handle NATIVE_LPSTR for strings when it's
31202         explicitly specified.
31204 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31206         * reflection.c, reflection.h, icall.c: setup the reflection
31207         handle cache for ModuleBuilders and AssemblyBuilders.
31209 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31211         * reflection.c (reflection_methodbuilder_to_mono_method): set
31212         pinvoke flag
31214 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31216         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31218 2003-01-29  Dick Porter  <dick@ximian.com>
31220         * threads.c: No need for the fake_thread kludge now that Thread
31221         doesn't run a class constructor
31222         
31223 2003-01-29  Dick Porter  <dick@ximian.com>
31225         * threads.c: Use g_direct_hash instead of the rather bogus
31226         g_int_hash
31228 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31230         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31231         (fix pinvoke12.exe)
31232         (mono_marshal_get_struct_to_ptr): generate valid IL code
31233         (mono_marshal_get_ptr_to_struct): generate valid IL code
31234         (*): correctly set sig->pinvoke, we need to memdup the signature
31235         to do that
31237 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31239         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31240         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31242 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31244         * profiler.c: provide more callers information.
31246 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31248         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31250         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31252         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31254 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31256         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31257         exception instead of going into an infinite loop on dates which it 
31258         can't yet handle.
31260         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31261         out-of-range exception if needed.
31263         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31264         an implementation for an interface method and to override an inherited
31265         method at the same time. 
31266         Imagine a scenario when a virtual method is used to override a
31267         virtual abstract method in a parent class, and this same method 
31268         provides an implementation for an method inherited from an interface. 
31269         In this case, the interface resolution code will set im->slot, which 
31270         means that the virtual method override pass will skip this method 
31271         which means a pointer to the abstract method inherited from the parent
31272         will remain in the vtable of this non-abstract class.
31274         * class.c: (mono_class_setup_vtable): continue search for a real 
31275         method if only an abstract method is found.     
31277 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31279         * reflection.c: add size to encoding for ByValStr and ByValArray
31280         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31282 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31284         * class.c (mono_class_setup_vtable): pass the override info as an
31285         argument.
31287         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31288         correctly.
31289         
31290         * reflection.c (ensure_runtime_vtable); add support for method 
31291         overrides.
31292         
31293 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31295         * reflection.c (resolution_scope_from_image): Hack to work to work with
31296         dynamic assemblies.
31298         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31299         added a 'force_ref' argument to force this function to allways return 
31300         a TypeRef. This is needed by mono_image_get_memberref_token ().
31301         
31302 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31304         * reflection.c (mono_image_get_type_info): interfaces really don't have
31305         a parent.
31307         * reflection.c (mono_image_basic_init): fill out missing fields of
31308         image structure.
31310         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31311         dynamic assemblies. This is required so dynamic assemblies show up in
31312         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31313         Type::GetType() etc. This is consistent with MS behaviour.
31315         * image.c image.h reflection.c: add newly created classes to the name 
31316         cache so mono_class_get () will find them.      
31318 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31320         First part of changes to get IKVM.NET running under mono.
31321         
31322         * appdomain.h, appdomain.c: added new function 
31323         mono_domain_try_type_resolve() which will emit TypeResolve events. 
31324         This function will call AppDomain::DoTypeResolve to do the actual work.
31326         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
31327         moved existing code dealing with dynamic tokens to a new function 
31328         called mono_reflection_lookup_dynamic_token (). This function will 
31329         raise TypeResolve events when appropriate. Since reflection.c is not 
31330         part of libmetadata, a new hook function called 
31331         mono_lookup_dynamic_token() is added to class.c which will call this.
31333         * assembly.h assembly.c: make the invoke_load_hook function public,
31334         so it can be called for dynamic assemblies.
31336         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
31338         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
31339         type isn't found.
31341         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
31342         MonoGHashTable, since it contains pointers to objects which the GC 
31343         needs to track.
31345         * assembly.c (search_loaded): remove unused variable.
31346         
31347 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
31349         * object.c: fixed issue exposed by gcc-generated IL programs
31350         that use RVA data for pointers.
31352 2003-01-25  Martin Baulig  <martin@ximian.com>
31354         * threads.c (start_wrapper): Moved the initialization of
31355         `start_func' above the mono_new_thread_init() call to which we
31356         pass it as argument.
31358 2003-01-24  Martin Baulig  <martin@ximian.com>
31360         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
31361         the MonoThread pointer.
31363 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
31365         * icall.c: Rename `PowImpl' to Pow.
31367 2003-01-23  Dick Porter  <dick@ximian.com>
31369         * threads.c (start_wrapper): Create a Thread object if needed, so
31370         the Main() thread can do the class initialisation in a subthread
31371         that has been set up to allow managed code execution.
31373         Pass the thread ID instead of the MonoThread pointer to the thread
31374         start and attach callbacks.  This change is required, because the
31375         jit thread start callback must be called _before_ the Thread
31376         object can be created.
31377         
31378         (mono_thread_init): Removed much object creation code that is no
31379         longer needed.  No managed code is called from here now.
31381         * object.c (mono_runtime_exec_managed_code): Create a subthread
31382         for Main, and call back to the runtime to use it.
31383         Set the exit code when Main exits.
31385         * gc.c: Make sure domain finalisation happens in a subthread.
31386         Re-enable threaded GC, fixing bug 31333 (again).
31388         * environment.c: System.Environment internall calls (so far just
31389         ExitCode is here, the others are still in icall.c)
31391         * appdomain.c (mono_runtime_cleanup): All threads running managed
31392         code should have finished before mono_runtime_cleanup() is
31393         reached, so no need to clean up threads.
31395 2003-01-22  Martin Baulig  <martin@ximian.com>
31397         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
31398         `gpointer func' arguments.      
31399         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
31400         but added `MonoThread *thread' argument.
31401         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
31403         * threads.c (mono_new_thread_init): Added `gpointer func' argument
31404         and pass it to the mono_thread_start_cb callback.
31405         (mono_install_thread_callbacks): New public function to install a
31406         set of callbacks which are set by the debugger.
31407         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
31409 2003-01-22  Martin Baulig  <martin@ximian.com>
31411         * Makefile.am: Install debug-mono-symfile.h.
31413 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
31415         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
31417 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
31419         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
31420         * class.c (mono_ptr_class_get): correctly set access levels of pointers
31421         (mono_array_class_get): correctly set access levels of arrays
31423 2003-01-20      Patrik Torstensson
31424         * image.h (MonoAssemblyName): changed major, minor, build, revision
31425         from signed to unsigned.
31427 2003-01-20  sean kasun <skasun@azstarnet.com>
31429         * reflection.c (load_cattr_value): Now this handles
31430         MONO_TYPE_SZARRAY.  Fixes bug #35629
31432 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
31434         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
31435         integer value
31437 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31439         * decimal.c: fixed bug #26056.
31441 2003-01-17  Martin Baulig  <martin@ximian.com>
31443         * gc.c: Raise an ExecutionEngineException instead of using g_error().
31445 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31447         * exception.[ch]:
31448         (mono_get_exception_type_initialization): new function.
31450         * object.c: throw a TypeInitializationException when an exception is
31451         thrown invoking the class constructor.
31453 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31455         * reflection.c: fixed attribute reading.
31457 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31459         * icall.c:
31460         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
31461         provided, look for the type in the calling assembly and then in
31462         mscorlib; if the assembly name is provided, only try that one.
31464 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
31466         * object.c: register the vtable before there is a chance it's
31467         queried again recursively.
31469 2003-01-13  Duncan Mak  <duncan@ximian.com>
31471         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
31472         gc-internal.h. 
31473         
31474 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
31476         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
31478 2003-01-11  Martin Baulig  <martin@ximian.com>
31480         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
31481         this to 20 for the release.
31483 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
31485         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
31487         * loader.c (mono_method_get_marshal_info): bug fix
31489         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
31490         structures with explicit layout
31492 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31494         * profiler.c: made the output more readable (and sorted). 
31495         Added caller information for the allocation profiler.
31497 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
31499         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
31501 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31503         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
31504         to get value types.
31505         
31506 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
31508         * object.c, profiler.h, profiler.c, profiler-private.h:
31509         Added object allocation profiler.
31511 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
31513         * reflection.h, reflection.c: handle global methods.
31514         Compress blob entries.
31516 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
31518         * marshal.c: fix compilation.
31520 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
31522         * loader.c (mono_method_get_marshal_info): impl.
31524         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
31526 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31528         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
31529         for reference types.
31531 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
31533         * loader.c: fixed off by one error in loaded parameter names.
31535 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
31537         * marshal.c (mono_marshal_get_icall_wrapper): like
31538         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
31539         instead of a MonoMethod.
31541 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31543         * decimal.c: fixed bug #36537.
31545 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
31547         * marshal.c: throw a missing method exception if a
31548         P/Invoke method is not found.
31550 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
31552         * icall.c: allow a null this for constructors.
31554 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
31556         * icall.c: raise the proper exceptions if the arguments to the
31557         internal Invoke are incorrect.
31559 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
31561         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
31563 2003-01-03  Martin Baulig  <martin@ximian.com>
31565         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31567 2002-12-31  Martin Baulig  <martin@ximian.com>
31569         * debug-mono-symfile.c: Completely rewrote the type section.
31570         Instead of using individual malloc()ed fields, we use one big
31571         continuous memory area and offsets into this area.
31572         See the comments in the source code for details.
31574 2002-12-30  Martin Baulig  <martin@ximian.com>
31576         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
31578 2002-12-30  Martin Baulig  <martin@ximian.com>
31580         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
31581         line number table in this data blob instead of using an external
31582         pointer.
31584 2002-12-28  Martin Baulig  <martin@ximian.com>
31586         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
31588 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
31590         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
31591         as a boxed return type.
31593 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
31595         * appdomain.c
31596         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
31597         g_build_filename to properly get separators on the filename created.
31599         * object.h: Small change, introduce MonoMarshalByRefObject to
31600         track the layout of that structure in the C# universe as we make
31601         changes there.
31603 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
31605         * object.c: removed assert to allow static fields on interfaces.
31606         * loader.c: a TypeSpec may be used for any type, not just arrays.
31608 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
31610         * class.c, class.h: added mono_class_array_element_size ().
31611         Ignore static methods in interfaces.
31613 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31615         * threads.c: fixed the build under cygwin.
31617 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
31619         * reflection.c: handle nullref constants. Allocate keys for
31620         reflection handles with the GC.
31622 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31624         * threads.c, threads.h: added mono_thread_get_abort_signal()
31625         to get a suitable signal for thread abort.
31627 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
31629         * metadata.c: fix handling of ExportedType table.
31631 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31633         * icall.c: added WriteWindowsDebugString internal call.
31635 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31637         * reflection.h: added fields to match C# implementation.
31639 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31641         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
31643 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
31645         * gc.h, gc-internal.h: Rename header for GC internal calls to
31646         gc-internal.h from gc.h as to not clash with Boehm GC having its
31647         header installed as <gc.h> in outside include paths.
31648         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
31649         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
31651 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31653         * icall.c: assign minor, build and revision in FillName.
31655 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
31657         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
31658         Added support for running code generated by Reflection.Emit.
31660 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31662         * appdomain.c: check for NULL argument in LoadFrom.
31664 2002-12-10  Dick Porter  <dick@ximian.com>
31666         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
31668 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31670         * appdomain.c: fix buglet when building exe file name.  Handle full
31671         assembly name (needed after latest changes to AssemblyName).
31672         * image.c:
31673         (mono_image_close): free some hashtables.
31675 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
31677         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
31678         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
31679         on some systems (redhat 7.3) 
31681 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
31683         * threads.c: delete the critical section of a sync block,
31684         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
31686 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
31688         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
31690 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31692         * appdomain.[ch]: handle the assembly preload event to try loading the
31693         assemblies using the paths we have in the current domain.
31695         * assembly.[ch]: created an assembly preload hook that is called to try
31696         loading the assembly by other means that the ones provided here.
31698         * domain.c: initialize the domain search path.
31700         From now on, assemblies (TODO: except corlib and System) are loaded
31701         according to these rules when using mono_assembly_load ():
31703                 1. It tries to load the assembly from the ApplicationBase
31704                 of the current domain appending .dll and .exe (TODO: have to
31705                 try loading from name/name.dll and name/name.exe).
31707                 2. It tries the search path specified in PrivateBinPath for the
31708                 current domain (if any).
31710                 3. Previous behavior.
31712 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
31714         * icall.c: implemented GetInterfaceMap() related icall.
31715         * domain.c, loader.h: load MethodInfo in mono_defaults.
31717 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
31719         * gc.c: disable the finalizer thread for now, untill all the issues
31720         with it are resolved.
31722 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
31724         * string-icalls.c: handle embedded nulls in string ctor when the
31725         length is specified.
31727 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
31729         * class.c: look for explicit interface implementation in parent
31730         classes, too.
31732 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
31734         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
31736 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
31738         * gc.c: protect handles with a critical section.
31740 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31742         * icall.c:
31743         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
31744         parameters. If no assembly specified, try getting the type from all
31745         the assemblies in the current domain, else, load the assembly and get
31746         the type from it.
31748 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31750         * marshal.c: applied patch from Aleksey Demakov that fixes
31751         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
31753 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31755         * icall.c: fixed get_location.
31757 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
31759         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
31760         declarations to make it work with older gcc. 
31762         * loader.c (mono_get_method): set signature->pinvoke for native calls
31764 2002-11-20  Dick Porter  <dick@ximian.com>
31766         * threads.c (mono_thread_init): Set the main thread's handle
31768 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
31770         * gc.c: allow compilation without GC support. Changed to match the
31771         mono coding style.
31773 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
31775         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
31777 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
31779         * reflection.c: set a public key token on the core assemblies.
31781 2002-11-18  Dick Porter  <dick@ximian.com>
31783         * threads.c: Split out some thread initialisation so that other
31784         files can set the start callback function.
31786         * gc.c: Run finalisers in a separate thread, to avoid stack
31787         overflow.  Fixes bug 31333.
31789         * appdomain.c: Set up GC finalisation thread.
31791         * reflection.c: 
31792         * object.c: 
31793         * domain.c: Use gc.h macros for GC_malloc
31794         
31795 2002-11-15  Dick Porter  <dick@ximian.com>
31797         * threadpool.c: 
31798         * threads.c:
31799         * appdomain.c: Removed mono_runtime_init_with_attach(),
31800         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
31801         merging the extra parameter with the existing function.  Removed
31802         unneeded code in mono_thread_attach().
31804 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
31806         * image.c (mono_image_loaded_by_guid): a method to get loaded
31807         images by guid. 
31808         (load_metadata_ptrs): we store the guid as string.
31810 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
31812         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
31814         * metadata.c (mono_guid_to_string): imported method form Zoltan
31815         Varga (slightly modified)
31817         * assembly.c (mono_assembly_open): load precompiled code
31819         * loader.h (MonoMethod): we store the method token for use in the
31820         aot compiler. 
31822 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31824         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
31825         the hook function called when an assembly is loaded.
31826         
31827         * domain.c: Modified file.
31828         (mono_domain_assembly_load): removed hash table insertion of assemblies.
31830         Fixes bug #33196.
31832 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
31834         * reflection.c: Map PEFileKind to the value expected by the WinNT
31835         image loader. 
31837 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31839         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
31840         Read until the buffer is filled completely.
31842 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31844         * icall.c: implemented MonoType.InternalGetEvent ().
31846 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31848         * appdomain.c: implemented InitAppDomainSetup. Delayed
31849         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
31850         the entry_assembly.
31852         * assembly.c: base_dir is now an absolute path ending with
31853         G_DIR_SEPARATOR.
31855         * icall.c: modified get_location according to the above changes.
31857         * object.c: init AppDomain.SetupInformation for the default domain after
31858         we have the entry assembly.
31860         * domain.c: when unloading a domain, setup = NULL.
31862 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
31864         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
31866 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
31868         * object.h, object.c: introduced mono_object_get_virtual_method ()
31869         to lookup the method invoked on an object when a callvirt is done on
31870         a method.
31871         * icall.c: make MethodInfo::Invoke() always do a virtual call.
31873 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31875         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
31876         current domain when loaded an assembly and failed to load it.
31878         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
31880 2002-10-31  Dick Porter  <dick@ximian.com>
31882         * icall.c: 
31883         * file-io.h: 
31884         * file-io.c: Return the error status in a parameter, as the
31885         GetLastError() value has long since been blown away if we try and
31886         look it up in a subsequent internal call invocation.  Delete the
31887         GetLastError() internal call, because it's useless.
31889 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
31891         * class.[ch]: added cast_class to fix bug 29517
31893 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
31895         * marshal.c: create valid IL code in the filter clause:
31896         the new JIT is less forgiving:-)
31898 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31900         * icall.c: removed get_property internal call.
31902 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
31904         * appdomain.h domain.c: Added an ID to appdomains.
31905         
31906         * threads.c threads.h icall.c: Implement icall
31907         Thread:GetDomainID(), and remove unused icall 
31908         CurrentThreadDomain_internal.
31910 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31912         * icall.c: Don't recurse through the base types in GetConstructor.
31913         Fixes bug #32063. 
31915 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
31917         * mempool.h, mempool.c: added mono_mempool_empty() and
31918         mono_mempool_stats().
31920 2002-10-23  Dick Porter  <dick@ximian.com>
31922         * file-io.c: 
31923         * file-io.h: 
31924         * icall.c: Added MonoIO.GetFileType internal call
31926 2002-10-17  Dick Porter  <dick@ximian.com>
31928         * appdomain.c (mono_runtime_cleanup): Don't signal the async
31929         delegate semaphore before waiting for all threads to finish,
31930         because new threads can also call async delegates.  Fixes bug
31931         32004.
31933         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
31934         of 3 seconds, in case another async job is queued.  (This part is
31935         needed because the bug fix reintroduced the 3s exit lag.)  This
31936         makes the mono_runtime_shutdown flag superfluous.
31938 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
31940         * reflection.c: include ehader size in method section headers.
31941         Really check for suplicated modules entries.
31943 2002-10-17  Martin Baulig  <martin@gnome.org>
31945         * debug-mono-symfile.c: Added back support for locals.
31947 2002-10-14  Martin Baulig  <martin@gnome.org>
31949         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
31950         MONO_TYPE_VOID.
31952 2002-10-14  Martin Baulig  <martin@gnome.org>
31954         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
31955         mono_class_get() instead of looking in the class cache. 
31957 2002-10-13  Martin Baulig  <martin@gnome.org>
31959         * debug-mono-symfile.c: Set version number to 28, include the
31960         signature in method names.
31962 2002-10-13  Martin Baulig  <martin@gnome.org>
31964         * debug-mono-symfile.h: Set version number to 27.
31966 2002-10-11  Martin Baulig  <martin@gnome.org>
31968         * gc.c: Don't register/unregister NULL pointers as disappearing links.
31970 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31972         * metadata.c, metadata.h: added helper function to allocate signatures.
31974 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31976         * icall.c: added internal call to get the location of machine.config.
31978 2002-10-08  Martin Baulig  <martin@gnome.org>
31980         * debug-mono-symfile.c: Ignore classes with a pending init for the
31981         moment.
31983 2002-10-03  Dick Porter  <dick@ximian.com>
31985         * threads.c: Freebsd pthread_t is a pointer
31987 2002-10-03  Dick Porter  <dick@ximian.com>
31989         * socket-io.c: Implemented GetHostName_internal
31991 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31993         * mono-config.c:
31994         (mono_config_parse_file): don't leak the text.
31996 2002-10-02  Martin Baulig  <martin@gnome.org>
31998         * debug-mono-symfile.c: Added support for methods.
32000 2002-10-01  Martin Baulig  <martin@gnome.org>
32002         * debug-mono-symfile.c: Don't emit methods and line numbers for
32003         the dynamic symbol file, just write the type table.  We can easily
32004         have an external helper program which creates a symbol file for an
32005         IL file.        
32007 2002-10-01  Dick Porter  <dick@ximian.com>
32009         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32010         Only add the handle to the cleanup array when we're about to
32011         launch the thread.  Bug 31425 deadlocked when the test was run on
32012         mono under w32.
32014 2002-10-01  Martin Baulig  <martin@gnome.org>
32016         * debug-mono-symfile.c: Added support for properties.
32018 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32020         * reflection.c: unaligned store fix from Mark Crichton
32021         <crichton@gimp.org>.
32023 2002-09-27  Martin Baulig  <martin@gnome.org>
32025         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32026         New interncall.
32028 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32030         * assembly.h, assembly.c: use a sane API to hook into the assembly
32031         loading process instead of a useless special-purpouse hack
32032         (ngen needs a hook, too, for example).
32034 2002-09-27  Dick Porter  <dick@ximian.com>
32036         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32037         io-layer can set up some process handle info.  Not needed on w32,
32038         but doesn't hurt either.
32040         * process.c: Pass the program name in the second parameter to
32041         CreateProcess, so the path is searched.  Include the working
32042         directory. Implemented process name, process enumeration, and some
32043         process detail internal calls.
32044         
32045         * icall.c: Added internal calls for process lookup, and some
32046         process details
32048 2002-09-26  Martin Baulig  <martin@gnome.org>
32050         * assembly.c (mono_install_open_assembly_hook): New global
32051         function to install a function to be invoked each time a new
32052         assembly is loaded.
32053         (mono_assembly_open): Run this callback function if set.
32055         * debug-mono-symfile.c: Put back line numbers for the dynamic
32056         symbol file and also record the .il file as source file.  This
32057         allows us to install the temporary symbol file as `file.dbg' just
32058         like a compiler-generated one.
32060 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32062         * Corrected typo in gc.c (BOHEM vs BOEHM).
32064 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32066         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32067         GetProperties. Also avoid calling g_slist_length in GetProperties and
32068         GetMethods.
32070 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32072         * reflection.c: avoid unaligned stores (bug spotted by
32073         Mark Crichton  <crichton@gimp.org>).
32075 2002-09-25  Martin Baulig  <martin@gnome.org>
32077         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32078         instead of guint64 for addresses and added prologue/epilogue info.
32080 2002-09-25  Martin Baulig  <martin@gnome.org>
32082         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32083         store line number info.  For the dynamic symbol file, we only need
32084         to provide the JIT generated dynamic line number info for the dynamic
32085         symbol file.
32087 2002-09-25  Martin Baulig  <martin@gnome.org>
32089         * debug-mono-symfile.h: Incremented version number.
32091 2002-09-24  Martin Baulig  <martin@gnome.org>
32093         * class.c (mono_debugger_class_init_func): New global function
32094         pointer variable.
32095         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32096         call it.
32098         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32099         function.  This is called via the mono_debugger_class_init_func
32100         hook to add all types to the dynamic type table.
32101         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32102         from its metadata token.
32104         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32105         New interncall for the debugger.
32107 2002-09-24  Nick Drochak <ndrochak@gol.com>
32109         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32110         before using it in case it is null.
32111         
32112 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32114         * metadata.c: allow custom modifiers in local var signatures
32115         (bug spotted by Zoltan Varga).
32117 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32119         * class.c: deal with the <Module> class that may have a NULL vtable.
32120         Eliminate warnings.
32122 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32124         * image.c, image.h: more strong name helpers.
32125         * monosn.c: more work: convert pem keys to cryptoapi format.
32127 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32129         * string-icalls.c: speedup IndexOf.
32131 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32133         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32135 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32137         * icall.c: cleanup: use mono_object_domain ().
32139 2002-09-23  Martin Baulig  <martin@gnome.org>
32141         * debug-mono-symfile.c: Improved type support.
32143 2002-09-22  Martin Baulig  <martin@gnome.org>
32145         * debug-mono-symfile.c: Added support for reference types and strings.
32147 2002-09-22  Martin Baulig  <martin@gnome.org>
32149         * debug-mono-symfile.c: Started to work on the type table.
32151 2002-09-21  Martin Baulig  <martin@gnome.org>
32153         * debug-mono-symfile.c: Largely reworked the symbol table format.
32154         The symbol table is now incrementally updated each time a new
32155         method is added.  We're now also using our own magic and version
32156         so that you don't need to recompile all your classes if the
32157         dynamic table changes.
32158         (mono_debug_update_mono_symbol_file): Removed.
32159         (mono_debug_symfile_add_method): New function to add a method.
32161 2002-09-21  Martin Baulig  <martin@gnome.org>
32163         * icall.c
32164         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32165         New interncall.
32167         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32168         New interncall to get a method from its metadata token.
32170 2002-09-21  Martin Baulig  <martin@gnome.org>
32172         * debug-mono-symfile.c: Create type table.
32174 2002-09-20  Martin Baulig  <martin@gnome.org>
32176         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32178 2002-09-20  Martin Baulig  <martin@gnome.org>
32180         * debug-mono-symfile.c: Provide information about params and locals.
32182 2002-09-20  Martin Baulig  <martin@gnome.org>
32184         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32185         New interncall.
32187         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32188         interncall to get a method from its metadata token.
32190 2002-09-20  Martin Baulig  <martin@gnome.org>
32192         * debug-mono-symfile.c: Added a few checks for method->header
32193         being non-NULL.  This should never happen, but for the moment
32194         let's use a g_warning() rather than a g_assert().
32196 2002-09-19  Mark Crichton  <crichton@gimp.org>
32198         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32199         even if support for it isn't present.  Added an #ifdef to fix this.
32201         * socket-io.c: Added checks back for Solaris support.
32203 2002-09-19  Martin Baulig  <martin@gnome.org>
32205         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32206         changes in the symbol file format.
32208 2002-09-18  Martin Baulig  <martin@gnome.org>
32210         * debug-mono-symfile.c: Set version number to 21.
32212 2002-09-18  Dick Porter  <dick@ximian.com>
32214         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32215         on netbsd.  Fixes bug 30051.
32217 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32219         * reflection.c:
32220         (set_version_from_string): little fix.
32222 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32224         * monosn.c, Makefile.am: added strong name utility.
32225         * reflection.h, reflection.c: implemented delayed signing,
32226         locale, version and hash id assembly attributes.
32228 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32230         * loader.c, metadata.c: load param attributes in signatures.
32232 2002-09-16  Martin Baulig  <martin@gnome.org>
32234         * debug-mono-symfile.c: Added string table with all method names.
32236 2002-09-14  Martin Baulig  <martin@gnome.org>
32238         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32239         fast method lookup.
32241 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32243         * reflection.c: record the public key token of referenced assemblies.
32245 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32247         * image.c, image.h: added functions to get the strong name and the
32248         public key of an assembly.
32249         * pedump.c: use them.
32251 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32253         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32255 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32257         * marshal.c (mono_marshal_get_managed_wrapper): Added
32258         MONO_TYPE_BOOLEAN 
32260 2002-09-11  Martin Baulig  <martin@gnome.org>
32262         * gc.c: Call GC_unregister_disappearing_link() on all links when
32263         finalizing them, this is necessary to aviod a crash in boehm's
32264         finalize handler.
32266 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32268         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32269         nick@chemlab.org.
32271 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32273         * icall.c: implemented MonoType::Module.
32274         * reflection.c, reflection.h: mono_module_get_object () from
32275         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32277 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32279         * icall.c: ignore overridden methods in GetMethods ().
32280         Fix for FieldInfo::SetValue().
32281         * object.c: handle float/double in runtime invoke.
32283 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32285         * object.c: allow a constructor to be called again on an object.
32287 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32289         * class.h, class.c: move field layout code to it's own function and
32290         export it. Get an interface id earlier. Move fields in MonoClass
32291         so they are more cache friendly and align the bitfields.
32292         * loader.c: temporary handle get_param_names() for a runtime method.
32293         * reflection.c, reflection.h: more code to handle runtime creation of
32294         types.
32296 2002-09-09  Martin Baulig  <martin@gnome.org>
32298         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32299         signature with the pinvoke field being set for the actual call.
32301 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32303         * icall.c: removed some unused icalls. Start of map of glib charsets
32304         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32306 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32308         * debug-helpers.c: break infinite loop (found and fixed by
32309         Holger Arnold <harnold@gmx.de>).
32311 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32313         * icall.c: target may be null in create_delegate.
32315 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32317         * marshal.c: handle a boolean return type.
32319 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32321         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
32323 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32325         * gc.c: fix weakreferences.
32327 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32329         * icall.c: added icall to get default codepage.
32331 2002-09-03  Dick Porter  <dick@ximian.com>
32333         * threads.h: 
32334         * threads.c: Use MonoThread instead of MonoObject where
32335         apropriate.
32337         Store running thread objects in a hash table, so that we have all
32338         the info to hand when waiting for them to finish
32339         (means we don't need OpenThread() any more, so mingw builds should
32340         be fully functional again.)
32342         * verify.c:
32343         * object.h: Added thread ID to MonoThread
32345 2002-09-03  Martin Baulig  <martin@gnome.org>
32347         * icall.c (System.Reflection.Assembly::get_location): New interncall.
32349 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32351         * icall.c: fixed leak in get_temp_path. Thanks lupus.
32353 2002-09-03  Martin Baulig  <martin@gnome.org>
32355         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
32356         argument to store the end address of the disassembled instruction.
32358         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
32359         here from debug-symfile.h.
32360         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
32361         JIT into this struct.
32362         (MonoSymbolFile): Added `char *image_file' field.
32363         (MonoDebugGetMethodFunc): Removed.
32364         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
32365         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
32366         (mono_debug_find_method): New method.
32368         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
32369         create a full symbol file.
32370         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
32371         and static symbol files.
32372         (mono_debug_find_method): The symbol file keeps an internal method hash,
32373         call this to get a MonoDebugMethodInfo from a MonoMethod.
32375         * debug-symfile.[ch]: Removed.
32377 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
32379         * image.c (do_mono_image_open): Remove linker version check.
32381 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
32383         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
32384         wrappers for instance methods.
32385         
32386 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32388         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
32390 2002-08-28  Dick Porter  <dick@ximian.com>
32392         * Makefile.am: Export HOST_CC for w32 builds
32394 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32396         * file-io.c process.c: MonoString are null terminated, no
32397         need for mono_string_to_utf16() anymore.
32399 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32401         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
32403 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
32405         * icall.c, reflection.h: speedup System.MonoType.
32407 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32409         * reflection.c: allow null as the value of a string argument in
32410         custom attributes constructors.
32412 2002-08-27  Martin Baulig  <martin@gnome.org>
32414         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
32415         `trampoline_address' field.
32417 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
32419         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
32420         check (fixes bug #29486) 
32422 2002-08-27  Martin Baulig  <martin@gnome.org>
32424         * debug-mono-symfile.c: Changed the file format in a way that allows us
32425         open it read-only and to use a specially malloced area for all the
32426         dynamic data.  We can now also generate a symbol file on-the-fly if we're
32427         debugging IL code and there is no MCS generated symbol file for it.
32429 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32431         * object.c: added a define for a good string and array
32432         creation speedup (not enabled by default because we need to deal with
32433         the synch stuff).
32435 2002-08-26  Martin Baulig  <martin@gnome.org>
32437         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
32438         function to create a dynamic symbol file.  This is used by the
32439         debugger to create a symbol file for IL code on-the-fly.
32441 2002-08-26  Martin Baulig  <martin@gnome.org>
32443         * loader.c (mono_lookup_pinvoke_call): Include the error message
32444         from g_module_error() in the error message.
32446 2002-08-24  Martin Baulig  <martin@gnome.org>
32448         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
32449         function to update the symbol file.  The symbol file is mmap()ed
32450         writable, but private.  This allows us to install the symbol file
32451         together with the assembly.
32453 2002-08-24  Martin Baulig  <martin@gnome.org>
32455         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
32456         but they can read the new symbol file format which mcs is now creating.
32458         * debug-symfile.c (mono_debug_find_source_location): Moved to
32459         debug-mono-symfile.c; this is now operating on the new symbol file.
32461 2002-08-23  Martin Baulig  <martin@gnome.org>
32463         * debug-helpers.c (mono_method_desc_from_method): New function to get
32464         a MonoMethodDesc from a MonoMethod.
32466 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32468         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
32469         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
32471 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32473         * string-icalls.[ch]: make helper methods static.
32475 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32477         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
32478         types to it and to SetValueInternal.
32480         * object.c: Moved handle_enum label to its proper place. This was the
32481         f... bug! ;-)
32483         This time i compiled mcs and gtk-sharp and they both work.
32485 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32487         * icall.c: reverted partially my previous patch until 
32488         object.c:set_value handles enums correcly.
32490 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32492         * icall.c:
32493         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
32494         (ves_icall_System_Environment_get_MachineName): removed warning when
32495         compiling under cygwin.
32497 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32499         * object.c: fixed field_get_value() for reference types.
32501 2002-08-22  Dick Porter  <dick@ximian.com>
32503         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
32504         Don't free a buffer while it's still needed.  Patch from Jonathan
32505         Liger <Jonathan.liger@wanadoo.fr>
32507 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
32509         * icall.c (ves_icall_System_Environment_get_Platform): Add new
32510         internal call.
32512 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
32514         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
32515         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
32517         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
32518         we call unmanaged code which throws exceptions.
32520 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32522         * appdomain.h: added per-domain entry_assembly.
32523         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
32524         arguments.
32525         * icall.c: Assembly::GetEntryAssembly icall.
32526         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
32527         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
32529 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32531         * appdomain.h, gc.c: added mono_domain_finalize ().
32533 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32535         * object.c:
32536         (mono_print_unhandled_exception): changed g_warning by g_printerr
32537         because g_log has a 1024 characters limit (yeah, i got a big stack
32538         trace). Don't print exception name, that should be in ToString 
32539         returned string.
32541 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32543         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
32544         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
32546 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32548         * object.c:
32549         (mono_print_unhandled_exception): after previous commit, i realized
32550         that MS calls ToString on the exception. I changed this function to
32551         do that. This way we get stack_trace for free.
32553 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32555         * object.c:
32556         (mono_print_unhandled_exception): invoke Message property instead of
32557         getting 'message' field from Exception. Don't allocate memory for
32558         'trace' and 'message' if not needed.
32560 2002-08-18  Dick Porter  <dick@ximian.com>
32562         * unicode.c: Fix asserts to match Encoder.cs checks
32564 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32566         * marshal.c: fix unaligned store issue and a few wrong
32567         opcode argument types.
32569 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32571         * icall.c: added GetUninitializedObjectInternal internal call.
32573 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
32575         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
32576         to the right domain.
32578 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
32580         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
32582         * class.c (class_compute_field_layout): set blittable to false for Strings
32584         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
32586 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32588         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
32589         first chunk of code to create types at runtime. Code to
32590         handle ReflectedType/DeclaringType. Make reflection handles
32591         domain specific.
32593 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32595         * class.c: set correct name in arrays.
32597 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
32599         * appdomain.c (mono_domain_transfer_object): make it work with
32600         valuetypes. bug fixes.
32602 2002-08-12  Dick Porter  <dick@ximian.com>
32604         * object.h: Rename some parameters to avoid c++ keywords (Patch
32605         from Joseph Wenninger <kde@jowenn.at>)
32607 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
32609         * icall.c: added icall to implement Assembly.GetFile*.
32611 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32613         * reflection.h, reflection.c: code to embed managed resources.
32615 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32617         * class.c: move all the type size stuff into
32618         class_compute_field_layout().
32620 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32622         * class.c: ensure enums have always the correct instance size.
32623         * unicode.c: remove wrong assert.
32625 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32627         * assembly.c: fix mem corruption issue.
32628         * image.h, image.c: added mono_image_get_resource () to access
32629         managed resources.
32630         * icall.c: implemented Assembly.EntryPoint property and some
32631         Managed Resources related internalcalls.
32634 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32636         * image.c, image.h: impemented mono_image_get_entry_point ().
32637         * appdomain.c: use mono_image_get_entry_point.
32639 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32641         * reflection.c: support the object type argument when loading
32642         custom attributes.
32644 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
32646         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
32647         String as return type.
32649 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
32651         * reflection.c: fix encoding of named args for custom attrs to match
32652         the ms implementation. Read them back when instantiating custom
32653         attributes.
32655 2002-08-02  Radek Doulik  <rodo@ximian.com>
32657         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
32658         by Dietmar as quick fix
32659         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
32660         16 as stack size, used on more places as quick fix before Dietmar
32661         will fix it properly
32663 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32665         * object.h, object.c: added accessors for fields and properties.
32667 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
32669         * class.c, class.h: made mono_class_get_field_from_name ()
32670         loop on parent types.
32671         Added mono_class_get_property_from_name ().
32673 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32675         * class.c, class.h: move the code to setup the type vtable in its own
32676         function so that it can be reused also for types created at runtime.
32677         Eliminate the "class" identifier from the header file.
32678         * reflection.c: setup the vtable for enums so that we can create
32679         objects for use in SetConstant ().
32681 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
32683         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
32684         instead of the delegate itself as this pointer (bug #28383)
32686 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
32688         * marshal.c (mono_marshal_get_managed_wrapper): added return type
32689         conversions.
32691 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32693         * loader.c: don't set the pinvoke bit on icalls.
32695 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
32697         * debug-helpers.c (mono_method_full_name): only print a number to
32698         indicate wrapper type (so that the output is more readable in traces).
32700 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
32702         * class.c (mono_class_init): include method override patch from Paolo
32704 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
32706         * icall.c: fixed GetTypeCode().
32708 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
32710         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
32711         use real delegate invoke function to make it work with multicast
32712         delegates (fix bug# 28291).
32714 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716         * object.c: load constant strings.
32718 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32720         * reflection.c: no magic numbers.
32721         * tabledefs.h: security action enum.
32723 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32725         * assembly.c: fix possible memory corruption.
32727 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32729         * reflection.h, reflection.c: added support for linking resources.
32730         * verify.c: check we have an updated corlib.
32732 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
32734         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
32735         string arrays.
32736         (mono_marshal_string_array): null terminate unmanaged string arrays.
32737         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
32739 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32741         * icall.c: Type.GetType () can now return also types from the
32742         calling assembly.
32744 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32746         * loader.h, loader.c: stack walking support.
32747         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
32748         GetCallingAssembly.
32750 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
32752         * marshal.c: added optimisations for blittable types 
32754         * class.c (mono_array_class_get): do not set blittable attribute on arrays
32755         (mono_class_setup_mono_type): set blittable attribute for single
32756         and double.
32758         * marshal.c (mono_string_utf8_to_builder): impl.
32759         (mono_string_builder_to_utf8): impl.
32760         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
32762 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
32764         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
32765         (mono_marshal_get_managed_wrapper): impl. byref types
32767 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32769         * icall.c:
32770         (search_method): don't display debug message. 
32772 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32774         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
32776 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
32778         * appdomain.c: set the missing filename when throwing exception.
32780 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
32782         * metadata.c (mono_type_size): code cleanup
32783         (mono_type_stack_size): removed some test code
32785 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
32787         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
32788         mono_get_exception_file_not_found now.
32790         * exception.c (mono_exception_from_name_two_strings): New version
32791         that will call a constructor with two string arguments. 
32792         (mono_get_exception_file_not_found): New helper routine, used to
32793         report file-not-found errors.
32795 2002-07-20  Dick Porter  <dick@ximian.com>
32797         * process.h:
32798         * process.c: Pass file handles to CreateProcess
32799         
32800         * icall.c:
32801         * file-io.h:
32802         * file-io.c: Implemented CreatePipe
32804 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32806         * metadata.c (mono_get_param_info): set alignment for value types
32808 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32810         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
32811         Constify mono_domain_assembly_open().
32812         * loader.c: handle null namespace in icalls.
32814 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
32816         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
32817         (emit_str_to_ptr_conv): marshal object as structs
32819         * metadata.c (mono_type_to_unmanaged): marshal object as structs
32821         * marshal.c (mono_marshal_get_runtime_invoke): support value types
32823 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
32825         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
32826         (mono_marshal_get_native_wrapper): we an now return value types
32828 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32830         * verify.c: more checks implemented.
32832 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
32834         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
32835         (fix bug #27695)
32836         (mono_marshal_get_native_wrapper): allow byref arguments
32837         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
32838         impl. PtrToStringXXX methods
32839         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
32840         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
32841         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
32842         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
32843         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
32845 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32847         * reflection.c: fix buglet in parsing an assembly name.
32849 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32851         * marshal.c (emit_ptr_to_str_conv): first impl.
32853 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32855         * object.c, class.h: cache the vtable in the class as suggested by
32856         vargaz@freemail.hu (Zoltan Varga).
32858 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32860         * class.h, loader.c: added mono_field_from_token().
32861         * verify.c: first cut of type checking code.
32863 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
32865         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
32867 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
32869         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
32870         (fix bug #27782)
32871         (mono_marshal_get_remoting_invoke): impl.
32872         (mono_delegate_begin_invoke): impl.
32873         (mono_mb_emit_save_args): impl.
32874         (mono_delegate_end_invoke): impl.
32875         (mono_marshal_get_delegate_begin_invoke):
32876         (mono_marshal_get_delegate_end_invoke):
32877         (mono_marshal_get_delegate_invoke): generate a special name for
32878         those methods (including the signature) and associate them whith
32879         the delegate class. 
32881 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
32883         * reflection.[ch]: 
32884         (mono_reflection_type_from_name): now it has a MonoImage parameter
32885         which is used as the default image to search the type in. If the image
32886         is NULL or getting the type from it fails, it defaults to corlib.
32888         * icall.c: changed 1 call to mono_reflection_type_from_name to match
32889         new parameter.
32891 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32893         * reflection.c: update the parameter table index.
32895 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32897         * domain.c: don't include the mark byte in the string hash.
32899 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32901         * icall.cs: icall for Type.GetTypeCode ().
32902         * verify: a couple of fixes and disabled local initialization checks.
32904 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
32906         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
32908         * debug-helpers.c (mono_method_full_name): print the type of the
32909         runtime wrapper
32911         * metadata.c (mono_signature_hash): a hash function for signatures
32912         (mono_signature_hash): better hash algorithm
32914         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
32916         * debug-helpers.c (mono_method_full_name): this can now generate
32917         method names with signatures
32919         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
32920         method dont have this pointers.
32922 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32924         * reflection.c: fixup typebuilder tokens.
32925         * image.c: fix buglet.
32926         * marshal.h: remove whitespace.
32927         * metadata.h, metadata.c: reinstate code that was removed.
32928         * verify.c: handle catch directives and fix another couple of bugs.
32930 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
32932         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
32933         (mono_marshal_get_native_wrapper): make it comp. with the old code
32934         (mono_marshal_get_native_wrapper): support boolean
32935         (mono_marshal_get_managed_wrapper): support more types
32937 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
32939         * class.c (class_compute_field_layout): compute class->blittable attribute.
32941 2002-07-09  Dick Porter  <dick@ximian.com>
32943         * threads.c: Make the thread cleaning up cope with threads that
32944         call ExitThread()
32946 2002-07-08  Radek Doulik  <rodo@ximian.com>
32948         * reflection.c (method_encode_code): use non-translated values to
32949         compute finally_start, this fixes exception handling on ppc, yay!
32951         * decimal.h (struct signscale): fix endianess
32953 2002-07-07  Radek Doulik  <rodo@ximian.com>
32955         * reflection.c: swap box_val and not val
32957 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32959         * reflection.c, reflection.h: handle full assembly info in type name.
32960         Handle Type arguments when loading custom attributes.
32961         * icall.c: updated to use new mono_reflection_type_from_name () method.
32963 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32965         * loader.c:
32966         (method_from_memberref): also print assembly name when method not found.
32968 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32970         * icall.c:
32971         (ves_icall_TypeGetProperties): fixed bug #27473. 
32973 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32975         * reflection.c: display image name and token when cannot find the
32976         .ctor for an attribute.
32978 2002-07-05  Martin Baulig  <martin@gnome.org>
32980         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
32982 2002-07-04  Dick Porter  <dick@ximian.com>
32984         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
32985         compile on mingw.  This will cause mingw builds to not wait for
32986         subthreads to terminate after the main thread does.  I've lodged a
32987         bug with the mingw developers for them to wrap OpenThread().
32989 2002-07-03  Dick Porter  <dick@ximian.com>
32991         * threads.c: Store thread IDs instead of handles, because
32992         GetCurrentThread() returns a pseudohandle and therefore stores
32993         useless values.  mono_thread_cleanup() continues checking the
32994         array of threads until it is empty, to cope with subthreads
32995         spawning new threads after the main thread has finished.
32997         * profiler.h:
32998         * profiler.c:
32999         * profiler-private.h: Pass the thread ID to thread profiler
33000         functions, instead of a handle
33002 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33004         * verify.c: fixes to make it more usable.
33005         * pedump.c: added --verify code to verify IL code in an assembly.
33007 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33009         * reflection.c: turn errors into warnings to allow compiling corlib.
33011 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33013         * reflection.c: add special cases to compile corlib.
33015 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33017         * reflection.c: handle properties with only a set method.
33019 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33021         * opcodes.h: add enum with opcodes in opval order.
33023 2002-07-01  Dick Porter  <dick@ximian.com>
33024         
33025         * object.h:
33026         * object.c (mono_runtime_run_main): Removed unneeded argument
33028 2002-06-28  Martin Baulig  <martin@gnome.org>
33030         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33032 2002-06-27  Dick Porter  <dick@ximian.com>
33034         * threads.c: Store the handle in both the parent thread and in the
33035         subthread, to minimise the time between starting a new thread and
33036         storing its ID.
33038 2002-06-26  Dick Porter  <dick@ximian.com>
33040         * appdomain.c (mono_runtime_cleanup): Close the socket library
33041         after all the threads have finished, not before
33043 2002-06-26  Martin Baulig  <martin@gnome.org>
33045         * debug-symfile.c (mono_debug_find_source_location): Added
33046         `guint32 *line_number' argument.  If it's not NULL, store the line number
33047         there and return the file name without the line number.
33049 2002-06-25  Dick Porter  <dick@ximian.com>
33051         * icall.c:
33052         * process.h:
33053         * process.c: Process forking and other support functions
33055 2002-06-25  Dick Porter  <dick@ximian.com>
33057         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33058         things dont happen when the image is closed.
33059         (mono_image_lookup_resource): Walk the resource section looking
33060         for a particular entry
33062         * cil-coff.h: PE resource section decoding
33064 2002-06-25  Dick Porter  <dick@ximian.com>
33065         
33066         * assembly.h:
33067         * assembly.c: 
33068         (mono_assembly_foreach): Accessor functions to walk the list of
33069         loaded assemblies
33070         (mono_assembly_set_main):
33071         (mono_assembly_get_main): Process methods need to know which
33072         assembly is the "main" one
33074         * object.c (mono_runtime_run_main): Record the main assembly
33076         * debug-helpers.c: Fix typo
33078 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33080         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33081         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33083 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33085         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33087 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33089         * image.c (do_mono_image_open): Initialize reference count,
33090         otherwise we leak the MonoImage.
33092 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33094         * reflection.c: small tweak to handle self-hosting.
33096 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33098         * reflection.c: fix type name parse code.
33100 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33102         * reflection.c: break out of the loop.
33103         * image.c: special case corlib.
33105 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33107         * reflection.c: add all the custom attrs at the end to ensure the
33108         ctors have been properly initialized when the attributes are defined
33109         in the current assembly.
33111 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33113         * reflection.c: handle correctly multiple-nested types.
33115 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33117         * row-indexes.h: fix typos.
33118         * reflection.c: adjust for typos and fix method_def_or_ref
33119         encoding in MethodImpl table.
33121 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33123         * reflection.c: fix entry point patching (thanks Serge!).
33125 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33127         * verify.c: add check for System.Exception
33129 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33131         * image.c, class.c: minifix for code just c&p'ed.
33132         * reflection.c: warning fix.
33133         * object.h, loader.h, domain.c: load also StringBuilder.
33135 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33137         * marshal.h, marshal.c: some support code to handle complex marshaling.
33139 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33141         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33142         Better signatures with vtable error dump.
33144 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33146         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33148 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33150         * icall.c (ves_icall_Type_GetField): impl.
33152 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33154         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33155         to retrieve a marshal description blob for a field or param.
33157 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33159         * reflection.h, reflection.c: change order of nested type emission
33160         to avoid table corruption. The NestedTypes table is sorted.
33161         * icall.c: change order of GetConstructor results to workaround mcs bug.
33163 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33165         * reflection.h, reflection.c: handle field and param marshal
33166         information.
33168 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33170         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33172 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33174         * reflection.c: fix call convention.
33176 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33178         * reflection.h, reflection.c: mono_image_get_memberref_token()
33179         takes a type instead of a class, now. Added
33180         mono_image_get_array_token() to create tokens for the special
33181         multi-dim array methods.
33183 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33185         * assembly.c: handle modules (no assembly table). Split
33186         loading references in its own function.
33187         * class.c: handle moduleref resolution scope.
33188         * image.c, image.h: cache module name in image.
33190 2002-06-07  Martin Baulig  <martin@gnome.org>
33192         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33193         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33195 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33197         * icall.c: more signature fixes that used uint instead of int.
33199 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33201         * reflection.c: fixed signature of field refs.
33203 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33205         * class.c, reflection.c: handle typerefs of nested types
33206         (both on read and when writing files).
33208 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33210         * icall.c: fix method signatures that tried to workaround the previous
33211         typo, d'oh!
33213 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33215         * debug-helpers.c: fix typo.
33217 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33219         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33220         rewrote the PE/COFF writing code (our programs are understood by the
33221         ms runtime, now).
33223 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33225         * gc.c, gc.h, icall.c: weakreference support.
33227 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33229         * Makefile.am, mono-config.c: use $(sysconfdir).
33231 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33233         * icall.c: changed default precision of Double.ToString() to 15.
33234         Fixed memory leak. Unified with Single.ToString.
33236 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33238         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33240 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33242         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33243         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33244         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33245         and myself.
33247 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33249         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33251 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33253         * reflection.c, socket-io.c: more compilation fixes.
33255 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33257         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33258         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33259         unicode.c: warning and compiler compatibility fixes.
33261 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33263         * class.h, metadata.c: fixed warnings/compilation errors.
33265 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33267         * Makefile.am, mono-config.c, mono-config.h: configuration file
33268         support routines.
33269         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33270         config file. Export methods to insert and lookup mappings.
33272 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33274         * reflection.c: handle types and boxed objects in custom attr
33275         constructors.
33277 2002-05-30  Martin Baulig  <martin@gnome.org>
33279         * debug-symfile.c
33280         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33282 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33284         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33285         to lookup the implmap row for a P/Invoke method.
33286         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33287         P/Invoke method from the runtime on an as needed basis.
33289 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33291         * metadata.c (mono_metadata_parse_signature): impl.
33293 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33295         * class.c: handle .pack directive.
33297 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33299         * object.c: initialize static fields with RVA data.
33301 2002-05-25  Martin Baulig  <martin@gnome.org>
33303         * debug-symfile.c
33304         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33306 2002-05-24  Martin Baulig  <martin@gnome.org>
33308         * debug-symfile.c
33309         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33310         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33311         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33313 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33315         * object.c: special case string ctros in invoke.
33316         * gc.c: silly whitespace changes.
33318 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
33320         * threadpool.[ch]: impl. a threadpool that can
33321         be used by mint and mono.
33323 2002-05-22  Martin Baulig  <martin@gnome.org>
33325         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
33326         The first argument is now a `MonoReflectionModuleBuilder *', the return
33327         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
33328         `methods' field to get the method builder.  The `token' argument is the
33329         unfixed token.
33331         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
33332         invalid characters instead of g_assert_not_reached()ing.  This seems
33333         to be the behaviour of mscorlib.
33335 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
33337         * object.c (mono_runtime_invoke_array): applied patch from Rachel
33338         Hestilow to fix bug #25104
33340 2002-05-21  Martin Baulig  <martin@gnome.org>
33342         * debug-symfile.c (mono_debug_find_source_location): New function.
33343         Looks up an IL offset in the line number table and returns the source
33344         location as a string.
33346 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33348         * icall.c:
33349         (mono_double_ToStringImpl): changed %f by %g until we have something
33350         better.
33352 2002-05-21  Nick Drochak  <ndrochak@gol.com>
33354         * icall.c : Use different name for Math.Pow's icall.  Needed to check
33355         parameters first in C#.
33357 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33359         * icall.c, reflection.h: added icall to get info about an event.
33361 2002-05-20  Radek Doulik  <rodo@ximian.com>
33363         * object.c (mono_value_box): don't use memcpy for boxing on BIG
33364         endian
33365         (mono_value_box): don't use memcpy for small sizes on
33366         architectures with unaligned access
33368 2002-05-20  Martin Baulig  <martin@gnome.org>
33370         * reflection.c (mono_reflection_setup_internal_class): Don't crash
33371         if `tb->parent == NULL'.
33372         (mono_reflection_create_internal_class): New function.  This is
33373         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
33374         for enum types.
33376         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
33377         New interncall.
33379 2002-05-19  Martin Baulig  <martin@gnome.org>
33381         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
33382         argument to get the length, don't default to the array length.
33384 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
33386         * assembly.c (mono_assembly_setrootdir): New function used to
33387         override the MONO_ASSEMBLIES directory.
33389 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33391         * icall.c: ValueType_GetHashCode() initialize local var.
33393 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33395         * reflection.c: sort custom attributes table.
33397 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33399         * reflection.c: support named args in custom attributes (write support).
33401 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33403         * reflection.c: fix finally position calculation.
33405 2002-05-15  Radek Doulik  <rodo@ximian.com>
33407         * reflection.c: fixed endianess at many places
33409         * icall.c (ves_icall_InitializeArray): comment out debug msg
33411 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
33413         * object.c (mono_unhandled_exception): new function to handle
33414         unhandled exceptions.
33415         (mono_unhandled_exception): call the UnhandledException event.
33416         (mono_runtime_delegate_invoke): impl.
33418 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
33420         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
33421         returns the RVA, not the direct pointer to the data. Handle the case
33422         when the class size is fixed.
33424 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33426         * reflection.c: fix some endianess issues.
33428 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
33430         * object.c (mono_runtime_invoke): is now able to catch exceptions.
33432         * threads.c (mono_thread_init): added a callback which is invoked
33433         at thread start.
33435 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33436         
33437         * icall.c: make GetHashCode return non-negative values.
33439 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
33441         * object.c, icall.c, gc.c: revert to address-based hashcode.
33443 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
33445         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
33447 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33449         * icall.c, class.c: special case <Module>.
33451 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
33453         * icall.c: fix bug in GetNow().
33455 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
33457         * object.c (mono_runtime_class_init): make sure that we call all
33458         static class constructors.
33460 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33462         * reflection.c: sort methodsemantics table.
33464 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33466         * reflection.h, reflection.c: honour init locals setting.
33468 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
33470         * icall.c: copied Double ToStringImpl for Single ToStringImpl
33472 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33474         * reflection.c: support ContructorBuilders in attribute blob creation.
33476 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33478         * reflection.c: some changes to build a binary that can be run
33479         directly in windows.
33481 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33483         * loader.c: print a big message when an icall can't be found.
33485 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33487         * string-icalls.c: fix bug 24248.
33489 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33491         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
33492         icall.c, reflection.h: separate assembly loading by pathname and by
33493         assembly name. Use the MONO_PATH env var to search for assemblies.
33495 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33497         * assembly.c, image.h: add some support for assemblies
33498         with multiple modules.
33499         * class.c, class.h: export mono_class_from_typeref().
33500         * loader.c: remove duplicated code and use mono_class_from_typeref(),
33501         instead.
33503 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33505         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
33506         documentation says (the ECMA one is correct).
33508 2002-05-02  Dick Porter  <dick@ximian.com>
33510         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
33511         Don't name the synchronisation mutex.
33513 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
33515         * rand.c
33516         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
33517         Make the prototypes match.
33518         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
33519         Same.
33521         * icall.c
33522         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
33523         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
33524         all systems have tm.tm_zone, so use strftime() with %Z to print
33525         the timezone abreviation into a temp string.
33527         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
33528         rather than mono_array_addr() on a MonoString on Big Endian
33529         machines.
33531 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
33533         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
33534         fix bug 24041
33536 2002-04-30  Dick Porter  <dick@ximian.com>
33538         * socket-io.c: Cope with SOCKET being an integer rather than a
33539         pointer now.
33541         * threads.c: Added Thread_free_internal, to deal with thread
33542         handle cleanup.  Moved calls to handle_store() and handle_remove()
33543         to start_wrapper(), so each can only be called once.  Allocate
33544         synchronisation blocks with GC_malloc(), and use GC finalisation
33545         to close the handles.
33547         * icall.c: added System.Threading.Thread::Thread_free_internal
33549 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33551         * icall.c: support Environment.Exit, CommandLineArgs().
33553 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33555         * object.c, object.h: added mono_runtime_run_main () and
33556         mono_runtime_get_main_args () for use in System.Environment.
33558 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33560         * gc.c: fix thinko, enable actual finalization since the jit is now
33561         fixed.
33563 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33565         * gc.c, object.c: take into account that an object may be offset wrt the address
33566         returned by GC_malloc().
33568 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33570         * image.c: handle files without entries in the assembly table (modules).
33572 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
33574         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
33575         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
33576         allowed to be null when it's System.Object class setup.
33578 2002-04-27  Martin Baulig  <martin@gnome.org>
33580         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
33581         if `tb->parent == NULL' rather than crashing.
33583 2002-04-28  Nick Drochak  <ndrochak@gol.com>
33585         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
33586         calling acos() where asin() should have been called.
33588 2002-04-26  Martin Baulig  <martin@gnome.org>
33590         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
33591         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
33592         there's a subdirectory called `System', but we don't want to read that
33593         subdirectory as an assembly.
33595 2002-04-25  Martin Baulig  <martin@gnome.org>
33597         * debug-symfile.c: Reflect latest MonoString changes.
33599 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33601         * rand.c, rand.h: instance method icalls need to have an explicit
33602         this pointer as first argument in the C implementation.
33604 2002-04-25  Nick Drochak <ndrochak@gol.com>
33606         * icall.c: Fix typo in map for GetNonZeroBytes
33608 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33610         * string-icalls.c : String does now passes unit tests without any 
33611         errors, the following changes has been made:
33612         
33613         Implemented replace methods.
33614         Renaming of methods to (try) follow the standard.
33615         Fixed compare ordinal
33616         Made all memory allocated directly to function instead of via icall function.
33617         Small performance fix in is_in_array function
33618                         
33619  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
33621         c (mono_string_Internal_ctor_charp_int_int):
33622         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
33623         sindex < 0, throw ArgumentOutOfRangeException instead of
33624         ArgumentNullException.
33626         Added new check for length == 0, however
33627         I need to make it return String.Empty from the C code.
33628         
33629         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
33630         that calculate the length for us here.
33631         
33632         (mono_string_Internal_ctor_sbytep_int_int): Replaced
33633         mono_string_new_utf16 with mono_string_new, since value is utf8.
33635 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33637         * object.c: register the object for finalization if needed.
33638         Allocate one more char in the string for the terminating 0 char.
33640 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33642         * class.c, class.h, image.c: check if a type implemenst a destructor.
33643         Use the proper key for array class lookups.
33644         * icall.c: register the icalls in the System.GC class.
33645         * gc.c, gc.h: GC-related functions and icalls.
33647 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33649         * icall.c:
33650         * socket-io.c:
33651         * unicode.c: free some strings gotten from mono_string_to_utf8 and
33652         changed a couple of free () by g_free ().
33654         * decimal.c: one-liner in the comments for decimal2string ().
33656 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33658         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
33660 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
33662         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
33663         * object.c (mono_runtime_invoke_array) : handle null in params
33665 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33667         * string-icalls.c: fixed bug in split (one off bug)
33669 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33671         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
33672         * icalls.c: added String::Equals as internal method
33674 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
33676         * threads.c: fixed bug in the double interlocked functions
33678 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
33680         * threads.c: implemented all of the new interlocked icalls.
33681         * string-icalls.c: fix a bug in insert.
33682         * icalls.c: added the icalls for interlocked, removed old string functions.
33683         
33684 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33686         * loader.c: fix off-by-one error when reading argument names.
33688 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33690         * profiler.c: win32 counter implementation (untested).
33691         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
33692         (the latter needs testing and more complete impl. from win32 folks).
33694 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
33696         * object.c: mono_array_new_full workaround mono_array_class_get
33697         problem.
33699 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33701         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
33702         * object.h (mono_string_chars): Changed casting type.
33704 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33706         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
33707                            method signatures to use gunichar2 instead of gint16.
33709 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
33711         * object.h, object.c: domain-specific versions of mono_object_new and
33712         mono_array_new.
33714 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
33716         * object.c: changed String layout
33718         * string-icalls.c (mono_string_Internal_ctor_chara): added
33719         internal string constructors.
33721 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
33723         * threads.c: pass 'this' to the thread start routine.
33725 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33727         * string-icalls.c: fix IndexOf and LastIndexOf. Now
33728         InternalCompareStr don't call twice mono_string_cmp_char for the last
33729         character. Improved performance in mono_string_cmp_char.
33731 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33733         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
33734         code into its own library: libmonoruntime.
33736 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
33738         * object.h, object.c: changed array format so that szarrays do not
33739         require a bounds structure.
33740         * icall.c, appdomain.c: support for new szarray format.
33742 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
33744         * metadata.c: compare also the retuns type when comparing signatures:
33745         we didn't do this as an optimization since really overloaded methods
33746         must differ also in the arguments, but this doesn't work with
33747         low-level IL code (or when using explicit conversion operators: see
33748         bug#23498 for an example).
33750 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33752         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
33754 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33756         * icall.c: make MonoType::GetElementType its own icall.
33758 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33760         * icall.c: remove MonoMethod_get_Name().
33761         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
33762         object.
33764 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33766         * string-icalls.c: optimized a few methods.
33768 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
33770         * icall.c: added all new string internal calls
33771         * string-icalls.c: added, new string internal call implementation.
33772         * object.c: added mono_string_new_size for allocating a string a size
33774 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
33776         * object.c (mono_object_isinst): use the same code as in the
33777         optimized x86 version.
33779 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33781         * profiler.c: TSC-based timer code (faster and more accurate).
33782         Not hooked up in configure, yet (set USE_X86TSC to 1).
33784 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
33786         * profiler.c, profiler.h: track time spent compiling methods.
33787         * threads.c: track thread creation/destruction.
33789 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
33791         * profiler.c, profiler.h, profiler-private.h: profiling interface
33792         and sample implementation. Moved here so that it can be used also by
33793         the jit.
33795 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
33797         * reflection.c, reflection.h: keep types and other handles separate in
33798         the hash tables for referred tokens. Add guid for modules.
33800 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33802         * assembly.c: fix bugs found with valgrind.
33803         * metadata.h, metadata.c: added mono_metadata_guid_heap().
33805 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
33807         * threads: added icall support for getting current domain for
33808                    the thread.
33810 2002-04-13  Martin Baulig  <martin@gnome.org>
33812         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
33813         (MonoDebugVarInfo): Added `index' field for register based addresses.
33814         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
33815         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
33816         `MonoDebugVarInfo *params' and `guint32 this_offset' with
33817         `MonoDebugVarInfo *this_var'.
33819         * debug-symfile.c (relocate_variable): New static function to write
33820         a location description for a local variable or method parameter.
33822 2002-04-12  Martin Baulig  <martin@gnome.org>
33824         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
33825         stack offset and begin/end scope address of a local variable.
33826         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
33827         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
33828         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
33830         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
33831         Added new relocation types for start/end scope of a local variable.
33833 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33835         * object.h: add mono_object_domain() macro.
33836         * reflection.c: handle typespecs.
33837         * icall.c: MonoMethod::get_Name() implementation.
33839 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33841         * icall.c: String::GetHashCode() icall implementation.
33843 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845         * icall.c: String::IndexOfAny icall.
33846         * object.c, object.h: make array->max_length more useful.
33847         Intrduced mono_object_class() and mono_string_length() macros.
33849 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33851         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
33852         instead of g_unichar_isdigit.
33854 2002-04-11  Nick Drochak  <ndrochak@gol.com>
33856         * icall.c: Implement a simple Double.ToString().
33858 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33860         * appdomain.h: only io-layer.h is supposed to be included.
33861         * icall.c: explicitly import environ. Fix warning.
33863 2002-04-10  Nick Drochak  <ndrochak@gol.com>
33865         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
33866                 return true even if it's not Daylight Savings time.
33867                 Only return false for the case where the function isn't
33868                 implemented for a plaform (read Windows).
33870 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33872         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
33873         data with a mutex.
33875 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
33877         * mempool.c (mono_mempool_alloc): only use g_malloc when
33878         absolutely necessary.
33880 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33882         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
33884         * class.c (mono_class_vtable): use domain mempool to allocate vtable
33885         (mono_class_proxy_vtable): use domain mempool
33887 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33889         * appdomain.h, appdomain.c: split initialization that requires the
33890         execution engine support into mono_runtime_init().
33892 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
33894         * class.c (mono_class_init): don't include vtable inside MonoClass
33895         to save some memory, gather some statistics.
33896         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
33898 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33900         * icall.c: internalcall implementation for ValueType.Equals().
33902 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
33904         * object.c (mono_message_init): moved 
33905         (mono_runtime_exec_main): new arch. independent impl.
33906         (mono_runtime_invoke_array): new method - like
33907         mono_runtime_invoke, but you can pass an array of objects.
33908         (mono_remoting_invoke): new arch. independent impl.
33909         (mono_message_invoke): new arch. independent impl.
33910         (mono_runtime_class_init): new arch. independent impl.
33911         (mono_runtime_object_init): new arch. independent impl.
33913 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33915         * metadata.c, object.c, reflection.c: documented the exported
33916         functions.
33918 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33920         * icall.c: simpler code to pass the assembly builder data to corlib.
33921         Implement GetNestedTypes() internalcall.
33923 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33925         * class.c: warn if a type can't be loaded.
33927 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
33929         * image.h: typedef MonoImageOpenStatus
33930         * types.h: removed unused file
33931         
33932 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
33934         * icall.c: Enum_ToObject accepts enum value arguments.
33936 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33938         * class.c: move initialization of properties, events and nested
33939         classes, so that they happen for interfaces, too.
33941 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33943         * icall.c: cleanup some ugly casts in Array_SetValue*.
33945 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33947         * icall.c: the values array fro enums is of the correct type, now.
33948         Implement (correctly) getFullName instead of assQualifiedName for
33949         MonoType.
33950         * reflection.h, reflection.c: added mono_type_get_name ().
33952 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33954         * assembly.c, image.h: for each MonoImage, record from wich assembly
33955         it was loaded.
33956         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
33957         Make Type.Assembly work.
33959 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
33961         * debug-symfile.h: use char* instead of gpointer to avoid
33962         unnecessary casts.
33964         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
33966         * icall.c (ves_icall_InternalExecute): impl. FielSetter
33967         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
33969 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
33971         * icall.c (mono_message_init): impl. (code cleanup)
33972         (ves_icall_InternalExecute): impl. FieldGetter
33974         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
33975         defined we call all (non-static)methods through the vtable. 
33977 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
33979         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
33980         finalizer even though the memory is still referenced (and the chunk of
33981         memory is not freed).
33983 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33985         * assembly.c: fix brokeness.
33987 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
33989         * class.c: kill some warnings. Check explicit interface method
33990         implementation also without considering the namespace.
33991         Load also literal strings in static class data.
33993 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
33995         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
33996         (default_assembly_name_resolver): Make the resolver take the
33997         "base" directory where the assembly was originally defined, so we
33998         can load DLLs that are in the same directory as the assembly that
33999         is being referenced.
34001 2002-03-28  Dick Porter  <dick@ximian.com>
34003         * file-io.h: 
34004         * file-io.c:
34005         * socket-io.c: 
34006         * unicode.h: 
34007         * unicode.c: Warning cleanups
34009 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34011         * object.h, reflection.h: use the correct type instead of MonoObject.
34013 2002-03-28  Martin Baulig  <martin@gnome.org>
34015         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34016         (mono_debug_update_symbol_file): Initialize classes if necessary.
34018 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34020         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34021         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34023 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34025         * assembly.h: fix function prototype.
34026         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34027         * mono-endian.h: use const cast.
34029 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34031         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34033 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34035         * loader.c: don't assert when a typeref can't be loaded, give
34036         a chance to the runtime to trow an exception instead.
34037         * loader.h: fix warning.
34039 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34041         * class.c (mono_class_proxy_vtable): added proxy support
34043 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34045         * icall.c: removed last of PAL calls, added System.Environment
34046         * file-io.h, file-io.c: MonoIO implementation
34047         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34049 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34051         * appdomain.c: do not use the byte marker in ldstr table lookup.
34052         * debug-helpers.c: allow two ':' to separate class and method name.
34053         * object.c: allocate arrays bounds with the GC, too.
34054         * verify: add a few more checks.
34056 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34058         * reflection.c: output also literal strings. Allocate parameter data
34059         with GC_malloc() (thanks, Martin, for catching this!).
34061 2002-03-26  Martin Baulig  <martin@gnome.org>
34063         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34064         include the `this' offset in the `param_offsets'.
34066 2002-03-25  Martin Baulig  <martin@gnome.org>
34068         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34069         mono_debug_get_class() function to get the classes. Added new
34070         relocation types for arrays and strings.
34071         (mono_debug_get_class): New static function to search in all
34072         referenced assemblies for a metadata token.
34074         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34076 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34078         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34079         hold gc-allocated objects. Make the string heap a stream like the
34080         others. Removed duplicated code when writing stream info.
34081         Added asserts to catch possible buffer overflows. Set the sorted map
34082         for tables that need sorting. Added some documentation.
34084 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34086         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34087         for interned strings and vtables.
34089 2002-03-24  Martin Baulig  <martin@gnome.org>
34091         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34092         it in the array since it was created with g_slist_prepend().
34094 2002-03-24  Martin Baulig  <martin@gnome.org>
34096         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34097         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34098         (mono_debug_method_from_token): Renamed to
34099         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34100         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34102         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34103         relocation types.
34105         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34107 2002-03-24  Martin Baulig  <martin@gnome.org>
34109         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34110         (mono_debug_method_from_token): New func.
34112         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34113         New interncall, calls mono_debug_local_type_from_signature().
34114         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34115         calls mono_debug_method_from_token().
34117 2002-03-23  Martin Baulig  <martin@gnome.org>
34119         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34120         specifies the number of bytes to be converted, not the array size.
34121         Return the number of chars, not the number of bytes.
34122         (ves_icall_iconv_get_chars): The `byteCount' argument
34123         specifies the number of bytes to be converted, not the array size.
34125 2002-03-23  Martin Baulig  <martin@gnome.org>
34127         * reflection.h (MonoReflectionSigHelper): New type.
34129         * reflection.c (mono_reflection_sighelper_get_signature_local),
34130         (mono_reflection_sighelper_get_signature_local): New functions.
34132         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34133         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34134         interncalls.
34136 2002-03-23  Martin Baulig  <martin@gnome.org>
34138         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34139         is_writeable is set.
34140         (mono_raw_buffer_update): New function to write the modified map
34141         back to disk.
34143         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34145         * debug-symfile.c (mono_debug_update_symbol_file): Call
34146         mono_raw_buffer_update() when done writing.
34148 2002-03-23  Martin Baulig  <martin@gnome.org>
34150         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34152         * debug-symfile.c: Added support for arguments and local variables.
34154 2002-03-23  Dick Porter  <dick@ximian.com>
34156         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34157         protected by ifdefs, hence breaking the w32 build.
34159 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34161         * object.c: implement is_interned() the right way.
34163 2002-03-21  Martin Baulig  <martin@gnome.org>
34165         * debug-symfile.[ch]: New files to handle debugging information
34166         files. There's also support to dynamically update these symbol
34167         files to include machine dependent information.
34169 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34171         * threads.c (mono_thread_create): new function to create thread
34172         from C
34174 2002-03-20  Martin Baulig  <martin@gnome.org>
34176         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34177         method is a constructor.
34178         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34179         points to ves_icall_InternalInvoke().
34181 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34183         * file-io.c: Flush shouldn't throw exceptions.
34185 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34187         * file-io.c: FileStream flush support; FileSetLength now
34188         restores file pointer.
34190 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34192         * class.c: set image for pointer classes.
34194 2002/03/19  Nick Drochak <ndrochak@gol.com>
34196         * sysmath.c: Forgot one.
34198 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34200         * sysmath.c: Avoid redefining existing names.
34202 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34204         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34205         handled by runtime as icall rather than dllimport from libm.so
34206         * file-io.c, file-io.h: fixed handle argument type.
34208 2002-03-18  Dick Porter  <dick@ximian.com>
34210         * reflection.c (mono_image_get_type_info): rename interface to
34211         iface, because of "#define interface struct" on windows.
34213 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34215         * class.c, class.h: rename and export mono_ptr_class_get().
34216         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34217         * reflection.c, reflection.h, icall.c: better/saner type name
34218         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34219         method signatures.
34221 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34223         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34225         * icall.c (ves_icall_InternalInvoke): impl.
34227 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34229         * reflection.c: output the interface map table, too.
34231 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34233         * class.c (class_compute_field_layout): separate computation of 
34234         static field layout
34236 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34238         * icall.c: added System.Buffer support.
34239         * file-io.c: moved file icalls from PAL to FileStream.
34241 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34243         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34245 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34247         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34249 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34251         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34253 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34255         * debug-helpers.{c,h}: moved here from monograph some useful functions
34256         to locate a method by name/signature in a class or image. Included
34257         also a small and flexible IL disassembler.
34259 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34261         * reflection.c: fixup tokens in methods with small header size, too.
34263 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34265         * object.c (mono_string_to_utf8): remove assert(!error), instead
34266         print a warning. 
34268 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34270         * icall.c: update to the new mono_Array_class_get interface.
34272 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34274         * appdomain.c, object.c: Boehm-GC enable.
34275         * icall.c: make get_data_chunk() support split data requests.
34276         Ensure a class is initialized in more cases. Return only the first
34277         property found in GetProperties() or the compiler gets confused. 
34278         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34279         * reflection.h, reflection.c: add fixup mechanism for field and method
34280         tokens. Initialize assembly->typeref in a single place. Output
34281         properties after events. Support custom attributes for events, too.
34282         Typo fix for paramter custom attrs.
34284 2002-03-07  Martin Baulig  <martin@gnome.org>
34286         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34288 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34290         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34292 2002-03-06  Martin Baulig  <martin@gnome.org>
34294         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34295         non-zero lower bounds. See testcases #F10-#F13.
34297 2002-03-05  Martin Baulig  <martin@gnome.org>
34299         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34301         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34302         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34303         here.
34304         (ves_icall_System_Array_SetValue): Likewise.
34305         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34306         as argument and does the actual work. This function is used when copying a
34307         multi-dimensional array.
34308         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34309         now do all the widening conversions of value types.
34310         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34312 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34314         * class.c: remove some magic numbers and use the smbolic names,
34315         instead. Added init_events() to load event info at class init time.
34316         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34317         and mono_metadata_methods_from_event().
34318         * reflection.h, reflection.c: added support for writing out the evnets
34319         related information.
34321 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34323         * reflection.h, icall.c: use a different method (GetInterfaces)
34324         to gather interface info and add isbyref, isprimitive and
34325         ispointer to the ves_icall_get_type_info() return value.
34327 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34329         * class.h: stared adding support for events.
34330         * icall.c: split find_members implementation. Added debug icall to get
34331         the address of an object.
34332         * reflection.c: handle TypeBuilders in mono_type_get_object().
34334 2002-03-01  Martin Baulig  <martin@gnome.org>
34336         * icall.c (ves_icall_System_Array_GetLength): This must throw an
34337         ArgumentOutOfRangeException(), not an ArgumentException().
34338         (ves_icall_System_Array_GetLowerBound): Likewise.
34339         (ves_icall_System_Array_GetValue): Improved argument checking.
34340         (ves_icall_System_Array_SetValue): Improved argument checking.
34342 2002-03-01  Martin Baulig  <martin@gnome.org>
34344         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
34345         called with invalid arguments rather than just dying with g_assert().
34346         (ves_icall_System_Array_SetValue): Likewise.
34347         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
34348         raise a NotImplementedException instead.
34349         (ves_icall_System_Array_GetLength): Added argument checking.
34350         (ves_icall_System_Array_GetLowerBound): Added argument checking.
34352 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
34354         * object.h (mono_assert): new macros mono_assert and
34355         mono_assert_not_reached
34357 2002-02-28  Martin Baulig  <martin@gnome.org>
34359         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
34360         and "System::String::IsInterned" to "System::String::_IsInterned".
34362 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
34364         * icall.c: remove hacks for typebuilder. Added icall to create a
34365         modified type from a tybebuilder.
34366         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
34367         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
34368         to create a backing MonoClass for a TypeBuilder.
34370 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34372         * class.c, class.h: more refactoring of class init.
34373         Export mono_class_setup_mono_type() and mono_class_setup_parent().
34375 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
34377         * marshal.c, marshal.h: start of marshaling interface.
34379 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34381         * icall.c: fix order in assembly qualified name icall.
34383 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34385         * class.c: do not free str, since we store it in the hash table.
34386         * reflection.h: add label field to MonoILExceptionInfo.
34387         * reflection.c: handle references to more than one assembly. Handle
34388         case when there isn't a module created in the assembly.
34390 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34392         * class.c: Fix typo. Start refactoring of class init code.
34394 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34396         * appdomain.c: exit with 1 on error.
34397         * class.c: we already have the name in MonoClassField.
34398         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
34399         MonoStreamHeader instead of an offset of image->raw_metadata.
34401 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
34403         * appdomain.c (mono_init): Be even more descriptive about the error.
34405 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
34407         * appdomain.c: give the user an informative message when corlib can't
34408         be loaded.
34410 2002-02-26  Martin Baulig  <martin@gnome.org>
34412         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
34413         New icall to get the time zone data.
34415 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34417         * reflection.c: set virtual and raw size of section correctly.
34418         * threads.c: transfer domain information to newly created threads.
34420 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34422         * class.c: when instancing a class in a domain, load the default
34423         vaules for static fields from the constant table. Fix System.Enum to
34424         not be an enum.
34425         * icall.c: implement Object::GetType() internalcall. Implemented
34426         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
34427         Fixed checking of binding flags in find_members().
34428         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
34429         * reflection.c: handle enumerations when writing to the constant
34430         table. Use a different object cache for types.
34433 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
34435         * object.c (mono_object_isinst): fix for arrays
34437         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
34439 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34441         * object.c: don't use mprotect ()  and fix intern pool hash table
34442         lookup for big endian systems.
34444 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34446         * icall.c: change type_is_subtype_of () signature.
34448 2002-02-21  Mark Crichton  <crichton@gimp.org>
34450         * rand.c, rand.h: Added random number generator for
34451         System.Security.Cryptography classes.
34453         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
34455         * icall.c: Added System.Security.Cryptography calls.
34457 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
34459         * class.c, icall.c, metadata.c: better support for pointer types.
34460         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
34461         * reflection.c: Add support for getting custom attrs for properties
34462         and simplify some code.
34464 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34466         * icall.c: change getToken () and add custom attribute GetBlob()helper
34467         method.
34468         * reflection.h: add custom attrs array to the reflection builder structures.
34469         * reflection.c: encode and emit custom attributes for all the relevant
34470         reflection objects. Cache fieldref and methodref tokens. Change
34471         mono_image_create_token() interface to take a MonoDynamicAssembly.
34472         More complete custom attributes decoder. Load custom attributes for
34473         Assembly, Field, Method and Constructor objects, too. Make the
34474         returned array an Attribute[] one, not object[]. Added
34475         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
34476         custom attribute constructor.
34478 2002-02-20  Dick Porter  <dick@ximian.com>
34480         * icall.c:
34481         * rawbuffer.c:
34482         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
34483         problem code out for now).
34485 2002-02-19  Radek Doulik  <rodo@ximian.com>
34487         * object.c (mono_ldstr): use hash table to avoid multiple swapping
34489 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
34491         * icall.c: register the GetCustomAttributes method.
34492         * object.c, object.h: add mono_string_new_len ().
34493         * reflection.h, reflection.c: added mono_runtime_invoke(),
34494         mono_install_runtime_invoke(). Added
34495         mono_reflection_get_custom_attrs () to load custom attributes and
34496         create the attribute objects.
34498 2002-02-19  Dick Porter  <dick@ximian.com>
34499         * threads-dummy-types.c:
34500         * threads-dummy-types.h:
34501         * threads-dummy.c:
34502         * threads-dummy.h:
34503         * threads-pthread-types.c:
34504         * threads-pthread-types.h:
34505         * threads-pthread.c:
34506         * threads-pthread.h:  Deleted obsolete files
34508 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
34510         * class.c (mono_class_vtable): runtime init the class when we
34511         allocate static class data.
34513         * icall.c (ves_icall_System_Array_SetValue): check for null values.
34515         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
34516         and String - but we will need generic marshalling support in the
34517         future. 
34518         (mono_init): set the domain name in a ms compatible way
34520         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
34521         String[].
34523 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
34525         * object.c (mono_array_clone): use alloca() instead of g_malloc  
34526         for sizes
34528         * appdomain.c (mono_domain_unload): impl.
34530 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34532         * appdomain.c, object.c: fix intern pool implementation.
34533         * class.c: fix alignment code.
34535 2002-02-16  Radek Doulik  <rodo@ximian.com>
34537         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
34538         and s2 > s1, just copy lower bytes to be compatible with little
34539         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
34540         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
34542         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
34543         force big_endian to be 1 for big endian machines 
34544         (ves_icall_iconv_new_decoder): ditto
34546 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
34548         * socket-io.c (convert_sockopt_level_and_name): If the system
34549         doesn't define SOL_IP or SOL_TCP, get them by hand using
34550         getprotobyname() and caching the values (because this could be a
34551         slow operation).
34552         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
34553         Use the appropriate struct when the system does support it. Ie,
34554         not all systems have struct ip_mreqn so use struct ip_mreq when
34555         appropriate.
34557 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
34559         * reflection.c: handle finally clauses.
34561 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
34563         * socket-io.c: use g_snprintf() instead of snprintf.
34565 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34567         * reflection.c (mono_param_get_objects): Cast second argument to
34568         mono_method_get_param_names to a const char** to silence the
34569         compiler warning.
34571         * appdomain.c (mono_domain_assembly_open): Put parens around the
34572         truth statement in the for-loop.
34574         * unicode.c (iconv_convert): Got rid of a compiler warning about
34575         int i being unused when the system has a new iconv.
34576         (iconv_get_length): Same.
34578         * image.c (load_class_names): Cast the second argument to
34579         g_hash_table_insert() to char* to hush compiler warnings about the
34580         arg being a const.
34581         (mono_image_open): Same here.
34583         * socket-io.c: Don't conditionally include sys/filio.h or
34584         sys/sockio.h here anymore since we now get them from
34585         io-layer/io-layer.h
34586         (inet_pton): If the system doesn't support inet_aton, implement
34587         using inet_addr and also #define INADDR_NONE if it isn't defined
34588         by the system.
34590 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
34592         * metadata.c, metadata.h: added function to get packing and size info
34593         of a typedef.
34594         * reflection.h, reflection.c: handle field RVA data. Save info about
34595         the table layout if needed. Assign typedef indexes to all the types
34596         before dumping the info about them to avoid forward reference problems.
34598 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
34600         * socket-io.c (convert_sockopt_level_and_name): ifdef
34601         SO_ACCEPTCONN because it is not defined on my system (old debian)
34603 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34605         * opcode.c: use stddef.h to get NULL.
34607 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
34609         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
34610         for FIONBIO, FIONREAD and SIOCATMARK.
34611         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
34612         define INADDR_NONE and besides, inet_addr() is deprecated and
34613         should not be used. Use inet_pton() instead - it also has the
34614         added bonus that it can easily handle IPv6 addresses as well.
34615         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
34617 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34619         * decimal.c: remove _MSC_VER conditional.
34621 2002-02-13  Dick Porter  <dick@ximian.com>
34623         * socket-io.c: 
34624         * icall.c: Internal calls for Blocking, Select, Shutdown,
34625         GetSocketOption and SetSocketOption
34627 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34629         * assembly.cs: better resolver: use it instead of some kludgy
34630         code.
34632 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
34634         * reflection.c: the best way to speed-up the compiler is to avoid
34635         infinite loops.
34637 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
34639         * class.c (mono_class_vtable): changed the object layout
34640         (obj->vtable->class). 
34641         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
34643 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34645         * assembly.c: look for assemblies in the assembly dir, too.
34647 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34649         * class.c: fix thinko in mono_class_from_type().
34651 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
34653         * exception.h, exception.c: added TypeLoadException.
34654         * object.h, object.c: added mono_array_clone ().
34655         * icall.c: handle throwOnError in AssemblyGetType().
34656         Added Array.Clone().
34657         * opcode.h, opcode.c: use a single value for the opcode val.
34658         Compile fix for non-gcc compilers.
34660 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
34662         * opcodes.c, opcodes.h: export interesting info about opcodes.
34664 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
34666         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
34667         icalls. 
34669         * class.c (class_compute_field_layout): set element_class for enums
34670         (mono_class_create_from_typedef): set element_class for normal classes
34672         * icall.c (ves_icall_System_Enum_get_value): impl.
34674         * class.c (mono_class_create_from_typedef): do not set valuetype
34675         flag for System.ValueType and System.Enum
34677 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
34679         * unicode.c (iconv_convert): fix big endian problem.
34681 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
34683         * class.c: add asserts if we are ever going to scribble over memory.
34684         * socket-io.c: not all systems have AF_IRDA defined.
34686 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
34688         * class.c (class_compute_field_layout): do not consider static
34689         fields to compute alignment
34691 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
34693         * appdomain.c (mono_appdomain_get): impl.
34694         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
34696 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34698         * icall.c: ignore "file://" prefix when loading an assembly.
34700 2002-01-23  Dick Porter  <dick@ximian.com>
34702         * socket-io.c:
34703         * icall.c:
34704         * Makefile.am: Added socket support
34706 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34708         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
34709         code back.  This should return the assemblies that are loaded by
34710         the runtime on behalf of an application domain. 
34712         The current implementation is still broken, it just returns every
34713         assembly loaded, but until we get real applications domain this
34714         will do.
34716 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
34718         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
34719         AppDomain object.
34721 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
34723         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
34724         the mono_class_from_name lookup.
34725         (ves_icall_get_parameter_info): ditto.
34726         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
34727         method.
34728         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
34730 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
34732         * class.c: load also nested classes on class init.
34733         System.ValueType instance methods gets passed boxed
34734         values, unless methods in derived classed that get a pointer to the
34735         data.
34736         * icall.c: use better name parsing code in GetType().
34737         * image.c, image.h: add mono_image_loaded ().
34738         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
34739         * reflection.c, reflection.h: added mono_reflection_parse_type().
34741 2002-01-22  Veronica De Santis <veron78@interfree.it>
34743         * icall.c : Added mapping of internal calls for Manual and Auto reset events
34744         * threads.c : Added the implementation of internal calls for events
34745         * threads.h : Added prototypes of internal calls for events
34746         
34747 2002-01-21  Radek Doulik  <rodo@ximian.com>
34749         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
34751 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
34753         * class.c (mono_class_init): set min_align to 1 (instead of 0)
34754         (mono_class_value_size): use min_align
34756 2002-01-20  Dick Porter  <dick@ximian.com>
34758         * threads.h:
34759         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
34760         so it compiles on w32.
34762 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
34764         * metadata.c (mono_type_stack_size): impl.
34766         * class.c (mono_class_get_field): impl. memberref token
34768 2002-01-16 Veronica De Santis <veron78@@interfree.it>
34770         * icall.h : Added the internal calls mapping for CreateMutex_internal
34771                     and ReleaseMutex_internal.
34772         * threads.h : Added the prototype of mutexes internal calls.
34773         * threads.c : Added the implementations of mutexes internal calls.
34775 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
34777         * metaparse.h: removed unused file.
34778         * reflection.c, reflection.h: added stream_data_align () function 
34779         to align data in streams and keep stream aligned. Add support for
34780         exception support in method headers.
34782 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
34784         * unicode.c: make iconv_convert () return the number of bytess written
34785         in the output buffer.
34787 2002-01-15  Dick Porter  <dick@ximian.com>
34788         * threads.c: Make the runtime's idea of infinite timeouts coincide
34789         with the class library's
34791         Fix a particularly egregious bug in mono_thread_cleanup(). That
34792         code was so utterly bogus it must have been written on a Monday.
34794 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
34796         * reflection.h: add subtypes field to TypeBuilder.
34797         * reflection.c: encode constants for literal fields.
34798         Handle subtypes. Fix user string token (and add a zero byte)
34799         at the end.
34800         
34801 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
34803         * class.c (mono_class_init): bug fix: assign slot numbers for
34804         abstract methods.
34806 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34808         * reflection.c: don't try to output a code RVA for abstract methods.
34809         Small fixes for method header format. Output parameter info to the
34810         ParamDef table. Save method overriding info to MethodImpl table.
34811         Fix property support. Allow typedef.extends to be a type in the
34812         building assembly.
34813         * verify.c: fix off-by-one error.
34815 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
34817         * class.c: fix mono_class_from_mono_type () for szarray types.
34818         Remove unused cache check in mono_class_from_type_spec().
34819         * icall.c: *type_from_name () functions handle simple arrays and byref.
34820         * reflection.c: handle byref and szarray types. Handle methods without
34821         body (gets P/Invoke compilation working). Handle types and fields in
34822         get_token ().
34823         * reflection.h: add rank to MonoTypeInfo.
34825 2002-01-10  Dick Porter  <dick@ximian.com>
34827         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
34828         internal calls
34830 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
34832         * icall.c: initialize class in type_from_handle ().
34833         Loop also in parent classes for get_method ().
34834         * reflection.c: properly encode class and valuetype types.
34835         Start on encoding TypeBuilder types. Handle fieldrefs.
34836         Use correct length when registering a user string.
34837         Handle ConstructorBuilder and MonoMethod in get_token ().
34838         Make mono_type_get_object () aware of cached types.
34839         * object.c: back out change to mono_string_new ().
34841 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
34842         * object.c: mono_string_new should return a NULL when the string 
34843         passed in is NULL -- not try to deference it.
34844         
34845 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34847         * icall.c: hack to make IsSubType work for TypeBuilders.
34848         * reflection.c: emit constructors before methods.
34849         Retrieve param names in mono_param_get_objects().
34851 2002/01/05  Nick Drochak  <ndrochak@gol.com>
34853         * Makefile.am: fix list of headers and sources so automake 1.5
34854         doesn't complain. Removed \# at end of list.
34856 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
34858         * reflection.c: get token for a method ref. Set return type of
34859         constructor to void.
34860         * loader.c: debug message.
34861         * class.c: typo fix.
34863 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
34865         * icall.c: fix array init with rank > 1. FindMembers
34866         loops in parent class as well.
34867         * image.c: do not insert nested types in name cache.
34868         * reflection.c: warning fix.
34869         * reflection.h: add override method (for interface impl).
34871 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
34873         * metadata.c: fix customattr decoding.
34875 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
34877         * rawbuffer.cs: Added native Win32 implementation, avoids using
34878         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
34880 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
34882         * class.c: make the low-level routines handle the cache.
34884 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
34886         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
34888 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
34890         * class.c: fix mono_array_element_size() for objects.
34891         * class.h, class.c: add properties to MonoClass and load them
34892         at init time.
34893         * icall.c: check with isinst() when assigning a value to an array
34894         instead of requiring the classes to match exactly.
34895         Implemented icall for System.Type::GetType().
34896         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
34897         enums. Handle bindingflags when looking for methods and fields.
34898         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
34899         and mono_metadata_methods_from_property().
34900         * reflection.h, reflection.c: added structures for propreties,
34901         parameters and enums. Implemented mono_property_get_object() and
34902         mono_param_get_objects().
34904 2001-12-18  Dick Porter  <dick@ximian.com>
34906         * file-io.c: Use mono_string_to_utf16() instead of
34907         mono_string_chars()
34909         * object.c: Added mono_string_to_utf16(), which copies the non
34910         NULL-terminated MonoString into a new double-null-terminated
34911         buffer.
34913 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
34915         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
34917 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
34919         * file-io.c: raise exceptions if handle is invalid.
34921 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
34923         * assembly.c: yet another check for mscorlib.
34924         * class.c, class.h: load nesting info for classes.
34925         * icall.c: many new functions to support the Reflection classes.
34926         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
34927         * reflection.h, reflection.c: mono_image_create_token(),
34928         mono_assembly_get_object(), mono_type_get_object(),
34929         mono_method_get_object(), mono_field_get_object(): methods to return
34930         objects that parallel the C representation of assemblies, types,
34931         methods, fields.
34933 2001-12-11  Dick Porter  <dick@ximian.com>
34935         * icall.c:
34936         * file-io.c: Internal calls for file IO.
34938 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
34940         * tabledefs.h: missing FileAttributes.
34941         * verify.h, verify.c: use is_valid_string () to simplify and check for
34942         valid strings more correctly. Fix warnings and speeling.
34943         Check more tables: Filed, File, ModuleRef, StandAloneSig.
34944         Check code: branches, maxstack, method calls.
34946 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
34948         * object.c (mono_object_allocate): removed static, so that the jit
34949         can allocate value types.
34951         * icall.c (ves_icall_System_DateTime_GetNow): impl.
34953 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34955         * class.c: init enum types right away and register the
34956         token->MonoClass map in mono_class_create_from_typedef ().
34957         * verify.h, verify.c: first cut of the verifier.
34958         * pedump.c: add --verify switch to verify metadata tables.
34959         * tabledefs.h: add some missing enums.
34961 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
34963         * class.c (mono_install_runtime_class_init): impl.
34964         (mono_class_init): renamed mono_class_metadata_init to
34965         mono_class_init, also removed the metadata_inited flag
34967         * object.c (mono_object_isinst): use faster algorithm
34969 2001-11-30  Radek Doulik  <rodo@ximian.com>
34971         * mono-endian.h: reverted last change
34972         added function prototypes
34974         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
34975         add mono-endian.c back
34977         * mono-endian.c: returned back, as Paolo pointed out, it's needed
34978         for unaligned access, I've mistaked it with endianess. I am
34979         sorry.
34980         (mono_read16): fix reverted endianess
34981         (mono_read64): ditto
34982         (mono_read32): ditto
34984 2001-11-30  Dick Porter  <dick@ximian.com>
34986         * exception.c: Implement mono_exception_from_name()
34988 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34990         * metadata.h, metadata.c: remove params_size and locals_size and their
34991         calculation from the metadata code: they are only usefult to the
34992         interp.
34994 2001-11-29  Radek Doulik  <rodo@ximian.com>
34996         * object.c (mono_ldstr): swap bytes here, it's probably not the
34997         best place, but works for me now, I'll redo it once I know mono
34998         better, also note that I add PROT_WRITE and don't reset back, also
34999         note that it's only affects big endians, so x86 should be OK
35001         * mono-endian.h (read16): use just glib macros for both endians
35003         * mono-endian.c: removed as glib macros are used in in
35004         mono-endian.h so we don't need to care about endianess for read
35005         macros as glib does that for us already
35007 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35009         * class.h, class.h: take minimum alignment into consideration so
35010         that the fields of a class remain aligned also when in an array.
35012 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35014         * loader.h, loader.c: add mono_method_get_param_names().
35015         * class.c: 0-init class fields.
35017 2001-11-26  Dick Porter  <dick@ximian.com>
35019         * icall.c:
35020         * threads-types.h:
35021         * threads.c: New file that handles System.Threading on all platforms
35023         * object.c: 
35024         * object.h: Remove the synchronisation struct from MonoObject,
35025         replace it with a pointer that gets initialised on demand
35027         * Makefile.am: Replace all the system-specific threading code with
35028         a single file that uses the new wrapper library
35030 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35032         * class.c, class.h: add mono_install_trampoline() so that the runtime
35033         can register a function to create a trampoline: removes the ugly
35034         requirement that a runtime needed to export arch_create_jit_trampoline.
35035         * object.h, object.c: added mono_install_handler() so that the runtime
35036         can install an handler for exceptions generated in C code (with
35037         mono_raise_exception()). Added C struct for System.Delegate.
35038         * pedump.c: removed arch_create_jit_trampoline.
35039         * reflection.c: some cleanups to allow registering user strings and
35040         later getting a token for methodrefs and fieldrefs before the assembly
35041         is built.
35042         * row-indexes.h: updates and fixes from the new ECMA specs.
35044 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35046         * class.h, class.c: add enum_basetype field to MonoClass.
35047         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35048         to get index in the constant table reated to a field, param or
35049         property.
35050         * reflection.h, reflection.c: handle constructors. Set public-key and
35051         version number of the built assembly to 0.
35052         * row-indexes.h: update from new ECMA spec.
35054 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35056         * class.h, class.c: add a max_interface_id to MonoClass.
35057         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35058         since it's used to do that. Added mono_type_type_from_obj().
35059         Make GetType() return NULL instead of segfaulting if the type was not
35060         found. Handle simple arrays in assQualifiedName.
35061         * object.h: add a struct to represent an Exception.
35062         * reflection.c: output call convention in method signature.
35063         Add code to support P/Invoke methods and fixed offsets for fields.
35065 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35067         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35068         the value.
35069         * icall.c: use mono_array_addr instead of array->vector: fixes the
35070         reflection image writing.
35071         * reflection.c: init call convention byte to 0 in method signature.
35072         Encode the property signature. Don't output property-related methods
35073         twice. Really process the properties for a type (don't cast a field to
35074         a property, my mom always told me that).
35075         Fix 64 bit issues in pointer alignment in a different and more
35076         readable way.
35078 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35080         * loader.h: Removed type class from MonoDefaults, added monotype
35082         * loader.c: Loaded MonoType, removed loading of Type
35084         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35085         and fills in System.Type._impl with a RuntimeTypeHandle rather
35086         than the actual MonoClass *
35088         (ves_icall_type_from_handle): change from type_class to
35089         monotype_class
35091         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35092         implemented
35094         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35095         implemented
35097         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35099         (ves_icall_System_Reflection_Assembly_GetType): implemented
35101         (ves_icall_System_MonoType_assQualifiedName): implemented
35103         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35105 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35107         * assembly.c (mono_assembly_open): Implement a cache for the
35108         assemblies. 
35110         (mono_assembly_close): only destroy the assembly when the last
35111         reference is gone.
35112         
35113 2001-11-09  Dick Porter  <dick@ximian.com>
35115         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35117 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35119         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35121 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35123         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35124         from Martin Weindel.
35125         * object.h: add mono_string_chars ().
35127 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35129         * reflection.c (build_compressed_metadata): Eliminates warnings
35130         and uses 64-bit clean code.
35132         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35133         (mono_type_equal): Change signature to eliminate warnings.
35135 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35137         * icall.c, loader.c: remove the internalcall array constructors.
35138         Changes to match the new MonoArray structure.
35139         * object.h, object.c: an array object doesn't allocate an extra
35140         vector. Add mono_array_new_full () to create jagged arrays easily.
35142 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35144         * metadata.h, metadata.c: add mono_metadata_field_info () to
35145         retreive all the info about a field from vairous tables.
35146         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35147         * class.h, class.c: augment MonoClassField with more info.
35148         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35149         policy and load a field's RVA if needed.
35151 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35153         * class.c (mono_class_metadata_init): create a trampoline for all
35154         virtual functions instead of actually compiling them.
35156 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35158         * class.h, class.c: include name in MonoClassField.
35159         * class.c: fix fundamental type of System.Object and System.String.
35160         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35161         tokens in ldtoken.
35162         * icall.c: remove internalcalls for the Reflection stuff that is now
35163         done in C# code.
35164         * loader.c: mono_field_from_memberref () implementation.
35165         * mono-endian.c: thinko (s/struct/union/g).
35166         * object.c, object.h: make the mono_string_* prototypes actually use
35167         MonoString instead of MonoObject.
35168         * reflection.c, reflection.h: updates for changes in the reflection
35169         code in corlib: we use C structures that map to the actual C# classes.
35170         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35171         fat method header if needed and use the info from the ILGenerator for
35172         methods. Handle fields in types. Misc fixes.
35174 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35176         * class.c (mono_class_metadata_init): bug fix: always allocate
35177         space for static class data
35179 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35181         * class.c (mono_compute_relative_numbering): use relative
35182         numbering to support fast runtime type checks.
35184 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35186         * class.c (mono_class_create_from_typeref): added debugging output
35187         to print class name when MonoDummy is returned instead of real class
35189 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35191         * class.c (mono_class_metadata_init): interface offset table now
35192         contains pointers into the vtable - this is more efficient for the jit
35194 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35196         * class.c (mono_class_metadata_init): use a temporary vtable (the
35197         old algorithm only worked for the interpreter, but not for the jit)
35199 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35201         * loader.c (method_from_memberref): use mono_class_get to get the
35202         class of an array instead of using System.Array directly.
35203         (mono_get_method): also add MEMBERREF methods to the method cache
35204         which usefull for arrays.
35206 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35208         * pedump.c (arch_compile_method): added to compute vtable entry
35210         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35211         number of interfaces.
35212         
35213         * class.h: merged MonoArrayClass into MonoClass
35215         * class.c (mono_class_create_from_typedef): compute the vtable size and
35216         allocate space to include the vtable inside MonoClass
35217         (mono_class_metadata_init): initialize the vtable
35219 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35221         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35222         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35223         * image.c: endian fixes by Laurent Rioux.
35224         * object.h, object.c: rename MonoStringObject to MonoString and
35225         MonoArrayObject to MonoArray. Change some function names to conform to
35226         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35227         guint16* as first argument, so don't use char*.
35228         Provide macros to do the interesting things on arrays in a portable way.
35229         * threads-pthread.c: updates for the API changes and #include <sched.h>
35230         (required for sched_yield()).
35231         * icall.c: updates for the API changes above.
35232         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35233         platforms that need them.
35235 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35237         * class.c: set the correct type for all the fundamental
35238         type when loading the class.
35240 2001-10-05  Dick Porter  <dick@ximian.com>
35242         * threads-pthread.c (pthread_mutex_timedlock): Simple
35243         compatibility version for C libraries that lack this call.
35245 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35247         * class.c: MonoTypes stored in MonoClass are stored as
35248         fundamental MonoTypes when the class represents a
35249         fundamental type (System.Int32, ...).
35250         The TypeHandle return by ldtoken is a MonoType*.
35251         * icall.c: ves_icall_get_data_chunk () write out all the
35252         PE/COFF stuff. Implement ves_icall_define_method (),
35253         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35254         * image.c: properly skip unknown streams.
35255         * loader.h, loader.c: add type_class to mono_defaults.
35256         * metadata.c, metadata.h: export compute_size () as
35257         mono_metadata_compute_size () with a better interface.
35258         Typo and C&P fixes.
35259         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35260         * reflection.c, reflection.h: many cleanups, fixes, output method
35261         signatures and headers, typedef and typeref info, compress the metadata
35262         tables, output all the heap streams, cli header etc.
35263         * row-indexes.h: typo fixes.
35265 2001-10-04  Dick Porter  <dick@ximian.com>
35267         * object.h: Add a synchronisation mutex struct to MonoObject
35269         * object.c (mono_new_object): Initialise the object
35270         synchronisation mutexes
35272         * icall.c: System.Threading.Monitor internal calls
35273         
35274         * threads-pthread.h:
35275         * threads-pthread.c: System.Threading.Monitor internal calls
35277         * threads-types.h: New file, includes the system-specific thread
35278         structures
35279         
35280         * threads-pthread-types.h:
35281         * threads-pthread-types.c: New files, handle pthread-specific
35282         synchronisation types
35284         * threads-dummy-types.h: 
35285         * threads-dummy-types.c: New files of dummy support for
35286         thread-specific types
35288         * metadata.c:
35289         * image.c:
35290         * pedump.c: include mono-endian.h not endian.h
35291         
35292         * Makefile.am: More threads files.
35293         Name mono-endian.h not endian.h
35295 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35297         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35298         stuff and implement a few more bits.
35299         * icall.c: a field needs to be dereferenced twice. Do not use the same
35300         name for two variables in the same scope.
35301         * image.c, image.h: cleanups.
35303 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35305         * class.c (mono_class_metadata_init): bug fix: compute the right size
35307 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35309         * icall.c: implemented some of the Reflection internalcalls.
35310         * image.c, image.h: start writing out the PE/COFF image.
35311         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35312         that does the reverse than decode_blob_size ().
35313         * object.c: use mono_metadata_encode_value (). Move here
35314         temporary implementation of mono_string_to_utf8 ().
35315         * rawbuffer.c: make malloc_map static.
35317 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35319         * metadata.c: fix type comparison for arrays.
35320         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
35321         Added a couple of new classes to monodefaults.
35322         * icall.c: added a couple of Reflection-related internalcalls.
35323         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
35324         Added a byval_arg MonoType to MonoClass.
35326 2001-09-28  Dick Porter  <dick@ximian.com>
35328         * icall.c:
35329         * threads-pthread.h: 
35330         * threads-pthread.c: Implemented internal calls for
35331         LocalDataStoreSlot operations.  Applied mutexes around all shared
35332         data.  Reworked the thread creation and Start() operations to
35333         avoid a race condition.
35334         
35335         * threads-dummy.h:
35336         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
35338 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
35340         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
35342 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
35344         * class.c, loader.c: warn and return NULL instead of erroring out.
35345         * icall.c: added System.AppDomain::getCurDomain().
35346         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
35348 2001-09-25  Dick Porter  <dick@ximian.com>
35350         * threads-pthread.h:
35351         * threads-pthread.c: Implemented timed thread joining and added
35352         System.Threading.Thread::Join_internal internal call
35354         * icall.c: Added System.Threading.Thread::Join_internal internal call
35356         * threads-dummy.h:
35357         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
35359 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
35361         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
35362         mono_string_intern () to implement the semantics of the ldstr opcode
35363         and the interning of System.Strings.
35364         * icall.c: provide hooks to make String::IsIntern and String::Intern
35365         internalcalls.
35367 2001-09-23  Dick Porter  <dick@ximian.com>
35369         * threads-dummy.c: 
35370         * threads-dummy.h: New files of dummy threading routines
35372         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
35373         support code based on system specifics
35375         Rename PTHREAD_LIBS to THREAD_LIBS
35376         
35377 2001-09-23  Dick Porter  <dick@ximian.com>
35379         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
35380         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
35381         internal calls.
35382         (mono_thread_init): Set up a Thread object instance to return when
35383         the main thread calls Thread.CurrentThread
35384         (mono_thread_cleanup): Wait for all subthreads to exit
35386         * icall.c: New internal calls for System.Threading.Thread::Sleep
35387         (including Schedule) and CurrentThread
35389         * threads.h: New file, to insulate thread-specific stuff from the
35390         rest of the code
35392 2001-09-21  Dick Porter  <dick@ximian.com>
35394         * threads-pthread.h: 
35395         * threads-pthread.c: New file, for handling pthreads-style
35396         threading support.  Start() now starts a new thread and executes
35397         the ThreadStart delegate instance.
35399         * icall.c: Added the internalcall for
35400         System.Threading.Thread::Start_internal
35402         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
35404 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
35406         * loader.c: work around the different signatures for delegates
35407         constructors csc generates in compiled code vs the ones compiled in mscorlib.
35409 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35411         * class.h, class.c: add mono_class_get_field_from_name ().
35412         * *: Fix C comments and other ANSI C issues.
35414 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
35416         * endian.h, assembly.c: fix some endianness issues.
35418 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
35420         * loader.h, load.c: add delegate_class to mono_defaults.
35421         Handle runtime provided methods in mono_get_method ().
35423 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
35425         * loader.c (mono_get_method): use pinvoke for internal call
35427         * icall.c: use pinvoke for internal call
35429         * loader.c (method_from_memberref): set the method name
35431 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
35433         * metadata.c: help the compiler generate better code for
35434         mono_class_from_mono_type ().
35436 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
35438         * class.c (mono_class_metadata_init): delayed computing of the
35439         class size to mono_class_metadata_init ()
35441 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
35443         * class.c, class.h: add an interfaces member to MonoClass.
35444         * image.c, image.h: add assembly_name field to MonoImage
35445         from the assembly table.
35446         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
35448 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35450         * class.c: Handle Array in mono_class_from_mono_type ().
35451         * metadata.c, pedump.c: some endian fixes.
35453 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35455         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
35456         * metadata.c: fix small problem introduced with the latest commit.
35458 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
35460         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
35461         We don't need a MonoMetadata pointer anymore to compare signatures in
35462         mono_metadata_signature_equal (), update callers.
35463         Reduced memory usage an number of allocations for MonoMethodHeader and
35464         MonoMethodSignature.
35466 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
35468         * metadata.c: added compare for szarray.
35470 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
35472         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
35473         and add a couple more types to it and mono_defaults. Give an hint on
35474         classes that need implementing in our corlib and are referenced
35475         in mscorlib.
35477 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
35479         * class.h, class.c: keep track if a class is also an Enum.
35480         * loader.c: Implement a couple more types for use in libffi
35481         marshalling. Gives better diagnostics when failing to dlopen
35482         a library. Set method->klass for P/Invoke methods, too.
35484 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
35486         * class.c, class.h: add a MonoType this_arg to MonoClass that
35487         represents a pointer to an object of the class' type that
35488         can be used by the interpreter and later the type cache.
35489         Add best guess alignment info for valuetype objects.
35491 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
35493         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
35494         into MonoType: one less level of indirection and allocation and
35495         simplifies quite a bit of code. Added cache for MonoTypes that are
35496         used frequently, so that we don't need to allocate them all the time.
35498 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
35500         * class.c (mono_class_create_from_typedef): System.Enum is also a
35501         value type, although it does not derive from System.ValueType
35502         (maybe a bug in the ms compiler?)
35504         * metadata.c (mono_type_size): return the right size for value types
35506         * loader.c (mono_get_method): only initialize method header if not abstract
35508         * class.c (mono_class_from_mono_type): use mono_default values. 
35510 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
35512         * *: use MonoClass pointers instead of <type_tokens>
35513         
35514         * class.h: new flag: metadata_inited.
35516         * class.c (mono_class_metadata_init): impl.
35517         (mono_class_instance_size): impl.
35518         (mono_class_data_size): impl.
35520 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35522         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
35523         MonoClass now has the name and name_space fields. 
35524         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
35525         mono_get_method () takes and optional MonoClass as argument.
35526         Removed mono_typedef_from_name() and added mono_class_token_from_name()
35527         instead that takes advantage of a map from class names to typedef
35528         tokens in MonoImage.
35530 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
35532         * metadata.c: zero is not a valid alignment boundary.
35533         Merge MONO_TYPE_VOID in default decoding code.
35535 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
35537         * image.h: merged MonoMetadata into MonoImage
35539         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
35540         identify the type of elements.
35542 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
35544         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
35545         * cil-coff.h: split MonoMSDOSHeader and add size info.
35546         * image.c: add some consistency checks.
35547         * metadata.c: fix row size computation: one programmer
35548         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
35549         add explanation for the locator routine.
35550         Fix decoding of size in method header.
35551         
35552 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
35554         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
35555         (g_concat_dir_and_file): Bring g_concat_dir_and_file
35556         function from gnome-libs.  This uses the right path separator
35557         based on the OS, and also works around a bug in some systems where
35558         a double slash is not allowed. 
35559         (default_assembly_name_resolver): Use g_concat_dir_and_file
35560         (mono_assembly_open): ditto.
35562 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
35564         * metadata.c (mono_metadata_signature_equal): impl.
35566         * *: void is now a realy MonoType (instead of using NULL)
35567         
35568         * metadata.c (do_mono_metadata_parse_type): use
35569         mono_metadata_parse_type to parse void value.
35571 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
35573         * metadata.c, metadata.h: in the signature and method header store
35574         only the space required for holding the loca vars and incoming arguments.
35576 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
35578         * metadata.c (do_mono_metadata_parse_type): treat void like any
35579         other type (instead of assigning NULL);
35581 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
35583         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
35585 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
35587         * image.c (do_mono_image_open): added a cache for arrays.
35589 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35591         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
35592         decode a single column from a row in a metadata table and changes
35593         to take advantage of it in the typedef locator (gives a nice speed up).
35594         Store offset info for function params.
35596 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
35598         * image.h (MONO_IMAGE_IS_CORLIB): removed 
35600 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
35602         * assembly.c: how could mono_assembly_close () had ever worked?
35603         * metadata.c, metadata.h: provide offset info for local vars.
35604         Implement mono_type_size () to take care of alignment as well
35605         as size (it was mono_field_type_size in cli/class.c before).
35607 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
35609         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
35611         * assembly.h (CORLIB_NAME): set to corlib.dll
35613         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
35615 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
35617         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
35618         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
35619         tokentype.h: massive namespace cleanup.
35621 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
35623         * metadata.h, metadata.c: decode exception clauses when parsing method header.
35625 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
35627         * metadata.c (mono_metadata_free_type): added check for type !=
35628         NULL (void) before calling mono_metadata_free_type()
35630 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
35632         * metadata.h, row_indexes.h: added header with enumerations to use
35633         to index in the columns from tables in metadata and to decode coded
35634         tokens: we should start using this instead of embedding magic numbers
35635         all over the code.
35637 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
35639         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
35640         Move metadata_t info from cli_image_info_t to MonoImage, where
35641         it's easily accessible. Changed all the uses accordingly.
35642         Added the method and class caches to MonoImage.
35643         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
35644         and mono_metadata_decode_value () signature to be more consistent
35645         with the other parse functions (and simplify code). Taken advantage
35646         of zero-length array allocation with GCC. Removed reduntant (and
35647         wrong) MonoFieldType struct and use MonoParam instead. Changed
35648         mono_metadata_parse_field_type () to use common code for parsing.
35649         Added mono_metadata_typedef_from_field () and
35650         mono_metadata_typedef_from_method () to lookup a typedef index from a
35651         field or method token.
35652         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
35654 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
35656         * metadata.c (mono_metadata_parse_field_type): Implement. 
35657         (do_mono_metadata_parse_type): Split engine from
35658         mono_metadata_parse_type, so that we can create smaller structures
35659         for things that just have one pointer to the MonoType (look at
35660         the MonoFieldType)
35662 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
35664         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
35665         as Jan Gray found out, it is incorrect. 
35667 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
35669         * assembly.c: Implement asssembly loading.  This loads an image
35670         and loads all the referenced assemblies.  Come to think of it, we
35671         could always do lazy loading of the assemblies. 
35673         * image.c (mono_image_open): Keep loaded images in a hashtable.
35675         * image.h (MonoImage): Add reference count.
35677 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
35679         * assembly.c (mono_assembly_open): Keep track of the file name in
35680         case the assembly has no ASSEMBLY table.
35682         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
35683         from get.c here.
35685 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
35687         * metadata.c, metadata.h: decode local vars in method header
35688         parse function. Change callers accordingly.
35690 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
35692         * metadata.h, cil-coff.h: protect against multiple inclusion.
35693         Added some new structures to hold information decoded from metadata:
35694         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
35695         and relevant decoding/free functions.
35696         * metadata.c: implement decoding functions. Add warning for out of bounds
35697         index in mono_metadata_locate(). Implement mono_get_method () to retreive
35698         all the info about a method signature and invocation. Remove check on
35699         uninitialized local var in parse_mh() and fix memory leak.
35701 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
35703         * metadata.h: More macros.
35705         * tokentype.h: New file.
35707 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
35709         * assembly.c: added a consistency check and initialize
35710         some structures with g_new0().
35711         * metadata.c: fixed a couple more bugs in table size computation
35712         and add other checks for out-of bound access to metadata.
35714 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
35716         * metatada.c: fix bugs computing table sizes. Spew a
35717         warning when index in string heap is out of bounds.
35719 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
35721         * metadata.h: Add a couple of macros to manipulate tokens. 
35723 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
35725         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
35726         cli_section_tables).
35728 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
35730         * metadata.c (mono_metadata_user_string): New function, provides
35731         access to the UserString heap. 
35733 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
35735         * metadata.c: Add inline documentation.
35737 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
35739         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
35740         files. 
35742 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
35744         * typeattr.h: New file, TypeAttribute flags. 
35746 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
35748         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
35749         mono_assembly_ensure_section): Section loading code.
35750         (load_section_tables): Load the sections.
35752         * mono/metadata/metadata.c (mono_metadata_locate_token,
35753         mono_metadata_locate): Functions to locate the information
35754         definition given a token or a table and an index.
35755         (mono_metadata_compute_table_bases): New.
35756         (compute_size): New function to compute the sizes of the various
35757         tables.
35759         * mono/metadata/metadata.h: Finish listing the different index
35760         types. 
35762         * mono/metadata/pedump.c: Improve to dump new information.
35764 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
35766         * mono/metadata/metadata.c: Entered all the tables matching
35767         Beta2. 
35769         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2